{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/P9weY5oesuog25D6c2My/ISvWJtrZVi7jqgRGaKNc/e2i_oXhGx.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js", "ssg:https://framerusercontent.com/modules/NPbTpoCwZtgIukkszTcA/ErvClUDfqUcNmW7A3JaP/fHdF_iiAS.js", "ssg:https://framerusercontent.com/modules/Lnv2UlUzQWhQPm6bRJBN/fmmfSIk5ueUOaCXoyo52/JUVcPHe94.js", "ssg:https://framerusercontent.com/modules/6mwITPJS9cZuyxrb7MDJ/yP6um3mSfXOY1E4Uz2VW/lWdoGmU__.js", "ssg:https://framerusercontent.com/modules/5q5xotBjqoqx9r0aXNOs/F0s1Rt9gEzYnGUrqP5Mb/o0RXF70qH.js", "ssg:https://framerusercontent.com/modules/JQ9NdPscIO7nbCY2YS9B/DeL0morL7h9E4wvRXGqR/duHpwvvnK.js", "ssg:https://framerusercontent.com/modules/FBtc9qUxof1YTwqTU2Kt/gutJ3V9CTIhFFAKjmKms/P5ZLESxqa.js", "ssg:https://framerusercontent.com/modules/jUuvasA6Yl5QjEtQakQ9/wQsg2WWcDX7L1lGMgmN8/aCwY4OVrk.js", "ssg:https://framerusercontent.com/modules/04V6oQ3HAWGlYQEJeuCm/pyDyE2RpvVqz4cBVhyJC/u3C7o51Rv.js", "ssg:https://framerusercontent.com/modules/VWS1lkFTqzILSeCmcZ11/SrNe2PpL3ApVdeuzZBJE/eVkqgYxPg.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,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;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=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);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(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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 isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\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:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=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\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "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,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);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=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);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(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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 isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}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,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,Image,optimizeAppear,optimizeAppearTransformTemplate,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qMMa0WHA8bQB88aykSvR/cl4UT6hBA09MRybgK2re/h7cdB18Le.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"gb5dPiGVt\"];const serializationHash=\"framer-vNjxH\";const variantClassNames={gb5dPiGVt:\"framer-v-gpqh5l\"};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 transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,scale:.5,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,scale:.5,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _restProps_transformTemplate;const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gb5dPiGVt\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);var _restProps_transformTemplate1;const transforms=(_restProps_transformTemplate1=(_restProps_transformTemplate=restProps.transformTemplate)===null||_restProps_transformTemplate===void 0?void 0:_restProps_transformTemplate.call(restProps,undefined,\"\"))!==null&&_restProps_transformTemplate1!==void 0?_restProps_transformTemplate1:\"\";const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,__framer__presenceAnimate:optimizeAppear(\"animate\",\"gpqh5l\",animation1,undefined),__framer__presenceExit:animation,__framer__presenceInitial:optimizeAppear(\"initial\",\"gpqh5l\",animation2,undefined),__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gpqh5l\",className,classNames),\"data-framer-appear-id\":\"gpqh5l\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"gb5dPiGVt\",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:{backgroundColor:\"rgb(255, 255, 255)\",...style},transformTemplate:optimizeAppearTransformTemplate(\"gpqh5l\",(_,t)=>`${transforms} perspective(1200px) ${t}`),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:180,intrinsicWidth:650,pixelHeight:180,pixelWidth:650,sizes:\"136px\",src:\"https://framerusercontent.com/images/42AMS5LJaypyYlC4PVcjtsJ1KA.png\",srcSet:\"https://framerusercontent.com/images/42AMS5LJaypyYlC4PVcjtsJ1KA.png?scale-down-to=512 512w,https://framerusercontent.com/images/42AMS5LJaypyYlC4PVcjtsJ1KA.png 650w\"},className:\"framer-16ezumk\",\"data-framer-name\":\"Level_Up\",layoutDependency:layoutDependency,layoutId:\"V3shI04bP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-eb52lf\",\"data-styles-preset\":\"h7cdB18Le\",children:\"Download\"})}),className:\"framer-16w1ern\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ORk6oPgxK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vNjxH.framer-13lyav4, .framer-vNjxH .framer-13lyav4 { display: block; }\",\".framer-vNjxH.framer-gpqh5l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-vNjxH .framer-16ezumk { align-content: center; align-items: center; aspect-ratio: 3.611111111111111 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 38px); justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 136px; }\",\".framer-vNjxH .framer-16w1ern { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vNjxH.framer-gpqh5l, .framer-vNjxH .framer-16ezumk { gap: 0px; } .framer-vNjxH.framer-gpqh5l > *, .framer-vNjxH .framer-16ezumk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vNjxH.framer-gpqh5l > :first-child, .framer-vNjxH .framer-16ezumk > :first-child { margin-top: 0px; } .framer-vNjxH.framer-gpqh5l > :last-child, .framer-vNjxH .framer-16ezumk > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framere2i_oXhGx=withCSS(Component,css,\"framer-vNjxH\");export default Framere2i_oXhGx;Framere2i_oXhGx.displayName=\"Download Cursor\";Framere2i_oXhGx.defaultProps={height:38,width:136};addFonts(Framere2i_oXhGx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framere2i_oXhGx\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"136\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"38\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./e2i_oXhGx.map", "import{jsx as e}from\"react/jsx-runtime\";import{useState as t,useEffect as o}from\"react\";import{addPropertyControls as i,ControlType as l}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function s(i){let[l,s]=t(null);o(()=>{let e=i.customSvgCode;r(e);},[i.customSvgCode,i.customColor,i.customStrokeWidth,i.lineCap,i.lineJoin]);let r=e=>{let t=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']],o=e.includes('stroke=\"'),l=e.includes('stroke-width=\"'),r=e.includes('stroke-linecap=\"'),n=e.includes('stroke-linejoin=\"');if(e.includes(\"<circle\")){// Find the circle element and update its fill attribute\nlet o=/<circle[^>]*fill=\"([^\"]*)\"/,l=e.match(o);if(l){// Update the fill attribute with the custom color\nlet t=l[0].replace(l[1],i.customColor);e=e.replace(o,t);}else // If there is no fill attribute, add it with the custom color\nt.push([/<circle/g,`<circle fill=\"${i.customColor}\"`]);}o?(r?t.push([/<path/g,`<path stroke=\"${i.customColor}\" stroke-linecap=\"${i.lineCap}\"`]):t.push([/<path/g,`<path stroke=\"${i.customColor}\"`]),l&&t.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${i.customStrokeWidth}\"`])):t.push([/<path/g,`<path fill=\"${i.customColor}\"`]),e.includes('overflow=\"')?t.push([/overflow=\"[^\"]*\"/,'overflow=\"visible\"']):t.push([/<svg/,'<svg overflow=\"visible\"']),n?t.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${i.lineJoin}\"`]):t.push([/<path/g,`<path stroke-linejoin=\"${i.lineJoin}\"`]),t.forEach(([t,o])=>{e=e.replace(t,o);}),s(e);},n={padding:`${i.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/e(\"div\",{dangerouslySetInnerHTML:{__html:l},style:n});}s.defaultProps={customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>',customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"},i(s,{customSvgCode:{type:l.String,title:\"SVG Code\",displayTextArea:!1},customColor:{type:l.Color,title:\"Color\",defaultValue:\"#ffffff\"},customStrokeWidth:{type:l.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:!0,hidden:e=>!e.customSvgCode.includes('stroke=\"')},customPadding:{type:l.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:!0},lineCap:{type:l.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:e=>!e.customSvgCode.includes('stroke=\"')},lineJoin:{type:l.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:e=>!e.customSvgCode.includes('stroke=\"')}});export default s;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (3f9fff0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"O2YRVYmW9\"];const serializationHash=\"framer-UvrYP\";const variantClassNames={O2YRVYmW9:\"framer-v-j8tvjy\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 Variants=motion(React.Fragment);const getProps=({color,height,id,sVGCode,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,BaAUS2MX1:(_ref=title!==null&&title!==void 0?title:props.BaAUS2MX1)!==null&&_ref!==void 0?_ref:\"Lost Opportunities\",MmTlL47jl:(_ref1=color!==null&&color!==void 0?color:props.MmTlL47jl)!==null&&_ref1!==void 0?_ref1:\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",uGB4ohfO1:(_ref2=sVGCode!==null&&sVGCode!==void 0?sVGCode:props.uGB4ohfO1)!==null&&_ref2!==void 0?_ref2:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>'};};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,BaAUS2MX1,uGB4ohfO1,MmTlL47jl,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O2YRVYmW9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-j8tvjy\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"O2YRVYmW9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jorm4g-container\",layoutDependency:layoutDependency,layoutId:\"YYyyRtZyW-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:MmTlL47jl,customPadding:0,customStrokeWidth:2,customSvgCode:uGB4ohfO1,height:\"100%\",id:\"YYyyRtZyW\",layoutId:\"YYyyRtZyW\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7RG90R290aGljMTYtcmVndWxhcg==\",\"--framer-font-family\":'\"DotGothic16\", \"DotGothic16 Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.09em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34)))\"},children:\"Lost Opportunities\"})}),className:\"framer-1k6h4p2\",fonts:[\"GF;DotGothic16-regular\"],layoutDependency:layoutDependency,layoutId:\"rBg_CZ5VO\",style:{\"--extracted-1of0zx5\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BaAUS2MX1,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UvrYP.framer-7lv8q9, .framer-UvrYP .framer-7lv8q9 { display: block; }\",\".framer-UvrYP.framer-j8tvjy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 20px 15px 20px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-UvrYP .framer-1jorm4g-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 25px; }\",\".framer-UvrYP .framer-1k6h4p2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UvrYP.framer-j8tvjy { gap: 0px; } .framer-UvrYP.framer-j8tvjy > * { margin: 0px; margin-left: calc(13px / 2); margin-right: calc(13px / 2); } .framer-UvrYP.framer-j8tvjy > :first-child { margin-left: 0px; } .framer-UvrYP.framer-j8tvjy > :last-child { margin-right: 0px; } }\",'.framer-UvrYP[data-border=\"true\"]::after, .framer-UvrYP [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 55\n * @framerIntrinsicWidth 290\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"BaAUS2MX1\":\"title\",\"uGB4ohfO1\":\"sVGCode\",\"MmTlL47jl\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfHdF_iiAS=withCSS(Component,css,\"framer-UvrYP\");export default FramerfHdF_iiAS;FramerfHdF_iiAS.displayName=\"Pills 2\";FramerfHdF_iiAS.defaultProps={height:55,width:290};addPropertyControls(FramerfHdF_iiAS,{BaAUS2MX1:{defaultValue:\"Lost Opportunities\",displayTextArea:false,title:\"Title\",type:ControlType.String},uGB4ohfO1:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>',displayTextArea:false,title:\"SVG Code\",type:ControlType.String},MmTlL47jl:{defaultValue:'var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136)) /* {\"name\":\"Secondary\"} */',title:\"Color\",type:ControlType.Color}});addFonts(FramerfHdF_iiAS,[{explicitInter:true,fonts:[{family:\"DotGothic16\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dotgothic16/v17/v6-QGYjBJFKgyw5nSoDAGE7O435YPFrT.woff2\",weight:\"400\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfHdF_iiAS\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"BaAUS2MX1\\\":\\\"title\\\",\\\"uGB4ohfO1\\\":\\\"sVGCode\\\",\\\"MmTlL47jl\\\":\\\"color\\\"}\",\"framerIntrinsicHeight\":\"55\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"290\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fHdF_iiAS.map", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Kc4AT3T4qmC0a35kaw1v/UpJR61mkhthjY9txfOwk/plzjIvcfB.js\";const enabledGestures={ltAX4mGXa:{hover:true},UjH46xt9P:{hover:true,pressed:true}};const cycleOrder=[\"UjH46xt9P\",\"ltAX4mGXa\"];const serializationHash=\"framer-yPui2\";const variantClassNames={ltAX4mGXa:\"framer-v-cuz6b7\",UjH46xt9P:\"framer-v-poye01\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"With Shadow\":\"UjH46xt9P\",NoShadow:\"ltAX4mGXa\"};const getProps=({height,id,link,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,d3rKsrWsN:(_ref=title!==null&&title!==void 0?title:props.d3rKsrWsN)!==null&&_ref!==void 0?_ref:\"Learn More\",S8x78ZPL2:tap!==null&&tap!==void 0?tap:props.S8x78ZPL2,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"UjH46xt9P\",YI6PUBvQH:link!==null&&link!==void 0?link:props.YI6PUBvQH};};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,d3rKsrWsN,S8x78ZPL2,YI6PUBvQH,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UjH46xt9P\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapr8co48=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(S8x78ZPL2){const res=await S8x78ZPL2(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:YI6PUBvQH,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-poye01\",className,classNames)} framer-1vh5nd9`,\"data-border\":true,\"data-framer-name\":\"With Shadow\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UjH46xt9P\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapr8co48,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(89, 27, 229))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(235, 235, 235)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,...style},variants:{\"UjH46xt9P-hover\":{\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",backgroundColor:\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"}},...addPropertyOverrides({\"ltAX4mGXa-hover\":{\"data-framer-name\":undefined},\"UjH46xt9P-hover\":{\"data-framer-name\":undefined},\"UjH46xt9P-pressed\":{\"data-framer-name\":undefined},ltAX4mGXa:{\"data-framer-name\":\"NoShadow\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dwskax\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"H7DABcWuI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(89, 27, 229))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-16rk6u9\",\"data-styles-preset\":\"plzjIvcfB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247)))\"},children:\"Learn More\"})}),className:\"framer-1tdky01\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b8M6yyZjy\",style:{\"--extracted-1of0zx5\":\"var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:d3rKsrWsN,verticalAlignment:\"top\",withExternalLayout:true})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yPui2.framer-1vh5nd9, .framer-yPui2 .framer-1vh5nd9 { display: block; }\",\".framer-yPui2.framer-poye01 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yPui2 .framer-dwskax { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; width: auto; }\",\".framer-yPui2 .framer-1tdky01 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yPui2.framer-poye01, .framer-yPui2 .framer-dwskax { gap: 0px; } .framer-yPui2.framer-poye01 > *, .framer-yPui2 .framer-dwskax > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yPui2.framer-poye01 > :first-child, .framer-yPui2 .framer-dwskax > :first-child { margin-left: 0px; } .framer-yPui2.framer-poye01 > :last-child, .framer-yPui2 .framer-dwskax > :last-child { margin-right: 0px; } }\",\".framer-yPui2.framer-v-cuz6b7.framer-poye01, .framer-yPui2.framer-v-poye01.hover.framer-poye01, .framer-yPui2.framer-v-poye01.pressed.framer-poye01 { padding: 0px 0px 0px 0px; }\",\".framer-yPui2.framer-v-cuz6b7.hover.framer-poye01 { padding: 0px 0px 10px 0px; }\",...sharedStyle.css,'.framer-yPui2[data-border=\"true\"]::after, .framer-yPui2 [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 45\n * @framerIntrinsicWidth 130\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"ltAX4mGXa\":{\"layout\":[\"auto\",\"fixed\"]},\"a2AFumveV\":{\"layout\":[\"auto\",\"fixed\"]},\"WFm68x2Tl\":{\"layout\":[\"auto\",\"fixed\"]},\"oV0oCtUSy\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"d3rKsrWsN\":\"title\",\"S8x78ZPL2\":\"tap\",\"YI6PUBvQH\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJUVcPHe94=withCSS(Component,css,\"framer-yPui2\");export default FramerJUVcPHe94;FramerJUVcPHe94.displayName=\"Black Animated Button\";FramerJUVcPHe94.defaultProps={height:45,width:130};addPropertyControls(FramerJUVcPHe94,{variant:{options:[\"UjH46xt9P\",\"ltAX4mGXa\"],optionTitles:[\"With Shadow\",\"NoShadow\"],title:\"Variant\",type:ControlType.Enum},d3rKsrWsN:{defaultValue:\"Learn More\",displayTextArea:false,title:\"Title\",type:ControlType.String},S8x78ZPL2:{title:\"Tap\",type:ControlType.EventHandler},YI6PUBvQH:{title:\"Link\",type:ControlType.Link}});addFonts(FramerJUVcPHe94,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJUVcPHe94\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"d3rKsrWsN\\\":\\\"title\\\",\\\"S8x78ZPL2\\\":\\\"tap\\\",\\\"YI6PUBvQH\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"45\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"130\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ltAX4mGXa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"a2AFumveV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WFm68x2Tl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"oV0oCtUSy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JUVcPHe94.map", "// Generated by Framer (78a4586)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,optimizeAppear,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lVqTFO88UZIgFSDNYJzH/cLQFgQiiOYpJ0eU6yY9v/Abq1Dz_UF.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/VAaShCAKnNgLzUM9nROC/mYEjotm260v4npCueOEx/HnyHtk8qf.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/pizQ1TMZxZJcfGHJQYyY/YpHVdcXrGQ6YAUfihLLT/wAUJYhCTZ.js\";import Buttons from\"https://framerusercontent.com/modules/PGaUy6Hx8T0mLYwYEViV/qCPolDTpkypSvSOsjRMH/Cfpfg2W_1.js\";import BlackAnimatedButton from\"https://framerusercontent.com/modules/Lnv2UlUzQWhQPm6bRJBN/fmmfSIk5ueUOaCXoyo52/JUVcPHe94.js\";const ButtonsFonts=getFonts(Buttons);const BlackAnimatedButtonFonts=getFonts(BlackAnimatedButton);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"UXMFvIWfW\",\"FLtskC844\",\"uR8f7zL1o\"];const serializationHash=\"framer-1mdY4\";const variantClassNames={FLtskC844:\"framer-v-1e505mn\",uR8f7zL1o:\"framer-v-1g2x8d3\",UXMFvIWfW:\"framer-v-10ikjqv\"};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 transition1={damping:30,delay:.7,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"UXMFvIWfW\",\"Variant 2\":\"FLtskC844\",Phone:\"uR8f7zL1o\"};const getProps=({buttonLink,buttonText,coverImage,height,id,paragraph,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,AGKzzGxsW:(_ref=buttonText!==null&&buttonText!==void 0?buttonText:props.AGKzzGxsW)!==null&&_ref!==void 0?_ref:\"Learn More\",dp_Y04xRK:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.dp_Y04xRK)!==null&&_ref1!==void 0?_ref1:\"Free templates to organize and skyrocket every aspect of your life.\",j0xUKCM2x:(_ref2=coverImage!==null&&coverImage!==void 0?coverImage:props.j0xUKCM2x)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/ABhCB8W0tHTytF89yRzdCG4UT0.png\"},TcWecRBMT:(_ref3=title!==null&&title!==void 0?title:props.TcWecRBMT)!==null&&_ref3!==void 0?_ref3:\"Kickstart Your Notion Journey \",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"UXMFvIWfW\",WgnqJ9dHD:buttonLink!==null&&buttonLink!==void 0?buttonLink:props.WgnqJ9dHD};};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,TcWecRBMT,dp_Y04xRK,AGKzzGxsW,WgnqJ9dHD,j0xUKCM2x,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UXMFvIWfW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"FLtskC844\",\"uR8f7zL1o\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"FLtskC844\",\"uR8f7zL1o\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__presenceAnimate:optimizeAppear(\"animate\",\"10ikjqv\",animation,undefined),__framer__presenceInitial:optimizeAppear(\"initial\",\"10ikjqv\",animation1,undefined),__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10ikjqv\",className,classNames),\"data-border\":true,\"data-framer-appear-id\":\"10ikjqv\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UXMFvIWfW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"10px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{FLtskC844:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},uR8f7zL1o:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({FLtskC844:{__framer__presenceAnimate:optimizeAppear(\"animate\",\"1e505mn\",animation,undefined),__framer__presenceInitial:optimizeAppear(\"initial\",\"1e505mn\",animation1,undefined),\"data-framer-appear-id\":\"1e505mn\",\"data-framer-name\":\"Variant 2\"},uR8f7zL1o:{__framer__presenceAnimate:optimizeAppear(\"animate\",\"1g2x8d3\",animation,undefined),__framer__presenceInitial:optimizeAppear(\"initial\",\"1g2x8d3\",animation1,undefined),\"data-framer-appear-id\":\"1g2x8d3\",\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v3qmmu\",\"data-framer-name\":\"Inner\",layoutDependency:layoutDependency,layoutId:\"YYL_tNd2o\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{FLtskC844:{backgroundColor:\"rgba(0, 0, 0, 0)\"},uR8f7zL1o:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:809,intrinsicWidth:863,pixelHeight:488,pixelWidth:502,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px)`,...toResponsiveImage(j0xUKCM2x),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-djh05f\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZARIlBZ63\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({FLtskC844:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:809,intrinsicWidth:863,pixelHeight:488,pixelWidth:502,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,...toResponsiveImage(j0xUKCM2x),...{positionX:\"center\",positionY:\"center\"}}},uR8f7zL1o:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:809,intrinsicWidth:863,pixelHeight:488,pixelWidth:502,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(j0xUKCM2x),...{positionX:\"left\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yeumui\",\"data-framer-name\":\"2nd part\",layoutDependency:layoutDependency,layoutId:\"yzTjy3X1N\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dc5uza\",\"data-framer-name\":\"Text Row\",layoutDependency:layoutDependency,layoutId:\"BRzH7qwST\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Kickstart Your Notion Journey \"})}),className:\"framer-11ua5hi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wNIcQ_X54\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TcWecRBMT,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FLtskC844:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7wzom7\",\"data-styles-preset\":\"Abq1Dz_UF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Kickstart Your Notion Journey \"})})},uR8f7zL1o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7wzom7\",\"data-styles-preset\":\"Abq1Dz_UF\",style:{\"--framer-text-alignment\":\"left\"},children:\"Kickstart Your Notion Journey \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84)))\"},children:\"Free templates to organize and skyrocket every aspect of your life.\"})}),className:\"framer-nts7zd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N3J6ZnyaT\",style:{\"--extracted-r6o4lv\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:dp_Y04xRK,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FLtskC844:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84)))\"},children:\"Free templates to organize and skyrocket every aspect of your life.\"})})},uR8f7zL1o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84)))\"},children:\"Free templates to organize and skyrocket every aspect of your life.\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bs7u3r-container\",layoutDependency:layoutDependency,layoutId:\"bWBIX_9ky-container\",children:/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:AGKzzGxsW,height:\"100%\",id:\"bWBIX_9ky\",layoutId:\"bWBIX_9ky\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"kx1CNnOFU\",width:\"100%\",YI6PUBvQH:WgnqJ9dHD})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jywc9y-container\",layoutDependency:layoutDependency,layoutId:\"SY3_qpabs-container\",children:/*#__PURE__*/_jsx(BlackAnimatedButton,{d3rKsrWsN:\"Download for free\",height:\"100%\",id:\"SY3_qpabs\",layoutId:\"SY3_qpabs\",style:{height:\"100%\"},variant:\"UjH46xt9P\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1mdY4.framer-1guwp0b, .framer-1mdY4 .framer-1guwp0b { display: block; }\",\".framer-1mdY4.framer-10ikjqv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 641px; }\",\".framer-1mdY4 .framer-1v3qmmu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 517px; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-1mdY4 .framer-djh05f { flex: none; height: 30%; overflow: visible; position: relative; width: 100%; }\",\".framer-1mdY4 .framer-1yeumui { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1mdY4 .framer-dc5uza { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1mdY4 .framer-11ua5hi, .framer-1mdY4 .framer-nts7zd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1mdY4 .framer-bs7u3r-container, .framer-1mdY4 .framer-1jywc9y-container { flex: none; height: 45px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1mdY4.framer-10ikjqv, .framer-1mdY4 .framer-1v3qmmu, .framer-1mdY4 .framer-1yeumui, .framer-1mdY4 .framer-dc5uza { gap: 0px; } .framer-1mdY4.framer-10ikjqv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1mdY4.framer-10ikjqv > :first-child, .framer-1mdY4 .framer-1v3qmmu > :first-child, .framer-1mdY4 .framer-1yeumui > :first-child, .framer-1mdY4 .framer-dc5uza > :first-child { margin-top: 0px; } .framer-1mdY4.framer-10ikjqv > :last-child, .framer-1mdY4 .framer-1v3qmmu > :last-child, .framer-1mdY4 .framer-1yeumui > :last-child, .framer-1mdY4 .framer-dc5uza > :last-child { margin-bottom: 0px; } .framer-1mdY4 .framer-1v3qmmu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-1mdY4 .framer-1yeumui > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-1mdY4 .framer-dc5uza > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } }\",\".framer-1mdY4.framer-v-1e505mn.framer-10ikjqv { padding: 20px; width: 375px; }\",\".framer-1mdY4.framer-v-1e505mn .framer-1v3qmmu { height: min-content; order: 0; padding: 0px; }\",\".framer-1mdY4.framer-v-1e505mn .framer-djh05f { height: 117px; }\",\".framer-1mdY4.framer-v-1e505mn .framer-1yeumui { align-content: center; align-items: center; gap: 31px; }\",\".framer-1mdY4.framer-v-1e505mn .framer-dc5uza, .framer-1mdY4.framer-v-1g2x8d3 .framer-dc5uza { align-content: center; align-items: center; gap: 5px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1mdY4.framer-v-1e505mn .framer-1yeumui, .framer-1mdY4.framer-v-1e505mn .framer-dc5uza { gap: 0px; } .framer-1mdY4.framer-v-1e505mn .framer-1yeumui > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-1mdY4.framer-v-1e505mn .framer-1yeumui > :first-child, .framer-1mdY4.framer-v-1e505mn .framer-dc5uza > :first-child { margin-top: 0px; } .framer-1mdY4.framer-v-1e505mn .framer-1yeumui > :last-child, .framer-1mdY4.framer-v-1e505mn .framer-dc5uza > :last-child { margin-bottom: 0px; } .framer-1mdY4.framer-v-1e505mn .framer-dc5uza > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-1mdY4.framer-v-1g2x8d3.framer-10ikjqv { padding: 0px; width: 283px; }\",\".framer-1mdY4.framer-v-1g2x8d3 .framer-1v3qmmu { gap: 35px; height: min-content; order: 0; padding: 0px; }\",\".framer-1mdY4.framer-v-1g2x8d3 .framer-djh05f { height: 108px; }\",\".framer-1mdY4.framer-v-1g2x8d3 .framer-1yeumui { gap: 31px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1mdY4.framer-v-1g2x8d3 .framer-1v3qmmu, .framer-1mdY4.framer-v-1g2x8d3 .framer-1yeumui, .framer-1mdY4.framer-v-1g2x8d3 .framer-dc5uza { gap: 0px; } .framer-1mdY4.framer-v-1g2x8d3 .framer-1v3qmmu > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-1mdY4.framer-v-1g2x8d3 .framer-1v3qmmu > :first-child, .framer-1mdY4.framer-v-1g2x8d3 .framer-1yeumui > :first-child, .framer-1mdY4.framer-v-1g2x8d3 .framer-dc5uza > :first-child { margin-top: 0px; } .framer-1mdY4.framer-v-1g2x8d3 .framer-1v3qmmu > :last-child, .framer-1mdY4.framer-v-1g2x8d3 .framer-1yeumui > :last-child, .framer-1mdY4.framer-v-1g2x8d3 .framer-dc5uza > :last-child { margin-bottom: 0px; } .framer-1mdY4.framer-v-1g2x8d3 .framer-1yeumui > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-1mdY4.framer-v-1g2x8d3 .framer-dc5uza > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-1mdY4[data-border=\"true\"]::after, .framer-1mdY4 [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 527\n * @framerIntrinsicWidth 641\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FLtskC844\":{\"layout\":[\"fixed\",\"auto\"]},\"uR8f7zL1o\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TcWecRBMT\":\"title\",\"dp_Y04xRK\":\"paragraph\",\"AGKzzGxsW\":\"buttonText\",\"WgnqJ9dHD\":\"buttonLink\",\"j0xUKCM2x\":\"coverImage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlWdoGmU__=withCSS(Component,css,\"framer-1mdY4\");export default FramerlWdoGmU__;FramerlWdoGmU__.displayName=\"Card 2\";FramerlWdoGmU__.defaultProps={height:527,width:641};addPropertyControls(FramerlWdoGmU__,{variant:{options:[\"UXMFvIWfW\",\"FLtskC844\",\"uR8f7zL1o\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},TcWecRBMT:{defaultValue:\"Kickstart Your Notion Journey \",displayTextArea:false,title:\"Title\",type:ControlType.String},dp_Y04xRK:{defaultValue:\"Free templates to organize and skyrocket every aspect of your life.\",displayTextArea:true,title:\"Paragraph\",type:ControlType.String},AGKzzGxsW:{defaultValue:\"Learn More\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},WgnqJ9dHD:{title:\"Button Link\",type:ControlType.Link},j0xUKCM2x:{__defaultAssetReference:\"data:framer/asset-reference,ABhCB8W0tHTytF89yRzdCG4UT0.png?originalFilename=Frame+1.png&preferredSize=auto\",title:\"Cover Image\",type:ControlType.ResponsiveImage}});addFonts(FramerlWdoGmU__,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ButtonsFonts,...BlackAnimatedButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlWdoGmU__\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"527\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FLtskC844\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uR8f7zL1o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"641\",\"framerVariables\":\"{\\\"TcWecRBMT\\\":\\\"title\\\",\\\"dp_Y04xRK\\\":\\\"paragraph\\\",\\\"AGKzzGxsW\\\":\\\"buttonText\\\",\\\"WgnqJ9dHD\\\":\\\"buttonLink\\\",\\\"j0xUKCM2x\\\":\\\"coverImage\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"EtP6oB1bW\",\"WGTlEfTY7\",\"uBdNVTpgo\",\"Nol5_ZdGh\",\"vxaeMw4OQ\"];const serializationHash=\"framer-ucfry\";const variantClassNames={EtP6oB1bW:\"framer-v-g2cy2n\",Nol5_ZdGh:\"framer-v-nep2zg\",uBdNVTpgo:\"framer-v-aet7cn\",vxaeMw4OQ:\"framer-v-a98ua0\",WGTlEfTY7:\"framer-v-1aveoh\"};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"EtP6oB1bW\",\"Variant 3\":\"WGTlEfTY7\",\"Variant 4\":\"uBdNVTpgo\",\"Variant 5\":\"Nol5_ZdGh\",\"Variant 6\":\"vxaeMw4OQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"EtP6oB1bW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EtP6oB1bW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-g2cy2n\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EtP6oB1bW\",ref:refBinding,style:{...style},...addPropertyOverrides({Nol5_ZdGh:{\"data-framer-name\":\"Variant 5\"},uBdNVTpgo:{\"data-framer-name\":\"Variant 4\"},vxaeMw4OQ:{\"data-framer-name\":\"Variant 6\"},WGTlEfTY7:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||887)-427),pixelHeight:1200,pixelWidth:528,positionX:\"center\",positionY:\"center\",sizes:\"363px\",src:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png\",srcSet:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png 528w\"},className:\"framer-11oas70\",draggable:\"false\",layoutDependency:layoutDependency,layoutId:\"HaeGTHGzj\",...addPropertyOverrides({Nol5_ZdGh:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||887)-634),pixelHeight:1200,pixelWidth:528,positionX:\"center\",positionY:\"center\",sizes:\"363px\",src:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png\",srcSet:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png 528w\"}},uBdNVTpgo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||887)-569),pixelHeight:1200,pixelWidth:528,positionX:\"center\",positionY:\"center\",sizes:\"363px\",src:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png\",srcSet:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png 528w\"}},vxaeMw4OQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||887)-813),pixelHeight:1200,pixelWidth:528,positionX:\"center\",positionY:\"center\",sizes:\"363px\",src:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png\",srcSet:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png 528w\"}},WGTlEfTY7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||887)-493),pixelHeight:1200,pixelWidth:528,positionX:\"center\",positionY:\"center\",sizes:\"363px\",src:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png\",srcSet:\"https://framerusercontent.com/images/ON8FZOjBvoNEUtwQU3LYv6j9F20.png 528w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||887)-161),pixelHeight:485,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/YcFKCyOuw6vAT2we33Ucx0xfQ.png\",srcSet:\"https://framerusercontent.com/images/YcFKCyOuw6vAT2we33Ucx0xfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YcFKCyOuw6vAT2we33Ucx0xfQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YcFKCyOuw6vAT2we33Ucx0xfQ.png 1200w\"},className:\"framer-10h9n4h\",draggable:\"false\",layoutDependency:layoutDependency,layoutId:\"wGSkeym5q\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ucfry.framer-x1lkgt, .framer-ucfry .framer-x1lkgt { display: block; }\",\".framer-ucfry.framer-g2cy2n { height: 887px; overflow: hidden; position: relative; width: 570px; }\",\".framer-ucfry .framer-11oas70 { bottom: -155px; flex: none; height: 582px; left: calc(49.824561403508795% - 363px / 2); overflow: hidden; position: absolute; width: 363px; }\",\".framer-ucfry .framer-10h9n4h { bottom: -70px; flex: none; height: 231px; left: 9px; overflow: hidden; position: absolute; right: -9px; }\",\".framer-ucfry.framer-v-1aveoh .framer-11oas70 { bottom: -89px; }\",\".framer-ucfry.framer-v-aet7cn .framer-11oas70 { bottom: -13px; }\",\".framer-ucfry.framer-v-nep2zg .framer-11oas70 { bottom: 52px; }\",\".framer-ucfry.framer-v-a98ua0 .framer-11oas70 { bottom: 66px; height: 747px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 887\n * @framerIntrinsicWidth 570\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WGTlEfTY7\":{\"layout\":[\"fixed\",\"fixed\"]},\"uBdNVTpgo\":{\"layout\":[\"fixed\",\"fixed\"]},\"Nol5_ZdGh\":{\"layout\":[\"fixed\",\"fixed\"]},\"vxaeMw4OQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framero0RXF70qH=withCSS(Component,css,\"framer-ucfry\");export default Framero0RXF70qH;Framero0RXF70qH.displayName=\"Rocket\";Framero0RXF70qH.defaultProps={height:887,width:570};addPropertyControls(Framero0RXF70qH,{variant:{options:[\"EtP6oB1bW\",\"WGTlEfTY7\",\"uBdNVTpgo\",\"Nol5_ZdGh\",\"vxaeMw4OQ\"],optionTitles:[\"Variant 1\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framero0RXF70qH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero0RXF70qH\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"570\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WGTlEfTY7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uBdNVTpgo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Nol5_ZdGh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vxaeMw4OQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"887\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o0RXF70qH.map", "// Generated by Framer (3e30e79)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"mtNcbRnXl\"];const serializationHash=\"framer-v5uIZ\";const variantClassNames={mtNcbRnXl:\"framer-v-12k70sh\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mtNcbRnXl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12k70sh\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mtNcbRnXl\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/z1aad8fanXbY415uijNnltTXVfs.svg\",srcSet:\"https://framerusercontent.com/images/z1aad8fanXbY415uijNnltTXVfs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/z1aad8fanXbY415uijNnltTXVfs.svg 810w\"},className:\"framer-1tbs8n1\",\"data-framer-name\":\"Level_Up_Facebook_Post_1_\",layoutDependency:layoutDependency,layoutId:\"uORv2xQAM\"})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-v5uIZ.framer-1yiuxuo, .framer-v5uIZ .framer-1yiuxuo { display: block; }\",\".framer-v5uIZ.framer-12k70sh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 252px; justify-content: center; padding: 0px; position: relative; width: 252px; }\",\".framer-v5uIZ .framer-1tbs8n1 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-v5uIZ.framer-12k70sh { gap: 0px; } .framer-v5uIZ.framer-12k70sh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-v5uIZ.framer-12k70sh > :first-child { margin-left: 0px; } .framer-v5uIZ.framer-12k70sh > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 252\n * @framerIntrinsicWidth 252\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerduHpwvvnK=withCSS(Component,css,\"framer-v5uIZ\");export default FramerduHpwvvnK;FramerduHpwvvnK.displayName=\"CARDS laptop\";FramerduHpwvvnK.defaultProps={height:252,width:252};addFonts(FramerduHpwvvnK,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerduHpwvvnK\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"252\",\"framerIntrinsicHeight\":\"252\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./duHpwvvnK.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/VAaShCAKnNgLzUM9nROC/mYEjotm260v4npCueOEx/HnyHtk8qf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pizQ1TMZxZJcfGHJQYyY/YpHVdcXrGQ6YAUfihLLT/wAUJYhCTZ.js\";import CARDSLaptop from\"https://framerusercontent.com/modules/JQ9NdPscIO7nbCY2YS9B/DeL0morL7h9E4wvRXGqR/duHpwvvnK.js\";import BlackAnimatedButton from\"https://framerusercontent.com/modules/Lnv2UlUzQWhQPm6bRJBN/fmmfSIk5ueUOaCXoyo52/JUVcPHe94.js\";const CARDSLaptopFonts=getFonts(CARDSLaptop);const MotionDivWithFX=withFX(motion.div);const BlackAnimatedButtonFonts=getFonts(BlackAnimatedButton);const ImageWithFX=withFX(Image);const enabledGestures={pebkJ8oT4:{hover:true}};const cycleOrder=[\"pebkJ8oT4\",\"Civq9kpYe\",\"Au1tBbDVR\"];const serializationHash=\"framer-6lpGx\";const variantClassNames={Au1tBbDVR:\"framer-v-bm82k5\",Civq9kpYe:\"framer-v-ftuxjm\",pebkJ8oT4:\"framer-v-gz6csb\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:-130};const transition2={damping:30,delay:0,mass:1.4,stiffness:498,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,transition:transition2,x:0,y:-130};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:50};const transition4={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:50};const transition5={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:50};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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Card\":\"Civq9kpYe\",Desktop:\"pebkJ8oT4\",Ipad:\"Au1tBbDVR\"};const getProps=({cursor,height,id,link,scrollSection,text2,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,AjD1PrTtc:cursor!==null&&cursor!==void 0?cursor:props.AjD1PrTtc,d5lrKoO1v:scrollSection!==null&&scrollSection!==void 0?scrollSection:props.d5lrKoO1v,qhfaFPnGL:(_ref=text2!==null&&text2!==void 0?text2:props.qhfaFPnGL)!==null&&_ref!==void 0?_ref:\"Get access to 5x Notion templates to start organizing your life.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"pebkJ8oT4\",wzPKHDhEn:link!==null&&link!==void 0?link:props.wzPKHDhEn};};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,qhfaFPnGL,AjD1PrTtc,d5lrKoO1v,wzPKHDhEn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pebkJ8oT4\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Au1tBbDVR\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Au1tBbDVR\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Civq9kpYe\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"Civq9kpYe\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gz6csb\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pebkJ8oT4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"10px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({\"pebkJ8oT4-hover\":{\"data-framer-name\":undefined},Au1tBbDVR:{\"data-framer-name\":\"Ipad\"},Civq9kpYe:{\"data-framer-name\":\"Phone Card\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19xi1m6\",\"data-framer-cursor\":AjD1PrTtc,layoutDependency:layoutDependency,layoutId:\"fCWp1zXa8\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:809,intrinsicWidth:863},className:\"framer-z9yus6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IW80YLsBO\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 149px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+40+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||660)-10-0)/1)*1-80-(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||660)-10-0)/1)*1-80-221.3)/1)*1+201.3+20))/2+0+0)+-175,...addPropertyOverrides({\"pebkJ8oT4-hover\":{height:486,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 330px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+40+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||660)-10-0)/1)*1-80-(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||660)-10-0)/1)*1-80-221.3)/1)*1+201.3+20))/2+0+0)+-11},Civq9kpYe:{height:221,width:\"281px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+40+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||653)-10-0)/1)*1-80-(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||653)-10-0)/1)*1-80-288.3)/1)*1+268.3+20))/2+0+0)+Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||653)-10-0)/1)*1-80-288.3)/1)*1-214}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1brll26-container\",layoutDependency:layoutDependency,layoutId:\"E19hThXup-container\",...addPropertyOverrides({Civq9kpYe:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:d5lrKoO1v,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CARDSLaptop,{height:\"100%\",id:\"E19hThXup\",layoutId:\"E19hThXup\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Au1tBbDVR:{height:509,width:\"586px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+-38}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y1pmwc-container\",layoutDependency:layoutDependency,layoutId:\"iDSsxFpSG-container\",children:/*#__PURE__*/_jsx(CARDSLaptop,{height:\"100%\",id:\"iDSsxFpSG\",layoutId:\"iDSsxFpSG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1268,intrinsicWidth:1103,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+92),pixelHeight:1268,pixelWidth:1103,positionX:\"center\",positionY:\"center\",sizes:\"152px\",src:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png\",srcSet:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png?scale-down-to=1024 890w,https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png 1103w\"},className:\"framer-1fv5rux\",\"data-framer-name\":\"notes_buttons\",layoutDependency:layoutDependency,layoutId:\"YfxICrZsO\",style:{opacity:0},variants:{\"pebkJ8oT4-hover\":{opacity:1},Au1tBbDVR:{opacity:1}},...addPropertyOverrides({\"pebkJ8oT4-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1268,intrinsicWidth:1103,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+-36),pixelHeight:1268,pixelWidth:1103,positionX:\"center\",positionY:\"center\",sizes:\"371px\",src:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png\",srcSet:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png?scale-down-to=1024 890w,https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png 1103w\"}},Au1tBbDVR:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1268,intrinsicWidth:1103,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),pixelHeight:1268,pixelWidth:1103,positionX:\"center\",positionY:\"center\",sizes:\"306px\",src:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png\",srcSet:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png?scale-down-to=1024 890w,https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png 1103w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:913,intrinsicWidth:1848,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+142),pixelHeight:913,pixelWidth:1848,positionX:\"center\",positionY:\"center\",sizes:\"177px\",src:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png\",srcSet:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png 1848w\"},className:\"framer-jtdkjm\",\"data-framer-name\":\"Habit board\",layoutDependency:layoutDependency,layoutId:\"p5SF4DuCb\",style:{opacity:0},variants:{\"pebkJ8oT4-hover\":{opacity:1},Au1tBbDVR:{opacity:1}},...addPropertyOverrides({\"pebkJ8oT4-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:913,intrinsicWidth:1848,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+-114),pixelHeight:913,pixelWidth:1848,positionX:\"center\",positionY:\"center\",sizes:\"592px\",src:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png\",srcSet:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png 1848w\"},transformTemplate:transformTemplate1},Au1tBbDVR:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:913,intrinsicWidth:1848,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+-136),pixelHeight:913,pixelWidth:1848,positionX:\"center\",positionY:\"center\",sizes:\"609px\",src:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png\",srcSet:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png 1848w\"},transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1055,intrinsicWidth:849,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+221),pixelHeight:1055,pixelWidth:849,sizes:\"62px\",src:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png\",srcSet:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png?scale-down-to=1024 824w,https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png 849w\"},className:\"framer-w4e16j\",\"data-framer-name\":\"savings\",layoutDependency:layoutDependency,layoutId:\"sFFGOa_q8\",style:{opacity:0},transformTemplate:transformTemplate1,variants:{\"pebkJ8oT4-hover\":{opacity:1},Au1tBbDVR:{opacity:1}},...addPropertyOverrides({\"pebkJ8oT4-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1055,intrinsicWidth:849,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+-18),pixelHeight:1055,pixelWidth:849,sizes:\"286px\",src:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png\",srcSet:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png?scale-down-to=1024 824w,https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png 849w\"},transformTemplate:undefined},Au1tBbDVR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1055,intrinsicWidth:849,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),pixelHeight:1055,pixelWidth:849,sizes:\"251px\",src:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png\",srcSet:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png?scale-down-to=1024 824w,https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png 849w\"},transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u5cnn3\",\"data-framer-name\":\"2nd part\",layoutDependency:layoutDependency,layoutId:\"vTxCmOZUG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cykedv\",\"data-framer-name\":\"Text Row\",layoutDependency:layoutDependency,layoutId:\"SnxRGVF71\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Kickstart Your Productivity\"})}),className:\"framer-kmh8ut\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nTacwUatx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",children:\"Get access to 5x Notion templates to start organizing your life.\"})}),className:\"framer-p69uw6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YVizSGNn9\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:qhfaFPnGL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+40+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||660)-10-0)/1)*1-80-(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||660)-10-0)/1)*1-80-221.3)/1)*1+201.3+20))/2+Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||660)-10-0)/1)*1-80-221.3)/1)*1+20)+78.15,...addPropertyOverrides({Civq9kpYe:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+40+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||653)-10-0)/1)*1-80-(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||653)-10-0)/1)*1-80-288.3)/1)*1+268.3+20))/2+Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||653)-10-0)/1)*1-80-288.3)/1)*1+20)+0+223.3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0chg-container\",layoutDependency:layoutDependency,layoutId:\"ceAhQ8KPo-container\",children:/*#__PURE__*/_jsx(BlackAnimatedButton,{d3rKsrWsN:\"Download for free\",height:\"100%\",id:\"ceAhQ8KPo\",layoutId:\"ceAhQ8KPo\",style:{height:\"100%\"},variant:\"UjH46xt9P\",width:\"100%\",YI6PUBvQH:wzPKHDhEn})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:d5lrKoO1v,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1268,intrinsicWidth:1103,pixelHeight:1268,pixelWidth:1103,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png\",srcSet:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png?scale-down-to=1024 890w,https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png 1103w\"},className:\"framer-1x0da9p\",\"data-framer-name\":\"notes_buttons\",layoutDependency:layoutDependency,layoutId:\"Dj8I3QNH1\",style:{transformPerspective:1200},...addPropertyOverrides({Civq9kpYe:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1268,intrinsicWidth:1103,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+25),pixelHeight:1268,pixelWidth:1103,positionX:\"center\",positionY:\"center\",sizes:\"187px\",src:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png\",srcSet:\"https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png?scale-down-to=1024 890w,https://framerusercontent.com/images/AQ2dmTEpwV89P10WJfu4gcoYLjk.png 1103w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:d5lrKoO1v,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:913,intrinsicWidth:1848,pixelHeight:913,pixelWidth:1848,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png\",srcSet:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png 1848w\"},className:\"framer-cvoxre\",\"data-framer-name\":\"Habit board\",layoutDependency:layoutDependency,layoutId:\"CQjMPJtGV\",style:{transformPerspective:1200},...addPropertyOverrides({Civq9kpYe:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:913,intrinsicWidth:1848,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+-52),pixelHeight:913,pixelWidth:1848,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 5px)`,src:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png\",srcSet:\"https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DnHkiH7ziadrqORZzdg2wO5qZCk.png 1848w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:d5lrKoO1v,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1055,intrinsicWidth:849,pixelHeight:1055,pixelWidth:849,src:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png\",srcSet:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png?scale-down-to=1024 824w,https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png 849w\"},className:\"framer-10h57l8\",\"data-framer-name\":\"savings\",layoutDependency:layoutDependency,layoutId:\"z3rb5smwi\",style:{transformPerspective:1200},...addPropertyOverrides({Civq9kpYe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1055,intrinsicWidth:849,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+12),pixelHeight:1055,pixelWidth:849,sizes:\"169px\",src:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png\",srcSet:\"https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png?scale-down-to=1024 824w,https://framerusercontent.com/images/eGeMM2n7tRfWEoPpxxqoXPjcI.png 849w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6lpGx.framer-1u664me, .framer-6lpGx .framer-1u664me { display: block; }\",\".framer-6lpGx.framer-gz6csb { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 660px; justify-content: flex-start; max-width: 900px; min-width: 310px; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 900px; }\",\".framer-6lpGx .framer-19xi1m6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-6lpGx .framer-z9yus6 { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-6lpGx .framer-1brll26-container { aspect-ratio: 1.1734375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 640px); left: 35px; position: absolute; right: 34px; top: -175px; z-index: 2; }\",\".framer-6lpGx .framer-y1pmwc-container { flex: none; height: 509px; left: calc(50.00000000000002% - 586px / 2); position: absolute; top: -38px; width: 586px; z-index: 1; }\",\".framer-6lpGx .framer-1fv5rux { aspect-ratio: 0.95 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 160px); left: 285px; overflow: visible; position: absolute; top: 92px; width: 152px; z-index: 1; }\",\".framer-6lpGx .framer-jtdkjm { aspect-ratio: 2.246060606060606 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 79px); overflow: visible; position: absolute; right: 273px; top: 142px; width: 177px; z-index: 1; }\",\".framer-6lpGx .framer-w4e16j { aspect-ratio: 0.804739336492891 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 77px); left: 49%; overflow: visible; position: absolute; top: 221px; width: 62px; z-index: 1; }\",\".framer-6lpGx .framer-u5cnn3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6lpGx .framer-1cykedv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6lpGx .framer-kmh8ut, .framer-6lpGx .framer-p69uw6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6lpGx .framer-1r0chg-container { flex: none; height: 45px; position: relative; width: auto; }\",\".framer-6lpGx .framer-1x0da9p { aspect-ratio: 0.95 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 197px); left: -25px; overflow: visible; position: absolute; top: 25px; width: 187px; z-index: 2; }\",\".framer-6lpGx .framer-cvoxre { aspect-ratio: 2.246060606060606 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 154px); left: 0px; overflow: visible; position: absolute; right: -5px; top: -52px; z-index: 4; }\",\".framer-6lpGx .framer-10h57l8 { aspect-ratio: 0.804739336492891 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 210px); overflow: visible; position: absolute; right: -27px; top: 12px; width: 169px; z-index: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6lpGx.framer-gz6csb, .framer-6lpGx .framer-19xi1m6, .framer-6lpGx .framer-u5cnn3, .framer-6lpGx .framer-1cykedv { gap: 0px; } .framer-6lpGx.framer-gz6csb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-6lpGx.framer-gz6csb > :first-child, .framer-6lpGx .framer-19xi1m6 > :first-child, .framer-6lpGx .framer-1cykedv > :first-child { margin-top: 0px; } .framer-6lpGx.framer-gz6csb > :last-child, .framer-6lpGx .framer-19xi1m6 > :last-child, .framer-6lpGx .framer-1cykedv > :last-child { margin-bottom: 0px; } .framer-6lpGx .framer-19xi1m6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-6lpGx .framer-u5cnn3 > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-6lpGx .framer-u5cnn3 > :first-child { margin-left: 0px; } .framer-6lpGx .framer-u5cnn3 > :last-child { margin-right: 0px; } .framer-6lpGx .framer-1cykedv > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } }\",\".framer-6lpGx.framer-v-ftuxjm.framer-gz6csb { align-content: center; align-items: center; height: 653px; max-width: 810px; min-width: 320px; width: 350px; }\",\".framer-6lpGx.framer-v-ftuxjm .framer-19xi1m6, .framer-6lpGx.framer-v-ftuxjm .framer-z9yus6, .framer-6lpGx.framer-v-bm82k5 .framer-y1pmwc-container { order: 0; }\",\".framer-6lpGx.framer-v-ftuxjm .framer-1brll26-container { bottom: -7px; height: var(--framer-aspect-ratio-supported, 240px); left: 50%; right: unset; top: unset; width: 281px; }\",\".framer-6lpGx.framer-v-ftuxjm .framer-u5cnn3 { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 8; }\",\".framer-6lpGx.framer-v-ftuxjm .framer-1cykedv { flex: none; width: 100%; }\",\".framer-6lpGx.framer-v-ftuxjm .framer-1x0da9p, .framer-6lpGx.framer-v-gz6csb.hover .framer-u5cnn3 { order: 5; }\",\".framer-6lpGx.framer-v-ftuxjm .framer-cvoxre { height: var(--framer-aspect-ratio-supported, 158px); order: 6; }\",\".framer-6lpGx.framer-v-ftuxjm .framer-10h57l8 { order: 7; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6lpGx.framer-v-ftuxjm .framer-u5cnn3 { gap: 0px; } .framer-6lpGx.framer-v-ftuxjm .framer-u5cnn3 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-6lpGx.framer-v-ftuxjm .framer-u5cnn3 > :first-child { margin-top: 0px; } .framer-6lpGx.framer-v-ftuxjm .framer-u5cnn3 > :last-child { margin-bottom: 0px; } }\",\".framer-6lpGx.framer-v-bm82k5.framer-gz6csb { width: 778px; }\",\".framer-6lpGx.framer-v-bm82k5 .framer-z9yus6 { order: 2; }\",\".framer-6lpGx.framer-v-bm82k5 .framer-1fv5rux { height: var(--framer-aspect-ratio-supported, 322px); left: 40px; order: 4; top: 0px; width: 306px; }\",\".framer-6lpGx.framer-v-bm82k5 .framer-jtdkjm { height: var(--framer-aspect-ratio-supported, 271px); left: 50%; order: 1; right: unset; top: -136px; width: 609px; }\",\".framer-6lpGx.framer-v-bm82k5 .framer-w4e16j { height: var(--framer-aspect-ratio-supported, 312px); left: unset; order: 5; right: 57px; top: 0px; width: 251px; }\",\".framer-6lpGx.framer-v-bm82k5 .framer-u5cnn3 { order: 3; }\",\".framer-6lpGx.framer-v-gz6csb.hover.framer-gz6csb { aspect-ratio: 1.3636363636363635 / 1; height: var(--framer-aspect-ratio-supported, 660px); }\",\".framer-6lpGx.framer-v-gz6csb.hover .framer-z9yus6 { order: 4; }\",\".framer-6lpGx.framer-v-gz6csb.hover .framer-1brll26-container { height: var(--framer-aspect-ratio-supported, 486px); left: 125px; right: 125px; top: -11px; }\",\".framer-6lpGx.framer-v-gz6csb.hover .framer-1fv5rux { height: var(--framer-aspect-ratio-supported, 391px); left: 38px; order: 1; top: -36px; width: 371px; z-index: 3; }\",\".framer-6lpGx.framer-v-gz6csb.hover .framer-jtdkjm { height: var(--framer-aspect-ratio-supported, 263px); left: 52%; order: 2; right: unset; top: -114px; width: 592px; z-index: 3; }\",\".framer-6lpGx.framer-v-gz6csb.hover .framer-w4e16j { height: var(--framer-aspect-ratio-supported, 355px); left: unset; order: 3; right: 84px; top: -18px; width: 286px; z-index: 3; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-6lpGx[data-border=\"true\"]::after, .framer-6lpGx [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 660\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"310px\",\"900px\",null,null]},\"Civq9kpYe\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"320px\",\"810px\",null,null]},\"Au1tBbDVR\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"310px\",\"900px\",null,null]},\"LmxEmY9fa\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"310px\",\"900px\",null,null]}}}\n * @framerVariables {\"qhfaFPnGL\":\"text2\",\"AjD1PrTtc\":\"cursor\",\"d5lrKoO1v\":\"scrollSection\",\"wzPKHDhEn\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP5ZLESxqa=withCSS(Component,css,\"framer-6lpGx\");export default FramerP5ZLESxqa;FramerP5ZLESxqa.displayName=\"Card\";FramerP5ZLESxqa.defaultProps={height:660,width:900};addPropertyControls(FramerP5ZLESxqa,{variant:{options:[\"pebkJ8oT4\",\"Civq9kpYe\",\"Au1tBbDVR\"],optionTitles:[\"Desktop\",\"Phone Card\",\"Ipad\"],title:\"Variant\",type:ControlType.Enum},qhfaFPnGL:{defaultValue:\"Get access to 5x Notion templates to start organizing your life.\",displayTextArea:false,title:\"Text 2\",type:ControlType.String},AjD1PrTtc:{title:\"Cursor\",type:ControlType.CustomCursor},d5lrKoO1v:{title:\"Scroll Section\",type:ControlType.ScrollSectionRef},wzPKHDhEn:{title:\"Link\",type:ControlType.Link}});addFonts(FramerP5ZLESxqa,[{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\"}]},...CARDSLaptopFonts,...BlackAnimatedButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP5ZLESxqa\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"900\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"310px\\\",\\\"900px\\\",null,null]},\\\"Civq9kpYe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"320px\\\",\\\"810px\\\",null,null]},\\\"Au1tBbDVR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"310px\\\",\\\"900px\\\",null,null]},\\\"LmxEmY9fa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"310px\\\",\\\"900px\\\",null,null]}}}\",\"framerVariables\":\"{\\\"qhfaFPnGL\\\":\\\"text2\\\",\\\"AjD1PrTtc\\\":\\\"cursor\\\",\\\"d5lrKoO1v\\\":\\\"scrollSection\\\",\\\"wzPKHDhEn\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"660\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P5ZLESxqa.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DotGothic16-regular\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DotGothic16\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dotgothic16/v17/v6-QGYjBJFKgyw5nSoDAGE7O435YPFrT.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-ext-TU4ITVTR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-JX7CGTYD.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ext-LS3GCBFI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ZWCJHBP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Black.latin-ext-BZLEUMX6.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Black.latin-TETRYDF7.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Black.vietnamese-RXQCC3EJ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-ext-TRM4ITYR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-FPHIQVZS.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-ext-JTGUUSP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-LUNA3RFO.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-ext-KU7ICFYH.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-FRVXWQSB.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BlackItalic.vietnamese-2Q7MQKJX.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"}]}];export const css=['.framer-4fHYL .framer-styles-preset-16ba87v:not(.rich-text-wrapper), .framer-4fHYL .framer-styles-preset-16ba87v.rich-text-wrapper h2 { --framer-font-family: \"DotGothic16\", \"DotGothic16 Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 23px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, #545454); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-4fHYL .framer-styles-preset-16ba87v:not(.rich-text-wrapper), .framer-4fHYL .framer-styles-preset-16ba87v.rich-text-wrapper h2 { --framer-font-family: \"DotGothic16\", \"DotGothic16 Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, #545454); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-4fHYL .framer-styles-preset-16ba87v:not(.rich-text-wrapper), .framer-4fHYL .framer-styles-preset-16ba87v.rich-text-wrapper h2 { --framer-font-family: \"DotGothic16\", \"DotGothic16 Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, #545454); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-4fHYL\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jUuvasA6Yl5QjEtQakQ9/wQsg2WWcDX7L1lGMgmN8/aCwY4OVrk.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/VAaShCAKnNgLzUM9nROC/mYEjotm260v4npCueOEx/HnyHtk8qf.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"jOzSBx8RZ\",\"b3dHVjhkd\",\"UEiaD6tpr\"];const serializationHash=\"framer-4EyYR\";const variantClassNames={b3dHVjhkd:\"framer-v-dr8csr\",jOzSBx8RZ:\"framer-v-lvvfke\",UEiaD6tpr:\"framer-v-v8qpdj\"};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 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,x:150,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:150,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"jOzSBx8RZ\",\"Variant 2\":\"b3dHVjhkd\",Phone:\"UEiaD6tpr\"};const getProps=({content,height,id,image,link,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,CcXbxOXb7:link!==null&&link!==void 0?link:props.CcXbxOXb7,dukr6pZMU:(_ref=title!==null&&title!==void 0?title:props.dukr6pZMU)!==null&&_ref!==void 0?_ref:\"Title\",MdyXMwevt:(_ref1=content!==null&&content!==void 0?content:props.MdyXMwevt)!==null&&_ref1!==void 0?_ref1:\"Starting from scratch can be tricky sometimes in Notion. So we need all the help we can get. If you're in project management or simply need a fast and easy way to organize your time, take a look at Projectify from NotionPixel! GREAT WORK!\",OiNiR9Sdx:(_ref2=image!==null&&image!==void 0?image:props.OiNiR9Sdx)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/KG8HW6z2r3yRmSDnHsPqJ0Drbas.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KG8HW6z2r3yRmSDnHsPqJ0Drbas.gif?scale-down-to=512 512w,https://framerusercontent.com/images/KG8HW6z2r3yRmSDnHsPqJ0Drbas.gif 864w\"},variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"jOzSBx8RZ\"};};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,dukr6pZMU,MdyXMwevt,OiNiR9Sdx,CcXbxOXb7,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jOzSBx8RZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-lvvfke\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jOzSBx8RZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({b3dHVjhkd:{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__parallaxTransformEnabled:undefined,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,\"data-framer-name\":\"Variant 2\"},UEiaD6tpr:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ra9ksy\",layoutDependency:layoutDependency,layoutId:\"TGoGqscj4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1200,pixelWidth:1200,sizes:\"139px\",...toResponsiveImage(OiNiR9Sdx)},className:\"framer-qy9trp\",layoutDependency:layoutDependency,layoutId:\"DZ8SmB26a\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},variants:{UEiaD6tpr:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({UEiaD6tpr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1200,pixelWidth:1200,sizes:\"112px\",...toResponsiveImage(OiNiR9Sdx)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({b3dHVjhkd:{href:CcXbxOXb7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-hyjdi framer-2rmwr\",layoutDependency:layoutDependency,layoutId:\"bGeHbRSF3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Title\"})})}),className:\"framer-1mf4mt0\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"DHUofdini\",style:{\"--extracted-1of0zx5\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:dukr6pZMU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oy49lu\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"j44lZ3R2C\",style:{\"--border-bottom-width\":\"10px\",\"--border-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"var(--token-6db4ca0d-a036-4634-bfd1-ab671a1b50d0, rgb(255, 255, 255))\",borderBottomLeftRadius:0,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{b3dHVjhkd:{borderBottomLeftRadius:10,borderBottomRightRadius:0},UEiaD6tpr:{borderBottomLeftRadius:10,borderBottomRightRadius:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-16ba87v\",\"data-styles-preset\":\"aCwY4OVrk\",children:\"Starting from scratch can be tricky sometimes in Notion. So we need all the help we can get. If you're in project management or simply need a fast and easy way to organize your time, take a look at Projectify from NotionPixel! GREAT WORK!\"})}),className:\"framer-cidhnk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C8oUMQxBx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:MdyXMwevt,verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4EyYR.framer-2rmwr, .framer-4EyYR .framer-2rmwr { display: block; }\",\".framer-4EyYR.framer-lvvfke { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; padding: 10px 0px 10px 0px; position: relative; width: 465px; }\",\".framer-4EyYR .framer-1ra9ksy { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-4EyYR .framer-qy9trp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 139px); overflow: hidden; position: relative; width: 139px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4EyYR .framer-hyjdi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4EyYR .framer-1mf4mt0 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4EyYR .framer-oy49lu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 18px 18px 28px 18px; position: relative; width: 100%; }\",\".framer-4EyYR .framer-cidhnk { 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-4EyYR.framer-lvvfke, .framer-4EyYR .framer-1ra9ksy, .framer-4EyYR .framer-hyjdi, .framer-4EyYR .framer-oy49lu { gap: 0px; } .framer-4EyYR.framer-lvvfke > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-4EyYR.framer-lvvfke > :first-child { margin-left: 0px; } .framer-4EyYR.framer-lvvfke > :last-child { margin-right: 0px; } .framer-4EyYR .framer-1ra9ksy > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-4EyYR .framer-1ra9ksy > :first-child, .framer-4EyYR .framer-hyjdi > :first-child, .framer-4EyYR .framer-oy49lu > :first-child { margin-top: 0px; } .framer-4EyYR .framer-1ra9ksy > :last-child, .framer-4EyYR .framer-hyjdi > :last-child, .framer-4EyYR .framer-oy49lu > :last-child { margin-bottom: 0px; } .framer-4EyYR .framer-hyjdi > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-4EyYR .framer-oy49lu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-4EyYR.framer-v-dr8csr .framer-1ra9ksy { order: 1; }\",\".framer-4EyYR.framer-v-dr8csr .framer-qy9trp { order: 0; }\",\".framer-4EyYR.framer-v-dr8csr .framer-hyjdi { order: 0; text-decoration: none; }\",\".framer-4EyYR.framer-v-dr8csr .framer-cidhnk { overflow: visible; }\",\".framer-4EyYR.framer-v-v8qpdj.framer-lvvfke { align-content: center; align-items: center; flex-direction: column; gap: 30px; }\",\".framer-4EyYR.framer-v-v8qpdj .framer-1ra9ksy { align-self: unset; height: min-content; order: 0; }\",\".framer-4EyYR.framer-v-v8qpdj .framer-qy9trp { height: var(--framer-aspect-ratio-supported, 112px); order: 0; width: 112px; }\",\".framer-4EyYR.framer-v-v8qpdj .framer-hyjdi { flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4EyYR.framer-v-v8qpdj.framer-lvvfke { gap: 0px; } .framer-4EyYR.framer-v-v8qpdj.framer-lvvfke > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-4EyYR.framer-v-v8qpdj.framer-lvvfke > :first-child { margin-top: 0px; } .framer-4EyYR.framer-v-v8qpdj.framer-lvvfke > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-4EyYR[data-border=\"true\"]::after, .framer-4EyYR [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 487\n * @framerIntrinsicWidth 465\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"b3dHVjhkd\":{\"layout\":[\"fixed\",\"auto\"]},\"UEiaD6tpr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"dukr6pZMU\":\"title\",\"MdyXMwevt\":\"content\",\"OiNiR9Sdx\":\"image\",\"CcXbxOXb7\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameru3C7o51Rv=withCSS(Component,css,\"framer-4EyYR\");export default Frameru3C7o51Rv;Frameru3C7o51Rv.displayName=\"The process card\";Frameru3C7o51Rv.defaultProps={height:487,width:465};addPropertyControls(Frameru3C7o51Rv,{variant:{options:[\"jOzSBx8RZ\",\"b3dHVjhkd\",\"UEiaD6tpr\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},dukr6pZMU:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},MdyXMwevt:{defaultValue:\"Starting from scratch can be tricky sometimes in Notion. So we need all the help we can get. If you're in project management or simply need a fast and easy way to organize your time, take a look at Projectify from NotionPixel! GREAT WORK!\",displayTextArea:true,title:\"Content\",type:ControlType.String},OiNiR9Sdx:{__defaultAssetReference:\"data:framer/asset-reference,KG8HW6z2r3yRmSDnHsPqJ0Drbas.gif?originalFilename=+%281%29.gif&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},CcXbxOXb7:{title:\"Link\",type:ControlType.Link}});addFonts(Frameru3C7o51Rv,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameru3C7o51Rv\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"465\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b3dHVjhkd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UEiaD6tpr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"487\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"dukr6pZMU\\\":\\\"title\\\",\\\"MdyXMwevt\\\":\\\"content\\\",\\\"OiNiR9Sdx\\\":\\\"image\\\",\\\"CcXbxOXb7\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./u3C7o51Rv.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Ticker2 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Typewriter from\"https://framerusercontent.com/modules/vgSbxmWWvbgW6ShllXld/9oZlwlOxsp6zJVFpVkIp/Typewriter.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import Buttons,*as ButtonsInfo from\"#framer/local/canvasComponent/Cfpfg2W_1/Cfpfg2W_1.js\";import CardTestimonial from\"#framer/local/canvasComponent/CKeBATpFg/CKeBATpFg.js\";import DownloadCursor from\"#framer/local/canvasComponent/e2i_oXhGx/e2i_oXhGx.js\";import Pills2 from\"#framer/local/canvasComponent/fHdF_iiAS/fHdF_iiAS.js\";import BlackButtone from\"#framer/local/canvasComponent/hGOjUVukZ/hGOjUVukZ.js\";import NavigationBar2 from\"#framer/local/canvasComponent/Jg9v0Jf2R/Jg9v0Jf2R.js\";import Card2 from\"#framer/local/canvasComponent/lWdoGmU__/lWdoGmU__.js\";import Accordion from\"#framer/local/canvasComponent/MFQ3YCHPI/MFQ3YCHPI.js\";import FOOTER from\"#framer/local/canvasComponent/nOZjQz6d4/nOZjQz6d4.js\";import Rocket from\"#framer/local/canvasComponent/o0RXF70qH/o0RXF70qH.js\";import Card from\"#framer/local/canvasComponent/P5ZLESxqa/P5ZLESxqa.js\";import ViewCursor from\"#framer/local/canvasComponent/sNRj8KQg5/sNRj8KQg5.js\";import TheProcessCard from\"#framer/local/canvasComponent/u3C7o51Rv/u3C7o51Rv.js\";import{withWobbleEffect}from\"#framer/local/codeFile/AoXAf4L/Wobble.js\";import Products from\"#framer/local/collection/SFX0Dqs7b/SFX0Dqs7b.js\";import*as sharedStyle2 from\"#framer/local/css/clG0h7arK/clG0h7arK.js\";import*as sharedStyle from\"#framer/local/css/HBrJdn3pB/HBrJdn3pB.js\";import*as sharedStyle5 from\"#framer/local/css/HnyHtk8qf/HnyHtk8qf.js\";import*as sharedStyle1 from\"#framer/local/css/Ohmd2vlMG/Ohmd2vlMG.js\";import*as sharedStyle3 from\"#framer/local/css/sHjMxyi5E/sHjMxyi5E.js\";import*as sharedStyle6 from\"#framer/local/css/sXc7rJlgK/sXc7rJlgK.js\";import*as sharedStyle4 from\"#framer/local/css/UXFOc2qSc/UXFOc2qSc.js\";import*as sharedStyle7 from\"#framer/local/css/wAUJYhCTZ/wAUJYhCTZ.js\";import metadataProvider from\"#framer/local/webPageMetadata/eVkqgYxPg/eVkqgYxPg.js\";const NavigationBar2Fonts=getFonts(NavigationBar2);const ContainerWithFX=withFX(Container);const TickerFonts=getFonts(Ticker);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const TypewriterFonts=getFonts(Typewriter);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const BlackButtoneFonts=getFonts(BlackButtone);const ButtonsFonts=getFonts(Buttons);const ButtonsWithWobbleEffect1oz4vplWithMappedReactProps1tqtd6f=withMappedReactProps(withCodeBoundaryForOverrides(Buttons,{nodeId:\"fywhklmtA\",override:withWobbleEffect,scopeId:\"eVkqgYxPg\"}),ButtonsInfo);const CardFonts=getFonts(Card);const FOOTERFonts=getFonts(FOOTER);const Pills2Fonts=getFonts(Pills2);const Ticker1Fonts=getFonts(Ticker1);const RocketFonts=getFonts(Rocket);const RocketWithVariantAppearEffect=withVariantAppearEffect(Rocket);const MotionDivWithFX=withFX(motion.div);const TheProcessCardFonts=getFonts(TheProcessCard);const Ticker2Fonts=getFonts(Ticker2);const Card2Fonts=getFonts(Card2);const ImageWithFX=withFX(Image);const CardTestimonialFonts=getFonts(CardTestimonial);const SlideshowFonts=getFonts(Slideshow);const MotionAWithFX=withFX(motion.a);const AccordionFonts=getFonts(Accordion);const DownloadCursorFonts=getFonts(DownloadCursor);const ViewCursorFonts=getFonts(ViewCursor);const breakpoints={Lc8DurKi5:\"(min-width: 1200px) and (max-width: 1439px)\",uD3LqacJx:\"(min-width: 1440px)\",uo8tsq9Kh:\"(min-width: 810px) and (max-width: 1199px)\",XDhBkekmT:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-faXGt\";const variantClassNames={Lc8DurKi5:\"framer-v-pk0ygn\",uD3LqacJx:\"framer-v-1cfkvpo\",uo8tsq9Kh:\"framer-v-1mtaeqt\",XDhBkekmT:\"framer-v-z0bt1\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-127};const transition2={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition3={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:30,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition6};const transition7={damping:30,delay:0,mass:1,stiffness:784,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.2,skewX:0,skewY:0,transition:transition7,x:-83,y:61};const animation10={opacity:1,rotate:-1,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.2,skewX:0,skewY:0,x:-83,y:61};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.97,skewX:0,skewY:0,transition:transition6};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"Lc8DurKi5\",Desktop:\"uD3LqacJx\",Phone:\"XDhBkekmT\",Tablet:\"uo8tsq9Kh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"uD3LqacJx\"};};const transition8={damping:22,delay:0,mass:.3,stiffness:396,type:\"spring\"};const cursor={component:DownloadCursor,transition:transition8,variant:\"gb5dPiGVt\"};const cursor1={component:ViewCursor,transition:transition8,variant:\"iKty1g97s\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,of3ofpChftHzdSIaZZ,lSX4KVUBltHzdSIaZZ,kJmlKOMF8tHzdSIaZZ,M2_RVR9oQtHzdSIaZZ,idtHzdSIaZZ,kJmlKOMF8YgZnLNI5G,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"XSvUlkOhw\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"FTJ7bLINL\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"XDhBkekmT\")return false;return true;};const elementId2=useRouteElementId(\"ZlxTS9Ji4\");const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const elementId3=useRouteElementId(\"Fl7zCRgrY\");const ref7=React.useRef(null);const elementId4=useRouteElementId(\"qfJHkdD0P\");const elementId5=useRouteElementId(\"PlZmq3zFo\");const elementId6=useRouteElementId(\"rFWopWBDE\");const elementId7=useRouteElementId(\"sOEo3yLHY\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"Ny7h_odQd\");const ref9=React.useRef(null);const ref10=React.useRef(null);const ref11=React.useRef(null);const elementId9=useRouteElementId(\"o4WgCMGWT\");const ref12=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"XDhBkekmT\")return true;return false;};useCustomCursors({\"1iubjob\":cursor1,\"2qwfbc\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"uD3LqacJx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1cfkvpo\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uo8tsq9Kh:{width:`calc(${componentViewport?.width||\"100vw\"} - 1px)`},XDhBkekmT:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`max(${componentViewport?.width||\"100vw\"}, 1080px)`,y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2vmerv-container\",layoutScroll:true,nodeId:\"VeDnCbQmp\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uo8tsq9Kh:{variant:\"Ae0IkfJoC\"},XDhBkekmT:{style:{width:\"100%\"},variant:\"Ae0IkfJoC\"}},children:/*#__PURE__*/_jsx(NavigationBar2,{height:\"100%\",id:\"VeDnCbQmp\",layoutId:\"VeDnCbQmp\",style:{height:\"100%\",width:\"100%\"},variant:\"hv0q0hd2A\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15wgxps\",children:/*#__PURE__*/_jsxs(\"header\",{className:\"framer-tsaus9\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-6nxq3a-container\",\"data-framer-appear-id\":\"6nxq3a\",initial:animation2,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"U52E1PZYC\",optimized:true,rendersWithMotion:true,scopeId:\"eVkqgYxPg\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"U52E1PZYC\",layoutId:\"U52E1PZYC\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-160f32p\",\"data-framer-name\":\"Notion Workspace\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1epdcmr\",\"data-styles-preset\":\"HBrJdn3pB\",children:\"Notion Workspace \\xb7\"})}),className:\"framer-1qxw9e7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9vrae0\",\"data-framer-name\":\"No-code Solutions\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1epdcmr\",\"data-styles-preset\":\"HBrJdn3pB\",children:\"No-code Solutions \\xb7\"})}),className:\"framer-5pgoie\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x59p2g\",\"data-framer-name\":\"Workflow\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1epdcmr\",\"data-styles-preset\":\"HBrJdn3pB\",children:\"Workflow Automation \\xb7\"})}),className:\"framer-18h5mlk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cu6ukl\",\"data-framer-name\":\"Lead Forms\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1epdcmr\",\"data-styles-preset\":\"HBrJdn3pB\",children:\"Lead Forms \\xb7\"})}),className:\"framer-13k7brp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12pmwy1\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-18wtzqz\",\"data-framer-appear-id\":\"18wtzqz\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l6yyz0\",\"data-styles-preset\":\"Ohmd2vlMG\",style:{\"--framer-text-alignment\":\"left\"},children:\"Optimize your\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l6yyz0\",\"data-styles-preset\":\"Ohmd2vlMG\",children:\"We optimize your\"})}),className:\"framer-1xde658\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kpq5sg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"H7KZjcgZN\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uo8tsq9Kh:{font:{fontFamily:\"dotgothic16\",fontSize:57,fontWeight:500,letterSpacing:-.03,lineHeight:1.1,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"},style:{width:\"100%\"}},XDhBkekmT:{font:{fontFamily:\"dotgothic16\",fontSize:47,fontWeight:500,letterSpacing:-.03,lineHeight:1.1,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"}}},children:/*#__PURE__*/_jsx(Typewriter,{autoStart:true,caretVisibility:true,color:\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",cursor:\"|\",cursorColor:\"rgb(99, 99, 99)\",delayNumber:.1,delayType:true,font:{fontFamily:\"dotgothic16\",fontSize:71.5,fontWeight:500,letterSpacing:-.03,lineHeight:1.1,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"},height:\"100%\",id:\"H7KZjcgZN\",layoutId:\"H7KZjcgZN\",loop:true,pauseFor:1,split:true,tag:\"heading1\",text:\"system. process. workflow. day.\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"left\"},children:[\"All-in-one custom solutions for your workflows, so you can focus on delivering \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"quality work\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"attracting clients\"}),\", \"]}),\"and \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"growing your business to new heights\"}),\".\"]})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"center\"},children:[\"All-in-one custom solutions for your workflows, so you can focus on delivering \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"quality work\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"attracting clients\"}),\", \"]}),\"and \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"growing your business to new heights\"}),\".\"]})]})}),className:\"framer-d7j39v\",\"data-framer-appear-id\":\"d7j39v\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-112vdsy\",\"data-framer-appear-id\":\"112vdsy\",\"data-framer-name\":\"Buttons Stack\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DxmZ32f9z\"},implicitPathVariables:undefined},{href:{webPageId:\"DxmZ32f9z\"},implicitPathVariables:undefined},{href:{webPageId:\"DxmZ32f9z\"},implicitPathVariables:undefined},{href:{webPageId:\"DxmZ32f9z\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{height:50,y:(componentViewport?.y||0)+0+0+0+0+100+521+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iix0p-container\",nodeId:\"aDA2slsnt\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{EaBmMpPr3:resolvedLinks[3]},uo8tsq9Kh:{EaBmMpPr3:resolvedLinks[1]},XDhBkekmT:{EaBmMpPr3:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(BlackButtone,{EaBmMpPr3:resolvedLinks[0],height:\"100%\",id:\"aDA2slsnt\",layoutId:\"aDA2slsnt\",mZ_FC3eH3:\"Browse Templates\",style:{height:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{y:(componentViewport?.y||0)+0+0+0+0+100+521+0+67}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oz4vpl-container\",nodeId:\"fywhklmtA\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{YI6PUBvQH:resolvedLinks1[3]},uo8tsq9Kh:{YI6PUBvQH:resolvedLinks1[1]},XDhBkekmT:{YI6PUBvQH:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonsWithWobbleEffect1oz4vplWithMappedReactProps1tqtd6f,{d3rKsrWsN:\"Let's Talk\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"fywhklmtA\",layoutId:\"fywhklmtA\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"kLzNXgpq3\",width:\"100%\",YI6PUBvQH:resolvedLinks1[0]})})})})})})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1imkx08\",\"data-framer-name\":\"FREE DOWNLOAD\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cegmHDATo\"},implicitPathVariables:undefined},{href:{webPageId:\"cegmHDATo\"},implicitPathVariables:undefined},{href:{webPageId:\"cegmHDATo\"},implicitPathVariables:undefined},{href:{webPageId:\"cegmHDATo\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+773+80+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:660,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a50zgn-container\",id:elementId1,nodeId:\"FTJ7bLINL\",ref:ref2,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{wzPKHDhEn:resolvedLinks2[3]},uo8tsq9Kh:{variant:\"Au1tBbDVR\",wzPKHDhEn:resolvedLinks2[1]},XDhBkekmT:{style:{width:\"100%\"},variant:\"Civq9kpYe\",wzPKHDhEn:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Card,{AjD1PrTtc:\"2qwfbc\",d5lrKoO1v:ref1,height:\"100%\",id:\"FTJ7bLINL\",layoutId:\"FTJ7bLINL\",qhfaFPnGL:\"Get free templates to organize and skyrocket every aspect of your life.\",variant:\"pebkJ8oT4\",width:\"100%\",wzPKHDhEn:resolvedLinks2[0]})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:componentViewport?.width||\"100vw\",y:400,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cksxim-container hidden-z0bt1\",layoutScroll:true,nodeId:\"adplwXbWf\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(FOOTER,{height:\"100%\",id:\"adplwXbWf\",layoutId:\"adplwXbWf\",style:{height:\"100%\",width:\"100%\"},variant:\"iUEwek7FN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2pm3cv\",\"data-framer-name\":\"Paint Point\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161w82t\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"left\"},children:\"A Disorganized System Results to \u2026\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"center\"},children:\"A Disorganized System Results to \u2026\"})}),className:\"framer-m8mkdf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s5dt6p\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-al8el7-container\",isModuleExternal:true,nodeId:\"WSS6SzhAN\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.7,id:\"WSS6SzhAN\",layoutId:\"WSS6SzhAN\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"267px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13hlplf-container\",inComponentSlot:true,nodeId:\"MugErTbmm\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(Pills2,{BaAUS2MX1:\"Missed Deadlines\",height:\"100%\",id:\"MugErTbmm\",layoutId:\"MugErTbmm\",MmTlL47jl:\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",uGB4ohfO1:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#e8eaed\"><path d=\"m388-212-56-56 92-92-92-92 56-56 92 92 92-92 56 56-92 92 92 92-56 56-92-92-92 92ZM200-80q-33 0-56.5-23.5T120-160v-560q0-33 23.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33 0 56.5 23.5T840-720v560q0 33-23.5 56.5T760-80H200Zm0-80h560v-400H200v400Zm0-480h560v-80H200v80Zm0 0v-80 80Z\"/></svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"290px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yimq38-container\",inComponentSlot:true,nodeId:\"y74PHJd0w\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(Pills2,{BaAUS2MX1:\"Lost Opportunities\",height:\"100%\",id:\"y74PHJd0w\",layoutId:\"y74PHJd0w\",MmTlL47jl:\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",uGB4ohfO1:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#e8eaed\"><path d=\"m336-280 144-144 144 144 56-56-144-144 144-144-56-56-144 144-144-144-56 56 144 144-144 144 56 56ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z\"/></svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"267px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kzfr00-container\",inComponentSlot:true,nodeId:\"eNsogYJTU\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(Pills2,{BaAUS2MX1:\"Increased Stress\",height:\"100%\",id:\"eNsogYJTU\",layoutId:\"eNsogYJTU\",MmTlL47jl:\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",uGB4ohfO1:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#e8eaed\"><path d=\"M250-320h60v-10q0-71 49.5-120.5T480-500q71 0 120.5 49.5T650-330v10h60v-10q0-96-67-163t-163-67q-96 0-163 67t-67 163v10Zm34-270q41-6 86.5-32t72.5-59l-46-38q-20 24-55.5 44T276-650l8 60Zm392 0 8-60q-30-5-65.5-25T563-719l-46 38q27 33 72.5 59t86.5 32ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-400Zm0 320q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Z\"/></svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"290px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o9wo5e-container\",inComponentSlot:true,nodeId:\"MBTPYucgy\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(Pills2,{BaAUS2MX1:\"Duplicated Efforts\",height:\"100%\",id:\"MBTPYucgy\",layoutId:\"MBTPYucgy\",MmTlL47jl:\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",uGB4ohfO1:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#e8eaed\"><path d=\"m476-420 84-84 84 84 56-56-84-84 84-84-56-56-84 84-84-84-56 56 84 84-84 84 56 56ZM320-240q-33 0-56.5-23.5T240-320v-480q0-33 23.5-56.5T320-880h480q33 0 56.5 23.5T880-800v480q0 33-23.5 56.5T800-240H320Zm0-80h480v-480H320v480ZM160-80q-33 0-56.5-23.5T80-160v-560h80v560h560v80H160Zm160-720v480-480Z\"/></svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"149px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f4264o-container\",inComponentSlot:true,nodeId:\"NWwbMCbyN\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(Pills2,{BaAUS2MX1:\"Delays\",height:\"100%\",id:\"NWwbMCbyN\",layoutId:\"NWwbMCbyN\",MmTlL47jl:\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",uGB4ohfO1:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#e8eaed\"><path d=\"m656-120-56-56 84-84-84-84 56-56 84 84 84-84 56 56-83 84 83 84-56 56-84-83-84 83Zm-176 0q-138 0-240.5-91.5T122-440h82q14 104 92.5 172T480-200q11 0 20.5-.5T520-203v81q-10 1-19.5 1.5t-20.5.5ZM120-560v-240h80v94q51-64 124.5-99T480-840q150 0 255 105t105 255h-80q0-117-81.5-198.5T480-760q-69 0-129 32t-101 88h110v80H120Zm414 190-94-94v-216h80v184l56 56-42 70Z\"/></svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"196px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1os0d9o-container\",inComponentSlot:true,nodeId:\"ylcKmSrhu\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(Pills2,{BaAUS2MX1:\"Lost Sales\",height:\"100%\",id:\"ylcKmSrhu\",layoutId:\"ylcKmSrhu\",MmTlL47jl:\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",uGB4ohfO1:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#e8eaed\"><path d=\"M560-440q-50 0-85-35t-35-85q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35ZM280-320q-33 0-56.5-23.5T200-400v-320q0-33 23.5-56.5T280-800h560q33 0 56.5 23.5T920-720v320q0 33-23.5 56.5T840-320H280Zm80-80h400q0-33 23.5-56.5T840-480v-160q-33 0-56.5-23.5T760-720H360q0 33-23.5 56.5T280-640v160q33 0 56.5 23.5T360-400Zm440 240H120q-33 0-56.5-23.5T40-240v-440h80v440h680v80ZM280-400v-320 320Z\"/></svg>',width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Your documents all over the place and tasks are slipping through the cracks. Does this sound familiar? \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We understand \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"the frustration.\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Your documents all over the place and tasks are slipping through the cracks. Does this sound familiar? \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We understand \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"the frustration.\"})})]})}),className:\"framer-1ep67gu\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wpri61\",\"data-framer-name\":\"The Process\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-28vr3f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uo8tsq9Kh:{width:\"306px\"},XDhBkekmT:{height:458,width:`min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+1853+45+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"453px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3te3og-container\",nodeId:\"sDbNOguKn\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{__framer__variantAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RocketWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref4,target:\"WGTlEfTY7\"},{ref:ref5,target:\"uBdNVTpgo\"},{ref:ref6,target:\"Nol5_ZdGh\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"sDbNOguKn\",layoutId:\"sDbNOguKn\",style:{height:\"100%\",width:\"100%\"},variant:\"EtP6oB1bW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7zlu5\",\"data-framer-name\":\"Right section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ce7zig\",\"data-framer-name\":\"Intro\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rzgtx0\",\"data-styles-preset\":\"UXFOc2qSc\",style:{\"--framer-text-alignment\":\"left\"},children:\"So here's how we can help\"})}),className:\"framer-c0l6kg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"left\"},children:\"We'll build a workspace that will improve your workflows with just 4 easy steps.\"})}),className:\"framer-1edu5zo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"C\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"larify\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"  \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\u2192\"}),\"  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"O\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"rganize\"})}),\"  \",/*#__PURE__*/_jsx(\"strong\",{children:\"\u2192\"}),\"  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"D\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"esign\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"\u2192\"}),\"  \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"E\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"valuate\"})})]})}),className:\"framer-7z11w1\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"And then we launch.\"})}),className:\"framer-1j2w5jt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 10px)`,y:(componentViewport?.y||0)+0+1853+45+0+0+498+0+430.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 10px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ad3t5q-container\",id:elementId3,nodeId:\"Fl7zCRgrY\",ref:ref7,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{OiNiR9Sdx:addImageAlt({src:\"https://framerusercontent.com/images/LLPFbUcQgLZF57acy0fib24ss4.png\",srcSet:\"https://framerusercontent.com/images/LLPFbUcQgLZF57acy0fib24ss4.png?scale-down-to=512 512w,https://framerusercontent.com/images/LLPFbUcQgLZF57acy0fib24ss4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LLPFbUcQgLZF57acy0fib24ss4.png 1200w\"},\"\"),variant:\"UEiaD6tpr\"}},children:/*#__PURE__*/_jsx(TheProcessCard,{dukr6pZMU:\"01.   Clarify Goals\",height:\"100%\",id:\"Fl7zCRgrY\",layoutId:\"Fl7zCRgrY\",MdyXMwevt:\"We'll have an in-depth discussion to understand your specific needs and desired outcomes. \",style:{width:\"100%\"},variant:\"b3dHVjhkd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 10px)`,y:(componentViewport?.y||0)+0+1853+45+0+0+498+0+983.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 10px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o1kx3s-container\",id:elementId4,nodeId:\"qfJHkdD0P\",ref:ref4,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{OiNiR9Sdx:addImageAlt({src:\"https://framerusercontent.com/images/bp5FFknbdQWkabwfjI0bBrkg.png\",srcSet:\"https://framerusercontent.com/images/bp5FFknbdQWkabwfjI0bBrkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/bp5FFknbdQWkabwfjI0bBrkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bp5FFknbdQWkabwfjI0bBrkg.png 1200w\"},\"\"),variant:\"UEiaD6tpr\"}},children:/*#__PURE__*/_jsx(TheProcessCard,{dukr6pZMU:\"02.   Organize Structure\",height:\"100%\",id:\"qfJHkdD0P\",layoutId:\"qfJHkdD0P\",MdyXMwevt:\"We'll create a clear and logical information architecture for your workflow. We'll map out the flow of data and ensure intuitive navigation for easy use.\",style:{width:\"100%\"},variant:\"b3dHVjhkd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 10px)`,y:(componentViewport?.y||0)+0+1853+45+0+0+498+0+1536.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 10px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1feul36-container\",id:elementId5,nodeId:\"PlZmq3zFo\",ref:ref5,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{OiNiR9Sdx:addImageAlt({src:\"https://framerusercontent.com/images/3d5ttcCwzclMdqbZqzK1o2Xo8.png\"},\"\"),variant:\"UEiaD6tpr\"}},children:/*#__PURE__*/_jsx(TheProcessCard,{dukr6pZMU:\"03.    Design & Develop\",height:\"100%\",id:\"PlZmq3zFo\",layoutId:\"PlZmq3zFo\",MdyXMwevt:\"Now, you can sit back and relax. We'll take our discussions and turn them into a fully functional workspace. \",style:{width:\"100%\"},variant:\"b3dHVjhkd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 10px)`,y:(componentViewport?.y||0)+0+1853+45+0+0+498+0+2089.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 10px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18u67yf-container\",id:elementId6,nodeId:\"rFWopWBDE\",ref:ref6,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{OiNiR9Sdx:addImageAlt({src:\"https://framerusercontent.com/images/t1pJSJKEBJctaPQg9GwdTbTPak.png\"},\"\"),variant:\"UEiaD6tpr\"}},children:/*#__PURE__*/_jsx(TheProcessCard,{dukr6pZMU:\"04.   Evaluate & Refine\",height:\"100%\",id:\"rFWopWBDE\",layoutId:\"rFWopWBDE\",MdyXMwevt:\"We'll thoroughly review the first draft and incorporate any necessary adjustments. We'll ensure the workspace perfectly aligns with your vision and delivers the desired results.\",style:{width:\"100%\"},variant:\"b3dHVjhkd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 10px)`,y:(componentViewport?.y||0)+0+1853+45+0+0+498+0+2642.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 10px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k5isvy-container\",id:elementId7,nodeId:\"sOEo3yLHY\",ref:ref8,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{OiNiR9Sdx:addImageAlt({src:\"https://framerusercontent.com/images/apTHUnbQKH2GH9zLFlbC4yQ7N7E.png\"},\"\"),variant:\"UEiaD6tpr\"}},children:/*#__PURE__*/_jsx(TheProcessCard,{dukr6pZMU:\"Launch\",height:\"100%\",id:\"sOEo3yLHY\",layoutId:\"sOEo3yLHY\",MdyXMwevt:\"Finally, we\u2019ll set you up for success. You\u2019ll receive your custom workspace along with all the documentation you need. Then voila! Launch time!\",style:{width:\"100%\"},variant:\"b3dHVjhkd\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a2i395\",\"data-framer-name\":\"CTA2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fbj4ju\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gx57cu\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k7vk9l\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1vj6m2r\",\"data-framer-appear-id\":\"1vj6m2r\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:\"Ready to realize your\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l6yyz0\",\"data-styles-preset\":\"Ohmd2vlMG\",style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:\"Ready to realize your\"})}),className:\"framer-15sf71y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ltehn2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Uuyg9dcip\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uo8tsq9Kh:{font:{fontFamily:\"dotgothic16\",fontSize:57,fontWeight:500,letterSpacing:-.03,lineHeight:1.1,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"},style:{width:\"100%\"}},XDhBkekmT:{font:{fontFamily:\"dotgothic16\",fontSize:39,fontWeight:500,letterSpacing:-.03,lineHeight:1.1,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"}}},children:/*#__PURE__*/_jsx(Typewriter,{autoStart:true,caretVisibility:true,color:\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",cursor:\"|\",cursorColor:\"var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247))\",delayNumber:.1,delayType:true,font:{fontFamily:\"dotgothic16\",fontSize:76,fontWeight:500,letterSpacing:-.03,lineHeight:1.1,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"left\",whiteSpace:\"normal\"},height:\"100%\",id:\"Uuyg9dcip\",layoutId:\"Uuyg9dcip\",loop:true,pauseFor:1,split:true,tag:\"heading1\",text:\"ideas? plans? goals?\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"left\"},children:\"Contact us today and discover how our solutions and expert guidance can help you achieve your dream workspace \u2014 effortlessly.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Contact us today and discover how our solutions and expert guidance can help you achieve your dream workspace \u2014 effortlessly.\"})}),className:\"framer-1pdp0y0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{y:(componentViewport?.y||0)+0+5580.5+40+378}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7hhtk0-container\",nodeId:\"rpFRuY5Xh\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{YI6PUBvQH:resolvedLinks3[3]},uo8tsq9Kh:{YI6PUBvQH:resolvedLinks3[1]},XDhBkekmT:{YI6PUBvQH:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:\"Talk to us\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"rpFRuY5Xh\",layoutId:\"rpFRuY5Xh\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"kLzNXgpq3\",width:\"100%\",YI6PUBvQH:resolvedLinks3[0]})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11c5xp5-container\",isModuleExternal:true,nodeId:\"YjYnOlk2P\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(Ticker2,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:12,height:\"100%\",hoverFactor:.5,id:\"YjYnOlk2P\",layoutId:\"YjYnOlk2P\",padding:4,paddingBottom:4,paddingLeft:4,paddingPerSide:false,paddingRight:4,paddingTop:4,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1648,pixelWidth:2480,positionX:\"center\",positionY:\"center\",sizes:\"521px\",src:\"https://framerusercontent.com/images/WcoYC8lf0ohaC3aoisSDkT0yj3Y.png\",srcSet:\"https://framerusercontent.com/images/WcoYC8lf0ohaC3aoisSDkT0yj3Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/WcoYC8lf0ohaC3aoisSDkT0yj3Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WcoYC8lf0ohaC3aoisSDkT0yj3Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WcoYC8lf0ohaC3aoisSDkT0yj3Y.png 2480w\"},className:\"framer-1bgr4k5\",\"data-border\":true,whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1721,intrinsicWidth:1413,pixelHeight:1646,pixelWidth:1327,positionX:\"center\",positionY:\"center\",sizes:\"282.4358px\",src:\"https://framerusercontent.com/images/myvKZrfrXsYVuA6fM8mZsGZZaok.png\",srcSet:\"https://framerusercontent.com/images/myvKZrfrXsYVuA6fM8mZsGZZaok.png?scale-down-to=1024 825w,https://framerusercontent.com/images/myvKZrfrXsYVuA6fM8mZsGZZaok.png 1327w\"},className:\"framer-15sk9uo\",\"data-framer-name\":\"Group_18\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1732,intrinsicWidth:1861,pixelHeight:1646,pixelWidth:1776,positionX:\"center\",positionY:\"center\",sizes:\"369.6212px\",src:\"https://framerusercontent.com/images/xtyjJTYkSP5c8nWS29zUldnPYrQ.png\",srcSet:\"https://framerusercontent.com/images/xtyjJTYkSP5c8nWS29zUldnPYrQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xtyjJTYkSP5c8nWS29zUldnPYrQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xtyjJTYkSP5c8nWS29zUldnPYrQ.png 1776w\"},className:\"framer-1u408pf\",\"data-border\":true,\"data-framer-name\":\"Frame_30\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1833,intrinsicWidth:2399,pixelHeight:1647,pixelWidth:2213,positionX:\"center\",positionY:\"center\",sizes:\"472px\",src:\"https://framerusercontent.com/images/b1NtoOpEDs0EUI904I6i4cOY8Mc.png\",srcSet:\"https://framerusercontent.com/images/b1NtoOpEDs0EUI904I6i4cOY8Mc.png?scale-down-to=512 512w,https://framerusercontent.com/images/b1NtoOpEDs0EUI904I6i4cOY8Mc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b1NtoOpEDs0EUI904I6i4cOY8Mc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b1NtoOpEDs0EUI904I6i4cOY8Mc.png 2213w\"},className:\"framer-1c2lvq5\",\"data-framer-name\":\"Group_17\",whileHover:animation8})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kjrohb\",\"data-framer-name\":\"Services Section\",id:elementId8,ref:ref9,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11b309t\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kq72pt\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8zo7dw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"left\"},children:\"We Can Be Your Partner.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"center\"},children:\"We Can Be Your Partner.\"})}),className:\"framer-e53kyt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"left\"},children:\"We'll help you achieve any desired goals and systems you have in mind with our practical and personalized solutions.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"center\"},children:\"We'll help you achieve any desired goals and systems you have in mind with our practical and personalized solutions.\"})}),className:\"framer-13kbj39\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h5a2rv\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px), 1400px)`,y:(componentViewport?.y||0)+0+6469.5+70+0+0+0+0+199+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:527,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 1400px) - 29px) / 2, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18t5cvd-container\",nodeId:\"Y1smrtTbH\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{WgnqJ9dHD:resolvedLinks4[3]},uo8tsq9Kh:{WgnqJ9dHD:resolvedLinks4[1]},XDhBkekmT:{variant:\"uR8f7zL1o\",WgnqJ9dHD:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Card2,{AGKzzGxsW:\"Inquire now\",dp_Y04xRK:\"We will work with you to create custom Notion systems that fit your unique needs.\",height:\"100%\",id:\"Y1smrtTbH\",j0xUKCM2x:addImageAlt({src:\"https://framerusercontent.com/images/CQzUb81a9s9qFo8UDvuCRVym4.png\",srcSet:\"https://framerusercontent.com/images/CQzUb81a9s9qFo8UDvuCRVym4.png?scale-down-to=512 512w,https://framerusercontent.com/images/CQzUb81a9s9qFo8UDvuCRVym4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CQzUb81a9s9qFo8UDvuCRVym4.png 1198w\"},\"\"),layoutId:\"Y1smrtTbH\",style:{width:\"100%\"},TcWecRBMT:\"Custom Notion Solutions\",variant:\"FLtskC844\",WgnqJ9dHD:resolvedLinks4[0],width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AUA7oCVaL\"},implicitPathVariables:undefined},{href:{webPageId:\"AUA7oCVaL\"},implicitPathVariables:undefined},{href:{webPageId:\"AUA7oCVaL\"},implicitPathVariables:undefined},{href:{webPageId:\"AUA7oCVaL\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px), 1400px)`,y:(componentViewport?.y||0)+0+6469.5+70+0+0+0+0+199+0+631}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:527,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 1400px) - 29px) / 2, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i5yzkg-container\",nodeId:\"VUVPeQ73P\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{WgnqJ9dHD:resolvedLinks5[3]},uo8tsq9Kh:{WgnqJ9dHD:resolvedLinks5[1]},XDhBkekmT:{dp_Y04xRK:\"Notion can be confusing but with our 1-on-1 coaching sessions, you'll master Notion in no time. Learn how to customize templates, automate tasks, and unlock the full potential of Notion. \",variant:\"uR8f7zL1o\",WgnqJ9dHD:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(Card2,{AGKzzGxsW:\"Inquire now\",dp_Y04xRK:\"Notion can be confusing but with our 1-on-1 coaching sessions, you'll master Notion in no time. \",height:\"100%\",id:\"VUVPeQ73P\",j0xUKCM2x:addImageAlt({src:\"https://framerusercontent.com/images/4ZCZBQw1ZfJuyTpIMdB1Z4MOkXM.png\",srcSet:\"https://framerusercontent.com/images/4ZCZBQw1ZfJuyTpIMdB1Z4MOkXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ZCZBQw1ZfJuyTpIMdB1Z4MOkXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ZCZBQw1ZfJuyTpIMdB1Z4MOkXM.png 1200w\"},\"\"),layoutId:\"VUVPeQ73P\",style:{width:\"100%\"},TcWecRBMT:\"Personalized Training & Coaching\",variant:\"FLtskC844\",WgnqJ9dHD:resolvedLinks5[0],width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px), 1400px)`,y:(componentViewport?.y||0)+0+6469.5+70+0+0+0+0+199+0+1262}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:527,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 1400px) - 29px) / 2, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vy9er7-container\",nodeId:\"HxoOst76P\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{WgnqJ9dHD:resolvedLinks6[3]},uo8tsq9Kh:{WgnqJ9dHD:resolvedLinks6[1]},XDhBkekmT:{variant:\"uR8f7zL1o\",WgnqJ9dHD:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(Card2,{AGKzzGxsW:\"Inquire now\",dp_Y04xRK:\"Need a Notion Champion for your team? We'll assess your workflows and implement effective strategies to ensure you get more done in less time.\",height:\"100%\",id:\"HxoOst76P\",j0xUKCM2x:addImageAlt({src:\"https://framerusercontent.com/images/kmxEWxJDNp11sqaznWJh7574k.png\",srcSet:\"https://framerusercontent.com/images/kmxEWxJDNp11sqaznWJh7574k.png?scale-down-to=512 512w,https://framerusercontent.com/images/kmxEWxJDNp11sqaznWJh7574k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kmxEWxJDNp11sqaznWJh7574k.png 1056w\"},\"\"),layoutId:\"HxoOst76P\",style:{width:\"100%\"},TcWecRBMT:\"Workflow Operations Partner\",variant:\"FLtskC844\",WgnqJ9dHD:resolvedLinks6[0],width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px), 1400px)`,y:(componentViewport?.y||0)+0+6469.5+70+0+0+0+0+199+0+1893}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:527,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 1400px) - 29px) / 2, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gpm3hh-container\",nodeId:\"WPRgMVkKA\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{WgnqJ9dHD:resolvedLinks7[3]},uo8tsq9Kh:{WgnqJ9dHD:resolvedLinks7[1]},XDhBkekmT:{variant:\"uR8f7zL1o\",WgnqJ9dHD:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(Card2,{AGKzzGxsW:\"Inquire now\",dp_Y04xRK:\"We don't stop at Notion. We'll set up automations that free up your time for more important work. .\",height:\"100%\",id:\"WPRgMVkKA\",j0xUKCM2x:addImageAlt({src:\"https://framerusercontent.com/images/bp5FFknbdQWkabwfjI0bBrkg.png\",srcSet:\"https://framerusercontent.com/images/bp5FFknbdQWkabwfjI0bBrkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/bp5FFknbdQWkabwfjI0bBrkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bp5FFknbdQWkabwfjI0bBrkg.png 1200w\"},\"\"),layoutId:\"WPRgMVkKA\",style:{width:\"100%\"},TcWecRBMT:\"Integration and Automation\",variant:\"FLtskC844\",WgnqJ9dHD:resolvedLinks7[0],width:\"100%\"})})})})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h3kwek\",\"data-framer-name\":\"About Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11fxgsb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uo8tsq9Kh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:1018,pixelHeight:630,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/kAtBYMerWRsE7jdFGLV3KYPvCo.svg\",srcSet:\"https://framerusercontent.com/images/kAtBYMerWRsE7jdFGLV3KYPvCo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/kAtBYMerWRsE7jdFGLV3KYPvCo.svg 900w\"}},XDhBkekmT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:1018,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9228.5+14+0+0+0),pixelHeight:630,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"350px\",src:\"https://framerusercontent.com/images/kAtBYMerWRsE7jdFGLV3KYPvCo.svg\",srcSet:\"https://framerusercontent.com/images/kAtBYMerWRsE7jdFGLV3KYPvCo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/kAtBYMerWRsE7jdFGLV3KYPvCo.svg 900w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:1018,pixelHeight:630,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) * 0.4696)`,src:\"https://framerusercontent.com/images/kAtBYMerWRsE7jdFGLV3KYPvCo.svg\",srcSet:\"https://framerusercontent.com/images/kAtBYMerWRsE7jdFGLV3KYPvCo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/kAtBYMerWRsE7jdFGLV3KYPvCo.svg 900w\"},className:\"framer-1dnvvur\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w85nte\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rzgtx0\",\"data-styles-preset\":\"UXFOc2qSc\",children:\"About Newblocs\"})}),className:\"framer-frwrbo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uo8tsq9Kh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",children:[\"Dedicated to helping you make the most out of \",/*#__PURE__*/_jsx(Link,{href:\"https://affiliate.notion.so/jkrg565cvqj4\",motionChild:true,nodeId:\"KfKPxfbL_\",openInNewTab:false,scopeId:\"eVkqgYxPg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Notion\"})}),\". \"]})})},XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",children:\"Dedicated to helping you make your day-to-day processes easier and more efficient.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Dedicated to helping you make your day-to-day processes easier and more efficient.\"})}),className:\"framer-c7x7j2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",children:\"We provide individuals and businesses with the tools and systems needed to enhance work efficiency and improve quality of life in the digital era of business and productivity.\"})}),className:\"framer-25157p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-color\":\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xxFeZ0afC\"},motionChild:true,nodeId:\"vUytxrUVu\",openInNewTab:false,scopeId:\"eVkqgYxPg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Meet Ian, creator of Newblocs \u2192\"})})})})}),className:\"framer-1o00hyj\",fonts:[\"Inter\",\"Inter-Bold\"],id:\"1o00hyj\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref10,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref10,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1o00hyj\",offsetX:231.99998830258846,offsetY:7.297178041189909,onDismiss:overlay.hide,placement:\"top\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9228.5+14+0+0+322+0+280.5+-86),pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/ZknJztrUOcbBsc4r9BM1I0aBA8.gif\",srcSet:\"https://framerusercontent.com/images/ZknJztrUOcbBsc4r9BM1I0aBA8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/ZknJztrUOcbBsc4r9BM1I0aBA8.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZknJztrUOcbBsc4r9BM1I0aBA8.gif 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{animate:animation10,background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/ZknJztrUOcbBsc4r9BM1I0aBA8.gif\",srcSet:\"https://framerusercontent.com/images/ZknJztrUOcbBsc4r9BM1I0aBA8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/ZknJztrUOcbBsc4r9BM1I0aBA8.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZknJztrUOcbBsc4r9BM1I0aBA8.gif 1200w\"},className:\"framer-2t2lw0\",exit:animation9,initial:animation11,ref:ref11,role:\"dialog\",style:{rotate:-1}})})})})]})})]})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-42jvk3\",\"data-framer-name\":\"Call to action\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{background:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1.26,fit:\"tile\",pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/VfkEna8iRjS9ZbXeCG1MRu3r0w.svg\"},className:\"framer-1e3k45n\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pf13dp-container\",isModuleExternal:true,nodeId:\"yS0goJXKH\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{arrowOptions:{arrowFill:\"rgba(84, 84, 84, 0.65)\",arrowGap:10,arrowPadding:-15,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:34,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:28,showMouseControls:false},style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(84, 84, 84, 0.65)\",arrowGap:10,arrowPadding:-15,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:34,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:28,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",id:\"yS0goJXKH\",intervalControl:10,itemAmount:1,layoutId:\"yS0goJXKH\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",dotsGap:10,dotsInset:26,dotSize:7,dotsOpacity:.3,dotsPadding:10,dotsRadius:25,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:347,width:\"683px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mnxsfp-container\",inComponentSlot:true,nodeId:\"pSjwZhmBO\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"pSjwZhmBO\",layoutId:\"pSjwZhmBO\",mjW3_JNZr:\"Student & Freelancer\",OrEnDZrSN:\"If you're searching for a template that features an easy-to-use and organized, then the premium template that Projectify offers will suit your needs. Its neatness and simplicity complement its overall functionality as a project and tasks manager. It's ideal for anyone who struggles to stay consistent in opening their notion to create and track their task-in-progress. The template is easy to navigate, thus making it more effective as a whole. \u2728\",style:{width:\"100%\"},THN17XOhF:\"Kimberly E.\",variant:\"Z94ZkeDM2\",width:\"100%\",zonqMRqY8:addImageAlt({src:\"https://framerusercontent.com/images/lHxzK83LwcMNUdFP9Y3jKoJnu4.gif\",srcSet:\"https://framerusercontent.com/images/lHxzK83LwcMNUdFP9Y3jKoJnu4.gif?scale-down-to=512 512w,https://framerusercontent.com/images/lHxzK83LwcMNUdFP9Y3jKoJnu4.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/lHxzK83LwcMNUdFP9Y3jKoJnu4.gif 1200w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:347,width:\"683px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wx8suj-container\",inComponentSlot:true,nodeId:\"XazltXYE7\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"XazltXYE7\",layoutId:\"XazltXYE7\",mjW3_JNZr:\"Business Consultant\",OrEnDZrSN:\"Starting from scratch can be tricky sometimes in Notion. So we need all the help we can get. If you're in project management or simply need a fast and easy way to organize your time, take a look at Projectify from Newblocs! GREAT WORK!\",style:{width:\"100%\"},THN17XOhF:\"Rafael L.S\",variant:\"Z94ZkeDM2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:347,width:\"683px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10idpjk-container\",inComponentSlot:true,nodeId:\"jD4hayd7H\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"jD4hayd7H\",layoutId:\"jD4hayd7H\",mjW3_JNZr:\"\",OrEnDZrSN:\"Thank you so much Newblocs for Projectify - Project & Tasks Manager!! This will surely help me organize things in my daily life. \uD83D\uDC97\",style:{width:\"100%\"},THN17XOhF:\"Joyce\",variant:\"Z94ZkeDM2\",width:\"100%\",zonqMRqY8:addImageAlt({src:\"https://framerusercontent.com/images/5o2Dkn7oVQLuBdIGcmfy2OC18.gif\",srcSet:\"https://framerusercontent.com/images/5o2Dkn7oVQLuBdIGcmfy2OC18.gif?scale-down-to=512 512w,https://framerusercontent.com/images/5o2Dkn7oVQLuBdIGcmfy2OC18.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/5o2Dkn7oVQLuBdIGcmfy2OC18.gif 1200w\"},\"\")})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:44,delay:0,mass:.1,stiffness:171,type:\"spring\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vlcbnb\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dlpaz0\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pfy4eq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15n9q8x\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1v1saa9\",\"data-framer-name\":\"Checkbox-on\",fill:'var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34)) /* {\"name\":\"Primary\"} */',intrinsicHeight:16,intrinsicWidth:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\"><path d=\"M3 3h18v18H3V3zm16 16V5H5v14h14z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12ks4e4\",\"data-framer-name\":\"Close-box\",fill:'var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34)) /* {\"name\":\"Primary\"} */',intrinsicHeight:16,intrinsicWidth:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\"><path d=\"M5 3H3v18h18V3H5zm14 2v14H5V5h14zm-8 4H9V7H7v2h2v2h2v2H9v2H7v2h2v-2h2v-2h2v2h2v2h2v-2h-2v-2h-2v-2h2V9h2V7h-2v2h-2v2h-2V9z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4w7myl\",\"data-framer-name\":\"Checkbox\",fill:'var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34)) /* {\"name\":\"Primary\"} */',intrinsicHeight:16,intrinsicWidth:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\"><path d=\"M5 3H3v18h18V3H5zm0 2h14v14H5V5zm4 7H7v2h2v2h2v-2h2v-2h2v-2h2V8h-2v2h-2v2h-2v2H9v-2z\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"left\"},children:\"Get Organized with Ready-Made Notion Templates\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get Organized with Ready-Made Notion Templates\"})}),className:\"framer-rdlnii\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"left\"},children:\"Eliminate the need to design your system from the ground up.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Eliminate the need to design your system from the ground up.\"})}),className:\"framer-t6q0ao\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e801tj\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DxmZ32f9z\"},implicitPathVariables:undefined},{href:{webPageId:\"DxmZ32f9z\"},implicitPathVariables:undefined},{href:{webPageId:\"DxmZ32f9z\"},implicitPathVariables:undefined},{href:{webPageId:\"DxmZ32f9z\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{y:(componentViewport?.y||0)+0+9895+60+748+0+0+0+260+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tdm5mn-container\",nodeId:\"Y3XMJDa4D\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{YI6PUBvQH:resolvedLinks8[3]},uo8tsq9Kh:{YI6PUBvQH:resolvedLinks8[1]},XDhBkekmT:{YI6PUBvQH:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:\"Browse Templates\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"Y3XMJDa4D\",layoutId:\"Y3XMJDa4D\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"kLzNXgpq3\",width:\"100%\",YI6PUBvQH:resolvedLinks8[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{y:(componentViewport?.y||0)+0+9895+60+748+0+0+0+260+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o3uapa-container\",nodeId:\"smSU1UTfM\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lc8DurKi5:{YI6PUBvQH:resolvedLinks9[3]},uo8tsq9Kh:{YI6PUBvQH:resolvedLinks9[1]},XDhBkekmT:{YI6PUBvQH:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:\"I need a custom one\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"smSU1UTfM\",layoutId:\"smSU1UTfM\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"xk4djkVGs\",width:\"100%\",YI6PUBvQH:resolvedLinks9[0]})})})})})})]})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1wv45a1\",\"data-framer-name\":\"COLLECTION\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ioljri\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"tHzdSIaZZ\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"tHzdSIaZZ\",name:\"of3ofpChf\",type:\"Identifier\"},{collection:\"tHzdSIaZZ\",name:\"lSX4KVUBl\",type:\"Identifier\"},{collection:\"tHzdSIaZZ\",name:\"kJmlKOMF8\",type:\"Identifier\"},{collection:\"tHzdSIaZZ\",name:\"M2_RVR9oQ\",type:\"Identifier\"},{collection:\"tHzdSIaZZ\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"tHzdSIaZZ\",name:\"kJmlKOMF8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:kJmlKOMF8YgZnLNI5G},type:\"BinaryOperation\"}},operator:\"and\",right:{collection:\"tHzdSIaZZ\",name:\"a0y_7wvq3\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idtHzdSIaZZ,kJmlKOMF8:kJmlKOMF8tHzdSIaZZ,lSX4KVUBl:lSX4KVUBltHzdSIaZZ,M2_RVR9oQ:M2_RVR9oQtHzdSIaZZ,of3ofpChf:of3ofpChftHzdSIaZZ},index)=>{of3ofpChftHzdSIaZZ??=\"\";kJmlKOMF8tHzdSIaZZ??=\"\";M2_RVR9oQtHzdSIaZZ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tHzdSIaZZ-${idtHzdSIaZZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2_RVR9oQ:M2_RVR9oQtHzdSIaZZ},children:/*#__PURE__*/_jsx(Link,{href:of3ofpChftHzdSIaZZ,motionChild:true,nodeId:\"pf6iMU5vW\",openInNewTab:false,scopeId:\"eVkqgYxPg\",smoothScroll:true,children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-azdtl7 framer-1ld4777\",\"data-framer-name\":\"CMS CARD\",style:{transformPerspective:1200},whileTap:animation12,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8iqop9\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9895+60+748+0+450+0+0+0+0+0+0+0),sizes:`max(min(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 40px, 1100px), 1px)`,...toResponsiveImage(lSX4KVUBltHzdSIaZZ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"314px\",...toResponsiveImage(lSX4KVUBltHzdSIaZZ)},className:\"framer-1edl881\",\"data-framer-cursor\":\"1iubjob\",\"data-framer-name\":\"Collection Card\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dzudv9\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"Budget Planner\"})}),className:\"framer-14wiaf0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:kJmlKOMF8tHzdSIaZZ,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idtHzdSIaZZ);})})})})})})]})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-5z4yv6\",\"data-framer-name\":\"Call to action\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qrprfj\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cm0vnt\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rzgtx0\",\"data-styles-preset\":\"UXFOc2qSc\",style:{\"--framer-text-alignment\":\"left\"},children:\"We know you have one.\"})}),className:\"framer-1dheuq4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",children:\"Your Questions, Solved\"})}),className:\"framer-191mc35\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:[\"We believe asking questions is key to finding the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"perfect solution\"})}),\". So we answered some common questions you might have.\"]})}),className:\"framer-ipn08t\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uo8tsq9Kh:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`},XDhBkekmT:{width:`min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+11610.5+36+0+57+324.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:461,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 47px) / 1.8, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-knohtk-container\",nodeId:\"IbsAIwykj\",rendersWithMotion:true,scopeId:\"eVkqgYxPg\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"IbsAIwykj\",layoutId:\"IbsAIwykj\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-1hhmmkq hidden-z0bt1\",\"data-framer-name\":\"Extra section\",id:elementId9,ref:ref12}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XDhBkekmT:{height:485,width:\"390px\",y:(componentViewport?.y||0)+0+12666}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vbymyo-container hidden-1cfkvpo hidden-1mtaeqt hidden-pk0ygn\",nodeId:\"nc3Q47esK\",scopeId:\"eVkqgYxPg\",children:/*#__PURE__*/_jsx(FOOTER,{height:\"100%\",id:\"nc3Q47esK\",layoutId:\"nc3Q47esK\",style:{width:\"100%\"},variant:\"iI1MkFtB3\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-faXGt.framer-1ld4777, .framer-faXGt .framer-1ld4777 { display: block; }\",\".framer-faXGt.framer-1cfkvpo { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-faXGt .framer-2vmerv-container { flex: none; height: 120px; left: 0px; min-width: 1080px; position: fixed; right: 0px; top: 0px; z-index: 7; }\",\".framer-faXGt .framer-15wgxps { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-tsaus9 { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 40px 97px 40px; position: relative; width: 1px; z-index: 2; }\",\".framer-faXGt .framer-6nxq3a-container { flex: none; height: 39px; position: relative; width: 523px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-160f32p, .framer-faXGt .framer-9vrae0, .framer-faXGt .framer-1cu6ukl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-faXGt .framer-1qxw9e7, .framer-faXGt .framer-5pgoie, .framer-faXGt .framer-18h5mlk, .framer-faXGt .framer-13k7brp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-faXGt .framer-x59p2g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-faXGt .framer-12pmwy1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-18wtzqz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 28px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-1xde658, .framer-faXGt .framer-15sf71y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-kpq5sg-container, .framer-faXGt .framer-1a50zgn-container, .framer-faXGt .framer-ltehn2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-faXGt .framer-d7j39v { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 671px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-112vdsy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-iix0p-container, .framer-faXGt .framer-1oz4vpl-container, .framer-faXGt .framer-7hhtk0-container, .framer-faXGt .framer-tdm5mn-container, .framer-faXGt .framer-1o3uapa-container { flex: none; height: 45px; position: relative; width: auto; }\",\".framer-faXGt .framer-1imkx08 { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-faXGt .framer-cksxim-container { bottom: 0px; flex: none; height: 60vh; left: 0px; position: fixed; right: 0px; z-index: 0; }\",\".framer-faXGt .framer-2pm3cv { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: hidden; padding: 53px 40px 62px 40px; position: relative; width: 100%; }\",\".framer-faXGt .framer-161w82t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-m8mkdf, .framer-faXGt .framer-c0l6kg, .framer-faXGt .framer-frwrbo, .framer-faXGt .framer-c7x7j2, .framer-faXGt .framer-25157p, .framer-faXGt .framer-t6q0ao, .framer-faXGt .framer-1dheuq4, .framer-faXGt .framer-ipn08t { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-s5dt6p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 91px; justify-content: center; max-width: 881px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-al8el7-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-faXGt .framer-13hlplf-container, .framer-faXGt .framer-yimq38-container, .framer-faXGt .framer-kzfr00-container, .framer-faXGt .framer-1o9wo5e-container, .framer-faXGt .framer-1f4264o-container, .framer-faXGt .framer-1os0d9o-container { height: auto; position: relative; width: auto; }\",\".framer-faXGt .framer-1ep67gu { flex: none; height: auto; max-width: 751px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-1wpri61 { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 69px; height: min-content; justify-content: center; overflow: visible; padding: 101px 40px 101px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-faXGt .framer-28vr3f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-3te3og-container { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 3.7742820945945885%) add; flex: none; height: 100vh; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 3.7742820945945885%) add; position: sticky; top: 0px; width: 453px; z-index: 1; }\",\".framer-faXGt .framer-1x7zlu5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 537px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 10px; position: relative; width: 1px; }\",\".framer-faXGt .framer-ce7zig { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-1edu5zo { flex: none; height: auto; max-width: 852px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-7z11w1, .framer-faXGt .framer-1j2w5jt { flex: none; height: auto; max-width: 684.2px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-1ad3t5q-container, .framer-faXGt .framer-o1kx3s-container, .framer-faXGt .framer-1feul36-container, .framer-faXGt .framer-18u67yf-container, .framer-faXGt .framer-k5isvy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-faXGt .framer-1a2i395 { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: hidden; padding: 149px 40px 50px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-faXGt .framer-fbj4ju, .framer-faXGt .framer-11b309t, .framer-faXGt .framer-11fxgsb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-1gx57cu, .framer-faXGt .framer-1kq72pt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 74px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-faXGt .framer-k7vk9l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-1vj6m2r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-1pdp0y0 { flex: none; height: auto; max-width: 716.8px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-11c5xp5-container { flex: none; height: 346px; position: relative; width: 50%; }\",\".framer-faXGt .framer-1bgr4k5 { --border-bottom-width: 3px; --border-color: #222222; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 349px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 521px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-15sk9uo { aspect-ratio: 0.821034282393957 / 1; height: var(--framer-aspect-ratio-supported, 344px); overflow: visible; position: relative; width: 282px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-1u408pf { --border-bottom-width: 3px; --border-color: #222222; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1.0744803695150116 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 344px); overflow: visible; position: relative; width: 369px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-1c2lvq5 { height: 344px; overflow: visible; position: relative; width: 472px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-kjrohb { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 122px 40px 122px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-faXGt .framer-8zo7dw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-e53kyt { flex: none; height: auto; max-width: 888px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-13kbj39 { flex: none; height: auto; max-width: 668.8px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-h5a2rv { display: grid; flex: none; gap: 29px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-18t5cvd-container, .framer-faXGt .framer-1i5yzkg-container, .framer-faXGt .framer-vy9er7-container, .framer-faXGt .framer-gpm3hh-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-faXGt .framer-h3kwek { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 112px 40px 112px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-faXGt .framer-1dnvvur { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 439px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 47%; will-change: var(--framer-will-change-override, transform); }\",\".framer-faXGt .framer-1w85nte { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-faXGt .framer-1o00hyj { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-faXGt .framer-2t2lw0 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: 172px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-42jvk3 { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 190px; height: min-content; justify-content: center; overflow: visible; padding: 152px 40px 152px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-faXGt .framer-1e3k45n { --border-bottom-width: 10px; --border-color: var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, #222222); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 60px 30px 9px 30px; position: relative; width: 762px; }\",\".framer-faXGt .framer-1pf13dp-container { flex: none; height: 419px; max-width: 100%; pointer-events: none; position: relative; width: 100%; z-index: 1; }\",\".framer-faXGt .framer-1mnxsfp-container, .framer-faXGt .framer-wx8suj-container, .framer-faXGt .framer-10idpjk-container { height: auto; position: relative; width: 683px; }\",\".framer-faXGt .framer-vlcbnb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-dlpaz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-pfy4eq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-15n9q8x { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-1v1saa9, .framer-faXGt .framer-12ks4e4, .framer-faXGt .framer-4w7myl { aspect-ratio: 1 / 1; flex: none; height: 36px; position: relative; width: var(--framer-aspect-ratio-supported, 36px); }\",\".framer-faXGt .framer-rdlnii { flex: none; height: auto; max-width: 823px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-1e801tj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-1wv45a1 { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 2; }\",\".framer-faXGt .framer-1ioljri { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1100px; padding: 0px; position: relative; width: 100%; }\",\".framer-faXGt .framer-azdtl7 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-faXGt .framer-8iqop9 { --border-bottom-width: 3px; --border-color: #222222; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; aspect-ratio: 1.5653495440729484 / 1; background-color: var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, #222222); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 201px); justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 314px; will-change: var(--framer-will-change-override, transform); }\",\".framer-faXGt .framer-1edl881 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-faXGt .framer-1dzudv9 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; padding: 20px 0px 20px 0px; position: relative; width: 313px; }\",\".framer-faXGt .framer-14wiaf0 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-5z4yv6 { align-content: flex-start; align-items: flex-start; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: visible; padding: 94px 40px 150px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-faXGt .framer-1qrprfj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 47px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 57px 0px 57px 0px; position: relative; width: 1px; }\",\".framer-faXGt .framer-cm0vnt { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: sticky; top: 20px; width: 1px; z-index: 1; }\",\".framer-faXGt .framer-191mc35 { flex: none; height: auto; max-width: 705px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-faXGt .framer-knohtk-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-faXGt .framer-1hhmmkq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 57px; height: 57.972805933250925vh; justify-content: center; overflow: hidden; padding: 70px 60px 70px 60px; pointer-events: none; position: relative; width: 100%; z-index: 2; }\",\".framer-faXGt .framer-1vbymyo-container { flex: none; height: auto; position: relative; width: 390px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faXGt.framer-1cfkvpo, .framer-faXGt .framer-15wgxps, .framer-faXGt .framer-tsaus9, .framer-faXGt .framer-160f32p, .framer-faXGt .framer-9vrae0, .framer-faXGt .framer-x59p2g, .framer-faXGt .framer-1cu6ukl, .framer-faXGt .framer-12pmwy1, .framer-faXGt .framer-18wtzqz, .framer-faXGt .framer-112vdsy, .framer-faXGt .framer-1imkx08, .framer-faXGt .framer-2pm3cv, .framer-faXGt .framer-161w82t, .framer-faXGt .framer-s5dt6p, .framer-faXGt .framer-1wpri61, .framer-faXGt .framer-28vr3f, .framer-faXGt .framer-1x7zlu5, .framer-faXGt .framer-ce7zig, .framer-faXGt .framer-1a2i395, .framer-faXGt .framer-fbj4ju, .framer-faXGt .framer-1gx57cu, .framer-faXGt .framer-k7vk9l, .framer-faXGt .framer-1vj6m2r, .framer-faXGt .framer-1bgr4k5, .framer-faXGt .framer-kjrohb, .framer-faXGt .framer-11b309t, .framer-faXGt .framer-1kq72pt, .framer-faXGt .framer-8zo7dw, .framer-faXGt .framer-h3kwek, .framer-faXGt .framer-11fxgsb, .framer-faXGt .framer-1dnvvur, .framer-faXGt .framer-1w85nte, .framer-faXGt .framer-42jvk3, .framer-faXGt .framer-1e3k45n, .framer-faXGt .framer-vlcbnb, .framer-faXGt .framer-dlpaz0, .framer-faXGt .framer-pfy4eq, .framer-faXGt .framer-15n9q8x, .framer-faXGt .framer-1e801tj, .framer-faXGt .framer-1wv45a1, .framer-faXGt .framer-1ioljri, .framer-faXGt .framer-azdtl7, .framer-faXGt .framer-8iqop9, .framer-faXGt .framer-1dzudv9, .framer-faXGt .framer-5z4yv6, .framer-faXGt .framer-1qrprfj, .framer-faXGt .framer-cm0vnt, .framer-faXGt .framer-1hhmmkq { gap: 0px; } .framer-faXGt.framer-1cfkvpo > *, .framer-faXGt .framer-azdtl7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-faXGt.framer-1cfkvpo > :first-child, .framer-faXGt .framer-tsaus9 > :first-child, .framer-faXGt .framer-12pmwy1 > :first-child, .framer-faXGt .framer-1imkx08 > :first-child, .framer-faXGt .framer-2pm3cv > :first-child, .framer-faXGt .framer-161w82t > :first-child, .framer-faXGt .framer-1wpri61 > :first-child, .framer-faXGt .framer-1x7zlu5 > :first-child, .framer-faXGt .framer-ce7zig > :first-child, .framer-faXGt .framer-1a2i395 > :first-child, .framer-faXGt .framer-1gx57cu > :first-child, .framer-faXGt .framer-k7vk9l > :first-child, .framer-faXGt .framer-kjrohb > :first-child, .framer-faXGt .framer-1kq72pt > :first-child, .framer-faXGt .framer-8zo7dw > :first-child, .framer-faXGt .framer-h3kwek > :first-child, .framer-faXGt .framer-1dnvvur > :first-child, .framer-faXGt .framer-1w85nte > :first-child, .framer-faXGt .framer-42jvk3 > :first-child, .framer-faXGt .framer-1e3k45n > :first-child, .framer-faXGt .framer-vlcbnb > :first-child, .framer-faXGt .framer-dlpaz0 > :first-child, .framer-faXGt .framer-pfy4eq > :first-child, .framer-faXGt .framer-1wv45a1 > :first-child, .framer-faXGt .framer-azdtl7 > :first-child, .framer-faXGt .framer-cm0vnt > :first-child, .framer-faXGt .framer-1hhmmkq > :first-child { margin-top: 0px; } .framer-faXGt.framer-1cfkvpo > :last-child, .framer-faXGt .framer-tsaus9 > :last-child, .framer-faXGt .framer-12pmwy1 > :last-child, .framer-faXGt .framer-1imkx08 > :last-child, .framer-faXGt .framer-2pm3cv > :last-child, .framer-faXGt .framer-161w82t > :last-child, .framer-faXGt .framer-1wpri61 > :last-child, .framer-faXGt .framer-1x7zlu5 > :last-child, .framer-faXGt .framer-ce7zig > :last-child, .framer-faXGt .framer-1a2i395 > :last-child, .framer-faXGt .framer-1gx57cu > :last-child, .framer-faXGt .framer-k7vk9l > :last-child, .framer-faXGt .framer-kjrohb > :last-child, .framer-faXGt .framer-1kq72pt > :last-child, .framer-faXGt .framer-8zo7dw > :last-child, .framer-faXGt .framer-h3kwek > :last-child, .framer-faXGt .framer-1dnvvur > :last-child, .framer-faXGt .framer-1w85nte > :last-child, .framer-faXGt .framer-42jvk3 > :last-child, .framer-faXGt .framer-1e3k45n > :last-child, .framer-faXGt .framer-vlcbnb > :last-child, .framer-faXGt .framer-dlpaz0 > :last-child, .framer-faXGt .framer-pfy4eq > :last-child, .framer-faXGt .framer-1wv45a1 > :last-child, .framer-faXGt .framer-azdtl7 > :last-child, .framer-faXGt .framer-cm0vnt > :last-child, .framer-faXGt .framer-1hhmmkq > :last-child { margin-bottom: 0px; } .framer-faXGt .framer-15wgxps > *, .framer-faXGt .framer-160f32p > *, .framer-faXGt .framer-9vrae0 > *, .framer-faXGt .framer-x59p2g > *, .framer-faXGt .framer-1cu6ukl > *, .framer-faXGt .framer-s5dt6p > *, .framer-faXGt .framer-1bgr4k5 > *, .framer-faXGt .framer-15n9q8x > *, .framer-faXGt .framer-8iqop9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-faXGt .framer-15wgxps > :first-child, .framer-faXGt .framer-160f32p > :first-child, .framer-faXGt .framer-9vrae0 > :first-child, .framer-faXGt .framer-x59p2g > :first-child, .framer-faXGt .framer-1cu6ukl > :first-child, .framer-faXGt .framer-18wtzqz > :first-child, .framer-faXGt .framer-112vdsy > :first-child, .framer-faXGt .framer-s5dt6p > :first-child, .framer-faXGt .framer-28vr3f > :first-child, .framer-faXGt .framer-fbj4ju > :first-child, .framer-faXGt .framer-1vj6m2r > :first-child, .framer-faXGt .framer-1bgr4k5 > :first-child, .framer-faXGt .framer-11b309t > :first-child, .framer-faXGt .framer-11fxgsb > :first-child, .framer-faXGt .framer-15n9q8x > :first-child, .framer-faXGt .framer-1e801tj > :first-child, .framer-faXGt .framer-1ioljri > :first-child, .framer-faXGt .framer-8iqop9 > :first-child, .framer-faXGt .framer-1dzudv9 > :first-child, .framer-faXGt .framer-5z4yv6 > :first-child, .framer-faXGt .framer-1qrprfj > :first-child { margin-left: 0px; } .framer-faXGt .framer-15wgxps > :last-child, .framer-faXGt .framer-160f32p > :last-child, .framer-faXGt .framer-9vrae0 > :last-child, .framer-faXGt .framer-x59p2g > :last-child, .framer-faXGt .framer-1cu6ukl > :last-child, .framer-faXGt .framer-18wtzqz > :last-child, .framer-faXGt .framer-112vdsy > :last-child, .framer-faXGt .framer-s5dt6p > :last-child, .framer-faXGt .framer-28vr3f > :last-child, .framer-faXGt .framer-fbj4ju > :last-child, .framer-faXGt .framer-1vj6m2r > :last-child, .framer-faXGt .framer-1bgr4k5 > :last-child, .framer-faXGt .framer-11b309t > :last-child, .framer-faXGt .framer-11fxgsb > :last-child, .framer-faXGt .framer-15n9q8x > :last-child, .framer-faXGt .framer-1e801tj > :last-child, .framer-faXGt .framer-1ioljri > :last-child, .framer-faXGt .framer-8iqop9 > :last-child, .framer-faXGt .framer-1dzudv9 > :last-child, .framer-faXGt .framer-5z4yv6 > :last-child, .framer-faXGt .framer-1qrprfj > :last-child { margin-right: 0px; } .framer-faXGt .framer-tsaus9 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-faXGt .framer-12pmwy1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-faXGt .framer-18wtzqz > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-faXGt .framer-112vdsy > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-faXGt .framer-1imkx08 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-faXGt .framer-2pm3cv > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-faXGt .framer-161w82t > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-faXGt .framer-1wpri61 > * { margin: 0px; margin-bottom: calc(69px / 2); margin-top: calc(69px / 2); } .framer-faXGt .framer-28vr3f > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-faXGt .framer-1x7zlu5 > * { margin: 0px; margin-bottom: calc(537px / 2); margin-top: calc(537px / 2); } .framer-faXGt .framer-ce7zig > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-faXGt .framer-1a2i395 > *, .framer-faXGt .framer-dlpaz0 > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-faXGt .framer-fbj4ju > *, .framer-faXGt .framer-11b309t > *, .framer-faXGt .framer-11fxgsb > *, .framer-faXGt .framer-1ioljri > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-faXGt .framer-1gx57cu > *, .framer-faXGt .framer-1kq72pt > * { margin: 0px; margin-bottom: calc(74px / 2); margin-top: calc(74px / 2); } .framer-faXGt .framer-k7vk9l > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-faXGt .framer-1vj6m2r > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-faXGt .framer-kjrohb > *, .framer-faXGt .framer-h3kwek > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-faXGt .framer-8zo7dw > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-faXGt .framer-1dnvvur > *, .framer-faXGt .framer-cm0vnt > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-faXGt .framer-1w85nte > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-faXGt .framer-42jvk3 > * { margin: 0px; margin-bottom: calc(190px / 2); margin-top: calc(190px / 2); } .framer-faXGt .framer-1e3k45n > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-faXGt .framer-vlcbnb > * { margin: 0px; margin-bottom: calc(85px / 2); margin-top: calc(85px / 2); } .framer-faXGt .framer-pfy4eq > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-faXGt .framer-1e801tj > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-faXGt .framer-1wv45a1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-faXGt .framer-1dzudv9 > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-faXGt .framer-5z4yv6 > * { margin: 0px; margin-left: calc(49px / 2); margin-right: calc(49px / 2); } .framer-faXGt .framer-1qrprfj > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-faXGt .framer-1hhmmkq > * { margin: 0px; margin-bottom: calc(57px / 2); margin-top: calc(57px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-faXGt[data-border=\"true\"]::after, .framer-faXGt [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-faXGt.framer-1cfkvpo { width: 810px; } .framer-faXGt .framer-2vmerv-container { min-width: unset; right: 1px; } .framer-faXGt .framer-kpq5sg-container, .framer-faXGt .framer-ltehn2-container { width: 22%; } .framer-faXGt .framer-1wpri61, .framer-faXGt .framer-1a2i395, .framer-faXGt .framer-kjrohb, .framer-faXGt .framer-h3kwek { padding: 70px 40px 70px 40px; } .framer-faXGt .framer-3te3og-container { width: 306px; } .framer-faXGt .framer-1x7zlu5 { gap: 57px; } .framer-faXGt .framer-11fxgsb { flex-direction: column; } .framer-faXGt .framer-1dnvvur { height: 450px; width: 100%; } .framer-faXGt .framer-1w85nte, .framer-faXGt .framer-knohtk-container { flex: none; width: 100%; } .framer-faXGt .framer-42jvk3 { align-content: flex-start; align-items: flex-start; } .framer-faXGt .framer-1e3k45n { padding: 60px 30px 36px 30px; width: 100%; } .framer-faXGt .framer-1pf13dp-container { height: 467px; } .framer-faXGt .framer-1wv45a1 { flex-wrap: wrap; max-width: unset; padding: 0px; } .framer-faXGt .framer-1ioljri { align-content: center; align-items: center; flex-wrap: wrap; justify-content: center; max-width: unset; } .framer-faXGt .framer-5z4yv6 { flex-direction: column; gap: 33px; } .framer-faXGt .framer-1qrprfj { flex: none; flex-direction: column; gap: 49px; width: 100%; } .framer-faXGt .framer-cm0vnt { flex: none; position: relative; top: unset; width: 100%; } .framer-faXGt .framer-1hhmmkq { height: min-content; min-height: 714px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faXGt .framer-1x7zlu5, .framer-faXGt .framer-11fxgsb, .framer-faXGt .framer-5z4yv6, .framer-faXGt .framer-1qrprfj { gap: 0px; } .framer-faXGt .framer-1x7zlu5 > * { margin: 0px; margin-bottom: calc(57px / 2); margin-top: calc(57px / 2); } .framer-faXGt .framer-1x7zlu5 > :first-child, .framer-faXGt .framer-11fxgsb > :first-child, .framer-faXGt .framer-5z4yv6 > :first-child, .framer-faXGt .framer-1qrprfj > :first-child { margin-top: 0px; } .framer-faXGt .framer-1x7zlu5 > :last-child, .framer-faXGt .framer-11fxgsb > :last-child, .framer-faXGt .framer-5z4yv6 > :last-child, .framer-faXGt .framer-1qrprfj > :last-child { margin-bottom: 0px; } .framer-faXGt .framer-11fxgsb > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-faXGt .framer-5z4yv6 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-faXGt .framer-1qrprfj > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } }}\",\"@media (max-width: 809px) { .framer-faXGt.framer-1cfkvpo { overflow: hidden; width: 390px; } .framer-faXGt .framer-2vmerv-container { height: auto; min-width: unset; order: 0; z-index: 10; } .framer-faXGt .framer-15wgxps { order: 2; } .framer-faXGt .framer-tsaus9 { gap: 61px; min-width: 390px; padding: 100px 20px 40px 20px; } .framer-faXGt .framer-6nxq3a-container, .framer-faXGt .framer-d7j39v, .framer-faXGt .framer-azdtl7, .framer-faXGt .framer-1dzudv9 { width: 100%; } .framer-faXGt .framer-12pmwy1 { gap: 28px; } .framer-faXGt .framer-18wtzqz { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: flex-start; } .framer-faXGt .framer-112vdsy { align-content: flex-start; align-items: flex-start; flex-direction: column; height: min-content; } .framer-faXGt .framer-iix0p-container { height: 50px; } .framer-faXGt .framer-1imkx08 { gap: 61px; order: 3; padding: 80px 30px 56px 30px; } .framer-faXGt .framer-1a50zgn-container { order: 0; width: 100%; } .framer-faXGt .framer-2pm3cv { gap: 55px; order: 4; padding: 37px 20px 37px 20px; } .framer-faXGt .framer-161w82t { gap: 19px; order: 0; } .framer-faXGt .framer-s5dt6p { height: 76px; } .framer-faXGt .framer-1wpri61 { gap: 20px; min-width: 390px; order: 5; padding: 45px 20px 45px 20px; } .framer-faXGt .framer-28vr3f { flex-direction: column; gap: 40px; } .framer-faXGt .framer-3te3og-container { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0.7126266891891893%, rgba(0,0,0,1) 3.7742820945945885%) add; height: 458px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0.7126266891891893%, rgba(0,0,0,1) 3.7742820945945885%) add; order: 0; position: relative; top: unset; width: 100%; } .framer-faXGt .framer-1x7zlu5 { flex: none; gap: 66px; order: 1; overflow: visible; width: 100%; z-index: 1; } .framer-faXGt .framer-1a2i395 { align-content: flex-start; align-items: flex-start; gap: 52px; min-width: 390px; order: 6; padding: 40px 20px 28px 20px; } .framer-faXGt .framer-fbj4ju, .framer-faXGt .framer-11b309t, .framer-faXGt .framer-11fxgsb { flex-direction: column; gap: 30px; } .framer-faXGt .framer-1gx57cu { flex: none; order: 0; width: 100%; } .framer-faXGt .framer-k7vk9l { align-content: flex-start; align-items: flex-start; gap: 27px; } .framer-faXGt .framer-1vj6m2r { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 3px; justify-content: flex-start; } .framer-faXGt .framer-kjrohb { gap: 20px; min-width: 390px; order: 7; padding: 70px 20px 70px 20px; } .framer-faXGt .framer-1kq72pt { flex: none; gap: 78px; order: 0; width: 100%; } .framer-faXGt .framer-8zo7dw { gap: 25px; } .framer-faXGt .framer-h5a2rv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 104px; } .framer-faXGt .framer-18t5cvd-container, .framer-faXGt .framer-1i5yzkg-container, .framer-faXGt .framer-vy9er7-container, .framer-faXGt .framer-gpm3hh-container { align-self: unset; height: auto; } .framer-faXGt .framer-h3kwek { gap: 20px; min-width: 390px; order: 8; padding: 14px 20px 14px 20px; } .framer-faXGt .framer-1dnvvur { height: 292px; order: 0; width: 350px; } .framer-faXGt .framer-1w85nte { flex: none; order: 1; width: 100%; } .framer-faXGt .framer-42jvk3 { align-content: flex-start; align-items: flex-start; gap: 54px; min-width: 390px; order: 10; padding: 60px 20px 60px 20px; } .framer-faXGt .framer-1e3k45n { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); gap: 36px; padding: 0px 0px 9px 0px; width: 100%; } .framer-faXGt .framer-1pf13dp-container { height: 685px; max-width: unset; order: 0; } .framer-faXGt .framer-dlpaz0 { align-content: flex-start; align-items: flex-start; gap: 40px; } .framer-faXGt .framer-1e801tj { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-faXGt .framer-1wv45a1 { align-content: flex-start; align-items: flex-start; gap: 30px; justify-content: flex-start; padding: 0px 20px 0px 20px; } .framer-faXGt .framer-1ioljri { flex-direction: column; gap: 15px; } .framer-faXGt .framer-8iqop9 { height: var(--framer-aspect-ratio-supported, 198px); width: 100%; } .framer-faXGt .framer-5z4yv6 { flex-direction: column; gap: 43px; min-width: 390px; order: 11; padding: 36px 20px 120px 20px; } .framer-faXGt .framer-1qrprfj { flex: none; flex-direction: column; gap: 46px; width: 100%; } .framer-faXGt .framer-cm0vnt { flex: none; position: relative; top: unset; width: 100%; } .framer-faXGt .framer-knohtk-container { flex: none; width: 100%; } .framer-faXGt .framer-1vbymyo-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faXGt .framer-tsaus9, .framer-faXGt .framer-12pmwy1, .framer-faXGt .framer-18wtzqz, .framer-faXGt .framer-112vdsy, .framer-faXGt .framer-1imkx08, .framer-faXGt .framer-2pm3cv, .framer-faXGt .framer-161w82t, .framer-faXGt .framer-1wpri61, .framer-faXGt .framer-28vr3f, .framer-faXGt .framer-1x7zlu5, .framer-faXGt .framer-1a2i395, .framer-faXGt .framer-fbj4ju, .framer-faXGt .framer-k7vk9l, .framer-faXGt .framer-1vj6m2r, .framer-faXGt .framer-kjrohb, .framer-faXGt .framer-11b309t, .framer-faXGt .framer-1kq72pt, .framer-faXGt .framer-8zo7dw, .framer-faXGt .framer-h5a2rv, .framer-faXGt .framer-h3kwek, .framer-faXGt .framer-11fxgsb, .framer-faXGt .framer-42jvk3, .framer-faXGt .framer-1e3k45n, .framer-faXGt .framer-dlpaz0, .framer-faXGt .framer-1e801tj, .framer-faXGt .framer-1wv45a1, .framer-faXGt .framer-1ioljri, .framer-faXGt .framer-5z4yv6, .framer-faXGt .framer-1qrprfj { gap: 0px; } .framer-faXGt .framer-tsaus9 > *, .framer-faXGt .framer-1imkx08 > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-faXGt .framer-tsaus9 > :first-child, .framer-faXGt .framer-12pmwy1 > :first-child, .framer-faXGt .framer-18wtzqz > :first-child, .framer-faXGt .framer-112vdsy > :first-child, .framer-faXGt .framer-1imkx08 > :first-child, .framer-faXGt .framer-2pm3cv > :first-child, .framer-faXGt .framer-161w82t > :first-child, .framer-faXGt .framer-1wpri61 > :first-child, .framer-faXGt .framer-28vr3f > :first-child, .framer-faXGt .framer-1x7zlu5 > :first-child, .framer-faXGt .framer-1a2i395 > :first-child, .framer-faXGt .framer-fbj4ju > :first-child, .framer-faXGt .framer-k7vk9l > :first-child, .framer-faXGt .framer-1vj6m2r > :first-child, .framer-faXGt .framer-kjrohb > :first-child, .framer-faXGt .framer-11b309t > :first-child, .framer-faXGt .framer-1kq72pt > :first-child, .framer-faXGt .framer-8zo7dw > :first-child, .framer-faXGt .framer-h5a2rv > :first-child, .framer-faXGt .framer-h3kwek > :first-child, .framer-faXGt .framer-11fxgsb > :first-child, .framer-faXGt .framer-42jvk3 > :first-child, .framer-faXGt .framer-1e3k45n > :first-child, .framer-faXGt .framer-dlpaz0 > :first-child, .framer-faXGt .framer-1e801tj > :first-child, .framer-faXGt .framer-1wv45a1 > :first-child, .framer-faXGt .framer-1ioljri > :first-child, .framer-faXGt .framer-5z4yv6 > :first-child, .framer-faXGt .framer-1qrprfj > :first-child { margin-top: 0px; } .framer-faXGt .framer-tsaus9 > :last-child, .framer-faXGt .framer-12pmwy1 > :last-child, .framer-faXGt .framer-18wtzqz > :last-child, .framer-faXGt .framer-112vdsy > :last-child, .framer-faXGt .framer-1imkx08 > :last-child, .framer-faXGt .framer-2pm3cv > :last-child, .framer-faXGt .framer-161w82t > :last-child, .framer-faXGt .framer-1wpri61 > :last-child, .framer-faXGt .framer-28vr3f > :last-child, .framer-faXGt .framer-1x7zlu5 > :last-child, .framer-faXGt .framer-1a2i395 > :last-child, .framer-faXGt .framer-fbj4ju > :last-child, .framer-faXGt .framer-k7vk9l > :last-child, .framer-faXGt .framer-1vj6m2r > :last-child, .framer-faXGt .framer-kjrohb > :last-child, .framer-faXGt .framer-11b309t > :last-child, .framer-faXGt .framer-1kq72pt > :last-child, .framer-faXGt .framer-8zo7dw > :last-child, .framer-faXGt .framer-h5a2rv > :last-child, .framer-faXGt .framer-h3kwek > :last-child, .framer-faXGt .framer-11fxgsb > :last-child, .framer-faXGt .framer-42jvk3 > :last-child, .framer-faXGt .framer-1e3k45n > :last-child, .framer-faXGt .framer-dlpaz0 > :last-child, .framer-faXGt .framer-1e801tj > :last-child, .framer-faXGt .framer-1wv45a1 > :last-child, .framer-faXGt .framer-1ioljri > :last-child, .framer-faXGt .framer-5z4yv6 > :last-child, .framer-faXGt .framer-1qrprfj > :last-child { margin-bottom: 0px; } .framer-faXGt .framer-12pmwy1 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-faXGt .framer-18wtzqz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-faXGt .framer-112vdsy > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-faXGt .framer-2pm3cv > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-faXGt .framer-161w82t > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-faXGt .framer-1wpri61 > *, .framer-faXGt .framer-kjrohb > *, .framer-faXGt .framer-h3kwek > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-faXGt .framer-28vr3f > *, .framer-faXGt .framer-dlpaz0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-faXGt .framer-1x7zlu5 > * { margin: 0px; margin-bottom: calc(66px / 2); margin-top: calc(66px / 2); } .framer-faXGt .framer-1a2i395 > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-faXGt .framer-fbj4ju > *, .framer-faXGt .framer-11b309t > *, .framer-faXGt .framer-11fxgsb > *, .framer-faXGt .framer-1wv45a1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-faXGt .framer-k7vk9l > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-faXGt .framer-1vj6m2r > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-faXGt .framer-1kq72pt > * { margin: 0px; margin-bottom: calc(78px / 2); margin-top: calc(78px / 2); } .framer-faXGt .framer-8zo7dw > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-faXGt .framer-h5a2rv > * { margin: 0px; margin-bottom: calc(104px / 2); margin-top: calc(104px / 2); } .framer-faXGt .framer-42jvk3 > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-faXGt .framer-1e3k45n > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-faXGt .framer-1e801tj > *, .framer-faXGt .framer-1ioljri > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-faXGt .framer-5z4yv6 > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-faXGt .framer-1qrprfj > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-faXGt.framer-1cfkvpo { width: 1200px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12601\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uo8tsq9Kh\":{\"layout\":[\"fixed\",\"auto\"]},\"XDhBkekmT\":{\"layout\":[\"fixed\",\"auto\"]},\"Lc8DurKi5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"XSvUlkOhw\":{\"pattern\":\":XSvUlkOhw\",\"name\":\"free-section\"},\"FTJ7bLINL\":{\"pattern\":\":FTJ7bLINL\",\"name\":\"card-section\"},\"ZlxTS9Ji4\":{\"pattern\":\":ZlxTS9Ji4\",\"name\":\"testimonial1\"},\"Fl7zCRgrY\":{\"pattern\":\":Fl7zCRgrY\",\"name\":\"c-section\"},\"qfJHkdD0P\":{\"pattern\":\":qfJHkdD0P\",\"name\":\"o-section\"},\"PlZmq3zFo\":{\"pattern\":\":PlZmq3zFo\",\"name\":\"d-section\"},\"rFWopWBDE\":{\"pattern\":\":rFWopWBDE\",\"name\":\"e-section\"},\"sOEo3yLHY\":{\"pattern\":\":sOEo3yLHY\",\"name\":\"e-section\"},\"Ny7h_odQd\":{\"pattern\":\":Ny7h_odQd\",\"name\":\"services\"},\"o4WgCMGWT\":{\"pattern\":\":o4WgCMGWT\",\"name\":\"extra\"}}\n * @framerResponsiveScreen\n */const FramereVkqgYxPg=withCSS(Component,css,\"framer-faXGt\");export default FramereVkqgYxPg;FramereVkqgYxPg.displayName=\"Upcominghomepage\";FramereVkqgYxPg.defaultProps={height:12601,width:1440};addFonts(FramereVkqgYxPg,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavigationBar2Fonts,...TickerFonts,...TypewriterFonts,...BlackButtoneFonts,...ButtonsFonts,...CardFonts,...FOOTERFonts,...Pills2Fonts,...Ticker1Fonts,...RocketFonts,...TheProcessCardFonts,...Ticker2Fonts,...Card2Fonts,...CardTestimonialFonts,...SlideshowFonts,...AccordionFonts,...DownloadCursorFonts,...ViewCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereVkqgYxPg\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uo8tsq9Kh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XDhBkekmT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Lc8DurKi5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"12601\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"XSvUlkOhw\\\":{\\\"pattern\\\":\\\":XSvUlkOhw\\\",\\\"name\\\":\\\"free-section\\\"},\\\"FTJ7bLINL\\\":{\\\"pattern\\\":\\\":FTJ7bLINL\\\",\\\"name\\\":\\\"card-section\\\"},\\\"ZlxTS9Ji4\\\":{\\\"pattern\\\":\\\":ZlxTS9Ji4\\\",\\\"name\\\":\\\"testimonial1\\\"},\\\"Fl7zCRgrY\\\":{\\\"pattern\\\":\\\":Fl7zCRgrY\\\",\\\"name\\\":\\\"c-section\\\"},\\\"qfJHkdD0P\\\":{\\\"pattern\\\":\\\":qfJHkdD0P\\\",\\\"name\\\":\\\"o-section\\\"},\\\"PlZmq3zFo\\\":{\\\"pattern\\\":\\\":PlZmq3zFo\\\",\\\"name\\\":\\\"d-section\\\"},\\\"rFWopWBDE\\\":{\\\"pattern\\\":\\\":rFWopWBDE\\\",\\\"name\\\":\\\"e-section\\\"},\\\"sOEo3yLHY\\\":{\\\"pattern\\\":\\\":sOEo3yLHY\\\",\\\"name\\\":\\\"e-section\\\"},\\\"Ny7h_odQd\\\":{\\\"pattern\\\":\\\":Ny7h_odQd\\\",\\\"name\\\":\\\"services\\\"},\\\"o4WgCMGWT\\\":{\\\"pattern\\\":\\\":o4WgCMGWT\\\",\\\"name\\\":\\\"extra\\\"}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "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", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MAX_DUPLICATED_ITEMS", "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", "filteredSlots", "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", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "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", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "_restProps_transformTemplate", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "_restProps_transformTemplate1", "transforms", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "MotionDivWithFX", "optimizeAppear", "cx", "serializationHash", "optimizeAppearTransformTemplate", "_", "t", "Image2", "RichText2", "css", "Framere2i_oXhGx", "withCSS", "e2i_oXhGx_default", "addFonts", "getFontsFromSharedStyle", "fonts", "s", "i", "l", "ye", "ue", "e", "r", "t", "o", "n", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "color", "height", "id", "sVGCode", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "BaAUS2MX1", "uGB4ohfO1", "MmTlL47jl", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "SVG_default", "RichText2", "css", "FramerfHdF_iiAS", "withCSS", "fHdF_iiAS_default", "addPropertyControls", "ControlType", "addFonts", "SVGFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "d3rKsrWsN", "S8x78ZPL2", "YI6PUBvQH", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapr8co48", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerJUVcPHe94", "withCSS", "JUVcPHe94_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonsFonts", "getFonts", "Cfpfg2W_1_default", "BlackAnimatedButtonFonts", "JUVcPHe94_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "buttonLink", "buttonText", "coverImage", "height", "id", "paragraph", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TcWecRBMT", "dp_Y04xRK", "AGKzzGxsW", "WgnqJ9dHD", "j0xUKCM2x", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "optimizeAppear", "cx", "Image2", "RichText2", "ComponentViewportProvider", "css", "FramerlWdoGmU__", "withCSS", "lWdoGmU_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "Framero0RXF70qH", "withCSS", "o0RXF70qH_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "css", "FramerduHpwvvnK", "withCSS", "duHpwvvnK_default", "addFonts", "CARDSLaptopFonts", "getFonts", "duHpwvvnK_default", "MotionDivWithFX", "withFX", "motion", "BlackAnimatedButtonFonts", "JUVcPHe94_default", "ImageWithFX", "Image2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transformTemplate1", "_", "t", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "cursor", "height", "id", "link", "scrollSection", "text2", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qhfaFPnGL", "AjD1PrTtc", "d5lrKoO1v", "wzPKHDhEn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerP5ZLESxqa", "withCSS", "P5ZLESxqa_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "image", "link", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dukr6pZMU", "MdyXMwevt", "OiNiR9Sdx", "CcXbxOXb7", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "Link", "RichText2", "css", "Frameru3C7o51Rv", "withCSS", "u3C7o51Rv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationBar2Fonts", "getFonts", "Jg9v0Jf2R_default", "ContainerWithFX", "withFX", "Container", "TickerFonts", "Ticker", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "TypewriterFonts", "TypeWriter", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "BlackButtoneFonts", "hGOjUVukZ_default", "ButtonsFonts", "Cfpfg2W_1_default", "ButtonsWithWobbleEffect1oz4vplWithMappedReactProps1tqtd6f", "withMappedReactProps", "withCodeBoundaryForOverrides", "withWobbleEffect", "Cfpfg2W_1_exports", "CardFonts", "P5ZLESxqa_default", "FOOTERFonts", "nOZjQz6d4_default", "Pills2Fonts", "fHdF_iiAS_default", "Ticker1Fonts", "RocketFonts", "o0RXF70qH_default", "RocketWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "TheProcessCardFonts", "u3C7o51Rv_default", "Ticker2Fonts", "Card2Fonts", "lWdoGmU_default", "ImageWithFX", "Image2", "CardTestimonialFonts", "CKeBATpFg_default", "SlideshowFonts", "Slideshow", "MotionAWithFX", "AccordionFonts", "MFQ3YCHPI_default", "DownloadCursorFonts", "e2i_oXhGx_default", "ViewCursorFonts", "sNRj8KQg5_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "animation6", "transition6", "animation7", "addImageAlt", "image", "alt", "animation8", "transition7", "animation9", "animation10", "animation11", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation12", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition8", "cursor", "cursor1", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "of3ofpChftHzdSIaZZ", "lSX4KVUBltHzdSIaZZ", "kJmlKOMF8tHzdSIaZZ", "M2_RVR9oQtHzdSIaZZ", "idtHzdSIaZZ", "kJmlKOMF8YgZnLNI5G", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "elementId2", "ref3", "ref4", "ref5", "ref6", "elementId3", "ref7", "elementId4", "elementId5", "elementId6", "elementId7", "ref8", "elementId8", "ref9", "ref10", "ref11", "elementId9", "ref12", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "getLoadingLazyAtYPosition", "Link", "l", "AnimatePresence", "Floating", "SVG", "resolvedLinks8", "resolvedLinks9", "ChildrenCanSuspend", "SFX0Dqs7b_default", "collection", "paginationInfo", "index", "PathVariablesContext", "css", "FramereVkqgYxPg", "withCSS", "eVkqgYxPg_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
