{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/p0qDS9bsIzfk3Ib7KR9M/zTbCcTezx6UC6tSk0VRz/ExYz5hjVu.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/zzGLuFF4YkasKl1lrsW9/YouTube.js", "ssg:https://framerusercontent.com/modules/UTFV47xBxD2VBloa8WHp/Wli7UivarFeCAzZTKVSk/Yo5vFPjn9.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){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[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ 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}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},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\"],defaultValue:\"left\",displaySegmentedControl:true},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},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},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;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (8184e1b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"xrPvyPG9L\",\"r_H4VmPeB\"];const serializationHash=\"framer-GkbzG\";const variantClassNames={r_H4VmPeB:\"framer-v-1khdphv\",xrPvyPG9L:\"framer-v-5gboem\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const negate=value=>{return!value;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Desktop:\"xrPvyPG9L\",Mobile:\"r_H4VmPeB\"};const getProps=({description1,description2,description3,height,id,integrationsOnlyShowed,price,price2,price3,tap,tap2,tap3,width,yearlyPrice1,yearlyPrice2,yearlyPrice3,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7,_ref8,_ref9;return{...props,d4fh0Fn7X:(_ref=description3!==null&&description3!==void 0?description3:props.d4fh0Fn7X)!==null&&_ref!==void 0?_ref:\"Billed annually. $60 billed monthly\",e7xEDGfiZ:tap3!==null&&tap3!==void 0?tap3:props.e7xEDGfiZ,F_usMqye2:(_ref1=yearlyPrice3!==null&&yearlyPrice3!==void 0?yearlyPrice3:props.F_usMqye2)!==null&&_ref1!==void 0?_ref1:\"$540/yearly (Save 25%)\",GgHE_9KA7:integrationsOnlyShowed!==null&&integrationsOnlyShowed!==void 0?integrationsOnlyShowed:props.GgHE_9KA7,In9DVopcR:tap2!==null&&tap2!==void 0?tap2:props.In9DVopcR,jAIa8X81H:(_ref2=yearlyPrice2!==null&&yearlyPrice2!==void 0?yearlyPrice2:props.jAIa8X81H)!==null&&_ref2!==void 0?_ref2:\"Unlimited storage\",Mf59BWHzn:(_ref3=price!==null&&price!==void 0?price:props.Mf59BWHzn)!==null&&_ref3!==void 0?_ref3:\"$10/m\",PHrRCOoAu:(_ref4=description2!==null&&description2!==void 0?description2:props.PHrRCOoAu)!==null&&_ref4!==void 0?_ref4:\"All deep CRM Integrations, including \",sXg7u65tQ:(_ref5=yearlyPrice1!==null&&yearlyPrice1!==void 0?yearlyPrice1:props.sXg7u65tQ)!==null&&_ref5!==void 0?_ref5:\"512GB storage\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"xrPvyPG9L\",XbVVJcXb9:tap!==null&&tap!==void 0?tap:props.XbVVJcXb9,YdD1OgUD5:(_ref7=price2!==null&&price2!==void 0?price2:props.YdD1OgUD5)!==null&&_ref7!==void 0?_ref7:\"$30/m\",ygA8UZFU3:(_ref8=price3!==null&&price3!==void 0?price3:props.ygA8UZFU3)!==null&&_ref8!==void 0?_ref8:\"$60/m\",Z5_PyT869:(_ref9=description1!==null&&description1!==void 0?description1:props.Z5_PyT869)!==null&&_ref9!==void 0?_ref9:\"All basic Integrations, including \"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XbVVJcXb9,In9DVopcR,e7xEDGfiZ,Mf59BWHzn,YdD1OgUD5,ygA8UZFU3,sXg7u65tQ,jAIa8X81H,F_usMqye2,Z5_PyT869,PHrRCOoAu,d4fh0Fn7X,GgHE_9KA7,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"xrPvyPG9L\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1902blu=activeVariantCallback(async(...args)=>{if(XbVVJcXb9){const res=await XbVVJcXb9(...args);if(res===false)return false;}});const onTapnt51ek=activeVariantCallback(async(...args)=>{if(In9DVopcR){const res=await In9DVopcR(...args);if(res===false)return false;}setVariant(\"xrPvyPG9L\");});const onTap1pe2925=activeVariantCallback(async(...args)=>{if(In9DVopcR){const res=await In9DVopcR(...args);if(res===false)return false;}setVariant(\"r_H4VmPeB\");});const onTap2bmi4g=activeVariantCallback(async(...args)=>{if(e7xEDGfiZ){const res=await e7xEDGfiZ(...args);if(res===false)return false;}});const ref1=React.useRef(null);const visible=negate(GgHE_9KA7);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-5gboem\",className,classNames),\"data-framer-name\":\"Desktop\",initial:variant,layoutDependency:layoutDependency,layoutId:\"xrPvyPG9L\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({r_H4VmPeB:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:\"i.hints.so/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1go9h2d framer-9c7u6e\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"z0JrvGRO7\",onTap:onTap1902blu,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-03184026-6a5a-4e0e-bb67-459ce8738ab0, rgb(210, 210, 208)) /* {\"name\":\"Neutral/300\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-22e34c00-f547-475f-b85c-d728de6742b6, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xdexvj\",layoutDependency:layoutDependency,layoutId:\"fghU5CCnu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xghg23\",layoutDependency:layoutDependency,layoutId:\"SSb9zGvyV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(62, 24, 216))\"},children:\"$10/m\"})}),className:\"framer-1ev459q\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"SuH3ZKgBk\",style:{\"--extracted-gdpscs\":\"rgb(62, 24, 216)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Mf59BWHzn,variants:{r_H4VmPeB:{\"--extracted-1of0zx5\":\"rgb(62, 24, 216)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({r_H4VmPeB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(62, 24, 216))\"},children:\"$10/m\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ubzguw\",layoutDependency:layoutDependency,layoutId:\"BOoCCL946\",style:{backgroundColor:\"var(--token-054241a1-7161-4388-a1cf-8e8837515529, rgb(235, 219, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-480a8c45-ef56-4393-a715-443b9a8dab0e, rgb(120, 85, 255)))\"},children:\"Select\"})}),className:\"framer-s349e\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"W1gO7JcsW\",style:{\"--extracted-r6o4lv\":\"var(--token-480a8c45-ef56-4393-a715-443b9a8dab0e, rgb(120, 85, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pcwlyw\",layoutDependency:layoutDependency,layoutId:\"xYnPA6JzS\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-825dae40-55d4-4fdb-a9a6-4c865968e205, rgb(17, 17, 17)))\"},children:\"text\"})}),className:\"framer-2qakoe\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"eBLyO6iT8\",style:{\"--extracted-1lwpl3i\":\"var(--token-825dae40-55d4-4fdb-a9a6-4c865968e205, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sXg7u65tQ,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-72jus7\",layoutDependency:layoutDependency,layoutId:\"JGeNCW6eV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0ccbf651-1cd4-4386-9679-0d67c3c40f16, rgb(110, 110, 99)))\"},children:\"All basic Integrations, including \"})}),className:\"framer-17sm2jc\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"WZHXgmPAl\",style:{\"--extracted-r6o4lv\":\"var(--token-0ccbf651-1cd4-4386-9679-0d67c3c40f16, rgb(110, 110, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Z5_PyT869,verticalAlignment:\"top\",withExternalLayout:true})})]})})}),visible&&/*#__PURE__*/_jsx(Link,{href:\"i.hints.so/connect/playbook-ai\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-21guea framer-9c7u6e\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qpzxxthzu\",onTap:onTapnt51ek,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(210, 210, 208)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-22e34c00-f547-475f-b85c-d728de6742b6, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({r_H4VmPeB:{onTap:onTap1pe2925}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fi3485\",layoutDependency:layoutDependency,layoutId:\"u5JFLNQC5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g1w8q4\",layoutDependency:layoutDependency,layoutId:\"yRhy3VdQm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(62, 24, 216))\"},children:\"$30/m\"})}),className:\"framer-v5rib6\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"TTbqZW92B\",style:{\"--extracted-gdpscs\":\"rgb(62, 24, 216)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YdD1OgUD5,variants:{r_H4VmPeB:{\"--extracted-1of0zx5\":\"rgb(62, 24, 216)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({r_H4VmPeB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(62, 24, 216))\"},children:\"$30/m\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ixo0eb\",layoutDependency:layoutDependency,layoutId:\"PJ5CZoEQo\",style:{backgroundColor:\"var(--token-054241a1-7161-4388-a1cf-8e8837515529, rgb(235, 219, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-480a8c45-ef56-4393-a715-443b9a8dab0e, rgb(120, 85, 255)))\"},children:\"Select\"})}),className:\"framer-1ahg5q8\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"Awr10E6Q7\",style:{\"--extracted-r6o4lv\":\"var(--token-480a8c45-ef56-4393-a715-443b9a8dab0e, rgb(120, 85, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ktfimu\",layoutDependency:layoutDependency,layoutId:\"SGgW93Cwe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-825dae40-55d4-4fdb-a9a6-4c865968e205, rgb(17, 17, 17)))\"},children:\"512GB storage\"})}),className:\"framer-1l2kcyh\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"dNat6Knzi\",style:{\"--extracted-1lwpl3i\":\"var(--token-825dae40-55d4-4fdb-a9a6-4c865968e205, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jAIa8X81H,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tggsje\",layoutDependency:layoutDependency,layoutId:\"e_b5EILi0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0ccbf651-1cd4-4386-9679-0d67c3c40f16, rgb(110, 110, 99)))\"},children:\"All deep CRM Integrations, including \"})}),className:\"framer-1o25lrq\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"ClWbqpboh\",style:{\"--extracted-r6o4lv\":\"var(--token-0ccbf651-1cd4-4386-9679-0d67c3c40f16, rgb(110, 110, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:PHrRCOoAu,verticalAlignment:\"top\",withExternalLayout:true})})]})})}),visible&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mENDPhMNS\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lpezw5 framer-9c7u6e\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oSz3TXydq\",onTap:onTap2bmi4g,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-03184026-6a5a-4e0e-bb67-459ce8738ab0, rgb(210, 210, 208)) /* {\"name\":\"Neutral/300\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-22e34c00-f547-475f-b85c-d728de6742b6, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jlq7kr\",layoutDependency:layoutDependency,layoutId:\"At7riZ1a9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lil9js\",layoutDependency:layoutDependency,layoutId:\"OUVca0bIj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(62, 24, 216))\"},children:\"$60/m\"})}),className:\"framer-14vgbie\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"slld45acC\",style:{\"--extracted-gdpscs\":\"rgb(62, 24, 216)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ygA8UZFU3,variants:{r_H4VmPeB:{\"--extracted-1of0zx5\":\"rgb(62, 24, 216)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({r_H4VmPeB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(62, 24, 216))\"},children:\"$60/m\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tjrcxz\",layoutDependency:layoutDependency,layoutId:\"eyOrkkOGW\",style:{backgroundColor:\"var(--token-054241a1-7161-4388-a1cf-8e8837515529, rgb(235, 219, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-480a8c45-ef56-4393-a715-443b9a8dab0e, rgb(120, 85, 255)))\"},children:\"Select\"})}),className:\"framer-lktyxq\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"RC8QA33xX\",style:{\"--extracted-r6o4lv\":\"var(--token-480a8c45-ef56-4393-a715-443b9a8dab0e, rgb(120, 85, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vket17\",layoutDependency:layoutDependency,layoutId:\"QvPnmq9s7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-825dae40-55d4-4fdb-a9a6-4c865968e205, rgb(17, 17, 17)))\"},children:\"Unlimited storage\"})}),className:\"framer-ov5gwi\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"MEH6F0K0s\",style:{\"--extracted-1lwpl3i\":\"var(--token-825dae40-55d4-4fdb-a9a6-4c865968e205, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:F_usMqye2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s3gqox\",layoutDependency:layoutDependency,layoutId:\"lRqcwi1s4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0ccbf651-1cd4-4386-9679-0d67c3c40f16, rgb(110, 110, 99)))\"},children:[\"Billed annually. \",/*#__PURE__*/_jsx(motion.strong,{children:\"$60 \"}),\"billed monthly\"]})}),className:\"framer-18bf5i\",fonts:[\"GF;Outfit-regular\",\"GF;Outfit-700\"],layoutDependency:layoutDependency,layoutId:\"VaOsAUJrP\",style:{\"--extracted-r6o4lv\":\"var(--token-0ccbf651-1cd4-4386-9679-0d67c3c40f16, rgb(110, 110, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:d4fh0Fn7X,verticalAlignment:\"top\",withExternalLayout:true})})]})})})]})})});});const css=['.framer-GkbzG[data-border=\"true\"]::after, .framer-GkbzG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GkbzG.framer-9c7u6e, .framer-GkbzG .framer-9c7u6e { display: block; }\",\".framer-GkbzG.framer-5gboem { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 480px; }\",\".framer-GkbzG .framer-1go9h2d, .framer-GkbzG .framer-21guea, .framer-GkbzG .framer-lpezw5 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 32px 32px 32px 32px; position: relative; text-decoration: none; width: 100%; }\",\".framer-GkbzG .framer-xdexvj, .framer-GkbzG .framer-fi3485, .framer-GkbzG .framer-jlq7kr { align-content: flex-start; align-items: flex-start; display: flex; flex-basis: 0px; flex-direction: column; flex-grow: 1; flex-shrink: 0; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-GkbzG .framer-xghg23, .framer-GkbzG .framer-g1w8q4, .framer-GkbzG .framer-lil9js { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GkbzG .framer-1ev459q, .framer-GkbzG .framer-s349e, .framer-GkbzG .framer-2qakoe, .framer-GkbzG .framer-v5rib6, .framer-GkbzG .framer-1ahg5q8, .framer-GkbzG .framer-1l2kcyh, .framer-GkbzG .framer-14vgbie, .framer-GkbzG .framer-lktyxq, .framer-GkbzG .framer-ov5gwi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GkbzG .framer-ubzguw, .framer-GkbzG .framer-1ixo0eb, .framer-GkbzG .framer-1tjrcxz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: min-content; z-index: 2; }\",\".framer-GkbzG .framer-1pcwlyw, .framer-GkbzG .framer-ktfimu, .framer-GkbzG .framer-1vket17 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 5px 0px; position: relative; width: min-content; }\",\".framer-GkbzG .framer-72jus7, .framer-GkbzG .framer-1tggsje, .framer-GkbzG .framer-1s3gqox { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GkbzG .framer-17sm2jc, .framer-GkbzG .framer-1o25lrq, .framer-GkbzG .framer-18bf5i { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GkbzG.framer-5gboem, .framer-GkbzG .framer-xdexvj, .framer-GkbzG .framer-ubzguw, .framer-GkbzG .framer-1pcwlyw, .framer-GkbzG .framer-72jus7, .framer-GkbzG .framer-fi3485, .framer-GkbzG .framer-1ixo0eb, .framer-GkbzG .framer-ktfimu, .framer-GkbzG .framer-1tggsje, .framer-GkbzG .framer-jlq7kr, .framer-GkbzG .framer-1tjrcxz, .framer-GkbzG .framer-1vket17, .framer-GkbzG .framer-1s3gqox { gap: 0px; } .framer-GkbzG.framer-5gboem > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GkbzG.framer-5gboem > :first-child, .framer-GkbzG .framer-xdexvj > :first-child, .framer-GkbzG .framer-1pcwlyw > :first-child, .framer-GkbzG .framer-72jus7 > :first-child, .framer-GkbzG .framer-fi3485 > :first-child, .framer-GkbzG .framer-ktfimu > :first-child, .framer-GkbzG .framer-1tggsje > :first-child, .framer-GkbzG .framer-jlq7kr > :first-child, .framer-GkbzG .framer-1vket17 > :first-child, .framer-GkbzG .framer-1s3gqox > :first-child { margin-top: 0px; } .framer-GkbzG.framer-5gboem > :last-child, .framer-GkbzG .framer-xdexvj > :last-child, .framer-GkbzG .framer-1pcwlyw > :last-child, .framer-GkbzG .framer-72jus7 > :last-child, .framer-GkbzG .framer-fi3485 > :last-child, .framer-GkbzG .framer-ktfimu > :last-child, .framer-GkbzG .framer-1tggsje > :last-child, .framer-GkbzG .framer-jlq7kr > :last-child, .framer-GkbzG .framer-1vket17 > :last-child, .framer-GkbzG .framer-1s3gqox > :last-child { margin-bottom: 0px; } .framer-GkbzG .framer-xdexvj > *, .framer-GkbzG .framer-fi3485 > *, .framer-GkbzG .framer-jlq7kr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GkbzG .framer-ubzguw > *, .framer-GkbzG .framer-1ixo0eb > *, .framer-GkbzG .framer-1tjrcxz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GkbzG .framer-ubzguw > :first-child, .framer-GkbzG .framer-1ixo0eb > :first-child, .framer-GkbzG .framer-1tjrcxz > :first-child { margin-left: 0px; } .framer-GkbzG .framer-ubzguw > :last-child, .framer-GkbzG .framer-1ixo0eb > :last-child, .framer-GkbzG .framer-1tjrcxz > :last-child { margin-right: 0px; } .framer-GkbzG .framer-1pcwlyw > *, .framer-GkbzG .framer-ktfimu > *, .framer-GkbzG .framer-1vket17 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GkbzG .framer-72jus7 > *, .framer-GkbzG .framer-1tggsje > *, .framer-GkbzG .framer-1s3gqox > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-GkbzG.framer-v-1khdphv.framer-5gboem { width: 350px; }\",\".framer-GkbzG.framer-v-1khdphv .framer-xghg23, .framer-GkbzG.framer-v-1khdphv .framer-g1w8q4, .framer-GkbzG.framer-v-1khdphv .framer-lil9js { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-GkbzG.framer-v-1khdphv .framer-1pcwlyw { padding: 0px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GkbzG.framer-v-1khdphv .framer-xghg23, .framer-GkbzG.framer-v-1khdphv .framer-g1w8q4, .framer-GkbzG.framer-v-1khdphv .framer-lil9js { gap: 0px; } .framer-GkbzG.framer-v-1khdphv .framer-xghg23 > *, .framer-GkbzG.framer-v-1khdphv .framer-xghg23 > :first-child, .framer-GkbzG.framer-v-1khdphv .framer-xghg23 > :last-child, .framer-GkbzG.framer-v-1khdphv .framer-g1w8q4 > *, .framer-GkbzG.framer-v-1khdphv .framer-g1w8q4 > :first-child, .framer-GkbzG.framer-v-1khdphv .framer-g1w8q4 > :last-child, .framer-GkbzG.framer-v-1khdphv .framer-lil9js > *, .framer-GkbzG.framer-v-1khdphv .framer-lil9js > :first-child, .framer-GkbzG.framer-v-1khdphv .framer-lil9js > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 651\n * @framerIntrinsicWidth 480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"r_H4VmPeB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XbVVJcXb9\":\"tap\",\"In9DVopcR\":\"tap2\",\"e7xEDGfiZ\":\"tap3\",\"Mf59BWHzn\":\"price\",\"YdD1OgUD5\":\"price2\",\"ygA8UZFU3\":\"price3\",\"sXg7u65tQ\":\"yearlyPrice1\",\"jAIa8X81H\":\"yearlyPrice2\",\"F_usMqye2\":\"yearlyPrice3\",\"Z5_PyT869\":\"description1\",\"PHrRCOoAu\":\"description2\",\"d4fh0Fn7X\":\"description3\",\"GgHE_9KA7\":\"integrationsOnlyShowed\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerExYz5hjVu=withCSS(Component,css,\"framer-GkbzG\");export default FramerExYz5hjVu;FramerExYz5hjVu.displayName=\"Elements/ Pricing plan\";FramerExYz5hjVu.defaultProps={height:651,width:480};addPropertyControls(FramerExYz5hjVu,{variant:{options:[\"xrPvyPG9L\",\"r_H4VmPeB\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},XbVVJcXb9:{title:\"Tap\",type:ControlType.EventHandler},In9DVopcR:{title:\"Tap 2\",type:ControlType.EventHandler},e7xEDGfiZ:{title:\"Tap 3\",type:ControlType.EventHandler},Mf59BWHzn:{defaultValue:\"$10/m\",displayTextArea:false,title:\"Price\",type:ControlType.String},YdD1OgUD5:{defaultValue:\"$30/m\",displayTextArea:false,title:\"Price 2\",type:ControlType.String},ygA8UZFU3:{defaultValue:\"$60/m\",displayTextArea:false,title:\"Price 3\",type:ControlType.String},sXg7u65tQ:{defaultValue:\"512GB storage\",displayTextArea:false,title:\"Yearly Price 1\",type:ControlType.String},jAIa8X81H:{defaultValue:\"Unlimited storage\",displayTextArea:false,title:\"Yearly Price 2\",type:ControlType.String},F_usMqye2:{defaultValue:\"$540/yearly (Save 25%)\",displayTextArea:false,title:\"Yearly Price 3\",type:ControlType.String},Z5_PyT869:{defaultValue:\"All basic Integrations, including \",displayTextArea:false,title:\"Description 1\",type:ControlType.String},PHrRCOoAu:{defaultValue:\"All deep CRM Integrations, including \",displayTextArea:false,title:\"Description 2\",type:ControlType.String},d4fh0Fn7X:{defaultValue:\"Billed annually. $60 billed monthly\",displayTextArea:false,title:\"Description 3\",type:ControlType.String},GgHE_9KA7:{defaultValue:false,title:\"Integrations only showed\",type:ControlType.Boolean}});addFonts(FramerExYz5hjVu,[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerExYz5hjVu\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"XbVVJcXb9\\\":\\\"tap\\\",\\\"In9DVopcR\\\":\\\"tap2\\\",\\\"e7xEDGfiZ\\\":\\\"tap3\\\",\\\"Mf59BWHzn\\\":\\\"price\\\",\\\"YdD1OgUD5\\\":\\\"price2\\\",\\\"ygA8UZFU3\\\":\\\"price3\\\",\\\"sXg7u65tQ\\\":\\\"yearlyPrice1\\\",\\\"jAIa8X81H\\\":\\\"yearlyPrice2\\\",\\\"F_usMqye2\\\":\\\"yearlyPrice3\\\",\\\"Z5_PyT869\\\":\\\"description1\\\",\\\"PHrRCOoAu\\\":\\\"description2\\\",\\\"d4fh0Fn7X\\\":\\\"description3\\\",\\\"GgHE_9KA7\\\":\\\"integrationsOnlyShowed\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r_H4VmPeB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"480\",\"framerIntrinsicHeight\":\"651\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ExYz5hjVu.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 */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// 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(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:hasBorderRadius&&showVideo?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},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(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,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 embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High: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 element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn 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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (19eed98)\nimport{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{addFonts as r,addPropertyControls as a,ControlType as i,cx as n,getFonts as o,getPropertyControls as s,Image as l,useActiveVariantCallback as d,useLocaleInfo as m,useVariantState as p,withCSS as c}from\"framer\";import{LayoutGroup as u,motion as f,MotionConfigContext as h}from\"framer-motion\";import*as g from\"react\";import{Icon as w}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js\";import{Youtube as v}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";import{Youtube as x}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/zzGLuFF4YkasKl1lrsW9/YouTube.js\";let b=o(v),y=o(w),R=s(x),W={izf94RFki:{hover:!0}},V=[\"izf94RFki\",\"Jf22CYqxw\",\"HUzJ7NEkd\",\"rqrHRyAya\"],k=\"framer-W0wvg\",z={HUzJ7NEkd:\"framer-v-1kqkk9\",izf94RFki:\"framer-v-1u7ztv1\",Jf22CYqxw:\"framer-v-1nu7srr\",rqrHRyAya:\"framer-v-1i6zvq7\"};function H(e,...t){let r={};return null==t||t.forEach(t=>t&&Object.assign(r,e[t])),r;}let D={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},A=({value:t,children:r})=>{let a=g.useContext(h),i=null!=t?t:a.transition,n=g.useMemo(()=>({...a,transition:i}),[JSON.stringify(i)]);return /*#__PURE__*/e(h.Provider,{value:n,children:r});},I={\"Variant 1\":\"izf94RFki\",\"Variant 2\":\"Jf22CYqxw\",\"Variant 3\":\"HUzJ7NEkd\",\"Variant 4\":\"rqrHRyAya\"},K=({autoplay:e,color:t,height:r,id:a,mute:i,video:n,width:o,...s})=>{var l,d,m,p;return{...s,GYA9O0UGs:null!=i?i:s.GYA9O0UGs,RTokeVRhx:null!==(l=null!=e?e:s.RTokeVRhx)&&void 0!==l?l:\"On\",SyxkeHd_X:null!==(d=null!=n?n:s.SyxkeHd_X)&&void 0!==d?d:\"https://youtu.be/smPos0mJvh8\",variant:null!==(p=null!==(m=I[s.variant])&&void 0!==m?m:s.variant)&&void 0!==p?p:\"izf94RFki\",VG1Y8EWfx:null!=t?t:s.VG1Y8EWfx};},O=(e,t)=>t.join(\"-\")+e.layoutDependency,U=/*#__PURE__*/g.forwardRef(function(r,a){let{activeLocale:i}=m(),{style:o,className:s,layoutId:c,variant:h,SyxkeHd_X:x,RTokeVRhx:b,GYA9O0UGs:y,VG1Y8EWfx:R,...k}=K(r),{baseVariant:I,classNames:U,gestureVariant:X,setGestureState:M,setVariant:S,transition:T,variants:G}=p({cycleOrder:V,defaultVariant:\"izf94RFki\",enabledGestures:W,transitions:D,variant:h,variantClassNames:z}),J=O(r,G),{activeVariantCallback:q,delay:Z}=d(I),Y=q(async(...e)=>{S(\"Jf22CYqxw\");}),P=q(async(...e)=>{S(\"rqrHRyAya\");}),N=g.useRef(null),F=()=>![\"Jf22CYqxw\",\"rqrHRyAya\"].includes(I),Q=g.useId();return /*#__PURE__*/e(u,{id:null!=c?c:Q,children:/*#__PURE__*/e(f.div,{initial:h,animate:G,onHoverStart:()=>M({isHovered:!0}),onHoverEnd:()=>M({isHovered:!1}),onTapStart:()=>M({isPressed:!0}),onTap:()=>M({isPressed:!1}),onTapCancel:()=>M({isPressed:!1}),className:n(\"framer-W0wvg\",...[],U),style:{display:\"contents\"},children:/*#__PURE__*/e(A,{value:T,children:/*#__PURE__*/t(l,{...k,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1443,intrinsicWidth:2560,pixelHeight:1443,pixelWidth:2560,sizes:\"min(911px, 100vw)\",src:\"https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png\",srcSet:\"https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png?scale-down-to=512 512w, https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png 2560w\"},className:n(\"framer-1u7ztv1\",s),\"data-framer-name\":\"Variant 1\",\"data-highlight\":!0,layoutDependency:J,layoutId:\"izf94RFki\",onTap:Y,ref:null!=a?a:N,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...o},...H({\"izf94RFki-hover\":{\"data-framer-name\":void 0},HUzJ7NEkd:{\"data-framer-name\":\"Variant 3\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1443,intrinsicWidth:2560,pixelHeight:1443,pixelWidth:2560,sizes:\"min(480px, 100vw)\",src:\"https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png\",srcSet:\"https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png?scale-down-to=512 512w, https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png 2560w\"},onTap:P},Jf22CYqxw:{\"data-framer-name\":\"Variant 2\"},rqrHRyAya:{\"data-framer-name\":\"Variant 4\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1443,intrinsicWidth:2560,pixelHeight:1443,pixelWidth:2560,sizes:\"min(480px, 100vw)\",src:\"https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png\",srcSet:\"https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png?scale-down-to=512 512w, https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/KDwuUKvM6xOern0DPbXSn82Z0pI.png 2560w\"}}},I,X),children:[\"Jf22CYqxw\"===I&&/*#__PURE__*/e(f.div,{className:\"framer-1aoh5w0-container\",layoutDependency:J,layoutId:\"TqG1Glmh9-container\",children:/*#__PURE__*/e(v,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"TqG1Glmh9\",isMixedBorderRadius:!1,isRed:R,layoutId:\"TqG1Glmh9\",play:b,shouldMute:y,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:x,width:\"100%\"})}),\"rqrHRyAya\"===I&&/*#__PURE__*/e(f.div,{className:\"framer-1yh4n3z-container\",layoutDependency:J,layoutId:\"Y3tXp7G1Be8kfF7rln-container\",children:/*#__PURE__*/e(v,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"Y3tXp7G1Be8kfF7rln\",isMixedBorderRadius:!1,isRed:!1,layoutId:\"Y3tXp7G1Be8kfF7rln\",play:b,shouldMute:!1,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:x,width:\"100%\"})}),F()&&/*#__PURE__*/e(f.div,{className:\"framer-13gy3b5\",\"data-framer-name\":\"Explore\",layoutDependency:J,layoutId:\"LM62xBUDX\",style:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(28, 28, 28, 0.6)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,WebkitBackdropFilter:\"blur(5px)\"},children:/*#__PURE__*/e(f.div,{className:\"framer-nvwnlt-container\",layoutDependency:J,layoutId:\"a_KM3inV7-container\",children:/*#__PURE__*/e(w,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Play\",id:\"a_KM3inV7\",layoutId:\"a_KM3inV7\",mirrored:!1,selectByList:!0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),F()&&/*#__PURE__*/e(l,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:2400,pixelHeight:1200,pixelWidth:2400,sizes:\"calc(min(911px, 100vw) + 1px)\",src:\"https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png\",srcSet:\"https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png?scale-down-to=512 512w, https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png 2400w\"},className:\"framer-iniq1v\",layoutDependency:J,layoutId:\"TtyRM0bL4\",...H({\"izf94RFki-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:2400,pixelHeight:1200,pixelWidth:2400,sizes:\"calc(min(911px, 100vw) + 45px)\",src:\"https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png\",srcSet:\"https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png?scale-down-to=512 512w, https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/AdV93ZWIt6HXJpccWQVTgAURa8A.png 2400w\"}},HUzJ7NEkd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2045,intrinsicWidth:1128,pixelHeight:2045,pixelWidth:1128,sizes:\"calc(min(480px, 100vw) + 1px)\",src:\"https://framerusercontent.com/images/lGaRuGcOIj4DzhuXOKMLptOhtVQ.png\",srcSet:\"https://framerusercontent.com/images/lGaRuGcOIj4DzhuXOKMLptOhtVQ.png?scale-down-to=512 282w, https://framerusercontent.com/images/lGaRuGcOIj4DzhuXOKMLptOhtVQ.png?scale-down-to=1024 564w, https://framerusercontent.com/images/lGaRuGcOIj4DzhuXOKMLptOhtVQ.png 1128w\"}}},I,X)})]})})})});}),X=['.framer-W0wvg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W0wvg .framer-1e5sb0b { display: block; }\",\".framer-W0wvg .framer-1u7ztv1 { cursor: pointer; height: 446px; overflow: hidden; position: relative; width: 911px; will-change: var(--framer-will-change-override, transform); }\",\".framer-W0wvg .framer-1aoh5w0-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-W0wvg .framer-1yh4n3z-container { bottom: 0px; flex: none; height: 640px; left: -356px; position: absolute; right: -356px; }\",\".framer-W0wvg .framer-13gy3b5 { flex: none; height: 164px; left: calc(50.00000000000002% - 164px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 164px / 2); width: 164px; z-index: 2; }\",\".framer-W0wvg .framer-nvwnlt-container { flex: none; height: 60px; left: calc(50.00000000000002% - 60px / 2); position: absolute; top: calc(50.00000000000002% - 60px / 2); width: 60px; }\",\".framer-W0wvg .framer-iniq1v { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-W0wvg .framer-v-1u7ztv1 .framer-1u7ztv1 { cursor: pointer; }\",\".framer-W0wvg.framer-v-1nu7srr .framer-1u7ztv1, .framer-W0wvg.framer-v-1u7ztv1.hover .framer-1u7ztv1 { aspect-ratio: 2.0428571428571427 / 1; height: var(--framer-aspect-ratio-supported, 446px); }\",\".framer-W0wvg.framer-v-1kqkk9 .framer-1u7ztv1, .framer-W0wvg.framer-v-1i6zvq7 .framer-1u7ztv1 { height: 640px; width: 480px; }\",\".framer-W0wvg.framer-v-1u7ztv1.hover .framer-iniq1v { bottom: -10px; left: -22px; right: -22px; top: -10px; }\"],M=c(U,X,\"framer-W0wvg\");export default M;M.displayName=\"YT Video New\",M.defaultProps={height:446,width:911},a(M,{variant:{options:[\"izf94RFki\",\"Jf22CYqxw\",\"HUzJ7NEkd\",\"rqrHRyAya\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:i.Enum},SyxkeHd_X:{defaultValue:\"https://youtu.be/smPos0mJvh8\",title:\"Video\",type:i.String},RTokeVRhx:(null==R?void 0:R.play)&&{...R.play,defaultValue:\"On\",hidden:void 0,title:\"Autoplay\"},GYA9O0UGs:{defaultValue:!1,title:\"Mute\",type:i.Boolean},VG1Y8EWfx:{defaultValue:!1,title:\"Color\",type:i.Boolean}}),r(M,[...b,...y]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYo5vFPjn9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Jf22CYqxw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HUzJ7NEkd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rqrHRyAya\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qLyjOBK6u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"446\",\"framerIntrinsicWidth\":\"911\",\"framerVariables\":\"{\\\"SyxkeHd_X\\\":\\\"video\\\",\\\"RTokeVRhx\\\":\\\"autoplay\\\",\\\"GYA9O0UGs\\\":\\\"mute\\\",\\\"VG1Y8EWfx\\\":\\\"color\\\"}\",\"framerImmutableVariables\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Yo5vFPjn9.map"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "negate", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "description1", "description2", "description3", "height", "id", "integrationsOnlyShowed", "price", "price2", "price3", "tap", "tap2", "tap3", "width", "yearlyPrice1", "yearlyPrice2", "yearlyPrice3", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "_ref8", "_ref9", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XbVVJcXb9", "In9DVopcR", "e7xEDGfiZ", "Mf59BWHzn", "YdD1OgUD5", "ygA8UZFU3", "sXg7u65tQ", "jAIa8X81H", "F_usMqye2", "Z5_PyT869", "PHrRCOoAu", "d4fh0Fn7X", "GgHE_9KA7", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1902blu", "args", "onTapnt51ek", "onTap1pe2925", "onTap2bmi4g", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "Link", "RichText", "x", "css", "FramerExYz5hjVu", "withCSS", "ExYz5hjVu_default", "addPropertyControls", "ControlType", "addFonts", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "b", "getFonts", "Youtube", "y", "Icon", "R", "getPropertyControls", "W", "V", "z", "H", "e", "t", "r", "D", "A", "a", "re", "MotionConfigContext", "i", "n", "se", "p", "I", "K", "o", "s", "l", "d", "m", "O", "U", "Y", "useLocaleInfo", "c", "h", "x", "b", "y", "R", "k", "X", "M", "S", "T", "G", "useVariantState", "V", "W", "J", "q", "Z", "useActiveVariantCallback", "P", "N", "pe", "F", "Q", "ae", "LayoutGroup", "motion", "cx", "u", "Image2", "Youtube", "Icon", "withCSS", "Yo5vFPjn9_default", "addPropertyControls", "ControlType", "addFonts"]
}
