{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bwgDNfOkuRQlrlKseDFD/SlideShow.js", "ssg:https://framerusercontent.com/modules/AQibp04zvCUfkK8jGQwk/X22ROtZrAS7Hwm2DaGpw/Qi2gVC5bo-0.js", "ssg:https://framerusercontent.com/modules/AQibp04zvCUfkK8jGQwk/X22ROtZrAS7Hwm2DaGpw/Qi2gVC5bo-1.js", "ssg:https://framerusercontent.com/modules/AQibp04zvCUfkK8jGQwk/X22ROtZrAS7Hwm2DaGpw/Qi2gVC5bo.js", "ssg:https://framerusercontent.com/modules/irr0KAtNEFSotQNPiDzx/G1YctVdTJV1sRnwlwUS8/kxq0Y3EOS.js", "ssg:https://framerusercontent.com/modules/oM9EjE4yjAtYU9WmoakJ/rNr9d0Ug3eDfMpoPy0TO/Qi2gVC5bo.js", "ssg:https://framerusercontent.com/modules/PnyTaHPe6NiWJa14vGUk/5w13mkWIAmL8nYB9K9pg/nS1OerWIK.js", "ssg:https://framerusercontent.com/modules/ssFUMtcGusDGcLABvnRl/GRJYfMEvbhGd1MHfTdiI/VrP6Oh05f.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Slideshow(props){/**\n     * Properties\n     */ const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */ const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */ const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */ const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */ const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */ const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */ useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */ const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */ const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */ const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */ const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */ const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */ const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */ useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */ // if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */ if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing,]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     */ /* Next and previous function, animates the X */ const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */ const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */ const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200 // Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */ const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch */ /* For velocity use only */ const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */ if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */ if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */ useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */ let childCounter=0;/**\n     * Sizing\n     * */ let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */ for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/ _jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */ const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/ _jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:effectsPerspective},children:/*#__PURE__*/ _jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/ _jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});};/* Default Properties */ Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */ addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\",],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\",],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */ const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */ const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */ const Slide=/*#__PURE__*/ forwardRef(function Component(props,ref){var ref1,ref2;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */ const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent,].map(val=>val-childOffset);/**\n     * Effects\n     */ const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate,]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate,]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity,]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale,]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{ref.current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/ cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0}},(ref2=child.props)===null||ref2===void 0?void 0:ref2.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item */ /* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */ let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */ if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "export const v0=\"Ge-automatiseerde marketing\";export const v1=\"Stimuleer herhaalaankopen met geautomatiseerde retentie-, loyaliteits- en promotieflows ~  allemaal gekoppeld aan uw promotie-engine.\";export const v2=\"Loyaliteit & referrals\";export const v3=\"Maak van klanten vaste bezoekers met op maat gemaakte loyaliteits- en referentieprogramma\u2019s. Creer beloningen, niveaus en extra\u2019s online of offline. Verenig jouw klantenbeleving.\";export const v4=\"Cadeaukaarten & Tegoedbonnen\";export const v5=\"Verhoog de verkoop, zet je cashflow vast,  en zorg dat klanten terugkomen door middel van cadeaubonnen, vouchers en abonnementen ~ volledig ge\\xefntegreerd en klaar voor gebruik, online of offline.\";export const v6=\"A/B-tests en rapporten\";export const v7=\"Perfectioneer je klantenervaring met gesimplificeerde inzichten. Test, verfijn, en begrijp wat loyaliteit aandrijft met aangepaste rapportages op basis van jouw doelen.\";\nexport const __FramerMetadata__ = {\"exports\":{\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Marketing automatis\\xe9\";export const v1=\"Augmentez les achats r\\xe9currents gr\\xe2ce \\xe0 des flux automatis\\xe9s de fid\\xe9lisation, de r\\xe9tention et de promotions ~ tous connect\\xe9s \\xe0 votre moteur promotionnel.\";export const v2=\"Fid\\xe9lit\\xe9 & parrainage\";export const v3=\"Transformez vos clients en habitu\\xe9s avec des programmes de fid\\xe9lit\\xe9 et de parrainage personnalis\\xe9s. R\\xe9compenses, niveaux et avantages ~ en ligne ou en magasin. Une exp\\xe9rience client unifi\\xe9e.\";export const v4=\"Cartes cadeaux & bons d\u2019achat\";export const v5=\"Augmentez vos ventes, s\\xe9curisez votre tr\\xe9sorerie et fid\\xe9lisez vos clients avec des cartes cadeaux, des bons et des abonnements ~ enti\\xe8rement int\\xe9gr\\xe9s et pr\\xeats \\xe0 l\u2019emploi, en ligne comme en magasin.\";export const v6=\"Tests A/B & rapports\";export const v7=\"Optimisez votre exp\\xe9rience client avec des analyses simplifi\\xe9es. Testez, ajustez et comprenez ce qui stimule la fid\\xe9lit\\xe9 gr\\xe2ce \\xe0 des rapports personnalis\\xe9s bas\\xe9s sur vos objectifs.\";\nexport const __FramerMetadata__ = {\"exports\":{\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport*as localizedValues from\"./Qi2gVC5bo-0.js\";import*as localizedValues1 from\"./Qi2gVC5bo-1.js\";const valuesByLocaleId={pummsqtLu:localizedValues,ytbr1g4ye:localizedValues1};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";import IconNew from\"https://framerusercontent.com/modules/gcpN5ko8R3RIS6sEtGyx/bQSKRdp9K7SprTxAvcqJ/CkkbKUPpL.js\";const IconNewFonts=getFonts(IconNew);const VideoFonts=getFonts(Video);const IconNewControls=getPropertyControls(IconNew);const Video1Controls=getPropertyControls(Video1);const enabledGestures={bGziWybF0:{hover:true}};const cycleOrder=[\"bGziWybF0\",\"mYR7eTyuM\"];const serializationHash=\"framer-B4667\";const variantClassNames={bGziWybF0:\"framer-v-1obpoqj\",mYR7eTyuM:\"framer-v-wh1pxa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};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 humanReadableEnumMap={\"Calculator blue\":\"P_GXv7pq7\",\"Controller blue\":\"G9PYAPNsZ\",\"Crown blue\":\"m4B1udUKg\",\"Email check blue\":\"z0mOX1qIb\",\"Email check\":\"zCZbZtmln\",\"Form blue\":\"Zuq3pmgJc\",\"Gift blue\":\"Y2sYdYvBi\",\"Graph 1 blue\":\"yHwakReCN\",\"Graph 1\":\"BpyiLRL6r\",\"Graph 2 blue\":\"kUcj5rjiK\",\"Graph 2\":\"UT9hGVFj4\",\"Omnichannel.blue\":\"cJsZSQQ56\",\"Package blue\":\"BP3CMXJoK\",\"Paint brush blue\":\"LmsqZs1TH\",\"People blue\":\"DuYFiWb7J\",\"Rocket blue\":\"Nz_4lTxxo\",\"Speak blue\":\"v4pBwFsab\",\"Test tube blue\":\"zyogR1clo\",\"Test tube\":\"BRDZEi7Vd\",\"Thunder blue\":\"ajAaidBlN\",\"Ticket blue\":\"A8lfqt1D_\",\"voucher check blue\":\"hjMO0S6x9\",\"voucher check\":\"ujgPWqwvi\",Calculator:\"JWOCPObWf\",Controller:\"AzhZQaBws\",Crown:\"I699:14804;699:13521;699:13504\",Form:\"SLdq7t1nm\",Gift:\"neSIhME5M\",Omnichannel:\"g23DuRuN9\",Package:\"Z6KmCvkzl\",Paintbrush:\"ik3FZsSLH\",People:\"wtEkjWw3n\",Rocket:\"Fr7XoPpwR\",Speak:\"gaHDwAach\",Thunder:\"ixIbkJa0r\",Ticket:\"zs3XdItd8\"};const humanReadableVariantMap={Closed:\"bGziWybF0\",Open:\"mYR7eTyuM\"};const getProps=({click,height,iconType,id,textItem,titleItem,video,width,...props})=>{return{...props,cL8Jlb_FT:click??props.cL8Jlb_FT,GS4BYJK9D:video??props.GS4BYJK9D??\"https://framerusercontent.com/assets/3MrWnr9yAMshccDVgGFQ7vnynM.mp4\",HH75DyQIX:textItem??props.HH75DyQIX??\"Set it, forget it, and let the data do the work. Trigger emails based on real-time interactions ~ fully synced with loyalty, promotions, and CRM.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"bGziWybF0\",Y9KUM8Pg3:humanReadableEnumMap[iconType]??iconType??props.Y9KUM8Pg3??\"I699:14804;699:13521;699:13504\",zmBzpVkMU:titleItem??props.zmBzpVkMU??\"Loyalty & referrals\"};};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,zmBzpVkMU,HH75DyQIX,Y9KUM8Pg3,cL8Jlb_FT,GS4BYJK9D,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bGziWybF0\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapzqa8jz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(cL8Jlb_FT){const res=await cL8Jlb_FT(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"mYR7eTyuM\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1obpoqj\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bGziWybF0\",onTap:onTapzqa8jz,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(17, 17, 17)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{\"bGziWybF0-hover\":{backgroundColor:\"rgba(56, 26, 18, 0.08)\"}},...addPropertyOverrides({\"bGziWybF0-hover\":{\"data-framer-name\":undefined},mYR7eTyuM:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y4p3xx\",layoutDependency:layoutDependency,layoutId:\"Ecfajwdjm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1okrhl0\",\"data-framer-name\":\"Frame 4464\",layoutDependency:layoutDependency,layoutId:\"OVM3OZYyx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:(componentViewport?.y||0)+16+0+0+0,...addPropertyOverrides({mYR7eTyuM:{y:(componentViewport?.y||0)+16+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x0zhjo-container\",layoutDependency:layoutDependency,layoutId:\"WsxD3BCqr-container\",nodeId:\"WsxD3BCqr\",rendersWithMotion:true,scopeId:\"kxq0Y3EOS\",children:/*#__PURE__*/_jsx(IconNew,{height:\"100%\",id:\"WsxD3BCqr\",layoutId:\"WsxD3BCqr\",style:{height:\"100%\",width:\"100%\"},variant:Y9KUM8Pg3,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 17))\"},children:\"Loyalty & referrals\"})}),className:\"framer-17u5b9x\",\"data-framer-name\":\"Feature Heading\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"IclNVl_hi\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 17)\",\"--framer-paragraph-spacing\":\"0px\"},text:zmBzpVkMU,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-onij2k\",\"data-framer-name\":\"Frame 4445\",layoutDependency:layoutDependency,layoutId:\"tz9aWTnlj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 17))\"},children:\"Set it, forget it, and let the data do the work. Trigger emails based on real-time interactions ~ fully synced with loyalty, promotions, and CRM.\"})}),className:\"framer-85fjqm\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Geist-300\"],layoutDependency:layoutDependency,layoutId:\"N1WaC1634\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 17)\",\"--framer-paragraph-spacing\":\"0px\"},text:HH75DyQIX,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-117d679-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"MwnFM6LT9-container\",nodeId:\"MwnFM6LT9\",rendersWithMotion:true,scopeId:\"kxq0Y3EOS\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"MwnFM6LT9\",isMixedBorderRadius:false,layoutId:\"MwnFM6LT9\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:GS4BYJK9D,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B4667.framer-rjzf65, .framer-B4667 .framer-rjzf65 { display: block; }\",\".framer-B4667.framer-1obpoqj { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 520px; }\",\".framer-B4667 .framer-1y4p3xx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-B4667 .framer-1okrhl0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 520px; }\",\".framer-B4667 .framer-1x0zhjo-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-B4667 .framer-17u5b9x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-B4667 .framer-onij2k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 48px; position: relative; width: 1px; }\",\".framer-B4667 .framer-85fjqm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-B4667 .framer-117d679-container { aspect-ratio: 1.6009615384615385 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 125px); position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B4667.framer-1obpoqj, .framer-B4667 .framer-1y4p3xx, .framer-B4667 .framer-1okrhl0, .framer-B4667 .framer-onij2k { gap: 0px; } .framer-B4667.framer-1obpoqj > *, .framer-B4667 .framer-onij2k > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-B4667.framer-1obpoqj > :first-child, .framer-B4667 .framer-onij2k > :first-child { margin-top: 0px; } .framer-B4667.framer-1obpoqj > :last-child, .framer-B4667 .framer-onij2k > :last-child { margin-bottom: 0px; } .framer-B4667 .framer-1y4p3xx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-B4667 .framer-1y4p3xx > :first-child, .framer-B4667 .framer-1okrhl0 > :first-child { margin-left: 0px; } .framer-B4667 .framer-1y4p3xx > :last-child, .framer-B4667 .framer-1okrhl0 > :last-child { margin-right: 0px; } .framer-B4667 .framer-1okrhl0 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-B4667.framer-v-wh1pxa.framer-1obpoqj { gap: 14px; padding: 16px 0px 24px 0px; }\",\".framer-B4667.framer-v-wh1pxa .framer-1y4p3xx { flex-direction: column; gap: 8px; width: 100%; }\",\".framer-B4667.framer-v-wh1pxa .framer-1okrhl0 { width: 100%; }\",\".framer-B4667.framer-v-wh1pxa .framer-onij2k { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B4667.framer-v-wh1pxa.framer-1obpoqj, .framer-B4667.framer-v-wh1pxa .framer-1y4p3xx { gap: 0px; } .framer-B4667.framer-v-wh1pxa.framer-1obpoqj > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-B4667.framer-v-wh1pxa.framer-1obpoqj > :first-child, .framer-B4667.framer-v-wh1pxa .framer-1y4p3xx > :first-child { margin-top: 0px; } .framer-B4667.framer-v-wh1pxa.framer-1obpoqj > :last-child, .framer-B4667.framer-v-wh1pxa .framer-1y4p3xx > :last-child { margin-bottom: 0px; } .framer-B4667.framer-v-wh1pxa .framer-1y4p3xx > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",'.framer-B4667[data-border=\"true\"]::after, .framer-B4667 [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 64\n * @framerIntrinsicWidth 520\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mYR7eTyuM\":{\"layout\":[\"fixed\",\"auto\"]},\"mxqCqBohO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zmBzpVkMU\":\"titleItem\",\"HH75DyQIX\":\"textItem\",\"Y9KUM8Pg3\":\"iconType\",\"cL8Jlb_FT\":\"click\",\"GS4BYJK9D\":\"video\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerkxq0Y3EOS=withCSS(Component,css,\"framer-B4667\");export default Framerkxq0Y3EOS;Framerkxq0Y3EOS.displayName=\"Feature block item phone\";Framerkxq0Y3EOS.defaultProps={height:64,width:520};addPropertyControls(Framerkxq0Y3EOS,{variant:{options:[\"bGziWybF0\",\"mYR7eTyuM\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},zmBzpVkMU:{defaultValue:\"Loyalty & referrals\",displayTextArea:false,title:\"Title item\",type:ControlType.String},HH75DyQIX:{defaultValue:\"Set it, forget it, and let the data do the work. Trigger emails based on real-time interactions ~ fully synced with loyalty, promotions, and CRM.\",displayTextArea:false,title:\"Text item\",type:ControlType.String},Y9KUM8Pg3:IconNewControls?.[\"variant\"]&&{...IconNewControls[\"variant\"],defaultValue:\"I699:14804;699:13521;699:13504\",description:undefined,hidden:undefined,title:\"Icon type\"},cL8Jlb_FT:{title:\"Click\",type:ControlType.EventHandler},GS4BYJK9D:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,3MrWnr9yAMshccDVgGFQ7vnynM.mp4?originalFilename=Marketing%26Automation1.mp4\",description:undefined,hidden:undefined,title:\"Video\"}});addFonts(Framerkxq0Y3EOS,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RwuM4mJPby1QNtA.woff2\",weight:\"300\"}]},...IconNewFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerkxq0Y3EOS\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"520\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerVariables\":\"{\\\"zmBzpVkMU\\\":\\\"titleItem\\\",\\\"HH75DyQIX\\\":\\\"textItem\\\",\\\"Y9KUM8Pg3\\\":\\\"iconType\\\",\\\"cL8Jlb_FT\\\":\\\"click\\\",\\\"GS4BYJK9D\\\":\\\"video\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mYR7eTyuM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mxqCqBohO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kxq0Y3EOS.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/AQibp04zvCUfkK8jGQwk/X22ROtZrAS7Hwm2DaGpw/Qi2gVC5bo.js\";import FeatureBlockItemPhone from\"https://framerusercontent.com/modules/irr0KAtNEFSotQNPiDzx/G1YctVdTJV1sRnwlwUS8/kxq0Y3EOS.js\";const FeatureBlockItemPhoneFonts=getFonts(FeatureBlockItemPhone);const cycleOrder=[\"fbPNauv1b\",\"e8Q4qbwHH\",\"Ld6KmqtnI\",\"Kj9iXlNTx\"];const serializationHash=\"framer-grTZR\";const variantClassNames={e8Q4qbwHH:\"framer-v-kvpwv2\",fbPNauv1b:\"framer-v-i14jo6\",Kj9iXlNTx:\"framer-v-1c4q5ol\",Ld6KmqtnI:\"framer-v-rfaog3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.7,type:\"spring\"};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={\"Variant 1\":\"fbPNauv1b\",\"Variant 2\":\"e8Q4qbwHH\",\"Variant 3\":\"Ld6KmqtnI\",\"Variant 4\":\"Kj9iXlNTx\"};const getProps=({heading,height,id,width,...props})=>{return{...props,ULuDWpRKr:heading??props.ULuDWpRKr??\"Powerful features, all in one platform.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"fbPNauv1b\"};};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,ULuDWpRKr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fbPNauv1b\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear16gh846=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"e8Q4qbwHH\"),29e3);});const onAppear2fw5hd=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Ld6KmqtnI\"),31e3);});const onAppearq0zn0j=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Kj9iXlNTx\"),29e3);});const onAppear565owq=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fbPNauv1b\"),39410);});const cL8Jlb_FTy1gosk=activeVariantCallback(async(...args)=>{setVariant(\"fbPNauv1b\");});const cL8Jlb_FT1ed5wzb=activeVariantCallback(async(...args)=>{setVariant(\"e8Q4qbwHH\");});const cL8Jlb_FTie603e=activeVariantCallback(async(...args)=>{setVariant(\"Ld6KmqtnI\");});const cL8Jlb_FT10k9515=activeVariantCallback(async(...args)=>{setVariant(\"Kj9iXlNTx\");});useOnVariantChange(baseVariant,{default:onAppear16gh846,e8Q4qbwHH:onAppear2fw5hd,Kj9iXlNTx:onAppear565owq,Ld6KmqtnI:onAppearq0zn0j});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-i14jo6\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fbPNauv1b\",ref:refBinding,style:{...style},...addPropertyOverrides({e8Q4qbwHH:{\"data-framer-name\":\"Variant 2\"},Kj9iXlNTx:{\"data-framer-name\":\"Variant 4\"},Ld6KmqtnI:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bbxv4i\",\"data-framer-name\":\"Title + features\",layoutDependency:layoutDependency,layoutId:\"leDhOlzy6\",children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBSZWd1bGFy\",\"--framer-font-family\":'\"Jokker Regular\", \"Jokker Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 17))\"},children:\"Powerful features, all in one platform.\"})}),className:\"framer-3j51nl\",\"data-framer-name\":\"Headings\",fonts:[\"CUSTOM;Jokker Regular\"],layoutDependency:layoutDependency,layoutId:\"dd2dd0K6w\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 17)\",\"--framer-paragraph-spacing\":\"0px\"},text:ULuDWpRKr,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a83hwt\",layoutDependency:layoutDependency,layoutId:\"wdRGzneFh\",children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+290+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jbq3mr-container\",layoutDependency:layoutDependency,layoutId:\"hS2cr4Fdt-container\",nodeId:\"hS2cr4Fdt\",rendersWithMotion:true,scopeId:\"Qi2gVC5bo\",children:/*#__PURE__*/_jsx(FeatureBlockItemPhone,{cL8Jlb_FT:cL8Jlb_FTy1gosk,height:\"100%\",HH75DyQIX:getLocalizedValue(\"v1\",activeLocale)??\"Set it, forget it, and let the data do the work. Trigger emails based on real-time interactions ~ fully synced with loyalty, promotions, and CRM.\",id:\"hS2cr4Fdt\",layoutId:\"hS2cr4Fdt\",style:{width:\"100%\"},variant:\"mYR7eTyuM\",width:\"100%\",Y9KUM8Pg3:\"ajAaidBlN\",zmBzpVkMU:getLocalizedValue(\"v0\",activeLocale)??\"Automated marketing\",...addPropertyOverrides({e8Q4qbwHH:{variant:\"bGziWybF0\",Y9KUM8Pg3:\"ixIbkJa0r\"},Kj9iXlNTx:{variant:\"bGziWybF0\",Y9KUM8Pg3:\"ixIbkJa0r\"},Ld6KmqtnI:{variant:\"bGziWybF0\",Y9KUM8Pg3:\"ixIbkJa0r\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+290+0+84,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ya86zw-container\",layoutDependency:layoutDependency,layoutId:\"mDSuwQ67M-container\",nodeId:\"mDSuwQ67M\",rendersWithMotion:true,scopeId:\"Qi2gVC5bo\",children:/*#__PURE__*/_jsx(FeatureBlockItemPhone,{cL8Jlb_FT:cL8Jlb_FT1ed5wzb,height:\"100%\",HH75DyQIX:getLocalizedValue(\"v3\",activeLocale)??\"Turn customers into regulars with custom loyalty and referral programs. Rewards, tiers, and perks ~ online or in-store, all seamlessly connected.\",id:\"mDSuwQ67M\",layoutId:\"mDSuwQ67M\",style:{width:\"100%\"},variant:\"bGziWybF0\",width:\"100%\",Y9KUM8Pg3:\"I699:14804;699:13521;699:13504\",zmBzpVkMU:getLocalizedValue(\"v2\",activeLocale)??\"Loyalty & referrals\",...addPropertyOverrides({e8Q4qbwHH:{GS4BYJK9D:\"https://framerusercontent.com/assets/oJ1xsP7LN0oVB5wYpbE9rg2lRqk.mp4\",HH75DyQIX:\"Turn customers into regulars with custom loyalty and referral programs. Rewards, tiers, and perks ~ online or in-store, all seamlessly connected.\",variant:\"mYR7eTyuM\",Y9KUM8Pg3:\"m4B1udUKg\"},Kj9iXlNTx:{HH75DyQIX:\"Turn customers into regulars with custom loyalty and referral programs. Rewards, tiers, and perks ~ online or in-store, all seamlessly connected.\"},Ld6KmqtnI:{HH75DyQIX:\"Turn customers into regulars with custom loyalty and referral programs. Rewards, tiers, and perks ~ online or in-store, all seamlessly connected.\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+290+0+168,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rmupt3-container\",layoutDependency:layoutDependency,layoutId:\"A4jUQcfkn-container\",nodeId:\"A4jUQcfkn\",rendersWithMotion:true,scopeId:\"Qi2gVC5bo\",children:/*#__PURE__*/_jsx(FeatureBlockItemPhone,{cL8Jlb_FT:cL8Jlb_FTie603e,height:\"100%\",HH75DyQIX:getLocalizedValue(\"v5\",activeLocale)??\"Boost sales, lock in loyalty, and keep cash flow steady. Gift cards, vouchers, and subscriptions ~ fully integrated and ready to go, online or offline.\",id:\"A4jUQcfkn\",layoutId:\"A4jUQcfkn\",style:{width:\"100%\"},variant:\"bGziWybF0\",width:\"100%\",Y9KUM8Pg3:\"zs3XdItd8\",zmBzpVkMU:getLocalizedValue(\"v4\",activeLocale)??\"Gift cards & vouchers\",...addPropertyOverrides({Kj9iXlNTx:{HH75DyQIX:\"Boost sales, lock in loyalty, and keep cash flow steady. Gift cards, vouchers, and subscriptions ~ fully integrated and ready to go, online or offline.\"},Ld6KmqtnI:{GS4BYJK9D:\"https://framerusercontent.com/assets/3pefx9zT0QCKlFjVzHr8Tyseg.mp4\",HH75DyQIX:\"Boost sales, lock in loyalty, and keep cash flow steady. Gift cards, vouchers, and subscriptions ~ fully integrated and ready to go, online or offline.\",variant:\"mYR7eTyuM\",Y9KUM8Pg3:\"A8lfqt1D_\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+290+0+252,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tdw18m-container\",layoutDependency:layoutDependency,layoutId:\"GSAIwG5I3-container\",nodeId:\"GSAIwG5I3\",rendersWithMotion:true,scopeId:\"Qi2gVC5bo\",children:/*#__PURE__*/_jsx(FeatureBlockItemPhone,{cL8Jlb_FT:cL8Jlb_FT10k9515,height:\"100%\",HH75DyQIX:getLocalizedValue(\"v7\",activeLocale)??\"Test, tweak, and optimize with data that matters to you. A/B testing for marketing, reports for deep insights ~ choose a template or go full custom.\",id:\"GSAIwG5I3\",layoutId:\"GSAIwG5I3\",style:{width:\"100%\"},variant:\"bGziWybF0\",width:\"100%\",Y9KUM8Pg3:\"BRDZEi7Vd\",zmBzpVkMU:getLocalizedValue(\"v6\",activeLocale)??\"A/B Testing & Reports\",...addPropertyOverrides({Kj9iXlNTx:{GS4BYJK9D:\"https://framerusercontent.com/assets/rZEZcUigy44ekyfa16meXcZt0.mp4\",HH75DyQIX:\"Test, tweak, and optimize with data that matters to you. A/B testing for marketing, reports for deep insights ~ choose a template or go full custom.\",variant:\"mYR7eTyuM\",Y9KUM8Pg3:\"zyogR1clo\"}},baseVariant,gestureVariant)})})})})]})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-grTZR.framer-rt923v, .framer-grTZR .framer-rt923v { display: block; }\",\".framer-grTZR.framer-i14jo6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 580px; }\",\".framer-grTZR .framer-1bbxv4i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-grTZR .framer-3j51nl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-grTZR .framer-1a83hwt { 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-grTZR .framer-1jbq3mr-container, .framer-grTZR .framer-ya86zw-container, .framer-grTZR .framer-rmupt3-container, .framer-grTZR .framer-tdw18m-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-grTZR.framer-i14jo6, .framer-grTZR .framer-1bbxv4i, .framer-grTZR .framer-1a83hwt { gap: 0px; } .framer-grTZR.framer-i14jo6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-grTZR.framer-i14jo6 > :first-child { margin-left: 0px; } .framer-grTZR.framer-i14jo6 > :last-child { margin-right: 0px; } .framer-grTZR .framer-1bbxv4i > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-grTZR .framer-1bbxv4i > :first-child, .framer-grTZR .framer-1a83hwt > :first-child { margin-top: 0px; } .framer-grTZR .framer-1bbxv4i > :last-child, .framer-grTZR .framer-1a83hwt > :last-child { margin-bottom: 0px; } .framer-grTZR .framer-1a83hwt > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-grTZR.framer-v-kvpwv2 .framer-1jbq3mr-container, .framer-grTZR.framer-v-rfaog3 .framer-1jbq3mr-container, .framer-grTZR.framer-v-1c4q5ol .framer-1jbq3mr-container { order: 0; }\",\".framer-grTZR.framer-v-kvpwv2 .framer-ya86zw-container, .framer-grTZR.framer-v-rfaog3 .framer-ya86zw-container, .framer-grTZR.framer-v-1c4q5ol .framer-ya86zw-container { order: 1; }\",\".framer-grTZR.framer-v-kvpwv2 .framer-rmupt3-container, .framer-grTZR.framer-v-rfaog3 .framer-rmupt3-container, .framer-grTZR.framer-v-1c4q5ol .framer-rmupt3-container { order: 2; }\",\".framer-grTZR.framer-v-kvpwv2 .framer-tdw18m-container, .framer-grTZR.framer-v-rfaog3 .framer-tdw18m-container, .framer-grTZR.framer-v-1c4q5ol .framer-tdw18m-container { order: 3; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 858.5\n * @framerIntrinsicWidth 580\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"e8Q4qbwHH\":{\"layout\":[\"fixed\",\"auto\"]},\"Ld6KmqtnI\":{\"layout\":[\"fixed\",\"auto\"]},\"Kj9iXlNTx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ULuDWpRKr\":\"heading\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQi2gVC5bo=withCSS(Component,css,\"framer-grTZR\");export default FramerQi2gVC5bo;FramerQi2gVC5bo.displayName=\"Feature block phone\";FramerQi2gVC5bo.defaultProps={height:858.5,width:580};addPropertyControls(FramerQi2gVC5bo,{variant:{options:[\"fbPNauv1b\",\"e8Q4qbwHH\",\"Ld6KmqtnI\",\"Kj9iXlNTx\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},ULuDWpRKr:{defaultValue:\"Powerful features, all in one platform.\",displayTextArea:true,title:\"Heading\",type:ControlType.String}});addFonts(FramerQi2gVC5bo,[{explicitInter:true,fonts:[{family:\"Jokker Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pc8NgKtLqbWU3UUQJobBhDZluM.woff2\"}]},...FeatureBlockItemPhoneFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQi2gVC5bo\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"ULuDWpRKr\\\":\\\"heading\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e8Q4qbwHH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ld6KmqtnI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kj9iXlNTx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"858.5\",\"framerIntrinsicWidth\":\"580\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import IconNew from\"https://framerusercontent.com/modules/gcpN5ko8R3RIS6sEtGyx/bQSKRdp9K7SprTxAvcqJ/CkkbKUPpL.js\";const IconNewFonts=getFonts(IconNew);const IconNewControls=getPropertyControls(IconNew);const enabledGestures={\"I699:14804;699:13521\":{hover:true}};const cycleOrder=[\"I699:14804;699:13521\",\"fPSbtNCwD\"];const serializationHash=\"framer-DBicN\";const variantClassNames={\"I699:14804;699:13521\":\"framer-v-1hrc3h7\",fPSbtNCwD:\"framer-v-3fne3d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};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 humanReadableEnumMap={\"Calculator blue\":\"P_GXv7pq7\",\"Controller blue\":\"G9PYAPNsZ\",\"Crown blue\":\"m4B1udUKg\",\"Email check blue\":\"z0mOX1qIb\",\"Email check\":\"zCZbZtmln\",\"Form blue\":\"Zuq3pmgJc\",\"Gift blue\":\"Y2sYdYvBi\",\"Graph 1 blue\":\"yHwakReCN\",\"Graph 1\":\"BpyiLRL6r\",\"Graph 2 blue\":\"kUcj5rjiK\",\"Graph 2\":\"UT9hGVFj4\",\"Omnichannel.blue\":\"cJsZSQQ56\",\"Package blue\":\"BP3CMXJoK\",\"Paint brush blue\":\"LmsqZs1TH\",\"People blue\":\"DuYFiWb7J\",\"Rocket blue\":\"Nz_4lTxxo\",\"Speak blue\":\"v4pBwFsab\",\"Test tube blue\":\"zyogR1clo\",\"Test tube\":\"BRDZEi7Vd\",\"Thunder blue\":\"ajAaidBlN\",\"Ticket blue\":\"A8lfqt1D_\",\"voucher check blue\":\"hjMO0S6x9\",\"voucher check\":\"ujgPWqwvi\",Calculator:\"JWOCPObWf\",Controller:\"AzhZQaBws\",Crown:\"I699:14804;699:13521;699:13504\",Form:\"SLdq7t1nm\",Gift:\"neSIhME5M\",Omnichannel:\"g23DuRuN9\",Package:\"Z6KmCvkzl\",Paintbrush:\"ik3FZsSLH\",People:\"wtEkjWw3n\",Rocket:\"Fr7XoPpwR\",Speak:\"gaHDwAach\",Thunder:\"ixIbkJa0r\",Ticket:\"zs3XdItd8\"};const humanReadableVariantMap={Closed:\"I699:14804;699:13521\",Open:\"fPSbtNCwD\"};const getProps=({click,height,iconClosed,iconOpen,id,textItem,titleItem,width,...props})=>{return{...props,CjNc0rRqF:humanReadableEnumMap[iconOpen]??iconOpen??props.CjNc0rRqF??\"I699:14804;699:13521;699:13504\",cL8Jlb_FT:click??props.cL8Jlb_FT,HH75DyQIX:textItem??props.HH75DyQIX??\"Set it, forget it, and let the data do the work. Trigger emails based on real-time interactions ~ fully synced with loyalty, promotions, and CRM.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"I699:14804;699:13521\",Y9KUM8Pg3:humanReadableEnumMap[iconClosed]??iconClosed??props.Y9KUM8Pg3??\"I699:14804;699:13521;699:13504\",zmBzpVkMU:titleItem??props.zmBzpVkMU??\"Loyalty & referrals\"};};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,zmBzpVkMU,HH75DyQIX,Y9KUM8Pg3,cL8Jlb_FT,CjNc0rRqF,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I699:14804;699:13521\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapzqa8jz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(cL8Jlb_FT){const res=await cL8Jlb_FT(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"fPSbtNCwD\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hrc3h7\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I699:14804;699:13521\",onTap:onTapzqa8jz,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(17, 17, 17)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(230, 242, 255, 0)\",...style},variants:{\"I699:14804;699:13521-hover\":{backgroundColor:\"rgb(230, 242, 255)\"}},...addPropertyOverrides({\"I699:14804;699:13521-hover\":{\"data-framer-name\":undefined},fPSbtNCwD:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3plq8\",\"data-framer-name\":\"Frame 4464\",layoutDependency:layoutDependency,layoutId:\"I699:14804;699:13521;699:13503\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:(componentViewport?.y||0)+16+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dm9i9t-container\",layoutDependency:layoutDependency,layoutId:\"O86f2q7gc-container\",nodeId:\"O86f2q7gc\",rendersWithMotion:true,scopeId:\"nS1OerWIK\",children:/*#__PURE__*/_jsx(IconNew,{height:\"100%\",id:\"O86f2q7gc\",layoutId:\"O86f2q7gc\",style:{height:\"100%\",width:\"100%\"},variant:Y9KUM8Pg3,width:\"100%\",...addPropertyOverrides({fPSbtNCwD:{variant:CjNc0rRqF}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17)))\"},children:\"Loyalty & referrals\"})}),className:\"framer-14oiw1y\",\"data-framer-name\":\"Feature Heading\",fonts:[\"CUSTOM;Geist Regular\"],layoutDependency:layoutDependency,layoutId:\"I699:14804;699:13521;699:13505\",style:{\"--extracted-r6o4lv\":\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\",\"--framer-paragraph-spacing\":\"0px\"},text:zmBzpVkMU,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-y4jcfe\",\"data-framer-name\":\"Frame 4445\",layoutDependency:layoutDependency,layoutId:\"lPkfu2psQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 17))\"},children:\"Set it, forget it, and let the data do the work. Trigger emails based on real-time interactions ~ fully synced with loyalty, promotions, and CRM.\"})}),className:\"framer-159eoi3\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Geist-300\"],layoutDependency:layoutDependency,layoutId:\"FmRA3SoNQ\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 17)\",\"--framer-paragraph-spacing\":\"0px\"},text:HH75DyQIX,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DBicN.framer-qehudu, .framer-DBicN .framer-qehudu { display: block; }\",\".framer-DBicN.framer-1hrc3h7 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 16px; position: relative; width: 520px; }\",\".framer-DBicN .framer-3plq8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DBicN .framer-1dm9i9t-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-DBicN .framer-14oiw1y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DBicN .framer-y4jcfe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 48px; position: relative; width: 100%; }\",\".framer-DBicN .framer-159eoi3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DBicN.framer-1hrc3h7, .framer-DBicN .framer-3plq8, .framer-DBicN .framer-y4jcfe { gap: 0px; } .framer-DBicN.framer-1hrc3h7 > *, .framer-DBicN .framer-y4jcfe > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-DBicN.framer-1hrc3h7 > :first-child, .framer-DBicN .framer-y4jcfe > :first-child { margin-top: 0px; } .framer-DBicN.framer-1hrc3h7 > :last-child, .framer-DBicN .framer-y4jcfe > :last-child { margin-bottom: 0px; } .framer-DBicN .framer-3plq8 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-DBicN .framer-3plq8 > :first-child { margin-left: 0px; } .framer-DBicN .framer-3plq8 > :last-child { margin-right: 0px; } }\",'.framer-DBicN[data-border=\"true\"]::after, .framer-DBicN [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 64\n * @framerIntrinsicWidth 520\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fPSbtNCwD\":{\"layout\":[\"fixed\",\"auto\"]},\"TpC3ofXzn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zmBzpVkMU\":\"titleItem\",\"HH75DyQIX\":\"textItem\",\"Y9KUM8Pg3\":\"iconClosed\",\"cL8Jlb_FT\":\"click\",\"CjNc0rRqF\":\"iconOpen\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernS1OerWIK=withCSS(Component,css,\"framer-DBicN\");export default FramernS1OerWIK;FramernS1OerWIK.displayName=\"Feature block item\";FramernS1OerWIK.defaultProps={height:64,width:520};addPropertyControls(FramernS1OerWIK,{variant:{options:[\"I699:14804;699:13521\",\"fPSbtNCwD\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},zmBzpVkMU:{defaultValue:\"Loyalty & referrals\",displayTextArea:false,title:\"Title item\",type:ControlType.String},HH75DyQIX:{defaultValue:\"Set it, forget it, and let the data do the work. Trigger emails based on real-time interactions ~ fully synced with loyalty, promotions, and CRM.\",displayTextArea:false,title:\"Text item\",type:ControlType.String},Y9KUM8Pg3:IconNewControls?.[\"variant\"]&&{...IconNewControls[\"variant\"],defaultValue:\"I699:14804;699:13521;699:13504\",description:undefined,hidden:undefined,title:\"Icon closed\"},cL8Jlb_FT:{title:\"Click\",type:ControlType.EventHandler},CjNc0rRqF:IconNewControls?.[\"variant\"]&&{...IconNewControls[\"variant\"],defaultValue:\"I699:14804;699:13521;699:13504\",description:undefined,hidden:undefined,title:\"Icon open\"}});addFonts(FramernS1OerWIK,[{explicitInter:true,fonts:[{family:\"Geist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/f43xBaUIhM11YVIZ9WXv9SoWtw.woff2\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RwuM4mJPby1QNtA.woff2\",weight:\"300\"}]},...IconNewFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernS1OerWIK\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"zmBzpVkMU\\\":\\\"titleItem\\\",\\\"HH75DyQIX\\\":\\\"textItem\\\",\\\"Y9KUM8Pg3\\\":\\\"iconClosed\\\",\\\"cL8Jlb_FT\\\":\\\"click\\\",\\\"CjNc0rRqF\\\":\\\"iconOpen\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fPSbtNCwD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TpC3ofXzn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"64\",\"framerIntrinsicWidth\":\"520\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nS1OerWIK.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";import FeatureBlockItem from\"https://framerusercontent.com/modules/PnyTaHPe6NiWJa14vGUk/5w13mkWIAmL8nYB9K9pg/nS1OerWIK.js\";const FeatureBlockItemFonts=getFonts(FeatureBlockItem);const VideoFonts=getFonts(Video);const FeatureBlockItemControls=getPropertyControls(FeatureBlockItem);const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"rSW2hLf49\",\"RhBY7e837\",\"WLA0tlHFm\",\"DVQllDcDs\"];const serializationHash=\"framer-MvegG\";const variantClassNames={DVQllDcDs:\"framer-v-1eqdp0w\",RhBY7e837:\"framer-v-iajxe9\",rSW2hLf49:\"framer-v-1nyuov7\",WLA0tlHFm:\"framer-v-d71ump\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:23,delay:0,mass:.1,stiffness:331,type:\"spring\"};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 humanReadableEnumMap={\"Calculator blue\":\"P_GXv7pq7\",\"Controller blue\":\"G9PYAPNsZ\",\"Crown blue\":\"m4B1udUKg\",\"Email check blue\":\"z0mOX1qIb\",\"Email check\":\"zCZbZtmln\",\"Form blue\":\"Zuq3pmgJc\",\"Gift blue\":\"Y2sYdYvBi\",\"Graph 1 blue\":\"yHwakReCN\",\"Graph 1\":\"BpyiLRL6r\",\"Graph 2 blue\":\"kUcj5rjiK\",\"Graph 2\":\"UT9hGVFj4\",\"Omnichannel.blue\":\"cJsZSQQ56\",\"Package blue\":\"BP3CMXJoK\",\"Paint brush blue\":\"LmsqZs1TH\",\"People blue\":\"DuYFiWb7J\",\"Rocket blue\":\"Nz_4lTxxo\",\"Speak blue\":\"v4pBwFsab\",\"Test tube blue\":\"zyogR1clo\",\"Test tube\":\"BRDZEi7Vd\",\"Thunder blue\":\"ajAaidBlN\",\"Ticket blue\":\"A8lfqt1D_\",\"voucher check blue\":\"hjMO0S6x9\",\"voucher check\":\"ujgPWqwvi\",Calculator:\"JWOCPObWf\",Controller:\"AzhZQaBws\",Crown:\"I699:14804;699:13521;699:13504\",Form:\"SLdq7t1nm\",Gift:\"neSIhME5M\",Omnichannel:\"g23DuRuN9\",Package:\"Z6KmCvkzl\",Paintbrush:\"ik3FZsSLH\",People:\"wtEkjWw3n\",Rocket:\"Fr7XoPpwR\",Speak:\"gaHDwAach\",Thunder:\"ixIbkJa0r\",Ticket:\"zs3XdItd8\"};const humanReadableVariantMap={\"Variant 1\":\"rSW2hLf49\",\"Variant 2\":\"RhBY7e837\",\"Variant 3\":\"WLA0tlHFm\",\"Variant 4\":\"DVQllDcDs\"};const getProps=({heading,height,iconClosed1,iconClosed2,iconClosed3,iconClosed4,iconOpen1,iconOpen2,iconOpen3,iconOpen4,id,textItem1,textItem2,textItem3,textItem4,titleItem1,titleItem2,titleItem3,titleItem4,video1,video2,video3,video4,width,...props})=>{return{...props,b_jdWmkAL:humanReadableEnumMap[iconClosed3]??iconClosed3??props.b_jdWmkAL??\"zs3XdItd8\",bQb6691Eb:titleItem4??props.bQb6691Eb??\"A/B Testing & Reports\",C0PYy4Bkf:humanReadableEnumMap[iconOpen4]??iconOpen4??props.C0PYy4Bkf??\"zyogR1clo\",Cv90eZt4e:video3??props.Cv90eZt4e??\"https://framerusercontent.com/assets/3pefx9zT0QCKlFjVzHr8Tyseg.mp4\",cZxNsw9yk:humanReadableEnumMap[iconClosed4]??iconClosed4??props.cZxNsw9yk??\"BRDZEi7Vd\",d7YtlkYfu:titleItem1??props.d7YtlkYfu??\"Automated marketing\",dzYmKgy7K:humanReadableEnumMap[iconClosed2]??iconClosed2??props.dzYmKgy7K??\"I699:14804;699:13521;699:13504\",eaJ2ZnVYZ:textItem4??props.eaJ2ZnVYZ??\"Test, tweak, and optimize with data that matters to you. A/B testing for marketing, reports for deep insights ~ choose a template or go full custom.\",Hhxm5NtJb:humanReadableEnumMap[iconOpen2]??iconOpen2??props.Hhxm5NtJb??\"m4B1udUKg\",hpknj_DzC:humanReadableEnumMap[iconClosed1]??iconClosed1??props.hpknj_DzC??\"ixIbkJa0r\",IzEHCHBeJ:humanReadableEnumMap[iconOpen1]??iconOpen1??props.IzEHCHBeJ??\"ixIbkJa0r\",Pe4grMEjf:video2??props.Pe4grMEjf??\"https://framerusercontent.com/assets/oJ1xsP7LN0oVB5wYpbE9rg2lRqk.mp4\",pI03aRfti:titleItem2??props.pI03aRfti??\"Loyalty & referrals\",Siqefwthc:titleItem3??props.Siqefwthc??\"Gift cards & vouchers\",SoBrm2jxZ:textItem3??props.SoBrm2jxZ??\"Boost sales, lock in loyalty, and keep cash flow steady. Gift cards, vouchers, and subscriptions ~ fully integrated and ready to go, online or offline.\",tvD8ClLtQ:textItem2??props.tvD8ClLtQ??\"Turn customers into regulars with custom loyalty and referral programs. Rewards, tiers, and perks ~ online or in-store, all seamlessly connected.\",UkSkfmS6T:video1??props.UkSkfmS6T??\"https://framerusercontent.com/assets/3MrWnr9yAMshccDVgGFQ7vnynM.mp4\",variant:humanReadableVariantMap[props.variant]??props.variant??\"rSW2hLf49\",xgY5VD_0z:video4??props.xgY5VD_0z??\"https://framerusercontent.com/assets/rZEZcUigy44ekyfa16meXcZt0.mp4\",XuxzBAt7I:textItem1??props.XuxzBAt7I??\"Set it, forget it, and let the data do the work. Trigger emails based on real-time interactions ~ fully synced with loyalty, promotions, and CRM.\",YAJeoUlyc:heading??props.YAJeoUlyc??\"Powerful features, all in one platform.\",ziwf6KDUH:humanReadableEnumMap[iconOpen3]??iconOpen3??props.ziwf6KDUH??\"A8lfqt1D_\"};};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,YAJeoUlyc,d7YtlkYfu,XuxzBAt7I,pI03aRfti,tvD8ClLtQ,Siqefwthc,SoBrm2jxZ,bQb6691Eb,eaJ2ZnVYZ,hpknj_DzC,IzEHCHBeJ,dzYmKgy7K,Hhxm5NtJb,b_jdWmkAL,ziwf6KDUH,cZxNsw9yk,C0PYy4Bkf,UkSkfmS6T,Pe4grMEjf,Cv90eZt4e,xgY5VD_0z,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rSW2hLf49\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1n3ik3n=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"RhBY7e837\"),29e3);});const onAppear1qdzf6m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"WLA0tlHFm\"),31e3);});const onAppearksoldr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"DVQllDcDs\"),29e3);});const onAppear1rocjk4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rSW2hLf49\"),39410);});const cL8Jlb_FThu9yky=activeVariantCallback(async(...args)=>{setVariant(\"rSW2hLf49\");});const cL8Jlb_FTrf5kef=activeVariantCallback(async(...args)=>{setVariant(\"RhBY7e837\");});const cL8Jlb_FTi8983z=activeVariantCallback(async(...args)=>{setVariant(\"WLA0tlHFm\");});const cL8Jlb_FT1vs8eir=activeVariantCallback(async(...args)=>{setVariant(\"DVQllDcDs\");});useOnVariantChange(baseVariant,{default:onAppear1n3ik3n,DVQllDcDs:onAppear1rocjk4,RhBY7e837:onAppear1qdzf6m,WLA0tlHFm:onAppearksoldr});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nyuov7\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rSW2hLf49\",ref:refBinding,style:{...style},...addPropertyOverrides({DVQllDcDs:{\"data-framer-name\":\"Variant 4\"},RhBY7e837:{\"data-framer-name\":\"Variant 2\"},WLA0tlHFm:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12i39fw\",\"data-framer-name\":\"Title + features\",layoutDependency:layoutDependency,layoutId:\"I699:14804;699:13421\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0pva2tlciBSZWd1bGFy\",\"--framer-font-family\":'\"Jokker Regular\", \"Jokker Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17)))\"},children:\"Powerful features, all in one platform.\"})}),className:\"framer-c2p1oo\",\"data-framer-name\":\"Headings\",fonts:[\"CUSTOM;Jokker Regular\"],layoutDependency:layoutDependency,layoutId:\"I699:14804;699:13422\",style:{\"--extracted-a0htzi\":\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\",\"--framer-paragraph-spacing\":\"0px\"},text:YAJeoUlyc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uutop9\",layoutDependency:layoutDependency,layoutId:\"ZH5Djr1Jq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`min(max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px), 700px)`,y:(componentViewport?.y||0)+0+0+90+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7zqdd2-container\",layoutDependency:layoutDependency,layoutId:\"GmLVpXVAE-container\",nodeId:\"GmLVpXVAE\",rendersWithMotion:true,scopeId:\"VrP6Oh05f\",children:/*#__PURE__*/_jsx(FeatureBlockItem,{CjNc0rRqF:IzEHCHBeJ,cL8Jlb_FT:cL8Jlb_FThu9yky,height:\"100%\",HH75DyQIX:XuxzBAt7I,id:\"GmLVpXVAE\",layoutId:\"GmLVpXVAE\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"fPSbtNCwD\",width:\"100%\",Y9KUM8Pg3:hpknj_DzC,zmBzpVkMU:d7YtlkYfu,...addPropertyOverrides({DVQllDcDs:{variant:\"I699:14804;699:13521\"},RhBY7e837:{variant:\"I699:14804;699:13521\"},WLA0tlHFm:{variant:\"I699:14804;699:13521\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`min(max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px), 700px)`,y:(componentViewport?.y||0)+0+0+90+0+64,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ow0km-container\",layoutDependency:layoutDependency,layoutId:\"wfPwk9X4F-container\",nodeId:\"wfPwk9X4F\",rendersWithMotion:true,scopeId:\"VrP6Oh05f\",children:/*#__PURE__*/_jsx(FeatureBlockItem,{CjNc0rRqF:Hhxm5NtJb,cL8Jlb_FT:cL8Jlb_FTrf5kef,height:\"100%\",HH75DyQIX:tvD8ClLtQ,id:\"wfPwk9X4F\",layoutId:\"wfPwk9X4F\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"I699:14804;699:13521\",width:\"100%\",Y9KUM8Pg3:dzYmKgy7K,zmBzpVkMU:pI03aRfti,...addPropertyOverrides({DVQllDcDs:{HH75DyQIX:pI03aRfti},RhBY7e837:{variant:\"fPSbtNCwD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`min(max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px), 700px)`,y:(componentViewport?.y||0)+0+0+90+0+128,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pa5wwt-container\",layoutDependency:layoutDependency,layoutId:\"x32AkhyYK-container\",nodeId:\"x32AkhyYK\",rendersWithMotion:true,scopeId:\"VrP6Oh05f\",children:/*#__PURE__*/_jsx(FeatureBlockItem,{CjNc0rRqF:ziwf6KDUH,cL8Jlb_FT:cL8Jlb_FTi8983z,height:\"100%\",HH75DyQIX:SoBrm2jxZ,id:\"x32AkhyYK\",layoutId:\"x32AkhyYK\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"I699:14804;699:13521\",width:\"100%\",Y9KUM8Pg3:b_jdWmkAL,zmBzpVkMU:Siqefwthc,...addPropertyOverrides({WLA0tlHFm:{variant:\"fPSbtNCwD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`min(max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px), 700px)`,y:(componentViewport?.y||0)+0+0+90+0+192,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-160uxal-container\",layoutDependency:layoutDependency,layoutId:\"stt8IiMKJ-container\",nodeId:\"stt8IiMKJ\",rendersWithMotion:true,scopeId:\"VrP6Oh05f\",children:/*#__PURE__*/_jsx(FeatureBlockItem,{CjNc0rRqF:C0PYy4Bkf,cL8Jlb_FT:cL8Jlb_FT1vs8eir,height:\"100%\",HH75DyQIX:eaJ2ZnVYZ,id:\"stt8IiMKJ\",layoutId:\"stt8IiMKJ\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"I699:14804;699:13521\",width:\"100%\",Y9KUM8Pg3:cZxNsw9yk,zmBzpVkMU:bQb6691Eb,...addPropertyOverrides({DVQllDcDs:{variant:\"fPSbtNCwD\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nqrwcf\",\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"I699:14804;699:13447\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dn06qi\",\"data-framer-name\":\"Sticky frame\",layoutDependency:layoutDependency,layoutId:\"vkX4va4I2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ntshss-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rhfepUTvv-container\",nodeId:\"rhfepUTvv\",rendersWithMotion:true,scopeId:\"VrP6Oh05f\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"rhfepUTvv\",isMixedBorderRadius:false,layoutId:\"rhfepUTvv\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:UkSkfmS6T,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\",...addPropertyOverrides({DVQllDcDs:{srcFile:xgY5VD_0z},RhBY7e837:{srcFile:Pe4grMEjf},WLA0tlHFm:{srcFile:Cv90eZt4e}},baseVariant,gestureVariant)})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MvegG.framer-6w3ve2, .framer-MvegG .framer-6w3ve2 { display: block; }\",\".framer-MvegG.framer-1nyuov7 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-MvegG .framer-12i39fw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MvegG .framer-c2p1oo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MvegG .framer-uutop9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MvegG .framer-7zqdd2-container, .framer-MvegG .framer-ow0km-container, .framer-MvegG .framer-pa5wwt-container, .framer-MvegG .framer-160uxal-container { flex: none; height: auto; max-width: 700px; position: relative; width: 100%; }\",\".framer-MvegG .framer-nqrwcf { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MvegG .framer-dn06qi { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-MvegG .framer-ntshss-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MvegG.framer-1nyuov7, .framer-MvegG .framer-12i39fw, .framer-MvegG .framer-uutop9, .framer-MvegG .framer-nqrwcf, .framer-MvegG .framer-dn06qi { gap: 0px; } .framer-MvegG.framer-1nyuov7 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-MvegG.framer-1nyuov7 > :first-child, .framer-MvegG .framer-dn06qi > :first-child { margin-left: 0px; } .framer-MvegG.framer-1nyuov7 > :last-child, .framer-MvegG .framer-dn06qi > :last-child { margin-right: 0px; } .framer-MvegG .framer-12i39fw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-MvegG .framer-12i39fw > :first-child, .framer-MvegG .framer-uutop9 > :first-child, .framer-MvegG .framer-nqrwcf > :first-child { margin-top: 0px; } .framer-MvegG .framer-12i39fw > :last-child, .framer-MvegG .framer-uutop9 > :last-child, .framer-MvegG .framer-nqrwcf > :last-child { margin-bottom: 0px; } .framer-MvegG .framer-uutop9 > *, .framer-MvegG .framer-nqrwcf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MvegG .framer-dn06qi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 444\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RhBY7e837\":{\"layout\":[\"fixed\",\"auto\"]},\"WLA0tlHFm\":{\"layout\":[\"fixed\",\"auto\"]},\"DVQllDcDs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YAJeoUlyc\":\"heading\",\"d7YtlkYfu\":\"titleItem1\",\"XuxzBAt7I\":\"textItem1\",\"pI03aRfti\":\"titleItem2\",\"tvD8ClLtQ\":\"textItem2\",\"Siqefwthc\":\"titleItem3\",\"SoBrm2jxZ\":\"textItem3\",\"bQb6691Eb\":\"titleItem4\",\"eaJ2ZnVYZ\":\"textItem4\",\"hpknj_DzC\":\"iconClosed1\",\"IzEHCHBeJ\":\"iconOpen1\",\"dzYmKgy7K\":\"iconClosed2\",\"Hhxm5NtJb\":\"iconOpen2\",\"b_jdWmkAL\":\"iconClosed3\",\"ziwf6KDUH\":\"iconOpen3\",\"cZxNsw9yk\":\"iconClosed4\",\"C0PYy4Bkf\":\"iconOpen4\",\"UkSkfmS6T\":\"video1\",\"Pe4grMEjf\":\"video2\",\"Cv90eZt4e\":\"video3\",\"xgY5VD_0z\":\"video4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVrP6Oh05f=withCSS(Component,css,\"framer-MvegG\");export default FramerVrP6Oh05f;FramerVrP6Oh05f.displayName=\"Feature block option 2\";FramerVrP6Oh05f.defaultProps={height:444,width:1200};addPropertyControls(FramerVrP6Oh05f,{variant:{options:[\"rSW2hLf49\",\"RhBY7e837\",\"WLA0tlHFm\",\"DVQllDcDs\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},YAJeoUlyc:{defaultValue:\"Powerful features, all in one platform.\",displayTextArea:true,title:\"Heading\",type:ControlType.String},d7YtlkYfu:{defaultValue:\"Automated marketing\",displayTextArea:false,title:\"Title Item 1\",type:ControlType.String},XuxzBAt7I:{defaultValue:\"Set it, forget it, and let the data do the work. Trigger emails based on real-time interactions ~ fully synced with loyalty, promotions, and CRM.\",displayTextArea:true,title:\"Text Item 1\",type:ControlType.String},pI03aRfti:{defaultValue:\"Loyalty & referrals\",displayTextArea:false,title:\"Title Item 2\",type:ControlType.String},tvD8ClLtQ:{defaultValue:\"Turn customers into regulars with custom loyalty and referral programs. Rewards, tiers, and perks ~ online or in-store, all seamlessly connected.\",displayTextArea:true,title:\"Text Item 2\",type:ControlType.String},Siqefwthc:{defaultValue:\"Gift cards & vouchers\",displayTextArea:false,title:\"Title Item 3\",type:ControlType.String},SoBrm2jxZ:{defaultValue:\"Boost sales, lock in loyalty, and keep cash flow steady. Gift cards, vouchers, and subscriptions ~ fully integrated and ready to go, online or offline.\",displayTextArea:true,title:\"Text Item 3\",type:ControlType.String},bQb6691Eb:{defaultValue:\"A/B Testing & Reports\",displayTextArea:false,title:\"Title Item 4\",type:ControlType.String},eaJ2ZnVYZ:{defaultValue:\"Test, tweak, and optimize with data that matters to you. A/B testing for marketing, reports for deep insights ~ choose a template or go full custom.\",displayTextArea:true,title:\"Text Item 4\",type:ControlType.String},hpknj_DzC:FeatureBlockItemControls?.[\"Y9KUM8Pg3\"]&&{...FeatureBlockItemControls[\"Y9KUM8Pg3\"],defaultValue:\"ixIbkJa0r\",description:undefined,hidden:undefined,title:\"Icon closed 1\"},IzEHCHBeJ:FeatureBlockItemControls?.[\"CjNc0rRqF\"]&&{...FeatureBlockItemControls[\"CjNc0rRqF\"],defaultValue:\"ixIbkJa0r\",description:undefined,hidden:undefined,title:\"Icon Open 1\"},dzYmKgy7K:FeatureBlockItemControls?.[\"Y9KUM8Pg3\"]&&{...FeatureBlockItemControls[\"Y9KUM8Pg3\"],defaultValue:\"I699:14804;699:13521;699:13504\",description:undefined,hidden:undefined,title:\"Icon closed 2\"},Hhxm5NtJb:FeatureBlockItemControls?.[\"CjNc0rRqF\"]&&{...FeatureBlockItemControls[\"CjNc0rRqF\"],defaultValue:\"m4B1udUKg\",description:undefined,hidden:undefined,title:\"Icon Open 2\"},b_jdWmkAL:FeatureBlockItemControls?.[\"Y9KUM8Pg3\"]&&{...FeatureBlockItemControls[\"Y9KUM8Pg3\"],defaultValue:\"zs3XdItd8\",description:undefined,hidden:undefined,title:\"Icon closed 3\"},ziwf6KDUH:FeatureBlockItemControls?.[\"CjNc0rRqF\"]&&{...FeatureBlockItemControls[\"CjNc0rRqF\"],defaultValue:\"A8lfqt1D_\",description:undefined,hidden:undefined,title:\"Icon Open 3\"},cZxNsw9yk:FeatureBlockItemControls?.[\"Y9KUM8Pg3\"]&&{...FeatureBlockItemControls[\"Y9KUM8Pg3\"],defaultValue:\"BRDZEi7Vd\",description:undefined,hidden:undefined,title:\"Icon closed 4\"},C0PYy4Bkf:FeatureBlockItemControls?.[\"CjNc0rRqF\"]&&{...FeatureBlockItemControls[\"CjNc0rRqF\"],defaultValue:\"zyogR1clo\",description:undefined,hidden:undefined,title:\"Icon Open 4\"},UkSkfmS6T:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,3MrWnr9yAMshccDVgGFQ7vnynM.mp4?originalFilename=Marketing%26Automation1.mp4\",description:undefined,hidden:undefined,title:\"Video 1\"},Pe4grMEjf:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,oJ1xsP7LN0oVB5wYpbE9rg2lRqk.mp4?originalFilename=loyalty2.mp4\",description:undefined,hidden:undefined,title:\"Video 2\"},Cv90eZt4e:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,3pefx9zT0QCKlFjVzHr8Tyseg.mp4?originalFilename=Giftcard.mp4\",description:undefined,hidden:undefined,title:\"Video 3\"},xgY5VD_0z:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,rZEZcUigy44ekyfa16meXcZt0.mp4?originalFilename=Reports.mp4\",description:undefined,hidden:undefined,title:\"Video 4\"}});addFonts(FramerVrP6Oh05f,[{explicitInter:true,fonts:[{family:\"Jokker Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pc8NgKtLqbWU3UUQJobBhDZluM.woff2\"}]},...FeatureBlockItemFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVrP6Oh05f\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"444\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RhBY7e837\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WLA0tlHFm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DVQllDcDs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"YAJeoUlyc\\\":\\\"heading\\\",\\\"d7YtlkYfu\\\":\\\"titleItem1\\\",\\\"XuxzBAt7I\\\":\\\"textItem1\\\",\\\"pI03aRfti\\\":\\\"titleItem2\\\",\\\"tvD8ClLtQ\\\":\\\"textItem2\\\",\\\"Siqefwthc\\\":\\\"titleItem3\\\",\\\"SoBrm2jxZ\\\":\\\"textItem3\\\",\\\"bQb6691Eb\\\":\\\"titleItem4\\\",\\\"eaJ2ZnVYZ\\\":\\\"textItem4\\\",\\\"hpknj_DzC\\\":\\\"iconClosed1\\\",\\\"IzEHCHBeJ\\\":\\\"iconOpen1\\\",\\\"dzYmKgy7K\\\":\\\"iconClosed2\\\",\\\"Hhxm5NtJb\\\":\\\"iconOpen2\\\",\\\"b_jdWmkAL\\\":\\\"iconClosed3\\\",\\\"ziwf6KDUH\\\":\\\"iconOpen3\\\",\\\"cZxNsw9yk\\\":\\\"iconClosed4\\\",\\\"C0PYy4Bkf\\\":\\\"iconOpen4\\\",\\\"UkSkfmS6T\\\":\\\"video1\\\",\\\"Pe4grMEjf\\\":\\\"video2\\\",\\\"Cv90eZt4e\\\":\\\"video3\\\",\\\"xgY5VD_0z\\\":\\\"video4\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VrP6Oh05f.map"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "ref1", "ref2", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "Qi2gVC5bo_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "__FramerMetadata__", "Qi2gVC5bo_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "__FramerMetadata__", "valuesByLocaleId", "Qi2gVC5bo_0_exports", "Qi2gVC5bo_1_exports", "getLocalizedValue", "key", "locale", "values", "value", "IconNewFonts", "getFonts", "CkkbKUPpL_default", "VideoFonts", "Video", "IconNewControls", "getPropertyControls", "Video1Controls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "click", "height", "iconType", "id", "textItem", "titleItem", "video", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "zmBzpVkMU", "HH75DyQIX", "Y9KUM8Pg3", "cL8Jlb_FT", "GS4BYJK9D", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapzqa8jz", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "Framerkxq0Y3EOS", "withCSS", "kxq0Y3EOS_default", "addPropertyControls", "ControlType", "addFonts", "FeatureBlockItemPhoneFonts", "getFonts", "kxq0Y3EOS_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "heading", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ULuDWpRKr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear16gh846", "args", "onAppear2fw5hd", "onAppearq0zn0j", "onAppear565owq", "cL8Jlb_FTy1gosk", "cL8Jlb_FT1ed5wzb", "cL8Jlb_FTie603e", "cL8Jlb_FT10k9515", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "css", "FramerQi2gVC5bo", "withCSS", "Qi2gVC5bo_default", "addPropertyControls", "ControlType", "addFonts", "IconNewFonts", "getFonts", "CkkbKUPpL_default", "IconNewControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "click", "height", "iconClosed", "iconOpen", "id", "textItem", "titleItem", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "zmBzpVkMU", "HH75DyQIX", "Y9KUM8Pg3", "cL8Jlb_FT", "CjNc0rRqF", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapzqa8jz", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramernS1OerWIK", "withCSS", "nS1OerWIK_default", "addPropertyControls", "ControlType", "addFonts", "FeatureBlockItemFonts", "getFonts", "nS1OerWIK_default", "VideoFonts", "Video", "FeatureBlockItemControls", "getPropertyControls", "Video1Controls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "heading", "height", "iconClosed1", "iconClosed2", "iconClosed3", "iconClosed4", "iconOpen1", "iconOpen2", "iconOpen3", "iconOpen4", "id", "textItem1", "textItem2", "textItem3", "textItem4", "titleItem1", "titleItem2", "titleItem3", "titleItem4", "video1", "video2", "video3", "video4", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "YAJeoUlyc", "d7YtlkYfu", "XuxzBAt7I", "pI03aRfti", "tvD8ClLtQ", "Siqefwthc", "SoBrm2jxZ", "bQb6691Eb", "eaJ2ZnVYZ", "hpknj_DzC", "IzEHCHBeJ", "dzYmKgy7K", "Hhxm5NtJb", "b_jdWmkAL", "ziwf6KDUH", "cZxNsw9yk", "C0PYy4Bkf", "UkSkfmS6T", "Pe4grMEjf", "Cv90eZt4e", "xgY5VD_0z", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1n3ik3n", "args", "onAppear1qdzf6m", "onAppearksoldr", "onAppear1rocjk4", "cL8Jlb_FThu9yky", "cL8Jlb_FTrf5kef", "cL8Jlb_FTi8983z", "cL8Jlb_FT1vs8eir", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerVrP6Oh05f", "withCSS", "VrP6Oh05f_default", "addPropertyControls", "ControlType", "addFonts"]
}
