{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/3gFFaeWktcpteGee2iZH/p8p3BPlUo86r5kYF1V71/Pyhoff8q1.js"],
  "sourcesContent": ["import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "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,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength: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(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[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)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",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\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/lvjOzbDF4RwL3tbF87QJ/N6PBqAGnXnX8LzDdlfLu/jXf2dgLDj.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bdtijWXbKrmbliPvVNZk/0X5W0zh0NvVWBQqelclw/LObxD0UhF.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/aqMpIwqYrVLRUdckTdT0/VvjksQ4aH6FTosMSfDbC/nJwfhQ0mx.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/oJYHVeqRr2v1eix5FUkn/bbwwxhqLL4V37lQEQI9M/uisaNMvbg.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/z7lUT8sKL6AEKbzaSzsx/MlBxfgAfjdrqRACs9E24/wDKBZKNNv.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gC54dLnk43mWEWChyOCv/svUJZ2bK8B8HCfLeTYC1/xiLH5QNCN.js\";import Button from\"https://framerusercontent.com/modules/dmZGlKQwVslKpOxOILv5/vmKFo26zmpAIvbr1gM24/g5jyDut64.js\";const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"x20nZtoBh\",\"Wo2zpdlD9\",\"WDeXF2UzR\",\"CkiEoKxnZ\",\"gPI5yYlaT\",\"jSJivzqEP\",\"ONfjZhLDC\",\"uLTDzBb6t\"];const serializationHash=\"framer-CLSit\";const variantClassNames={CkiEoKxnZ:\"framer-v-jho6gc\",gPI5yYlaT:\"framer-v-1hf6rrs\",jSJivzqEP:\"framer-v-1y342e4\",ONfjZhLDC:\"framer-v-ivf2uk\",uLTDzBb6t:\"framer-v-1go9kb0\",WDeXF2UzR:\"framer-v-1kpnb3l\",Wo2zpdlD9:\"framer-v-1qimavr\",x20nZtoBh:\"framer-v-1kuv6fo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition3={damping:60,delay:.6,mass:1,stiffness:400,type:\"spring\"};const transition4={damping:60,delay:.8,mass:1,stiffness:400,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={\"Desktop Quarterly\":\"x20nZtoBh\",\"Desktop Yearly\":\"Wo2zpdlD9\",\"Laptop Quarterly\":\"WDeXF2UzR\",\"Laptop Yearly\":\"CkiEoKxnZ\",\"Phone Quarterly\":\"ONfjZhLDC\",\"Phone Yearly\":\"uLTDzBb6t\",\"Tablet Quarterly\":\"gPI5yYlaT\",\"Tablet Yearly\":\"jSJivzqEP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"x20nZtoBh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"x20nZtoBh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapmnl6vl=activeVariantCallback(async(...args)=>{setVariant(\"x20nZtoBh\");});const onTap1edqo8n=activeVariantCallback(async(...args)=>{setVariant(\"WDeXF2UzR\");});const onTap1wrn39x=activeVariantCallback(async(...args)=>{setVariant(\"gPI5yYlaT\");});const onTaps1jqw2=activeVariantCallback(async(...args)=>{setVariant(\"ONfjZhLDC\");});const onTap1ffaf4w=activeVariantCallback(async(...args)=>{setVariant(\"Wo2zpdlD9\");});const onTap13utddr=activeVariantCallback(async(...args)=>{setVariant(\"CkiEoKxnZ\");});const onTap1aa4b8y=activeVariantCallback(async(...args)=>{setVariant(\"jSJivzqEP\");});const onTapp4ty5t=activeVariantCallback(async(...args)=>{setVariant(\"uLTDzBb6t\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1kuv6fo\",className,classNames),\"data-framer-name\":\"Desktop Quarterly\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBh\",ref:ref??ref1,style:{...style},...addPropertyOverrides({CkiEoKxnZ:{\"data-framer-name\":\"Laptop Yearly\"},gPI5yYlaT:{\"data-framer-name\":\"Tablet Quarterly\"},jSJivzqEP:{\"data-framer-name\":\"Tablet Yearly\"},ONfjZhLDC:{\"data-framer-name\":\"Phone Quarterly\"},uLTDzBb6t:{\"data-framer-name\":\"Phone Yearly\"},WDeXF2UzR:{\"data-framer-name\":\"Laptop Quarterly\"},Wo2zpdlD9:{\"data-framer-name\":\"Desktop Yearly\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fdudmu\",\"data-border\":true,\"data-framer-name\":\"Switcher\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhhRk5iB7hv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(160, 118, 249, 0.5)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(96.47753670149545deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, rgba(97, 63, 231, 0) 100%)',borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-e376mr\",\"data-border\":true,\"data-framer-name\":\"Button one\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"x20nZtoBhI8984:1610;8909:184\",onTap:onTapmnl6vl,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-609a9a2f-6807-4dc1-81be-2a2e2b17c22e, rgb(105, 105, 105))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bade7167-8014-42ba-a1af-bca6c9425cec, rgba(230, 184, 46, 0.82))\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},variants:{CkiEoKxnZ:{\"--border-color\":\"rgba(160, 118, 249, 0)\",backgroundColor:\"rgba(97, 63, 231, 0)\"},jSJivzqEP:{\"--border-color\":\"rgba(160, 118, 249, 0)\",backgroundColor:\"rgba(97, 63, 231, 0)\"},uLTDzBb6t:{\"--border-color\":\"rgba(160, 118, 249, 0)\",backgroundColor:\"rgba(97, 63, 231, 0)\"},Wo2zpdlD9:{\"--border-color\":\"rgba(160, 118, 249, 0)\",backgroundColor:\"rgba(97, 63, 231, 0)\"}},...addPropertyOverrides({CkiEoKxnZ:{onTap:onTap1edqo8n},gPI5yYlaT:{onTap:onTap1wrn39x},jSJivzqEP:{onTap:onTap1wrn39x},ONfjZhLDC:{onTap:onTaps1jqw2},uLTDzBb6t:{onTap:onTaps1jqw2},WDeXF2UzR:{onTap:onTap1edqo8n}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yodvjs\",\"data-styles-preset\":\"xiLH5QNCN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)))\"},children:\"Monthly\"})}),className:\"framer-jatim7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhI8984:1610;8909:184;8775:280\",style:{\"--extracted-r6o4lv\":\"var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30))\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gcmbqk\",\"data-border\":true,\"data-framer-name\":\"Button two\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"x20nZtoBhwYZ4fhluF\",onTap:onTap1ffaf4w,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(160, 118, 249, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(97, 63, 231, 0)\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},variants:{CkiEoKxnZ:{\"--border-color\":\"rgba(160, 118, 249, 0.5)\",backgroundColor:\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},jSJivzqEP:{\"--border-color\":\"rgba(160, 118, 249, 0.5)\",backgroundColor:\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},uLTDzBb6t:{\"--border-color\":\"rgba(160, 118, 249, 0.5)\",backgroundColor:\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},Wo2zpdlD9:{\"--border-color\":\"rgba(160, 118, 249, 0.5)\",backgroundColor:\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"}},...addPropertyOverrides({CkiEoKxnZ:{onTap:onTap13utddr},gPI5yYlaT:{onTap:onTap1aa4b8y},jSJivzqEP:{onTap:onTap1aa4b8y},ONfjZhLDC:{onTap:onTapp4ty5t},uLTDzBb6t:{onTap:onTapp4ty5t},WDeXF2UzR:{onTap:onTap13utddr}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yodvjs\",\"data-styles-preset\":\"xiLH5QNCN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Yearly\"})}),className:\"framer-1fsia0h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhblQqq8riq\",style:{\"--extracted-r6o4lv\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},variants:{CkiEoKxnZ:{\"--extracted-r6o4lv\":\"var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30))\"},jSJivzqEP:{\"--extracted-r6o4lv\":\"var(--token-e2bd3c99-a287-474f-9bf2-241cfb9daa8c, rgb(14, 12, 18))\"},uLTDzBb6t:{\"--extracted-r6o4lv\":\"var(--token-e2bd3c99-a287-474f-9bf2-241cfb9daa8c, rgb(14, 12, 18))\"},Wo2zpdlD9:{\"--extracted-r6o4lv\":\"var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CkiEoKxnZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yodvjs\",\"data-styles-preset\":\"xiLH5QNCN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)))\"},children:\"Yearly\"})})},jSJivzqEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yodvjs\",\"data-styles-preset\":\"xiLH5QNCN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e2bd3c99-a287-474f-9bf2-241cfb9daa8c, rgb(14, 12, 18)))\"},children:\"Yearly\"})})},uLTDzBb6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yodvjs\",\"data-styles-preset\":\"xiLH5QNCN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e2bd3c99-a287-474f-9bf2-241cfb9daa8c, rgb(14, 12, 18)))\"},children:\"Yearly\"})})},Wo2zpdlD9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yodvjs\",\"data-styles-preset\":\"xiLH5QNCN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)))\"},children:\"Yearly\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v57oak\",\"data-framer-name\":\"Pricing cards\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhThTdUfcS1\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-13oihrf\",\"data-border\":true,\"data-framer-name\":\"Personal\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhLZByGw9_m\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.07)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e2bd3c99-a287-474f-9bf2-241cfb9daa8c, rgb(14, 12, 18))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hqq63v\",\"data-border\":true,\"data-framer-name\":\"Pricing head\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhZjImTwO3m\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.07)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cgtnhv\",\"data-framer-name\":\"Top content\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhIT2fhl6uF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dhq7xx\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhoChGkaJr1\",style:{backgroundColor:\"rgb(24, 23, 30)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14or2b5\",\"data-styles-preset\":\"LObxD0UhF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"MSP FLEX\"})}),className:\"framer-3e1s0e\",\"data-framer-name\":\"Personal\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhydEj6YlyS\",style:{\"--extracted-r6o4lv\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"Ruckus MSPs that want to add Open WiFi\"}),\": We offer a Turnkey MSP solution using Ruckus and Open WiFi hosted in AWS or connect your controller to our cloud.\"]})}),className:\"framer-p7z4yt\",\"data-framer-name\":\"Sign up for a free trial today and experience the difference.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhnQrsKQA6u\",style:{\"--extracted-1w3ko1f\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214))\",\"--extracted-r6o4lv\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1otdu84\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhFW5mctVL2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4qm11\",\"data-framer-name\":\"Main Price\",layoutDependency:layoutDependency,layoutId:\"Tbq48VpCu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"$10k-$25k\"})}),className:\"framer-19f1hof\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBha6LqWYI8P\",style:{\"--extracted-1of0zx5\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CkiEoKxnZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"10 Months\"})})},jSJivzqEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"$85\"})})},uLTDzBb6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"$85\"})})},Wo2zpdlD9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"10 Months\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per month\"})}),className:\"framer-1w70je5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhvDAx8Td7p\",style:{\"--extracted-r6o4lv\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214))\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CkiEoKxnZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per Year\"})})},jSJivzqEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per Year\"})})},uLTDzBb6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per Year\"})})},Wo2zpdlD9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per Year\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-127ut78\",\"data-styles-preset\":\"uisaNMvbg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214)))\"},children:\"join our\"}),\" Free 90-day Early Accelerator Program\"]})}),className:\"framer-3y9d7v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhN9hLR7TaE\",style:{\"--extracted-1w3ko1f\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214))\",\"--extracted-r6o4lv\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3203 - 60px)`,...addPropertyOverrides({CkiEoKxnZ:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.45 - 60px)`},gPI5yYlaT:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.48 - 30px)`},jSJivzqEP:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.48 - 30px)`},ONfjZhLDC:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+0+40+429.2},uLTDzBb6t:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+0+40+429.2},WDeXF2UzR:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.45 - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1npt1uy-container\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhrDdCX3aSI-container\",children:/*#__PURE__*/_jsx(Button,{BlJNMfRrN:false,height:\"100%\",icFgveKzp:\"arrow-right\",id:\"x20nZtoBhrDdCX3aSI\",layoutId:\"x20nZtoBhrDdCX3aSI\",qWQ35JEj6:\"Claim Your EAP Spot\",style:{width:\"100%\"},variant:\"Q2gMFuFaz\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-alfqym\",\"data-framer-name\":\"Pricing lists\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhpgEwkthGr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c3eddb\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhJzQpATgiN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-we0hmw\",\"data-styles-preset\":\"jXf2dgLDj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:[\"Transforming\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\" \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214)))\"},children:\"Features\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\":\"})]})}),className:\"framer-1741c9x\",\"data-framer-name\":\"Features Included:\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhQScP88zAg\",style:{\"--extracted-1w3ko1f\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--extracted-3sq8v0\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214))\",\"--extracted-c9yw3e\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3042p\",\"data-framer-name\":\"Feature List\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhVDc20fh3f\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-136igh4\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhTyr6TKzY0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8b6i31\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhZCtU61Vec\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)) /* {\"name\":\"Neutral 03\"} */ 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5iA3XytbXUOFvYMJHKaD0WoEiOQ.svg\"},className:\"framer-17m9c31\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhAaEkKSDfP\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+551.2+32+177+0+0+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5iA3XytbXUOFvYMJHKaD0WoEiOQ.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+551.2+32+177+0+0+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5iA3XytbXUOFvYMJHKaD0WoEiOQ.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Connectivity:\"}),\" Ruckus and Open WiFi\"]})}),className:\"framer-ef9rhz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhGPnmqBfLt\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nnfp5w\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"lNmBrM8Zs\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ux6w8m\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"hEAGQFhvx\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)) /* {\"name\":\"Neutral 03\"} */ 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O7iaXqm5lUIIGpAeAyI8wOZbM.svg\"},className:\"framer-5z77o2\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"RLt0pbZwO\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+551.2+32+177+0+156+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O7iaXqm5lUIIGpAeAyI8wOZbM.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+551.2+32+177+0+156+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O7iaXqm5lUIIGpAeAyI8wOZbM.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Solutions\"}),\": Pre-Integrated\"]})}),className:\"framer-13x6x79\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HBn7bjdj_\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jkx1nx\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"VWI0YjQlo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hx8l2x\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"bpU9iheE1\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)) /* {\"name\":\"Neutral 03\"} */ 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dgfxV4Hwmwq3tkDCZQkfeo7A.svg\"},className:\"framer-7q4dnn\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"YcyavlBGN\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+551.2+32+177+0+312+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dgfxV4Hwmwq3tkDCZQkfeo7A.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+551.2+32+177+0+312+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dgfxV4Hwmwq3tkDCZQkfeo7A.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"OS:\"}),\" wibipOS - Basic Edition\"]})}),className:\"framer-12mv0t3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aBQw1DhBe\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3mp4lh\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"Hlf3OxyJC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4c81u1\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Wh3IWemOj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30)) /* {\"name\":\"Neutral 03\"} */ 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hSLRYmxK8rkocCvb1l3GIIlOVg.svg\"},className:\"framer-yj7sul\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"ChOPRfyXw\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+551.2+32+177+0+468+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hSLRYmxK8rkocCvb1l3GIIlOVg.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+0+0+551.2+32+177+0+468+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hSLRYmxK8rkocCvb1l3GIIlOVg.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Support:\"}),\" On-Demand Live SDK\"]})}),className:\"framer-9iivk1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c_BeJUh_f\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-yydzr8\",\"data-border\":true,\"data-framer-name\":\"Business\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhHKTMWlmgM\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.07)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8139056f-6eb1-43e3-a0ba-39ab18aa1fb5, rgb(25, 23, 30))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-511sfb\",\"data-border\":true,\"data-framer-name\":\"Pricing head\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhgNoxCCtLC\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.07)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ntjhot\",\"data-framer-name\":\"Top content\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhzom3WixZN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qvrkql\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhuRt3IWAv0\",style:{backgroundColor:\"rgb(24, 23, 30)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14or2b5\",\"data-styles-preset\":\"LObxD0UhF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"MSP FUSION\"})}),className:\"framer-mk9nlb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhj0kifusXO\",style:{\"--extracted-r6o4lv\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"MSPs with complex managed WiFi operations: \"}),\"consolidate under s single pane of glass and future proofing by adding Open WiFi\"]})}),className:\"framer-j4bzup\",\"data-framer-name\":\"Sign up for a free trial today and experience the difference.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhfkOsN3yVG\",style:{\"--extracted-1w3ko1f\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214))\",\"--extracted-r6o4lv\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--framer-paragraph-spacing\":\"16px\"},variants:{CkiEoKxnZ:{\"--extracted-2gxw0f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},gPI5yYlaT:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-2gxw0f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-3sq8v0\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214))\",\"--extracted-r6o4lv\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214))\"},WDeXF2UzR:{\"--extracted-2gxw0f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CkiEoKxnZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"MSPs with complex managed WiFi operations: \"}),\"consolidate under s single pane of glass and future proofing by adding Open WiFi\"]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})},gPI5yYlaT:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:[\"MSPs with \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Multi-Vendor Integration Needs\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214)))\"},children:\"Annual  R&D Budget of ~$500K\"}),\" & \u226525K APs Deployed. \"]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Plans Starting from:\"})]})},WDeXF2UzR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"MSPs with complex managed WiFi operations: \"}),\"consolidate under s single pane of glass and future proofing by adding Open WiFi\"]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4wb3jd\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"VpK1fslpk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kiuhge\",\"data-framer-name\":\"Main Price\",layoutDependency:layoutDependency,layoutId:\"rW2TiXh5I\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"$25k-$75k\"})}),className:\"framer-16qxgfd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NOQRpLNGc\",style:{\"--extracted-1of0zx5\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CkiEoKxnZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"10 Months\"})})},jSJivzqEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"$90\"})})},uLTDzBb6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"$90\"})})},Wo2zpdlD9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"10 Months\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per month\"})}),className:\"framer-1yy1thn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y5m2GzmlW\",style:{\"--extracted-r6o4lv\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214))\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({CkiEoKxnZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per Year\"})})},jSJivzqEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per Year\"})})},uLTDzBb6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per Year\"})})},Wo2zpdlD9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:\"/per Year\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-127ut78\",\"data-styles-preset\":\"uisaNMvbg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214)))\"},children:\"join our F\"}),\"ree 90-day Early Accelerator Program\"]})}),className:\"framer-xf5020\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oCJfZEYSO\",style:{\"--extracted-1w3ko1f\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214))\",\"--extracted-r6o4lv\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3203 - 60px)`,...addPropertyOverrides({CkiEoKxnZ:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.45 - 60px)`},gPI5yYlaT:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.48 - 30px)`},jSJivzqEP:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.48 - 30px)`},ONfjZhLDC:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+0+40+429.2},uLTDzBb6t:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+0+40+429.2},WDeXF2UzR:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.45 - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ii02gq-container\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhHxzeBjDTV-container\",children:/*#__PURE__*/_jsx(Button,{BlJNMfRrN:false,height:\"100%\",icFgveKzp:\"arrow-right\",id:\"x20nZtoBhHxzeBjDTV\",layoutId:\"x20nZtoBhHxzeBjDTV\",qWQ35JEj6:\"Claim Your EAP Spot\",style:{width:\"100%\"},variant:\"ONbSzK457\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yfjujp\",\"data-framer-name\":\"Pricing lists\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhHcv9O6kAK\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-o8jzut\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhq4Po4aQA1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-we0hmw\",\"data-styles-preset\":\"jXf2dgLDj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214)))\"},children:[\"Additional\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\" \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Scale\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\" \"}),\"Features\"]})}),className:\"framer-15t8q6t\",\"data-framer-name\":\"Features Included:\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhl2o7VT4cF\",style:{\"--extracted-1w3ko1f\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--extracted-3sq8v0\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-c9yw3e\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214))\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lrs4ik\",\"data-framer-name\":\"Feature List\",layoutDependency:layoutDependency,layoutId:\"TdmWiMKBY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m2831j\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"bDMmxocHb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pbgkbq\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"GuMxwrWo8\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, rgba(97, 63, 231, 0) 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/djKcn13yGYUm8wEz5giJWalc69k.svg\"},className:\"framer-1uvexs8\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"I93Zetpgu\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+551.2+32+177+0+0+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/djKcn13yGYUm8wEz5giJWalc69k.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+551.2+32+177+0+0+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/djKcn13yGYUm8wEz5giJWalc69k.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a1jed8\",layoutDependency:layoutDependency,layoutId:\"MuhI3IAri\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Connectivity:\"}),\" B.Y.O.T.S/AWS\"]})}),className:\"framer-1xnxvv2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"COO9Q1sUL\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1647hop\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"JaJnuVoCh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sk6pxo\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"RpTOCkJuq\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, rgba(97, 63, 231, 0) 98.93798828125%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Nod1sepcQY3T45kxx5NER9LnzI.svg\"},className:\"framer-v6zzo5\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"VY0oMZ8jz\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+551.2+32+177+0+52+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Nod1sepcQY3T45kxx5NER9LnzI.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+551.2+32+177+0+52+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Nod1sepcQY3T45kxx5NER9LnzI.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Solutions:\"}),\" Basic Dynamic Roadmap\"]})}),className:\"framer-74rbno\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v6_EvNJtW\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18xzdkk\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"e1vfUekjX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18tk962\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"LkDntKUg1\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, rgba(97, 63, 231, 0) 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/d6QXu7gFkqItj8CF8Eq3RNkzg.svg\"},className:\"framer-1izs4ou\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"vGy_AU_SG\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+551.2+32+177+0+208+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/d6QXu7gFkqItj8CF8Eq3RNkzg.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+551.2+32+177+0+208+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/d6QXu7gFkqItj8CF8Eq3RNkzg.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"OS:\"}),\" wibipOS Distributor Edition\"]})}),className:\"framer-1l6ux6l\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qJOLKs_DX\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17uds3e\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"AI2vwGJXo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-o7o1r5\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"xfuWNoK4C\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, rgba(97, 63, 231, 0) 90.82636102899775%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H2bzQrK6URaVOj3XZZALqKv1fo.svg\"},className:\"framer-13mt1hm\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"tVeJT1xiL\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+551.2+32+177+0+364+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H2bzQrK6URaVOj3XZZALqKv1fo.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+1428.2+0+551.2+32+177+0+364+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H2bzQrK6URaVOj3XZZALqKv1fo.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Support\"}),\": Shared Part-Time Live SDK \"]})}),className:\"framer-bqny8n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ca6szpRuJ\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1wya2um\",\"data-border\":true,\"data-framer-name\":\"Enterprise\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhINdutpCC3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.07)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e2bd3c99-a287-474f-9bf2-241cfb9daa8c, rgb(14, 12, 18))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q6i1fb\",\"data-border\":true,\"data-framer-name\":\"Pricing head\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhcLUuoPlav\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.07)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1imkayy\",\"data-framer-name\":\"Top content\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhMYNDifY4B\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u58vgg\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhkdScRTlje\",style:{backgroundColor:\"rgb(24, 23, 30)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14or2b5\",\"data-styles-preset\":\"LObxD0UhF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"MSP OMNI\"})}),className:\"framer-1kgv0lp\",\"data-framer-name\":\"Personal\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhBD0ApE51s\",style:{\"--extracted-r6o4lv\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\"},transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gPI5yYlaT:{\"data-highlight\":true,onTap:onTap1wrn39x}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214)))\"},children:[\"For TELCOs, MSOs  and MSPs with complex  multi-legacy vendors: \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Ongoing\"}),\" \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"complex Integration and customization needs\"}),\" \"]})}),className:\"framer-1hv0xkb\",\"data-framer-name\":\"Sign up for a free trial today and experience the difference.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhN6EaMcT_x\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-3sq8v0\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(202, 198, 214))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-os3i4g\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"mVzgXd2X6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uockxz\",\"data-framer-name\":\"Main Price\",layoutDependency:layoutDependency,layoutId:\"BBBtPz1Fb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"CUSTOM\"})}),className:\"framer-xv1yj3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"P9RLNaKEb\",style:{\"--extracted-1of0zx5\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({jSJivzqEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"$160\"})})},uLTDzBb6t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1thkik3\",\"data-styles-preset\":\"nJwfhQ0mx\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:\"$160\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-127ut78\",\"data-styles-preset\":\"uisaNMvbg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Special VIP Pricing\"}),\" available for past clients\"]})}),className:\"framer-ydrxm8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MO6c6OfP9\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-cfc78071-54e2-4e15-ae12-a6af123ad41c, rgb(213, 212, 214))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3203 - 60px)`,...addPropertyOverrides({CkiEoKxnZ:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.45 - 60px)`},gPI5yYlaT:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.48 - 30px)`},jSJivzqEP:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.48 - 30px)`},ONfjZhLDC:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+0+40+429.2},uLTDzBb6t:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+0+40+429.2},WDeXF2UzR:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.45 - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6hsy1s-container\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhP7egQQvwf-container\",children:/*#__PURE__*/_jsx(Button,{BlJNMfRrN:false,height:\"100%\",icFgveKzp:\"arrow-right\",id:\"x20nZtoBhP7egQQvwf\",layoutId:\"x20nZtoBhP7egQQvwf\",qWQ35JEj6:\"Let's Talk!\",style:{width:\"100%\"},variant:\"Q2gMFuFaz\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-afy4qv\",\"data-framer-name\":\"Pricing lists\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhvTOciMr1k\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-naodq5\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"x20nZtoBhfQWF4ikBj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-we0hmw\",\"data-styles-preset\":\"jXf2dgLDj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Expand\"}),\" Features\"]})}),className:\"framer-lz0oty\",\"data-framer-name\":\"Features Included:\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20nZtoBhj3F6cFaF1\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s8z06t\",\"data-framer-name\":\"Feature List\",layoutDependency:layoutDependency,layoutId:\"g6mQXdM8N\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ogdlx\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"q99iZvbJ7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h1bxwl\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"fW53AATyV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, rgba(97, 63, 231, 0) 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/stYitpGe06rhSxGuB9nOempvUGY.svg\"},className:\"framer-jo281n\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"Ya4ml2mbM\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+551.2+32+177+0+0+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/stYitpGe06rhSxGuB9nOempvUGY.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+551.2+32+177+0+0+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/stYitpGe06rhSxGuB9nOempvUGY.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Connectivity\"}),\": B.Y.O.T.S/Private Cloud\"]})}),className:\"framer-38mmdf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C6sa8ZFcy\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bxoedv\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"b6ZqMUi2x\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14tqi0z\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"uGTFTXhSJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, rgba(97, 63, 231, 0) 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1HnrpMDhTAykU0cwlOymRA3gEc.svg\"},className:\"framer-1f4ayrh\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"HmzJcyw7d\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+551.2+32+177+0+156+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1HnrpMDhTAykU0cwlOymRA3gEc.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+551.2+32+177+0+156+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1HnrpMDhTAykU0cwlOymRA3gEc.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Solutions:  \"}),\"Dynamic Roadmap\"]})}),className:\"framer-cds26c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TV8OC2gsr\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15jvogh\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"r2bt0qLau\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13j49f9\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"z2dxOEYn6\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, rgba(97, 63, 231, 0) 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ke4t3Xmp2LSljVpH9IXftVXjuM.svg\"},className:\"framer-6n6t73\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"Q30ed0UEd\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+551.2+32+177+0+312+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ke4t3Xmp2LSljVpH9IXftVXjuM.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+551.2+32+177+0+312+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ke4t3Xmp2LSljVpH9IXftVXjuM.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"OS\"}),\": wibipOS Enterprise Edition\"]})}),className:\"framer-19zgugi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EaxQWJMQK\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r3u3gp\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"PgOBlB1yD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-uv1577\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"d5FfKKIeQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)) /* {\"name\":\"WiBUZ\"} */ 0%, rgba(97, 63, 231, 0) 100%)',borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OSO0XLWePbr9IAZwYNGfLYQ4Xw.svg\"},className:\"framer-9rdmcg\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"tsYIn00yv\",transformTemplate:transformTemplate1,...addPropertyOverrides({ONfjZhLDC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+551.2+32+177+0+468+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OSO0XLWePbr9IAZwYNGfLYQ4Xw.svg\"}},uLTDzBb6t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:12,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2546.5)-0-4260.8)/2+69.2+35)+0+2752.4+0+551.2+32+177+0+468+0+10.000000000000007),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OSO0XLWePbr9IAZwYNGfLYQ4Xw.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-u7ekdo\",\"data-styles-preset\":\"wDKBZKNNv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51)))\"},children:\"Support\"}),\":  Dedicated Live SDK\"]})}),className:\"framer-1srmoj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xWDiC2tq2\",style:{\"--extracted-1w3ko1f\":\"var(--token-1f5bbc68-848e-4480-8e6d-046f1eeb152a, rgb(255, 195, 51))\",\"--extracted-r6o4lv\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CLSit.framer-1a06wcp, .framer-CLSit .framer-1a06wcp { display: block; }\",\".framer-CLSit.framer-1kuv6fo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1224px; }\",\".framer-CLSit .framer-1fdudmu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-CLSit .framer-e376mr, .framer-CLSit .framer-1gcmbqk { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 13px 24px 13px 24px; position: relative; width: min-content; }\",\".framer-CLSit .framer-jatim7, .framer-CLSit .framer-1fsia0h, .framer-CLSit .framer-19f1hof, .framer-CLSit .framer-16qxgfd, .framer-CLSit .framer-xv1yj3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CLSit .framer-1v57oak { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CLSit .framer-13oihrf, .framer-CLSit .framer-yydzr8, .framer-CLSit .framer-1wya2um { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 32%; }\",\".framer-CLSit .framer-1hqq63v, .framer-CLSit .framer-511sfb, .framer-CLSit .framer-q6i1fb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 30px 34px 30px; position: relative; width: 100%; }\",\".framer-CLSit .framer-cgtnhv, .framer-CLSit .framer-3042p, .framer-CLSit .framer-ntjhot, .framer-CLSit .framer-1lrs4ik, .framer-CLSit .framer-1imkayy, .framer-CLSit .framer-s8z06t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CLSit .framer-dhq7xx, .framer-CLSit .framer-1qvrkql, .framer-CLSit .framer-1u58vgg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 47px; overflow: visible; padding: 8px 20px 8px 20px; position: relative; width: 100%; }\",\".framer-CLSit .framer-3e1s0e { flex: none; height: auto; left: 50%; position: absolute; top: 47%; white-space: pre; width: auto; z-index: 1; }\",\".framer-CLSit .framer-p7z4yt, .framer-CLSit .framer-3y9d7v, .framer-CLSit .framer-j4bzup, .framer-CLSit .framer-xf5020, .framer-CLSit .framer-1hv0xkb, .framer-CLSit .framer-ydrxm8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CLSit .framer-1otdu84, .framer-CLSit .framer-4wb3jd, .framer-CLSit .framer-os3i4g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CLSit .framer-4qm11, .framer-CLSit .framer-kiuhge, .framer-CLSit .framer-1uockxz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CLSit .framer-1w70je5, .framer-CLSit .framer-1yy1thn { flex: none; height: 45px; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-CLSit .framer-1npt1uy-container, .framer-CLSit .framer-1ii02gq-container, .framer-CLSit .framer-6hsy1s-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CLSit .framer-alfqym, .framer-CLSit .framer-1yfjujp, .framer-CLSit .framer-afy4qv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 30px 40px 30px; position: relative; width: 100%; }\",\".framer-CLSit .framer-c3eddb, .framer-CLSit .framer-o8jzut, .framer-CLSit .framer-naodq5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 135px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CLSit .framer-1741c9x, .framer-CLSit .framer-ef9rhz, .framer-CLSit .framer-13x6x79, .framer-CLSit .framer-12mv0t3, .framer-CLSit .framer-9iivk1, .framer-CLSit .framer-15t8q6t, .framer-CLSit .framer-74rbno, .framer-CLSit .framer-1l6ux6l, .framer-CLSit .framer-bqny8n, .framer-CLSit .framer-lz0oty, .framer-CLSit .framer-38mmdf, .framer-CLSit .framer-cds26c, .framer-CLSit .framer-19zgugi, .framer-CLSit .framer-1srmoj { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-CLSit .framer-136igh4, .framer-CLSit .framer-nnfp5w, .framer-CLSit .framer-jkx1nx, .framer-CLSit .framer-3mp4lh, .framer-CLSit .framer-m2831j, .framer-CLSit .framer-1647hop, .framer-CLSit .framer-18xzdkk, .framer-CLSit .framer-17uds3e, .framer-CLSit .framer-14ogdlx, .framer-CLSit .framer-bxoedv, .framer-CLSit .framer-15jvogh, .framer-CLSit .framer-1r3u3gp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CLSit .framer-8b6i31, .framer-CLSit .framer-ux6w8m, .framer-CLSit .framer-1hx8l2x, .framer-CLSit .framer-4c81u1, .framer-CLSit .framer-pbgkbq, .framer-CLSit .framer-1sk6pxo, .framer-CLSit .framer-18tk962, .framer-CLSit .framer-o7o1r5, .framer-CLSit .framer-h1bxwl, .framer-CLSit .framer-14tqi0z, .framer-CLSit .framer-13j49f9, .framer-CLSit .framer-uv1577 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: hidden; padding: 2px 0px 0px 0px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CLSit .framer-17m9c31, .framer-CLSit .framer-5z77o2, .framer-CLSit .framer-7q4dnn, .framer-CLSit .framer-yj7sul, .framer-CLSit .framer-1uvexs8, .framer-CLSit .framer-v6zzo5, .framer-CLSit .framer-1izs4ou, .framer-CLSit .framer-13mt1hm, .framer-CLSit .framer-jo281n, .framer-CLSit .framer-1f4ayrh, .framer-CLSit .framer-6n6t73, .framer-CLSit .framer-9rdmcg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 12px; z-index: 1; }\",\".framer-CLSit .framer-mk9nlb { flex: none; height: auto; left: 50%; position: absolute; top: 45%; white-space: pre; width: auto; z-index: 1; }\",\".framer-CLSit .framer-1a1jed8 { flex: 1 0 0px; height: 27px; overflow: visible; position: relative; width: 1px; }\",\".framer-CLSit .framer-1xnxvv2 { flex: none; height: auto; left: 50%; position: absolute; top: 48%; white-space: pre-wrap; width: 284px; word-break: break-word; word-wrap: break-word; }\",\".framer-CLSit .framer-1kgv0lp { flex: none; height: auto; left: 50%; position: absolute; top: 49%; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CLSit.framer-1kuv6fo, .framer-CLSit .framer-1fdudmu, .framer-CLSit .framer-e376mr, .framer-CLSit .framer-1gcmbqk, .framer-CLSit .framer-1v57oak, .framer-CLSit .framer-13oihrf, .framer-CLSit .framer-1hqq63v, .framer-CLSit .framer-cgtnhv, .framer-CLSit .framer-dhq7xx, .framer-CLSit .framer-1otdu84, .framer-CLSit .framer-4qm11, .framer-CLSit .framer-alfqym, .framer-CLSit .framer-c3eddb, .framer-CLSit .framer-3042p, .framer-CLSit .framer-136igh4, .framer-CLSit .framer-8b6i31, .framer-CLSit .framer-nnfp5w, .framer-CLSit .framer-ux6w8m, .framer-CLSit .framer-jkx1nx, .framer-CLSit .framer-1hx8l2x, .framer-CLSit .framer-3mp4lh, .framer-CLSit .framer-4c81u1, .framer-CLSit .framer-yydzr8, .framer-CLSit .framer-511sfb, .framer-CLSit .framer-ntjhot, .framer-CLSit .framer-1qvrkql, .framer-CLSit .framer-4wb3jd, .framer-CLSit .framer-kiuhge, .framer-CLSit .framer-1yfjujp, .framer-CLSit .framer-o8jzut, .framer-CLSit .framer-1lrs4ik, .framer-CLSit .framer-m2831j, .framer-CLSit .framer-pbgkbq, .framer-CLSit .framer-1647hop, .framer-CLSit .framer-1sk6pxo, .framer-CLSit .framer-18xzdkk, .framer-CLSit .framer-18tk962, .framer-CLSit .framer-17uds3e, .framer-CLSit .framer-o7o1r5, .framer-CLSit .framer-1wya2um, .framer-CLSit .framer-q6i1fb, .framer-CLSit .framer-1imkayy, .framer-CLSit .framer-1u58vgg, .framer-CLSit .framer-os3i4g, .framer-CLSit .framer-1uockxz, .framer-CLSit .framer-afy4qv, .framer-CLSit .framer-naodq5, .framer-CLSit .framer-s8z06t, .framer-CLSit .framer-14ogdlx, .framer-CLSit .framer-h1bxwl, .framer-CLSit .framer-bxoedv, .framer-CLSit .framer-14tqi0z, .framer-CLSit .framer-15jvogh, .framer-CLSit .framer-13j49f9, .framer-CLSit .framer-1r3u3gp, .framer-CLSit .framer-uv1577 { gap: 0px; } .framer-CLSit.framer-1kuv6fo > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-CLSit.framer-1kuv6fo > :first-child, .framer-CLSit .framer-13oihrf > :first-child, .framer-CLSit .framer-1hqq63v > :first-child, .framer-CLSit .framer-cgtnhv > :first-child, .framer-CLSit .framer-1otdu84 > :first-child, .framer-CLSit .framer-alfqym > :first-child, .framer-CLSit .framer-3042p > :first-child, .framer-CLSit .framer-yydzr8 > :first-child, .framer-CLSit .framer-511sfb > :first-child, .framer-CLSit .framer-ntjhot > :first-child, .framer-CLSit .framer-4wb3jd > :first-child, .framer-CLSit .framer-1yfjujp > :first-child, .framer-CLSit .framer-1lrs4ik > :first-child, .framer-CLSit .framer-1wya2um > :first-child, .framer-CLSit .framer-q6i1fb > :first-child, .framer-CLSit .framer-1imkayy > :first-child, .framer-CLSit .framer-os3i4g > :first-child, .framer-CLSit .framer-afy4qv > :first-child, .framer-CLSit .framer-s8z06t > :first-child { margin-top: 0px; } .framer-CLSit.framer-1kuv6fo > :last-child, .framer-CLSit .framer-13oihrf > :last-child, .framer-CLSit .framer-1hqq63v > :last-child, .framer-CLSit .framer-cgtnhv > :last-child, .framer-CLSit .framer-1otdu84 > :last-child, .framer-CLSit .framer-alfqym > :last-child, .framer-CLSit .framer-3042p > :last-child, .framer-CLSit .framer-yydzr8 > :last-child, .framer-CLSit .framer-511sfb > :last-child, .framer-CLSit .framer-ntjhot > :last-child, .framer-CLSit .framer-4wb3jd > :last-child, .framer-CLSit .framer-1yfjujp > :last-child, .framer-CLSit .framer-1lrs4ik > :last-child, .framer-CLSit .framer-1wya2um > :last-child, .framer-CLSit .framer-q6i1fb > :last-child, .framer-CLSit .framer-1imkayy > :last-child, .framer-CLSit .framer-os3i4g > :last-child, .framer-CLSit .framer-afy4qv > :last-child, .framer-CLSit .framer-s8z06t > :last-child { margin-bottom: 0px; } .framer-CLSit .framer-1fdudmu > *, .framer-CLSit .framer-dhq7xx > *, .framer-CLSit .framer-4qm11 > *, .framer-CLSit .framer-1qvrkql > *, .framer-CLSit .framer-kiuhge > *, .framer-CLSit .framer-1u58vgg > *, .framer-CLSit .framer-1uockxz > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-CLSit .framer-1fdudmu > :first-child, .framer-CLSit .framer-e376mr > :first-child, .framer-CLSit .framer-1gcmbqk > :first-child, .framer-CLSit .framer-1v57oak > :first-child, .framer-CLSit .framer-dhq7xx > :first-child, .framer-CLSit .framer-4qm11 > :first-child, .framer-CLSit .framer-c3eddb > :first-child, .framer-CLSit .framer-136igh4 > :first-child, .framer-CLSit .framer-8b6i31 > :first-child, .framer-CLSit .framer-nnfp5w > :first-child, .framer-CLSit .framer-ux6w8m > :first-child, .framer-CLSit .framer-jkx1nx > :first-child, .framer-CLSit .framer-1hx8l2x > :first-child, .framer-CLSit .framer-3mp4lh > :first-child, .framer-CLSit .framer-4c81u1 > :first-child, .framer-CLSit .framer-1qvrkql > :first-child, .framer-CLSit .framer-kiuhge > :first-child, .framer-CLSit .framer-o8jzut > :first-child, .framer-CLSit .framer-m2831j > :first-child, .framer-CLSit .framer-pbgkbq > :first-child, .framer-CLSit .framer-1647hop > :first-child, .framer-CLSit .framer-1sk6pxo > :first-child, .framer-CLSit .framer-18xzdkk > :first-child, .framer-CLSit .framer-18tk962 > :first-child, .framer-CLSit .framer-17uds3e > :first-child, .framer-CLSit .framer-o7o1r5 > :first-child, .framer-CLSit .framer-1u58vgg > :first-child, .framer-CLSit .framer-1uockxz > :first-child, .framer-CLSit .framer-naodq5 > :first-child, .framer-CLSit .framer-14ogdlx > :first-child, .framer-CLSit .framer-h1bxwl > :first-child, .framer-CLSit .framer-bxoedv > :first-child, .framer-CLSit .framer-14tqi0z > :first-child, .framer-CLSit .framer-15jvogh > :first-child, .framer-CLSit .framer-13j49f9 > :first-child, .framer-CLSit .framer-1r3u3gp > :first-child, .framer-CLSit .framer-uv1577 > :first-child { margin-left: 0px; } .framer-CLSit .framer-1fdudmu > :last-child, .framer-CLSit .framer-e376mr > :last-child, .framer-CLSit .framer-1gcmbqk > :last-child, .framer-CLSit .framer-1v57oak > :last-child, .framer-CLSit .framer-dhq7xx > :last-child, .framer-CLSit .framer-4qm11 > :last-child, .framer-CLSit .framer-c3eddb > :last-child, .framer-CLSit .framer-136igh4 > :last-child, .framer-CLSit .framer-8b6i31 > :last-child, .framer-CLSit .framer-nnfp5w > :last-child, .framer-CLSit .framer-ux6w8m > :last-child, .framer-CLSit .framer-jkx1nx > :last-child, .framer-CLSit .framer-1hx8l2x > :last-child, .framer-CLSit .framer-3mp4lh > :last-child, .framer-CLSit .framer-4c81u1 > :last-child, .framer-CLSit .framer-1qvrkql > :last-child, .framer-CLSit .framer-kiuhge > :last-child, .framer-CLSit .framer-o8jzut > :last-child, .framer-CLSit .framer-m2831j > :last-child, .framer-CLSit .framer-pbgkbq > :last-child, .framer-CLSit .framer-1647hop > :last-child, .framer-CLSit .framer-1sk6pxo > :last-child, .framer-CLSit .framer-18xzdkk > :last-child, .framer-CLSit .framer-18tk962 > :last-child, .framer-CLSit .framer-17uds3e > :last-child, .framer-CLSit .framer-o7o1r5 > :last-child, .framer-CLSit .framer-1u58vgg > :last-child, .framer-CLSit .framer-1uockxz > :last-child, .framer-CLSit .framer-naodq5 > :last-child, .framer-CLSit .framer-14ogdlx > :last-child, .framer-CLSit .framer-h1bxwl > :last-child, .framer-CLSit .framer-bxoedv > :last-child, .framer-CLSit .framer-14tqi0z > :last-child, .framer-CLSit .framer-15jvogh > :last-child, .framer-CLSit .framer-13j49f9 > :last-child, .framer-CLSit .framer-1r3u3gp > :last-child, .framer-CLSit .framer-uv1577 > :last-child { margin-right: 0px; } .framer-CLSit .framer-e376mr > *, .framer-CLSit .framer-1gcmbqk > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-CLSit .framer-1v57oak > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-CLSit .framer-13oihrf > *, .framer-CLSit .framer-1otdu84 > *, .framer-CLSit .framer-yydzr8 > *, .framer-CLSit .framer-4wb3jd > *, .framer-CLSit .framer-1wya2um > *, .framer-CLSit .framer-os3i4g > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CLSit .framer-1hqq63v > *, .framer-CLSit .framer-511sfb > *, .framer-CLSit .framer-q6i1fb > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CLSit .framer-cgtnhv > *, .framer-CLSit .framer-3042p > *, .framer-CLSit .framer-ntjhot > *, .framer-CLSit .framer-1lrs4ik > *, .framer-CLSit .framer-1imkayy > *, .framer-CLSit .framer-s8z06t > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-CLSit .framer-alfqym > *, .framer-CLSit .framer-1yfjujp > *, .framer-CLSit .framer-afy4qv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-CLSit .framer-c3eddb > *, .framer-CLSit .framer-o8jzut > *, .framer-CLSit .framer-naodq5 > * { margin: 0px; margin-left: calc(135px / 2); margin-right: calc(135px / 2); } .framer-CLSit .framer-136igh4 > *, .framer-CLSit .framer-nnfp5w > *, .framer-CLSit .framer-jkx1nx > *, .framer-CLSit .framer-3mp4lh > *, .framer-CLSit .framer-m2831j > *, .framer-CLSit .framer-1647hop > *, .framer-CLSit .framer-18xzdkk > *, .framer-CLSit .framer-17uds3e > *, .framer-CLSit .framer-14ogdlx > *, .framer-CLSit .framer-bxoedv > *, .framer-CLSit .framer-15jvogh > *, .framer-CLSit .framer-1r3u3gp > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-CLSit .framer-8b6i31 > *, .framer-CLSit .framer-ux6w8m > *, .framer-CLSit .framer-1hx8l2x > *, .framer-CLSit .framer-4c81u1 > *, .framer-CLSit .framer-pbgkbq > *, .framer-CLSit .framer-1sk6pxo > *, .framer-CLSit .framer-18tk962 > *, .framer-CLSit .framer-o7o1r5 > *, .framer-CLSit .framer-h1bxwl > *, .framer-CLSit .framer-14tqi0z > *, .framer-CLSit .framer-13j49f9 > *, .framer-CLSit .framer-uv1577 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-CLSit.framer-v-1kpnb3l.framer-1kuv6fo, .framer-CLSit.framer-v-jho6gc.framer-1kuv6fo { width: 1000px; }\",\".framer-CLSit.framer-v-1kpnb3l .framer-13oihrf, .framer-CLSit.framer-v-1kpnb3l .framer-yydzr8, .framer-CLSit.framer-v-1kpnb3l .framer-1wya2um, .framer-CLSit.framer-v-jho6gc .framer-13oihrf, .framer-CLSit.framer-v-jho6gc .framer-yydzr8, .framer-CLSit.framer-v-jho6gc .framer-1wya2um { width: 45%; }\",\".framer-CLSit.framer-v-1hf6rrs.framer-1kuv6fo, .framer-CLSit.framer-v-1y342e4.framer-1kuv6fo { width: 768px; }\",\".framer-CLSit.framer-v-1hf6rrs .framer-13oihrf, .framer-CLSit.framer-v-1hf6rrs .framer-yydzr8, .framer-CLSit.framer-v-1hf6rrs .framer-1wya2um, .framer-CLSit.framer-v-1y342e4 .framer-13oihrf, .framer-CLSit.framer-v-1y342e4 .framer-yydzr8, .framer-CLSit.framer-v-1y342e4 .framer-1wya2um { width: 48%; }\",\".framer-CLSit.framer-v-1hf6rrs .framer-1hqq63v, .framer-CLSit.framer-v-1hf6rrs .framer-511sfb, .framer-CLSit.framer-v-1hf6rrs .framer-q6i1fb, .framer-CLSit.framer-v-1y342e4 .framer-1hqq63v, .framer-CLSit.framer-v-1y342e4 .framer-511sfb, .framer-CLSit.framer-v-1y342e4 .framer-q6i1fb { padding: 40px 15px 34px 15px; }\",\".framer-CLSit.framer-v-1hf6rrs .framer-alfqym, .framer-CLSit.framer-v-1hf6rrs .framer-1yfjujp, .framer-CLSit.framer-v-1hf6rrs .framer-afy4qv, .framer-CLSit.framer-v-1y342e4 .framer-alfqym, .framer-CLSit.framer-v-1y342e4 .framer-1yfjujp, .framer-CLSit.framer-v-1y342e4 .framer-afy4qv { padding: 32px 15px 40px 15px; }\",\".framer-CLSit.framer-v-1hf6rrs .framer-1kgv0lp { cursor: pointer; }\",\".framer-CLSit.framer-v-ivf2uk.framer-1kuv6fo, .framer-CLSit.framer-v-1go9kb0.framer-1kuv6fo { width: 390px; }\",\".framer-CLSit.framer-v-ivf2uk .framer-1v57oak, .framer-CLSit.framer-v-1go9kb0 .framer-1v57oak { flex-direction: column; }\",\".framer-CLSit.framer-v-ivf2uk .framer-13oihrf, .framer-CLSit.framer-v-ivf2uk .framer-yydzr8, .framer-CLSit.framer-v-ivf2uk .framer-1wya2um, .framer-CLSit.framer-v-1go9kb0 .framer-13oihrf, .framer-CLSit.framer-v-1go9kb0 .framer-yydzr8, .framer-CLSit.framer-v-1go9kb0 .framer-1wya2um { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CLSit.framer-v-ivf2uk .framer-1v57oak { gap: 0px; } .framer-CLSit.framer-v-ivf2uk .framer-1v57oak > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-CLSit.framer-v-ivf2uk .framer-1v57oak > :first-child { margin-top: 0px; } .framer-CLSit.framer-v-ivf2uk .framer-1v57oak > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CLSit.framer-v-1go9kb0 .framer-1v57oak { gap: 0px; } .framer-CLSit.framer-v-1go9kb0 .framer-1v57oak > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-CLSit.framer-v-1go9kb0 .framer-1v57oak > :first-child { margin-top: 0px; } .framer-CLSit.framer-v-1go9kb0 .framer-1v57oak > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-CLSit[data-border=\"true\"]::after, .framer-CLSit [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 879\n * @framerIntrinsicWidth 1224\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Wo2zpdlD9\":{\"layout\":[\"fixed\",\"auto\"]},\"WDeXF2UzR\":{\"layout\":[\"fixed\",\"auto\"]},\"CkiEoKxnZ\":{\"layout\":[\"fixed\",\"auto\"]},\"gPI5yYlaT\":{\"layout\":[\"fixed\",\"auto\"]},\"jSJivzqEP\":{\"layout\":[\"fixed\",\"auto\"]},\"ONfjZhLDC\":{\"layout\":[\"fixed\",\"auto\"]},\"uLTDzBb6t\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPyhoff8q1=withCSS(Component,css,\"framer-CLSit\");export default FramerPyhoff8q1;FramerPyhoff8q1.displayName=\"Pricing Box Two\";FramerPyhoff8q1.defaultProps={height:879,width:1224};addPropertyControls(FramerPyhoff8q1,{variant:{options:[\"x20nZtoBh\",\"Wo2zpdlD9\",\"WDeXF2UzR\",\"CkiEoKxnZ\",\"gPI5yYlaT\",\"jSJivzqEP\",\"ONfjZhLDC\",\"uLTDzBb6t\"],optionTitles:[\"Desktop Quarterly\",\"Desktop Yearly\",\"Laptop Quarterly\",\"Laptop Yearly\",\"Tablet Quarterly\",\"Tablet Yearly\",\"Phone Quarterly\",\"Phone Yearly\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPyhoff8q1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPyhoff8q1\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"879\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1224\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wo2zpdlD9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WDeXF2UzR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CkiEoKxnZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gPI5yYlaT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jSJivzqEP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ONfjZhLDC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uLTDzBb6t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pyhoff8q1.map"],
  "mappings": "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",
  "names": ["useIsOnCanvas", "se", "RenderTarget", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "ButtonFonts", "getFonts", "g5jyDut64_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transformTemplate1", "_", "t", "transition3", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapmnl6vl", "args", "onTap1edqo8n", "onTap1wrn39x", "onTaps1jqw2", "onTap1ffaf4w", "onTap13utddr", "onTap1aa4b8y", "onTapp4ty5t", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerPyhoff8q1", "withCSS", "Pyhoff8q1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
