{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/ZbaPGwxqCCnM6mwt39i3/BFlzXSXXu7nVNq3TuK4u/yC7YChShz.js", "ssg:https://framerusercontent.com/modules/52sxvBRe6NMe5lBRhnrv/Mhqvv25QaDe3bhqh9Sk1/h5gUWH81h.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ 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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}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 MotionAWithFX=withFX(motion.a);const enabledGestures={dLmHvJhW3:{hover:true},WFycNOQVL:{hover:true}};const cycleOrder=[\"dLmHvJhW3\",\"WFycNOQVL\"];const serializationHash=\"framer-1u8Yq\";const variantClassNames={dLmHvJhW3:\"framer-v-3tkbds\",WFycNOQVL:\"framer-v-1f92vpp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={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 humanReadableVariantMap={Dark:\"WFycNOQVL\",Light:\"dLmHvJhW3\"};const getProps=({button,distribute,height,icon,id,link,soon,text,title,width,...props})=>{return{...props,D7kBMp5wY:humanReadableEnumMap[distribute]??distribute??props.D7kBMp5wY??\"center\",gComTvbBr:button??props.gComTvbBr??true,gVUGerxfz:icon??props.gVUGerxfz,uLQrp1aAj:text??props.uLQrp1aAj??\"Perform A/B experiments on paywalls to grow in-app subscriptions without requiring forced updates. Thanks to Remote Configs.\",uqopfeIxy:soon??props.uqopfeIxy,variant:humanReadableVariantMap[props.variant]??props.variant??\"dLmHvJhW3\",wvUP2BevT:link??props.wvUP2BevT,ZaapF8pB6:title??props.ZaapF8pB6??\"A/B Experiments\"};};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,gVUGerxfz,ZaapF8pB6,uLQrp1aAj,gComTvbBr,uqopfeIxy,wvUP2BevT,D7kBMp5wY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dLmHvJhW3\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"WFycNOQVL-hover\")return false;if(baseVariant===\"WFycNOQVL\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"WFycNOQVL-hover\")return true;if(baseVariant===\"WFycNOQVL\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(Link,{href:wvUP2BevT,children:/*#__PURE__*/_jsxs(MotionAWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-3tkbds\",className,classNames)} framer-10jzgdj`,\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"dLmHvJhW3\",ref:ref??ref1,style:{\"--3ebm8g\":D7kBMp5wY,\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{\"dLmHvJhW3-hover\":{backgroundColor:\"rgb(233, 242, 242)\"},\"WFycNOQVL-hover\":{\"--border-color\":\"var(--token-4a32426b-354a-4132-a87b-a1927d30856f, rgb(116, 128, 128))\"},WFycNOQVL:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(116, 128, 128, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(23, 26, 33)\"}},...addPropertyOverrides({\"dLmHvJhW3-hover\":{\"data-framer-name\":undefined},\"WFycNOQVL-hover\":{\"data-framer-name\":undefined},WFycNOQVL:{\"data-border\":true,\"data-framer-name\":\"Dark\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ypkce8\",\"data-framer-name\":\"Frame 1948754828\",layoutDependency:layoutDependency,layoutId:\"wA7srxexV\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+(0+0+((componentViewport?.height||283.5)-40-270)/2*0)+0+0),sizes:\"30px\",...toResponsiveImage(gVUGerxfz)},className:\"framer-1jtxovh\",layoutDependency:layoutDependency,layoutId:\"RxEjAR8tV\",...addPropertyOverrides({WFycNOQVL:{background:{alt:\"\",fit:\"fill\",sizes:\"30px\",...toResponsiveImage(gVUGerxfz)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a7t57u\",layoutDependency:layoutDependency,layoutId:\"ZNhgSq_Ju\",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:\"A/B Experiments\"})}),className:\"framer-4i7ymr\",\"data-framer-name\":\"Optimize\\u2028engineering resources\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EVEKJZ2tY\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ZaapF8pB6,variants:{WFycNOQVL:{\"--extracted-1lwpl3i\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WFycNOQVL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1c3yy2\",\"data-styles-preset\":\"EAT2CDplj\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255)))\"},children:\"A/B Experiments\"})})}},baseVariant,gestureVariant)}),/*#__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:\"Perform A/B experiments on paywalls to grow in-app subscriptions without requiring forced updates. Thanks to Remote Configs.\"})}),className:\"framer-bk6br8\",\"data-framer-name\":\"Launch subscriptions in one day using our SDK. No extra coding required.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vBEFcyu2o\",style:{\"--framer-paragraph-spacing\":\"15px\"},text:uLQrp1aAj,variants:{WFycNOQVL:{\"--extracted-r6o4lv\":\"var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({WFycNOQVL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qvmci1\",\"data-styles-preset\":\"vuztVCB_C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb52538e-e373-4cdf-9be7-7b90e01bb6eb, rgb(255, 255, 255)))\"},children:\"Perform A/B experiments on paywalls to grow in-app subscriptions without requiring forced updates. Thanks to Remote Configs.\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bqc957\",layoutDependency:layoutDependency,layoutId:\"VabTakjmj\",children:gComTvbBr&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b68ge\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"BJdiBcaRg\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(36, 40, 48, 0.15)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{WFycNOQVL:{\"--border-color\":\"rgba(255, 255, 255, 0.3)\"}},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rtrg9f\",\"data-framer-name\":\"arrow\",fill:\"black\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"OhB_QI0OW\",svg:'<svg width=\"18\" height=\"18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.74 15.232 11.106 13.6l2.816-2.816 1.6-.896-.16-.384-1.44.448H.355V7.648h13.568l1.44.448.16-.384-1.6-.896L11.107 4l1.632-1.632 4.896 4.896v3.072l-4.896 4.896Z\" fill=\"#2F2F2F\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1eht7p1\",\"data-framer-name\":\"Arrowwhite\",fill:\"black\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"fW6Si488B\",svg:'<svg width=\"18\" height=\"18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m12.9 15.4-1.7-1.7 2.933-2.933 1.667-.934-.167-.4-1.5.467H0V7.5h14.133l1.5.467.167-.4-1.667-.934L11.2 3.7 12.9 2 18 7.1v3.2l-5.1 5.1Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]})}),uqopfeIxy&&/*#__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\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb03ecdb-0731-485d-b925-3247c955b6cd, rgb(174, 189, 189)))\"},children:\"Coming soon\u2026\"})}),className:\"framer-1yhywod\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OBMRoIweJ\",style:{\"--extracted-r6o4lv\":\"var(--token-bb03ecdb-0731-485d-b925-3247c955b6cd, rgb(174, 189, 189))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1u8Yq.framer-10jzgdj, .framer-1u8Yq .framer-10jzgdj { display: block; }\",\".framer-1u8Yq.framer-3tkbds { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 284px; justify-content: space-between; overflow: visible; padding: 20px; position: relative; text-decoration: none; width: 344px; }\",\".framer-1u8Yq .framer-1ypkce8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1u8Yq .framer-1jtxovh { flex: none; height: 30px; overflow: visible; position: relative; width: 30px; }\",\".framer-1u8Yq .framer-a7t57u { 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-1u8Yq .framer-4i7ymr, .framer-1u8Yq .framer-bk6br8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1u8Yq .framer-1bqc957 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 42px; }\",\".framer-1u8Yq .framer-1b68ge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 42px; }\",\".framer-1u8Yq .framer-rtrg9f, .framer-1u8Yq .framer-1eht7p1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-1u8Yq .framer-1yhywod { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1u8Yq .framer-1ypkce8, .framer-1u8Yq .framer-a7t57u, .framer-1u8Yq .framer-1bqc957, .framer-1u8Yq .framer-1b68ge { gap: 0px; } .framer-1u8Yq .framer-1ypkce8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-1u8Yq .framer-1ypkce8 > :first-child, .framer-1u8Yq .framer-a7t57u > :first-child { margin-top: 0px; } .framer-1u8Yq .framer-1ypkce8 > :last-child, .framer-1u8Yq .framer-a7t57u > :last-child { margin-bottom: 0px; } .framer-1u8Yq .framer-a7t57u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1u8Yq .framer-1bqc957 > *, .framer-1u8Yq .framer-1b68ge > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1u8Yq .framer-1bqc957 > :first-child, .framer-1u8Yq .framer-1b68ge > :first-child { margin-left: 0px; } .framer-1u8Yq .framer-1bqc957 > :last-child, .framer-1u8Yq .framer-1b68ge > :last-child { margin-right: 0px; } }\",\".framer-1u8Yq.framer-v-1f92vpp.framer-3tkbds { gap: 20px; height: min-content; justify-content: var(--3ebm8g); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1u8Yq.framer-v-1f92vpp.framer-3tkbds { gap: 0px; } .framer-1u8Yq.framer-v-1f92vpp.framer-3tkbds > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-1u8Yq.framer-v-1f92vpp.framer-3tkbds > :first-child { margin-top: 0px; } .framer-1u8Yq.framer-v-1f92vpp.framer-3tkbds > :last-child { margin-bottom: 0px; } }\",\".framer-1u8Yq.framer-v-3tkbds.hover.framer-3tkbds { aspect-ratio: 1.2112676056338028 / 1; height: var(--framer-aspect-ratio-supported, 284px); }\",\".framer-1u8Yq.framer-v-3tkbds.hover .framer-1bqc957 { height: min-content; padding: 0px 0px 0px 10px; width: min-content; }\",\".framer-1u8Yq.framer-v-1f92vpp.hover .framer-1bqc957 { height: min-content; padding: 0px 0px 0px 20px; width: min-content; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-1u8Yq[data-border=\"true\"]::after, .framer-1u8Yq [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 283.5\n * @framerIntrinsicWidth 343.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WFycNOQVL\":{\"layout\":[\"fixed\",\"auto\"]},\"QcyoJq98N\":{\"layout\":[\"fixed\",\"fixed\"]},\"CJE6vXcKo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gVUGerxfz\":\"icon\",\"ZaapF8pB6\":\"title\",\"uLQrp1aAj\":\"text\",\"gComTvbBr\":\"button\",\"uqopfeIxy\":\"soon\",\"wvUP2BevT\":\"link\",\"D7kBMp5wY\":\"distribute\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryC7YChShz=withCSS(Component,css,\"framer-1u8Yq\");export default FrameryC7YChShz;FrameryC7YChShz.displayName=\"Card Solution\";FrameryC7YChShz.defaultProps={height:283.5,width:343.5};addPropertyControls(FrameryC7YChShz,{variant:{options:[\"dLmHvJhW3\",\"WFycNOQVL\"],optionTitles:[\"Light\",\"Dark\"],title:\"Variant\",type:ControlType.Enum},gVUGerxfz:{title:\"Icon\",type:ControlType.ResponsiveImage},ZaapF8pB6:{defaultValue:\"A/B Experiments\",displayTextArea:false,title:\"Title\",type:ControlType.String},uLQrp1aAj:{defaultValue:\"Perform A/B experiments on paywalls to grow in-app subscriptions without requiring forced updates. Thanks to Remote Configs.\",displayTextArea:true,title:\"Text\",type:ControlType.String},gComTvbBr:{defaultValue:true,title:\"Button\",type:ControlType.Boolean},uqopfeIxy:{defaultValue:false,title:\"Soon\",type:ControlType.Boolean},wvUP2BevT:{title:\"Link\",type:ControlType.Link},D7kBMp5wY:{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(FrameryC7YChShz,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryC7YChShz\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"gVUGerxfz\\\":\\\"icon\\\",\\\"ZaapF8pB6\\\":\\\"title\\\",\\\"uLQrp1aAj\\\":\\\"text\\\",\\\"gComTvbBr\\\":\\\"button\\\",\\\"uqopfeIxy\\\":\\\"soon\\\",\\\"wvUP2BevT\\\":\\\"link\\\",\\\"D7kBMp5wY\\\":\\\"distribute\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"283.5\",\"framerIntrinsicWidth\":\"343.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WFycNOQVL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QcyoJq98N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CJE6vXcKo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (eea9f0c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/O5oguDThk1qvk5M2lNdv/ERLVCgDCPS4hWXmpN28t/II2TfB9z1.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/EkT1PGXESGI7pbreBcu8/yjrbD7Gs8TLhfCzzs1m8/vuztVCB_C.js\";import CardSolution from\"https://framerusercontent.com/modules/ZbaPGwxqCCnM6mwt39i3/BFlzXSXXu7nVNq3TuK4u/yC7YChShz.js\";const CardSolutionFonts=getFonts(CardSolution);const CarouselFonts=getFonts(Carousel);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"z6KNWFkr4\",\"edXb9ldTT\",\"QqsuxBCth\"];const serializationHash=\"framer-uhw89\";const variantClassNames={edXb9ldTT:\"framer-v-13rj5tm\",QqsuxBCth:\"framer-v-f09yr7\",z6KNWFkr4:\"framer-v-dbq3i3\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={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 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={Desktop:\"z6KNWFkr4\",Mobile:\"QqsuxBCth\",Tablet:\"edXb9ldTT\"};const getProps=({aB,analytics,aSA,background,color,color2,customerCRM,dashboard,description,height,id,integrations,noCode,remoteConfigs,subsMan,title,visible11,visible31,visible41,visible51,visible61,visible71,width,...props})=>{return{...props,C4oU7LB2c:visible41??props.C4oU7LB2c??true,eIDmspEEU:analytics??props.eIDmspEEU??true,EPhcaGXaW:aB??props.EPhcaGXaW??true,FmePyhujp:noCode??props.FmePyhujp??true,h4apDVA1I:integrations??props.h4apDVA1I??true,IJCDQVjyc:visible71??props.IJCDQVjyc??true,J2pvo2D5M:color2??props.J2pvo2D5M??\"rgb(0, 0, 0)\",JZeyhd7hY:remoteConfigs??props.JZeyhd7hY??true,KNx5RJCnU:description??props.KNx5RJCnU??\"Build, track, analyze, and grow in-app subscriptions for mobile apps with our powerful tools\",lEMtqzGza:customerCRM??props.lEMtqzGza??true,MgZAjfSSE:visible51??props.MgZAjfSSE??true,NR6ezWGMX:background??props.NR6ezWGMX??\"var(--token-f59bf36d-1ef9-4d92-af9e-4fff460f4d01, rgb(207, 225, 225))\",O4H_lBbBo:visible61??props.O4H_lBbBo??true,OeAyLVB4z:visible11??props.OeAyLVB4z??true,S7K8LYCOp:subsMan??props.S7K8LYCOp??true,TNgoi_tuG:dashboard??props.TNgoi_tuG??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"z6KNWFkr4\",wQp0c216A:visible31??props.wQp0c216A??true,XSni0_9Vq:title??props.XSni0_9Vq??\"Toolkit for Subscription Apps \",Y6tllPjCL:color??props.Y6tllPjCL??\"rgb(0, 0, 0)\",YUUcAHcez:aSA??props.YUUcAHcez??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,eIDmspEEU,YUUcAHcez,FmePyhujp,S7K8LYCOp,h4apDVA1I,JZeyhd7hY,OeAyLVB4z,EPhcaGXaW,wQp0c216A,C4oU7LB2c,MgZAjfSSE,O4H_lBbBo,IJCDQVjyc,Y6tllPjCL,NR6ezWGMX,XSni0_9Vq,KNx5RJCnU,J2pvo2D5M,lEMtqzGza,TNgoi_tuG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"z6KNWFkr4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"QqsuxBCth\")return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"QqsuxBCth\")return false;return true;};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(scopingClassNames,\"framer-dbq3i3\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"z6KNWFkr4\",ref:refBinding,style:{backgroundColor:NR6ezWGMX,...style},...addPropertyOverrides({edXb9ldTT:{\"data-framer-name\":\"Tablet\"},QqsuxBCth:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z590lc\",\"data-framer-name\":\"Features\",layoutDependency:layoutDependency,layoutId:\"uB0rtxziw\",children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-17fzglu\",layoutDependency:layoutDependency,layoutId:\"B7w2D0gqB\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xh85xn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rsPFQyEbZ-container\",nodeId:\"rsPFQyEbZ\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"rsPFQyEbZ\",layoutId:\"rsPFQyEbZ\",padding:0,paddingBottom:20,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"var(--token-e3f42397-3791-44ce-9b85-9a083b9ec181, rgb(36, 40, 48))\",dotsGap:6,dotsInset:0,dotSize:6,dotsOpacity:.1,dotsPadding:0,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[OeAyLVB4z&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QJbvAP2wb\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tm1img-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"MXXbKq4mg-container\",nodeId:\"MXXbKq4mg\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/2Mg3cx6ifW3qS09MADFWE6SI.svg\"},\"\"),height:\"100%\",id:\"MXXbKq4mg\",layoutId:\"MXXbKq4mg\",style:{height:\"100%\",width:\"100%\"},uLQrp1aAj:\"Perform A/B experiments on paywalls to grow in-app subscriptions without requiring forced updates. Thanks to Remote Configs\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks[0],ZaapF8pB6:\"A/B Experiments\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"v6kwfZ36t\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w7v3y8-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"SRf3iBlGR-container\",nodeId:\"SRf3iBlGR\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/TCFnW2LlsLeGb6cDEgfkf500Op0.svg\"},\"\"),height:\"100%\",id:\"SRf3iBlGR\",layoutId:\"SRf3iBlGR\",style:{height:\"100%\",width:\"100%\"},uLQrp1aAj:\"Get in-depth real-time subscription analytics in 20 mins\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks1[0],ZaapF8pB6:\"Revenue Analytics\"})})})}),wQp0c216A&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hlIvwkwYT\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vq6wa8-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"lFzWkwqiv-container\",nodeId:\"lFzWkwqiv\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/mVU8lFx5vigOtIY5MNx8J6ceM.svg\"},\"\"),height:\"100%\",id:\"lFzWkwqiv\",layoutId:\"lFzWkwqiv\",style:{height:\"100%\",width:\"100%\"},uLQrp1aAj:\"Get a 360\\xb0 hawk's eye on your Apple Search Campaigns\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks2[0],ZaapF8pB6:\"Apple Search Ads\"})})})}),C4oU7LB2c&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NCcn1arHl\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vohiu6-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Iu_9yJkhr-container\",nodeId:\"Iu_9yJkhr\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/pMSTr9P1IAqBm0Pd8iYXbm5iyo.svg\"},\"\"),height:\"100%\",id:\"Iu_9yJkhr\",layoutId:\"Iu_9yJkhr\",style:{height:\"100%\",width:\"100%\"},uLQrp1aAj:\"Create stunning and custom paywalls easily\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks3[0],ZaapF8pB6:\"No-Code Paywalls\"})})})}),MgZAjfSSE&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lOqhmRUp9\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a5e6if-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"IJ9JCiriu-container\",nodeId:\"IJ9JCiriu\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/7DURD0I7sUlzQQ01Pu2OvVxKto.svg\"},\"\"),height:\"100%\",id:\"IJ9JCiriu\",layoutId:\"IJ9JCiriu\",style:{height:\"100%\",width:\"100%\"},uLQrp1aAj:\"Send subscriptions data to third-party tools and analyze like a pro\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks4[0],ZaapF8pB6:\"Integrations\"})})})}),O4H_lBbBo&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ExZrYPWQ7\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8gsybj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"skEuObkRB-container\",nodeId:\"skEuObkRB\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/HkOdreJlJgMkXWKkU8Of4jwCBRs.svg\"},\"\"),height:\"100%\",id:\"skEuObkRB\",layoutId:\"skEuObkRB\",style:{height:\"100%\",width:\"100%\"},uLQrp1aAj:\"Seamless and cost-effective solution for cross-platform subscriptions on iOS, Android, and the web\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks5[0],ZaapF8pB6:\"In-App Subscriptions Infrastructure\"})})})}),IJCDQVjyc&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:\"320px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sus5wi-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LAZdF4B5Y-container\",nodeId:\"LAZdF4B5Y\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:false,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/9XzGoAk8TA0WYhDFzFNAktrccw.svg\"},\"\"),height:\"100%\",id:\"LAZdF4B5Y\",layoutId:\"LAZdF4B5Y\",style:{height:\"100%\",width:\"100%\"},uLQrp1aAj:\"Try new paywalls, run A/B experiments, and update offerings without app releases\",uqopfeIxy:true,variant:\"dLmHvJhW3\",width:\"100%\",ZaapF8pB6:\"Remote Configs\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qjirip\",\"data-framer-name\":\"Frame 1948754866\",layoutDependency:layoutDependency,layoutId:\"p1bmIbjzU\",style:{transformPerspective:1200},...addPropertyOverrides({QqsuxBCth:{__framer__animateOnce:true,__framer__exit:undefined,__framer__threshold:0}},baseVariant,gestureVariant),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\":\"45px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-J2pvo2D5M-h5gUWH81h))\"},children:\"All-In-One Solution\"})}),className:\"framer-1g97qv6\",\"data-framer-name\":\"Focus on Growth.\\u2028We've got you covered\",fonts:[\"CUSTOM;Denim INK WD SemiBold\"],layoutDependency:layoutDependency,layoutId:\"fNmhBziLE\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-J2pvo2D5M-h5gUWH81h)\",\"--framer-paragraph-spacing\":\"20px\",\"--variable-reference-J2pvo2D5M-h5gUWH81h\":J2pvo2D5M},text:XSni0_9Vq,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QqsuxBCth:{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\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-J2pvo2D5M-h5gUWH81h))\"},children:\"All-In-One Solution\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1kwzv8d\",\"data-styles-preset\":\"II2TfB9z1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-Y6tllPjCL-h5gUWH81h))\"},children:\"Build, track, analyze, and grow in-app subscriptions for mobile apps with our powerful tools\"})}),className:\"framer-1i6sp50\",\"data-framer-name\":\"Meet Qonversion, your all-in-one subscription management solution. Build, track, analyze and grow in-app subscriptions for mobile apps with our powerful tools.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DWuf7zs87\",style:{\"--extracted-a0htzi\":\"var(--variable-reference-Y6tllPjCL-h5gUWH81h)\",\"--framer-paragraph-spacing\":\"20px\",\"--variable-reference-Y6tllPjCL-h5gUWH81h\":Y6tllPjCL},text:KNx5RJCnU,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QqsuxBCth:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qvmci1\",\"data-styles-preset\":\"vuztVCB_C\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-Y6tllPjCL-h5gUWH81h))\"},children:\"Build, track, analyze, and grow in-app subscriptions for mobile apps with our powerful tools\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11mmnp2\",layoutDependency:layoutDependency,layoutId:\"T2gEisWxd\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1xjp4wf\",\"data-framer-name\":\"Frame 1948754867\",layoutDependency:layoutDependency,layoutId:\"T8pp5_8i4\",style:{transformPerspective:1200},children:[EPhcaGXaW&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QJbvAP2wb\"},implicitPathVariables:undefined},{href:{webPageId:\"QJbvAP2wb\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1262)-200-1247)/2+0+0)+0+358+0+0+0+0,...addPropertyOverrides({edXb9ldTT:{width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1870)-200-1853)/2+0+0)+0+358+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14z90kv-container\",layoutDependency:layoutDependency,layoutId:\"md6vQaUCW-container\",nodeId:\"md6vQaUCW\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/2Mg3cx6ifW3qS09MADFWE6SI.svg\"},\"\"),height:\"100%\",id:\"md6vQaUCW\",layoutId:\"md6vQaUCW\",style:{width:\"100%\"},uLQrp1aAj:\"Perform A/B experiments on paywalls to grow in-app subscriptions without requiring forced updates\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks6[0],ZaapF8pB6:\"A/B Experiments\",...addPropertyOverrides({edXb9ldTT:{wvUP2BevT:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),eIDmspEEU&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"v6kwfZ36t\"},implicitPathVariables:undefined},{href:{webPageId:\"v6kwfZ36t\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1262)-200-1247)/2+0+0)+0+358+0+0+0+0,...addPropertyOverrides({edXb9ldTT:{width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1870)-200-1853)/2+0+0)+0+358+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17eqdrx-container\",layoutDependency:layoutDependency,layoutId:\"q5yA5wAJf-container\",nodeId:\"q5yA5wAJf\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/TCFnW2LlsLeGb6cDEgfkf500Op0.svg\"},\"\"),height:\"100%\",id:\"q5yA5wAJf\",layoutId:\"q5yA5wAJf\",style:{width:\"100%\"},uLQrp1aAj:\"Get in-depth real-time subscription analytics in 20 mins\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks7[0],ZaapF8pB6:\"Analytics\",...addPropertyOverrides({edXb9ldTT:{wvUP2BevT:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),YUUcAHcez&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hlIvwkwYT\"},implicitPathVariables:undefined},{href:{webPageId:\"hlIvwkwYT\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1262)-200-1247)/2+0+0)+0+358+0+0+0+0,...addPropertyOverrides({edXb9ldTT:{width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1870)-200-1853)/2+0+0)+0+358+0+0+0+303}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1udkh7j-container\",layoutDependency:layoutDependency,layoutId:\"vRtfb5VeB-container\",nodeId:\"vRtfb5VeB\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/mVU8lFx5vigOtIY5MNx8J6ceM.svg\"},\"\"),height:\"100%\",id:\"vRtfb5VeB\",layoutId:\"vRtfb5VeB\",style:{width:\"100%\"},uLQrp1aAj:\"Get a 360\\xb0 hawk's eye on your Apple Search campaigns\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks8[0],ZaapF8pB6:\"Apple Search Ads\",...addPropertyOverrides({edXb9ldTT:{wvUP2BevT:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),FmePyhujp&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I6xwvicH6\"},implicitPathVariables:undefined},{href:{webPageId:\"I6xwvicH6\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1262)-200-1247)/2+0+0)+0+358+0+0+0+303,...addPropertyOverrides({edXb9ldTT:{width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1870)-200-1853)/2+0+0)+0+358+0+0+0+303}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13vt00g-container\",layoutDependency:layoutDependency,layoutId:\"Y01OcOO4v-container\",nodeId:\"Y01OcOO4v\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/pMSTr9P1IAqBm0Pd8iYXbm5iyo.svg\"},\"\"),height:\"100%\",id:\"Y01OcOO4v\",layoutId:\"Y01OcOO4v\",style:{width:\"100%\"},uLQrp1aAj:\"Easily set up, manage, and test paywalls within your app without a single line of code with our intuitive builder\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks9[0],ZaapF8pB6:\"No-Code Paywalls\",...addPropertyOverrides({edXb9ldTT:{wvUP2BevT:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})}),S7K8LYCOp&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ExZrYPWQ7\"},implicitPathVariables:undefined},{href:{webPageId:\"ExZrYPWQ7\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1262)-200-1247)/2+0+0)+0+358+0+0+0+303,...addPropertyOverrides({edXb9ldTT:{width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1870)-200-1853)/2+0+0)+0+358+0+0+0+606}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fu3hgm-container\",layoutDependency:layoutDependency,layoutId:\"Ld31PzmnA-container\",nodeId:\"Ld31PzmnA\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/HkOdreJlJgMkXWKkU8Of4jwCBRs.svg\"},\"\"),height:\"100%\",id:\"Ld31PzmnA\",layoutId:\"Ld31PzmnA\",style:{width:\"100%\"},uLQrp1aAj:\"Seamless and cost-effective solution for cross-platform subscriptions on iOS, Android, and the web\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks10[0],ZaapF8pB6:\"In-App Subscriptions Infrastructure\",...addPropertyOverrides({edXb9ldTT:{wvUP2BevT:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})}),h4apDVA1I&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lOqhmRUp9\"},implicitPathVariables:undefined},{href:{webPageId:\"lOqhmRUp9\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1262)-200-1247)/2+0+0)+0+358+0+0+0+303,...addPropertyOverrides({edXb9ldTT:{width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1870)-200-1853)/2+0+0)+0+358+0+0+0+606}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14xxylp-container\",layoutDependency:layoutDependency,layoutId:\"Lb4bvMxS7-container\",nodeId:\"Lb4bvMxS7\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/7DURD0I7sUlzQQ01Pu2OvVxKto.svg\"},\"\"),height:\"100%\",id:\"Lb4bvMxS7\",layoutId:\"Lb4bvMxS7\",style:{width:\"100%\"},uLQrp1aAj:\"Send subscription data to third-party tools and analyze it like a pro\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks11[0],ZaapF8pB6:\"Integrations\",...addPropertyOverrides({edXb9ldTT:{wvUP2BevT:resolvedLinks11[1]}},baseVariant,gestureVariant)})})})}),JZeyhd7hY&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UR3lRa7WA\"},implicitPathVariables:undefined},{href:{webPageId:\"UR3lRa7WA\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1262)-200-1247)/2+0+0)+0+358+0+0+0+606,...addPropertyOverrides({edXb9ldTT:{width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1870)-200-1853)/2+0+0)+0+358+0+0+0+909}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nsyg8o-container\",layoutDependency:layoutDependency,layoutId:\"P6uFivy7o-container\",nodeId:\"P6uFivy7o\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/9XzGoAk8TA0WYhDFzFNAktrccw.svg\"},\"\"),height:\"100%\",id:\"P6uFivy7o\",layoutId:\"P6uFivy7o\",style:{width:\"100%\"},uLQrp1aAj:\"Try new paywalls, run A/B experiments, and update offerings without app releases\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks12[0],ZaapF8pB6:\"Remote Configs\",...addPropertyOverrides({edXb9ldTT:{wvUP2BevT:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})}),TNgoi_tuG&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pYaCXjoE4\"},implicitPathVariables:undefined},{href:{webPageId:\"pYaCXjoE4\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1262)-200-1247)/2+0+0)+0+358+0+0+0+606,...addPropertyOverrides({edXb9ldTT:{width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1870)-200-1853)/2+0+0)+0+358+0+0+0+909}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18k9jod-container\",layoutDependency:layoutDependency,layoutId:\"Jn49emGJc-container\",nodeId:\"Jn49emGJc\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/9XzGoAk8TA0WYhDFzFNAktrccw.svg\"},\"\"),height:\"100%\",id:\"Jn49emGJc\",layoutId:\"Jn49emGJc\",style:{width:\"100%\"},uLQrp1aAj:\"Get a crystal-clear view of your app\u2019s key metrics in real-time\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks13[0],ZaapF8pB6:\"Real-Time Dahboard\",...addPropertyOverrides({edXb9ldTT:{wvUP2BevT:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})}),lEMtqzGza&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"o7hdZONhP\"},implicitPathVariables:undefined},{href:{webPageId:\"o7hdZONhP\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1262)-200-1247)/2+0+0)+0+358+0+0+0+606,...addPropertyOverrides({edXb9ldTT:{width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1070px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1870)-200-1853)/2+0+0)+0+358+0+0+0+1212}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fot17l-container\",layoutDependency:layoutDependency,layoutId:\"Gh0Ze2ljJ-container\",nodeId:\"Gh0Ze2ljJ\",rendersWithMotion:true,scopeId:\"h5gUWH81h\",children:/*#__PURE__*/_jsx(CardSolution,{D7kBMp5wY:\"center\",gComTvbBr:true,gVUGerxfz:addImageAlt({pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/HuqG2rlZoF2IghyKpfNjDIJ03c.svg\"},\"\"),height:\"100%\",id:\"Gh0Ze2ljJ\",layoutId:\"Gh0Ze2ljJ\",style:{width:\"100%\"},uLQrp1aAj:\"All your cross-platform customer data in one place. From purchase histories to promotional subscriptions\",uqopfeIxy:false,variant:\"dLmHvJhW3\",width:\"100%\",wvUP2BevT:resolvedLinks14[0],ZaapF8pB6:\"Customer CRM\",...addPropertyOverrides({edXb9ldTT:{wvUP2BevT:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uhw89.framer-skpnp2, .framer-uhw89 .framer-skpnp2 { display: block; }\",\".framer-uhw89.framer-dbq3i3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 1512px; }\",\".framer-uhw89 .framer-z590lc { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uhw89 .framer-17fzglu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 340px; }\",\".framer-uhw89 .framer-xh85xn-container { flex: none; height: auto; position: relative; width: 320px; }\",\".framer-uhw89 .framer-1tm1img-container, .framer-uhw89 .framer-1w7v3y8-container, .framer-uhw89 .framer-vq6wa8-container, .framer-uhw89 .framer-1vohiu6-container, .framer-uhw89 .framer-1a5e6if-container, .framer-uhw89 .framer-8gsybj-container, .framer-uhw89 .framer-1sus5wi-container { height: 290px; position: relative; width: 320px; }\",\".framer-uhw89 .framer-qjirip { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uhw89 .framer-1g97qv6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uhw89 .framer-1i6sp50 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 752px; word-break: break-word; word-wrap: break-word; }\",\".framer-uhw89 .framer-11mmnp2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uhw89 .framer-1xjp4wf { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uhw89 .framer-14z90kv-container, .framer-uhw89 .framer-17eqdrx-container, .framer-uhw89 .framer-1udkh7j-container, .framer-uhw89 .framer-13vt00g-container, .framer-uhw89 .framer-fu3hgm-container, .framer-uhw89 .framer-14xxylp-container, .framer-uhw89 .framer-nsyg8o-container, .framer-uhw89 .framer-18k9jod-container, .framer-uhw89 .framer-fot17l-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-uhw89.framer-v-13rj5tm.framer-dbq3i3 { width: 810px; }\",\".framer-uhw89.framer-v-13rj5tm .framer-1i6sp50, .framer-uhw89.framer-v-f09yr7 .framer-1i6sp50 { width: 100%; }\",\".framer-uhw89.framer-v-13rj5tm .framer-1xjp4wf { grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }\",\".framer-uhw89.framer-v-f09yr7.framer-dbq3i3 { gap: 0px; padding: 60px 40px 60px 40px; width: 400px; }\",\".framer-uhw89.framer-v-f09yr7 .framer-z590lc { overflow: visible; }\",\".framer-uhw89.framer-v-f09yr7 .framer-17fzglu { order: 1; }\",\".framer-uhw89.framer-v-f09yr7 .framer-qjirip { gap: 10px; order: 0; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1262\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"edXb9ldTT\":{\"layout\":[\"fixed\",\"auto\"]},\"QqsuxBCth\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eIDmspEEU\":\"analytics\",\"YUUcAHcez\":\"aSA\",\"FmePyhujp\":\"noCode\",\"S7K8LYCOp\":\"subsMan\",\"h4apDVA1I\":\"integrations\",\"JZeyhd7hY\":\"remoteConfigs\",\"OeAyLVB4z\":\"visible11\",\"EPhcaGXaW\":\"aB\",\"wQp0c216A\":\"visible31\",\"C4oU7LB2c\":\"visible41\",\"MgZAjfSSE\":\"visible51\",\"O4H_lBbBo\":\"visible61\",\"IJCDQVjyc\":\"visible71\",\"Y6tllPjCL\":\"color\",\"NR6ezWGMX\":\"background\",\"XSni0_9Vq\":\"title\",\"KNx5RJCnU\":\"description\",\"J2pvo2D5M\":\"color2\",\"lEMtqzGza\":\"customerCRM\",\"TNgoi_tuG\":\"dashboard\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerh5gUWH81h=withCSS(Component,css,\"framer-uhw89\");export default Framerh5gUWH81h;Framerh5gUWH81h.displayName=\"All-in-one Block\";Framerh5gUWH81h.defaultProps={height:1262,width:1512};addPropertyControls(Framerh5gUWH81h,{variant:{options:[\"z6KNWFkr4\",\"edXb9ldTT\",\"QqsuxBCth\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},eIDmspEEU:{defaultValue:true,title:\"Analytics\",type:ControlType.Boolean},YUUcAHcez:{defaultValue:true,title:\"ASA\",type:ControlType.Boolean},FmePyhujp:{defaultValue:true,title:\"No-Code\",type:ControlType.Boolean},S7K8LYCOp:{defaultValue:true,title:\"SubsMan\",type:ControlType.Boolean},h4apDVA1I:{defaultValue:true,title:\"Integrations\",type:ControlType.Boolean},JZeyhd7hY:{defaultValue:true,title:\"Remote Configs\",type:ControlType.Boolean},OeAyLVB4z:{defaultValue:true,title:\"Visible1.1\",type:ControlType.Boolean},EPhcaGXaW:{defaultValue:true,title:\"A/B\",type:ControlType.Boolean},wQp0c216A:{defaultValue:true,title:\"Visible3.1\",type:ControlType.Boolean},C4oU7LB2c:{defaultValue:true,title:\"Visible4.1\",type:ControlType.Boolean},MgZAjfSSE:{defaultValue:true,title:\"Visible5.1\",type:ControlType.Boolean},O4H_lBbBo:{defaultValue:true,title:\"Visible6.1\",type:ControlType.Boolean},IJCDQVjyc:{defaultValue:true,title:\"Visible7.1\",type:ControlType.Boolean},Y6tllPjCL:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color},NR6ezWGMX:{defaultValue:\"var(--token-f59bf36d-1ef9-4d92-af9e-4fff460f4d01, rgb(207, 225, 225))\",title:\"Background\",type:ControlType.Color},XSni0_9Vq:{defaultValue:\"Toolkit for Subscription Apps \",displayTextArea:false,title:\"Title\",type:ControlType.String},KNx5RJCnU:{defaultValue:\"Build, track, analyze, and grow in-app subscriptions for mobile apps with our powerful tools\",displayTextArea:true,title:\"Description\",type:ControlType.String},J2pvo2D5M:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color 2\",type:ControlType.Color},lEMtqzGza:{defaultValue:true,title:\"customer CRM\",type:ControlType.Boolean},TNgoi_tuG:{defaultValue:true,title:\"Dashboard\",type:ControlType.Boolean}});addFonts(Framerh5gUWH81h,[{explicitInter:true,fonts:[{family:\"Denim INK WD SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/q21mEeWodYgE37AFEPCsecvtn8.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...CardSolutionFonts,...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh5gUWH81h\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1262\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"edXb9ldTT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QqsuxBCth\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1512\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"eIDmspEEU\\\":\\\"analytics\\\",\\\"YUUcAHcez\\\":\\\"aSA\\\",\\\"FmePyhujp\\\":\\\"noCode\\\",\\\"S7K8LYCOp\\\":\\\"subsMan\\\",\\\"h4apDVA1I\\\":\\\"integrations\\\",\\\"JZeyhd7hY\\\":\\\"remoteConfigs\\\",\\\"OeAyLVB4z\\\":\\\"visible11\\\",\\\"EPhcaGXaW\\\":\\\"aB\\\",\\\"wQp0c216A\\\":\\\"visible31\\\",\\\"C4oU7LB2c\\\":\\\"visible41\\\",\\\"MgZAjfSSE\\\":\\\"visible51\\\",\\\"O4H_lBbBo\\\":\\\"visible61\\\",\\\"IJCDQVjyc\\\":\\\"visible71\\\",\\\"Y6tllPjCL\\\":\\\"color\\\",\\\"NR6ezWGMX\\\":\\\"background\\\",\\\"XSni0_9Vq\\\":\\\"title\\\",\\\"KNx5RJCnU\\\":\\\"description\\\",\\\"J2pvo2D5M\\\":\\\"color2\\\",\\\"lEMtqzGza\\\":\\\"customerCRM\\\",\\\"TNgoi_tuG\\\":\\\"dashboard\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./h5gUWH81h.map"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "MotionAWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "button", "distribute", "height", "icon", "id", "link", "soon", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gVUGerxfz", "ZaapF8pB6", "uLQrp1aAj", "gComTvbBr", "uqopfeIxy", "wvUP2BevT", "D7kBMp5wY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText", "SVG", "css", "FrameryC7YChShz", "withCSS", "yC7YChShz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CardSolutionFonts", "getFonts", "yC7YChShz_default", "CarouselFonts", "Carousel", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "addImageAlt", "image", "alt", "animation1", "animation2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "aB", "analytics", "aSA", "background", "color", "color2", "customerCRM", "dashboard", "description", "height", "id", "integrations", "noCode", "remoteConfigs", "subsMan", "title", "visible11", "visible31", "visible41", "visible51", "visible61", "visible71", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "eIDmspEEU", "YUUcAHcez", "FmePyhujp", "S7K8LYCOp", "h4apDVA1I", "JZeyhd7hY", "OeAyLVB4z", "EPhcaGXaW", "wQp0c216A", "C4oU7LB2c", "MgZAjfSSE", "O4H_lBbBo", "IJCDQVjyc", "Y6tllPjCL", "NR6ezWGMX", "XSni0_9Vq", "KNx5RJCnU", "J2pvo2D5M", "lEMtqzGza", "TNgoi_tuG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "RichText", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "css", "Framerh5gUWH81h", "withCSS", "h5gUWH81h_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
