{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/aXuYdc8uLJVCFKcqAy6R/brdFYzZttpbrzwD0kMc9/e2Xo2u_bE.js", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.28", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js", "ssg:https://framerusercontent.com/modules/F97zEnbUIiNyDOIduJlB/V0FH9FNcMvIUXCn96UFE/HGG1SQru0.js", "ssg:https://framerusercontent.com/modules/2z5ReYPLJIPdwK3PC0rd/1TFEnKfbMhnAFE1oxVjv/v8mZY29Jp.js", "ssg:https://framerusercontent.com/modules/phY2ArShXgoHKOwScyic/Me6Rnll15Cuvo7MhYnsm/ZMlHG0ceK.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,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/9ezKGe0mqQ7ZpG1s2F6j/kwn4ckmkR93hWg1GqWdp/LlxBF921R.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"ICucQp5ma\",\"McZRZLcqw\",\"SZOCooLTf\",\"VaYy5IRXd\"];const serializationHash=\"framer-cn6R8\";const variantClassNames={ICucQp5ma:\"framer-v-im2obp\",McZRZLcqw:\"framer-v-1ush6c5\",SZOCooLTf:\"framer-v-1im5stp\",VaYy5IRXd:\"framer-v-1973ndf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition2={damping:50,delay:.6,mass:1,stiffness:451,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={A:\"ICucQp5ma\",B:\"McZRZLcqw\",C:\"SZOCooLTf\",D:\"VaYy5IRXd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ICucQp5ma\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ICucQp5ma\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1emvyib=activeVariantCallback(async(...args)=>{setVariant(\"ICucQp5ma\");});const onTap69pcvq=activeVariantCallback(async(...args)=>{setVariant(\"McZRZLcqw\");});const onTapq2nzoj=activeVariantCallback(async(...args)=>{setVariant(\"SZOCooLTf\");});const onTap1n1onzh=activeVariantCallback(async(...args)=>{setVariant(\"VaYy5IRXd\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"McZRZLcqw\",\"SZOCooLTf\",\"VaYy5IRXd\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"McZRZLcqw\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"SZOCooLTf\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"VaYy5IRXd\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-im2obp\",className,classNames),\"data-framer-name\":\"A\",layoutDependency:layoutDependency,layoutId:\"ICucQp5ma\",ref:ref??ref1,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({McZRZLcqw:{\"data-framer-name\":\"B\"},SZOCooLTf:{\"data-framer-name\":\"C\"},VaYy5IRXd:{\"data-framer-name\":\"D\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mxt2bo\",\"data-framer-name\":\"Text Content\",layoutDependency:layoutDependency,layoutId:\"EXpM3K15k\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-su81w4\",\"data-border\":true,\"data-framer-name\":\"Text Tab Slide\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YBqXI29Yl\",onTap:onTap1emvyib,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"},variants:{McZRZLcqw:{\"--border-top-width\":\"1px\"}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1u3r3hb\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"lfBk2T4B5\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jhtkt6\",layoutDependency:layoutDependency,layoutId:\"Vq3cpB_GG\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xqy9xc\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZexJSCqiz\",opacity:1,radius:400,style:{backgroundColor:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",borderBottomLeftRadius:400,borderBottomRightRadius:400,borderTopLeftRadius:400,borderTopRightRadius:400},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 4\"></svg>',svgContentId:10651642686,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Automated screenshot capture from recording.\"})}),className:\"framer-olhpxz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tN4TDZav9\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8mtgbt\",\"data-border\":true,\"data-framer-name\":\"Text Tab Slide\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jGwMgOQtB\",onTap:onTap69pcvq,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{McZRZLcqw:{\"--border-top-width\":\"2px\"}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4pvcsq\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"eF8R7gKz7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Auto-generated steps, summary, titles.\"})}),className:\"framer-jmwqoq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Cd6Wasb6_\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11zkq7t\",layoutDependency:layoutDependency,layoutId:\"d6XkKdXVR\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1aali28\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Vdrox8nW5\",opacity:1,radius:400,style:{backgroundColor:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",borderBottomLeftRadius:400,borderBottomRightRadius:400,borderTopLeftRadius:400,borderTopRightRadius:400},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 4\"></svg>',svgContentId:10651642686,withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d236wm\",\"data-border\":true,\"data-framer-name\":\"Text Tab Slide\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YGcGVGf04\",onTap:onTapq2nzoj,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{SZOCooLTf:{\"--border-top-width\":\"2px\"}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1wweoii\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"etzhzBdP0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Seamless word-like editor.\"})}),className:\"framer-pfyts2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wxP2KXRQe\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7bkdfm\",layoutDependency:layoutDependency,layoutId:\"ToeICSRPR\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-js56vp\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RWJ2kQtWv\",opacity:1,radius:400,style:{backgroundColor:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",borderBottomLeftRadius:400,borderBottomRightRadius:400,borderTopLeftRadius:400,borderTopRightRadius:400},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 4\"></svg>',svgContentId:10651642686,withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n7nj48\",\"data-border\":true,\"data-framer-name\":\"Text Tab Slide\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ES77iEgJh\",onTap:onTap1n1onzh,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{VaYy5IRXd:{\"--border-top-width\":\"2px\"}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-yznsa9\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"fj9QrD9n3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Translations in 30+ languages.\"})}),className:\"framer-zmz975\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JtNNes49H\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-a216ur\",layoutDependency:layoutDependency,layoutId:\"Uz8bzKR8r\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-i3yiq5\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZuEaXviL6\",opacity:1,radius:400,style:{backgroundColor:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",borderBottomLeftRadius:400,borderBottomRightRadius:400,borderTopLeftRadius:400,borderTopRightRadius:400},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 4\"></svg>',svgContentId:10651642686,withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dur3tq\",\"data-framer-name\":\"Visual Content\",layoutDependency:layoutDependency,layoutId:\"CSqAdSmJr\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-2y1mcj\",\"data-framer-name\":\"A\",layoutDependency:layoutDependency,layoutId:\"JGMrpAkU3\",style:{backgroundColor:\"rgb(244, 240, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18rf086\",\"data-border\":true,\"data-framer-name\":\"Automated screenshots\",layoutDependency:layoutDependency,layoutId:\"KVuYBFi0D\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\",scale:.75},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\"},children:\"Step 1\"})}),className:\"framer-h87qb1\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"HoeEQ4mxS\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:[\"Navigate to the SAP Dashboard. Click on the \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"\u201CSales\u201D\"}),\" tab.\"]})}),className:\"framer-jmth4t\",\"data-framer-name\":\"Navigate to the SAP Dashboard. Click on the \u201CSales\u201D tab.\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"LhrtdjHhX\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||400)-0-400)+0+0+0+32+157.60000038146973),positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png\",srcSet:\"https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png 1300w\"},className:\"framer-8x55z2\",\"data-framer-name\":\"Frame 1707477793\",layoutDependency:layoutDependency,layoutId:\"gEOKDJAAr\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\"},children:\"Step 2\"})}),className:\"framer-bvdyrj\",\"data-framer-name\":\"Step 2\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"yRi_WR6ak\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"Click on \"}),\"\u201CCreate Sales Order\u201D\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\".\"})]})}),className:\"framer-vg9ji6\",\"data-framer-name\":\"Click on \u201CCreate Sales Order\u201D.\",fonts:[\"Inter-Bold\",\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7127OkzO\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||400)-0-400)+0+0+0+32+475.0000009536743),positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png\",srcSet:\"https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png 1300w\"},className:\"framer-1eq35fk\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"q4HSV9Yhl\"})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-hyszar\",\"data-framer-name\":\"B\",layoutDependency:layoutDependency,layoutId:\"egV1iImBq\",style:{backgroundColor:\"rgb(244, 240, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yjqcek\",\"data-border\":true,\"data-framer-name\":\"AI generated steps, descriptions and titles\",layoutDependency:layoutDependency,layoutId:\"rBb1z2m1M\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\",scale:.75},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\"},children:\"Domain Name Search Guide\"})}),className:\"framer-1i20iax\",\"data-framer-name\":\"Domain Name Search Guide\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"sJnLNnrVw\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xulua\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"WkYuVV6N8\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(61, 130, 246)\",\"--border-left-width\":\"1.600000023841858px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(239, 246, 255)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"This guide provides a step-by-step process on how to search for, select, and purchase a domain name on Namecheap. Follow the instructions carefully to complete the transaction smoothly.\"})}),className:\"framer-mz69xe\",\"data-framer-name\":\"This guide provides a step-by-step process on how to search for, select, and purchase a domain name on Namecheap. Follow the instructions carefully to complete the transaction smoothly.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"i8s_6mU0y\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ptbl4c\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"dFqZAj4Jx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11.2px\",\"--framer-font-weight\":\"700\"},children:\"Step 1\"})}),className:\"framer-1jumr6n\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Mamc8TQPK\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:[\"To search for a new domain name on Namecheap, first navigate to \",/*#__PURE__*/_jsx(Link,{href:\"https://app.trupeer.ai/content/namecheap.com\",motionChild:true,nodeId:\"D1UB0te9l\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-hl0iuy, rgb(61, 130, 246))\",\"--framer-text-decoration\":\"underline\"},children:\"namecheap.com\"})})}),\". Enter the desired\\xa0domain name\\xa0in the search bar.\"]})}),className:\"framer-1pf8p78\",\"data-framer-name\":\"To search for a new domain name on Namecheap, first navigate to namecheap.com. Enter the desired\\xa0domain name\\xa0in the search bar.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D1UB0te9l\",style:{\"--extracted-hl0iuy\":\"rgb(61, 130, 246)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"316px\",src:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png\",srcSet:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png 1262w\"},className:\"framer-18yautd\",\"data-framer-name\":\"Frame 1707477793\",layoutDependency:layoutDependency,layoutId:\"QsOsIgJsB\",...addPropertyOverrides({McZRZLcqw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||400)-0-400)+0+0+40+210.4+0+140.80000038146972),positionX:\"center\",positionY:\"center\",sizes:\"316px\",src:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png\",srcSet:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png 1262w\"}}},baseVariant,gestureVariant)})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15cprwd\",\"data-framer-name\":\"C\",layoutDependency:layoutDependency,layoutId:\"PM7V2IZcM\",style:{backgroundColor:\"rgb(244, 240, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b320hg\",\"data-border\":true,\"data-framer-name\":\"Seamless word like editor\",layoutDependency:layoutDependency,layoutId:\"xvo6EEgYt\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\",scale:.75},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"371px\",src:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png\",srcSet:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png 1483w\"},className:\"framer-15fkqhf\",\"data-framer-name\":\"Group 1707477795\",layoutDependency:layoutDependency,layoutId:\"Z9MQEhHS9\",...addPropertyOverrides({SZOCooLTf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||400)-0-400)+0+59.000000953674316+32+0),positionX:\"center\",positionY:\"center\",sizes:\"371px\",src:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png\",srcSet:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png 1483w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ljkra\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"sxVIjgD0M\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9vz8a5\",\"data-framer-name\":\"Group 1707477794\",layoutDependency:layoutDependency,layoutId:\"h8JvIAoX0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8s4242\",\"data-framer-name\":\"Rectangle 56\",layoutDependency:layoutDependency,layoutId:\"uT73RjSjL\",style:{backgroundColor:\"rgb(255, 255, 0)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\"},children:[\"Notion button creation guide for \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"beginners\"})]})}),className:\"framer-1xz0bqp\",\"data-framer-name\":\"Notion button creation guide for beginners\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"zGa2TKT0g\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7vc7qz\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"fQIPtfF7U\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(61, 130, 246)\",\"--border-left-width\":\"1.600000023841858px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(239, 246, 255)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"This guide will guide you through the process of adding a button in Notion, including setting up actions on Slack.\"})}),className:\"framer-igzwbj\",\"data-framer-name\":\"This guide will guide you through the process of adding a button in Notion, including setting up actions on Slack.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gZ8Cb3hUz\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nf29zk\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"xr9d7bNq2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11.2px\",\"--framer-font-weight\":\"700\"},children:\"Step 1\"})}),className:\"framer-v4cmhw\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"dovqHZQP2\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"Begin by navigating to the desired page in Notion. Click on the desired location where you\u2019d like to place the button, and then press forward slash.\"})}),className:\"framer-10n3s9r\",\"data-framer-name\":\"Begin by navigating to the desired page in Notion. Click on the desired location where you\u2019d like to place the button, and then press forward slash.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MqmXRRZQn\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wednjb\",\"data-framer-name\":\"D\",layoutDependency:layoutDependency,layoutId:\"E79jFQSMj\",style:{backgroundColor:\"rgb(244, 240, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8s7omx\",\"data-border\":true,\"data-framer-name\":\"Automated translations\",layoutDependency:layoutDependency,layoutId:\"oGbBI4BT5\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\",scale:.75},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\"},children:\"Gu\\xeda de Creaci\\xf3n de Botones en Notion para Principiantes\"})}),className:\"framer-1mvxhwo\",\"data-framer-name\":\"Gu\\xeda de Creaci\\xf3n de Botones en Notion para Principiantes\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"HoTqdbAUS\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pvtkc\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"zIHLjmRul\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(61, 130, 246)\",\"--border-left-width\":\"1.600000023841858px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(239, 246, 255)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"Esta gu\\xeda te llevar\\xe1 a trav\\xe9s del proceso de agregar un bot\\xf3n en Notion, personalizarlo con un nombre e \\xedcono, y configurar una acci\\xf3n para que el bot\\xf3n notifique a un canal de Slack.\"})}),className:\"framer-g4qq63\",\"data-framer-name\":\"Esta gu\\xeda te llevar\\xe1 a trav\\xe9s del proceso de agregar un bot\\xf3n en Notion, personalizarlo con un nombre e \\xedcono, y configurar una acci\\xf3n para que el bot\\xf3n notifique a un canal de Slack.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MrVw0YmMD\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gt8bve\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"LfqJQOrDV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11.2px\",\"--framer-font-weight\":\"700\"},children:\"Paso 1\"})}),className:\"framer-mnq5mw\",\"data-framer-name\":\"Paso 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"dyWSfXJCb\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"Comienza navegando a la p\\xe1gina deseada en Notion. Haz clic en la ubicaci\\xf3n deseada donde te gustar\\xeda colocar el bot\\xf3n, luego ve al men\\xfa de comandos con barra inclinada (slash command).\"})}),className:\"framer-5x7791\",\"data-framer-name\":\"Comienza navegando a la p\\xe1gina deseada en Notion. Haz clic en la ubicaci\\xf3n deseada donde te gustar\\xeda colocar el bot\\xf3n, luego ve al men\\xfa de comandos con barra inclinada (slash command).\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hxqCZQ4zv\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",src:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png\",srcSet:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=512 512w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png 2880w\"},className:\"framer-18g4uzb\",\"data-framer-name\":\"image 8\",layoutDependency:layoutDependency,layoutId:\"hVgPq2Ycj\",...addPropertyOverrides({VaYy5IRXd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||400)-0-400)+0+0+40+212.8+0+140.80000038146972),sizes:\"320px\",src:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png\",srcSet:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=512 512w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png 2880w\"}}},baseVariant,gestureVariant)})]})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cn6R8.framer-1r59g77, .framer-cn6R8 .framer-1r59g77 { display: block; }\",\".framer-cn6R8.framer-im2obp { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 746px; }\",\".framer-cn6R8 .framer-1mxt2bo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 32px 0px; position: relative; width: 1px; }\",\".framer-cn6R8 .framer-su81w4, .framer-cn6R8 .framer-8mtgbt, .framer-cn6R8 .framer-1d236wm, .framer-cn6R8 .framer-1n7nj48 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 300px; z-index: 1; }\",\".framer-cn6R8 .framer-1u3r3hb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 4px; position: relative; width: 100%; }\",\".framer-cn6R8 .framer-jhtkt6, .framer-cn6R8 .framer-11zkq7t, .framer-cn6R8 .framer-7bkdfm, .framer-cn6R8 .framer-a216ur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 4px; }\",\".framer-cn6R8 .framer-1xqy9xc, .framer-cn6R8 .framer-1aali28, .framer-cn6R8 .framer-js56vp, .framer-cn6R8 .framer-i3yiq5 { flex: none; height: 4px; position: relative; width: 4px; }\",\".framer-cn6R8 .framer-olhpxz, .framer-cn6R8 .framer-jmwqoq, .framer-cn6R8 .framer-pfyts2, .framer-cn6R8 .framer-zmz975 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 275px; word-break: break-word; word-wrap: break-word; }\",\".framer-cn6R8 .framer-4pvcsq, .framer-cn6R8 .framer-1wweoii, .framer-cn6R8 .framer-yznsa9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cn6R8 .framer-1dur3tq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; max-width: 810px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cn6R8 .framer-2y1mcj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-cn6R8 .framer-18rf086 { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cn6R8 .framer-h87qb1, .framer-cn6R8 .framer-bvdyrj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 111px; word-break: break-word; word-wrap: break-word; }\",\".framer-cn6R8 .framer-jmth4t, .framer-cn6R8 .framer-vg9ji6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 259px; word-break: break-word; word-wrap: break-word; }\",\".framer-cn6R8 .framer-8x55z2 { flex: none; height: 147px; position: relative; width: 325px; }\",\".framer-cn6R8 .framer-1eq35fk { flex: none; height: 72px; position: relative; width: 325px; }\",\".framer-cn6R8 .framer-hyszar, .framer-cn6R8 .framer-15cprwd, .framer-cn6R8 .framer-wednjb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-cn6R8 .framer-1yjqcek { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cn6R8 .framer-1i20iax, .framer-cn6R8 .framer-1jumr6n, .framer-cn6R8 .framer-1pf8p78, .framer-cn6R8 .framer-1mvxhwo, .framer-cn6R8 .framer-mnq5mw, .framer-cn6R8 .framer-5x7791 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-cn6R8 .framer-1xulua, .framer-cn6R8 .framer-1pvtkc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12.800000190734863px 8px 12.800000190734863px; position: relative; width: 100%; }\",\".framer-cn6R8 .framer-mz69xe, .framer-cn6R8 .framer-g4qq63 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 290px; word-break: break-word; word-wrap: break-word; }\",\".framer-cn6R8 .framer-ptbl4c, .framer-cn6R8 .framer-gt8bve { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cn6R8 .framer-18yautd { flex: none; height: 132px; position: relative; width: 316px; }\",\".framer-cn6R8 .framer-b320hg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 22.399999618530273px 0px 22.399999618530273px; position: relative; width: 415px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cn6R8 .framer-15fkqhf { flex: none; height: 28px; position: relative; width: 371px; }\",\".framer-cn6R8 .framer-14ljkra { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: 201px; justify-content: flex-start; overflow: visible; padding: 32px 19.200000762939453px 32px 19.200000762939453px; position: relative; width: 100%; }\",\".framer-cn6R8 .framer-9vz8a5 { flex: none; height: 19px; overflow: visible; position: relative; width: 400px; }\",\".framer-cn6R8 .framer-8s4242 { flex: none; height: 19px; left: 228px; position: absolute; top: 0px; width: 71px; }\",\".framer-cn6R8 .framer-1xz0bqp { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-cn6R8 .framer-7vc7qz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 35px; justify-content: center; overflow: hidden; padding: 8px 12.800000190734863px 8px 12.800000190734863px; position: relative; width: 100%; }\",\".framer-cn6R8 .framer-igzwbj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 306px; word-break: break-word; word-wrap: break-word; }\",\".framer-cn6R8 .framer-1nf29zk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cn6R8 .framer-v4cmhw, .framer-cn6R8 .framer-10n3s9r { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 332px; word-break: break-word; word-wrap: break-word; }\",\".framer-cn6R8 .framer-8s7omx { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cn6R8 .framer-18g4uzb { aspect-ratio: 2.962406087281563 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cn6R8.framer-im2obp, .framer-cn6R8 .framer-1mxt2bo, .framer-cn6R8 .framer-su81w4, .framer-cn6R8 .framer-1u3r3hb, .framer-cn6R8 .framer-jhtkt6, .framer-cn6R8 .framer-8mtgbt, .framer-cn6R8 .framer-4pvcsq, .framer-cn6R8 .framer-11zkq7t, .framer-cn6R8 .framer-1d236wm, .framer-cn6R8 .framer-1wweoii, .framer-cn6R8 .framer-7bkdfm, .framer-cn6R8 .framer-1n7nj48, .framer-cn6R8 .framer-yznsa9, .framer-cn6R8 .framer-a216ur, .framer-cn6R8 .framer-1dur3tq, .framer-cn6R8 .framer-2y1mcj, .framer-cn6R8 .framer-18rf086, .framer-cn6R8 .framer-hyszar, .framer-cn6R8 .framer-1yjqcek, .framer-cn6R8 .framer-1xulua, .framer-cn6R8 .framer-ptbl4c, .framer-cn6R8 .framer-15cprwd, .framer-cn6R8 .framer-b320hg, .framer-cn6R8 .framer-14ljkra, .framer-cn6R8 .framer-7vc7qz, .framer-cn6R8 .framer-1nf29zk, .framer-cn6R8 .framer-wednjb, .framer-cn6R8 .framer-8s7omx, .framer-cn6R8 .framer-1pvtkc, .framer-cn6R8 .framer-gt8bve { gap: 0px; } .framer-cn6R8.framer-im2obp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-cn6R8.framer-im2obp > :first-child, .framer-cn6R8 .framer-1u3r3hb > :first-child, .framer-cn6R8 .framer-jhtkt6 > :first-child, .framer-cn6R8 .framer-4pvcsq > :first-child, .framer-cn6R8 .framer-11zkq7t > :first-child, .framer-cn6R8 .framer-1wweoii > :first-child, .framer-cn6R8 .framer-7bkdfm > :first-child, .framer-cn6R8 .framer-yznsa9 > :first-child, .framer-cn6R8 .framer-a216ur > :first-child, .framer-cn6R8 .framer-1dur3tq > :first-child, .framer-cn6R8 .framer-hyszar > :first-child, .framer-cn6R8 .framer-1xulua > :first-child, .framer-cn6R8 .framer-15cprwd > :first-child, .framer-cn6R8 .framer-7vc7qz > :first-child, .framer-cn6R8 .framer-wednjb > :first-child, .framer-cn6R8 .framer-1pvtkc > :first-child { margin-left: 0px; } .framer-cn6R8.framer-im2obp > :last-child, .framer-cn6R8 .framer-1u3r3hb > :last-child, .framer-cn6R8 .framer-jhtkt6 > :last-child, .framer-cn6R8 .framer-4pvcsq > :last-child, .framer-cn6R8 .framer-11zkq7t > :last-child, .framer-cn6R8 .framer-1wweoii > :last-child, .framer-cn6R8 .framer-7bkdfm > :last-child, .framer-cn6R8 .framer-yznsa9 > :last-child, .framer-cn6R8 .framer-a216ur > :last-child, .framer-cn6R8 .framer-1dur3tq > :last-child, .framer-cn6R8 .framer-hyszar > :last-child, .framer-cn6R8 .framer-1xulua > :last-child, .framer-cn6R8 .framer-15cprwd > :last-child, .framer-cn6R8 .framer-7vc7qz > :last-child, .framer-cn6R8 .framer-wednjb > :last-child, .framer-cn6R8 .framer-1pvtkc > :last-child { margin-right: 0px; } .framer-cn6R8 .framer-1mxt2bo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cn6R8 .framer-1mxt2bo > :first-child, .framer-cn6R8 .framer-su81w4 > :first-child, .framer-cn6R8 .framer-8mtgbt > :first-child, .framer-cn6R8 .framer-1d236wm > :first-child, .framer-cn6R8 .framer-1n7nj48 > :first-child, .framer-cn6R8 .framer-2y1mcj > :first-child, .framer-cn6R8 .framer-18rf086 > :first-child, .framer-cn6R8 .framer-1yjqcek > :first-child, .framer-cn6R8 .framer-ptbl4c > :first-child, .framer-cn6R8 .framer-b320hg > :first-child, .framer-cn6R8 .framer-14ljkra > :first-child, .framer-cn6R8 .framer-1nf29zk > :first-child, .framer-cn6R8 .framer-8s7omx > :first-child, .framer-cn6R8 .framer-gt8bve > :first-child { margin-top: 0px; } .framer-cn6R8 .framer-1mxt2bo > :last-child, .framer-cn6R8 .framer-su81w4 > :last-child, .framer-cn6R8 .framer-8mtgbt > :last-child, .framer-cn6R8 .framer-1d236wm > :last-child, .framer-cn6R8 .framer-1n7nj48 > :last-child, .framer-cn6R8 .framer-2y1mcj > :last-child, .framer-cn6R8 .framer-18rf086 > :last-child, .framer-cn6R8 .framer-1yjqcek > :last-child, .framer-cn6R8 .framer-ptbl4c > :last-child, .framer-cn6R8 .framer-b320hg > :last-child, .framer-cn6R8 .framer-14ljkra > :last-child, .framer-cn6R8 .framer-1nf29zk > :last-child, .framer-cn6R8 .framer-8s7omx > :last-child, .framer-cn6R8 .framer-gt8bve > :last-child { margin-bottom: 0px; } .framer-cn6R8 .framer-su81w4 > *, .framer-cn6R8 .framer-8mtgbt > *, .framer-cn6R8 .framer-1d236wm > *, .framer-cn6R8 .framer-1n7nj48 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-cn6R8 .framer-1u3r3hb > *, .framer-cn6R8 .framer-4pvcsq > *, .framer-cn6R8 .framer-1wweoii > *, .framer-cn6R8 .framer-yznsa9 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-cn6R8 .framer-jhtkt6 > *, .framer-cn6R8 .framer-11zkq7t > *, .framer-cn6R8 .framer-7bkdfm > *, .framer-cn6R8 .framer-a216ur > *, .framer-cn6R8 .framer-1dur3tq > *, .framer-cn6R8 .framer-hyszar > *, .framer-cn6R8 .framer-15cprwd > *, .framer-cn6R8 .framer-wednjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cn6R8 .framer-2y1mcj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cn6R8 .framer-18rf086 > *, .framer-cn6R8 .framer-ptbl4c > *, .framer-cn6R8 .framer-1nf29zk > *, .framer-cn6R8 .framer-gt8bve > * { margin: 0px; margin-bottom: calc(12.800000190734863px / 2); margin-top: calc(12.800000190734863px / 2); } .framer-cn6R8 .framer-1yjqcek > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-cn6R8 .framer-1xulua > *, .framer-cn6R8 .framer-7vc7qz > *, .framer-cn6R8 .framer-1pvtkc > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-cn6R8 .framer-b320hg > *, .framer-cn6R8 .framer-14ljkra > * { margin: 0px; margin-bottom: calc(20.80000114440918px / 2); margin-top: calc(20.80000114440918px / 2); } .framer-cn6R8 .framer-8s7omx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-cn6R8.framer-v-1ush6c5 .framer-4pvcsq, .framer-cn6R8.framer-v-1im5stp .framer-1wweoii, .framer-cn6R8.framer-v-1973ndf .framer-yznsa9 { padding: 0px 0px 0px 4px; }\",\".framer-cn6R8.framer-v-1ush6c5 .framer-jmwqoq, .framer-cn6R8.framer-v-1im5stp .framer-pfyts2, .framer-cn6R8.framer-v-1973ndf .framer-zmz975 { order: 1; }\",\".framer-cn6R8.framer-v-1ush6c5 .framer-11zkq7t, .framer-cn6R8.framer-v-1im5stp .framer-7bkdfm, .framer-cn6R8.framer-v-1973ndf .framer-a216ur { order: 0; }\",\".framer-cn6R8.framer-v-1973ndf .framer-18g4uzb { height: var(--framer-aspect-ratio-supported, 108px); }\",...sharedStyle.css,'.framer-cn6R8[data-border=\"true\"]::after, .framer-cn6R8 [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 400\n * @framerIntrinsicWidth 746\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"McZRZLcqw\":{\"layout\":[\"fixed\",\"auto\"]},\"SZOCooLTf\":{\"layout\":[\"fixed\",\"auto\"]},\"VaYy5IRXd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framere2Xo2u_bE=withCSS(Component,css,\"framer-cn6R8\");export default Framere2Xo2u_bE;Framere2Xo2u_bE.displayName=\"Slides Tab Copy\";Framere2Xo2u_bE.defaultProps={height:400,width:746};addPropertyControls(Framere2Xo2u_bE,{variant:{options:[\"ICucQp5ma\",\"McZRZLcqw\",\"SZOCooLTf\",\"VaYy5IRXd\"],optionTitles:[\"A\",\"B\",\"C\",\"D\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framere2Xo2u_bE,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framere2Xo2u_bE\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"746\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"McZRZLcqw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SZOCooLTf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VaYy5IRXd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "let Component;\nvar Home_default = (React) => {\n  if (!Component) {\n    const HomeIcon = React.forwardRef(function HomeIcon2({\n      title,\n      titleId,\n      ...props\n    }, svgRef) {\n      return /* @__PURE__ */ React.createElement(\"svg\", Object.assign({\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 24 24\",\n        fill: \"currentColor\",\n        \"aria-hidden\": \"true\",\n        \"data-slot\": \"icon\",\n        ref: svgRef,\n        \"aria-labelledby\": titleId\n      }, props), title ? /* @__PURE__ */ React.createElement(\"title\", {\n        id: titleId\n      }, title) : null, /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06l8.69-8.689Z\"\n      }), /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"m12 5.432 8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086L12 5.432Z\"\n      }));\n    });\n    Component = HomeIcon;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  Home_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.28\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AdjustmentsVertical\",\"ArchiveBox\",\"ArchiveBoxArrowDown\",\"ArchiveBoxXMark\",\"ArrowDown\",\"ArrowDownCircle\",\"ArrowDownLeft\",\"ArrowDownOnSquare\",\"ArrowDownRight\",\"ArrowDownTray\",\"ArrowLeft\",\"ArrowLeftCircle\",\"ArrowLeftOnRectangle\",\"ArrowLongDown\",\"ArrowLongLeft\",\"ArrowLongRight\",\"ArrowLongUp\",\"ArrowPath\",\"ArrowRight\",\"ArrowRightCircle\",\"ArrowSmallDown\",\"ArrowSmallLeft\",\"ArrowSmallRight\",\"ArrowSmallUp\",\"ArrowTrendingDown\",\"ArrowTrendingUp\",\"ArrowUp\",\"ArrowUpCircle\",\"ArrowUpLeft\",\"ArrowUpOnSquare\",\"ArrowUpOnSquareStack\",\"ArrowUpRight\",\"ArrowUpTray\",\"ArrowUturnDown\",\"ArrowUturnLeft\",\"ArrowUturnRight\",\"ArrowUturnUp\",\"ArrowsPointingIn\",\"ArrowsPointingOut\",\"ArrowsRightLeft\",\"ArrowsUpDown\",\"AtSymbol\",\"Backspace\",\"Backward\",\"Banknotes\",\"Bars2\",\"Bars3\",\"Bars3BottomLeft\",\"Bars3BottomRight\",\"Bars3CenterLeft\",\"Bars4\",\"BarsArrowDown\",\"BarsArrowUp\",\"Battery0\",\"Battery100\",\"Battery50\",\"Beaker\",\"Bell\",\"BellAlert\",\"BellSlash\",\"BellSnooze\",\"Bolt\",\"BoltSlash\",\"BookOpen\",\"Bookmark\",\"BookmarkSlash\",\"BookmarkSquare\",\"Briefcase\",\"BugAnt\",\"BuildingLibrary\",\"BuildingOffice\",\"BuildingOffice2\",\"BuildingStorefront\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarDays\",\"Camera\",\"ChartBar\",\"ChartBarSquare\",\"ChartPie\",\"ChatBubbleLeft\",\"ChatBubbleLeftRight\",\"ChatBubbleOvalLeft\",\"Check\",\"CheckBadge\",\"CheckCircle\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronLeft\",\"ChevronRight\",\"ChevronUp\",\"ChevronUpDown\",\"CircleStack\",\"Clipboard\",\"ClipboardDocument\",\"Clock\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CodeBracket\",\"CodeBracketSquare\",\"Cog\",\"Cog6Tooth\",\"Cog8Tooth\",\"CommandLine\",\"ComputerDesktop\",\"CpuChip\",\"CreditCard\",\"Cube\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyPound\",\"CurrencyRupee\",\"CurrencyYen\",\"CursorArrowRays\",\"CursorArrowRipple\",\"DevicePhoneMobile\",\"DeviceTablet\",\"Document\",\"DocumentArrowDown\",\"DocumentArrowUp\",\"DocumentChartBar\",\"DocumentCheck\",\"DocumentDuplicate\",\"DocumentMinus\",\"DocumentPlus\",\"DocumentText\",\"EllipsisHorizontal\",\"EllipsisVertical\",\"Envelope\",\"EnvelopeOpen\",\"ExclamationCircle\",\"ExclamationTriangle\",\"Eye\",\"EyeDropper\",\"EyeSlash\",\"FaceFrown\",\"FaceSmile\",\"Film\",\"FingerPrint\",\"Fire\",\"Flag\",\"Folder\",\"FolderArrowDown\",\"FolderMinus\",\"FolderOpen\",\"FolderPlus\",\"Forward\",\"Funnel\",\"Gif\",\"Gift\",\"GiftTop\",\"GlobeAlt\",\"GlobeAmericas\",\"GlobeAsiaAustralia\",\"GlobeEuropeAfrica\",\"HandRaised\",\"HandThumbDown\",\"HandThumbUp\",\"Hashtag\",\"Heart\",\"Home\",\"HomeModern\",\"Identification\",\"Inbox\",\"InboxArrowDown\",\"InboxStack\",\"InformationCircle\",\"Key\",\"Language\",\"Lifebuoy\",\"LightBulb\",\"Link\",\"ListBullet\",\"LockClosed\",\"LockOpen\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Map\",\"MapPin\",\"Megaphone\",\"Microphone\",\"Minus\",\"MinusCircle\",\"MinusSmall\",\"Moon\",\"MusicalNote\",\"Newspaper\",\"NoSymbol\",\"PaintBrush\",\"PaperAirplane\",\"PaperClip\",\"Pause\",\"PauseCircle\",\"Pencil\",\"PencilSquare\",\"Phone\",\"PhoneArrowDownLeft\",\"PhoneArrowUpRight\",\"PhoneXMark\",\"Photo\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Plus\",\"PlusCircle\",\"PlusSmall\",\"Power\",\"PresentationChartBar\",\"Printer\",\"PuzzlePiece\",\"QrCode\",\"QuestionMarkCircle\",\"QueueList\",\"Radio\",\"ReceiptPercent\",\"ReceiptRefund\",\"RectangleGroup\",\"RectangleStack\",\"RocketLaunch\",\"Rss\",\"Scale\",\"Scissors\",\"Server\",\"ServerStack\",\"Share\",\"ShieldCheck\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingCart\",\"Signal\",\"SignalSlash\",\"Sparkles\",\"SpeakerWave\",\"SpeakerXMark\",\"Square2Stack\",\"Square3Stack3D\",\"Squares2X2\",\"SquaresPlus\",\"Star\",\"Stop\",\"StopCircle\",\"Sun\",\"Swatch\",\"TableCells\",\"Tag\",\"Ticket\",\"Trash\",\"Trophy\",\"Truck\",\"Tv\",\"User\",\"UserCircle\",\"UserGroup\",\"UserMinus\",\"UserPlus\",\"Users\",\"Variable\",\"VideoCamera\",\"VideoCameraSlash\",\"ViewColumns\",\"ViewfinderCircle\",\"Wallet\",\"Wifi\",\"Window\",\"Wrench\",\"WrenchScrewdriver\",\"XCircle\",\"XMark\",\"index\"];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.28`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";const VideoFonts=getFonts(Video);const HeroFonts=getFonts(Hero);const VideoControls=getPropertyControls(Video);const enabledGestures={a31Z67L1f:{hover:true},dVJgd7bwo:{hover:true},e4H5AmPEL:{hover:true},IyJcAhsIF:{hover:true}};const cycleOrder=[\"a31Z67L1f\",\"IyJcAhsIF\",\"e4H5AmPEL\",\"dVJgd7bwo\"];const serializationHash=\"framer-m5udu\";const variantClassNames={a31Z67L1f:\"framer-v-1ihp8zc\",dVJgd7bwo:\"framer-v-1x9jpii\",e4H5AmPEL:\"framer-v-1btl0wq\",IyJcAhsIF:\"framer-v-1gz885i\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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={\"Claude - VideoPause\":\"dVJgd7bwo\",\"Claude - VideoPlay\":\"e4H5AmPEL\",VideoPause:\"IyJcAhsIF\",VideoPlay:\"a31Z67L1f\"};const getProps=({height,id,image,videoFile,width,...props})=>{return{...props,qSTZJrIuv:videoFile??props.qSTZJrIuv??\"https://framerusercontent.com/assets/IFnqjFV9C0yyX1SuMQW16wmvYbQ.mp4\",qvf5nvoxY:image??props.qvf5nvoxY,variant:humanReadableVariantMap[props.variant]??props.variant??\"a31Z67L1f\"};};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,qvf5nvoxY,qSTZJrIuv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a31Z67L1f\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapv1exqe=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"IyJcAhsIF\");});const onTap1dbkt1w=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"a31Z67L1f\");});const onTapv9t7sn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"dVJgd7bwo\");});const onTapvqi57y=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"e4H5AmPEL\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-1ihp8zc\",className,classNames),\"data-framer-name\":\"VideoPlay\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"a31Z67L1f\",onTap:onTapv1exqe,ref:ref??ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"a31Z67L1f-hover\":{\"data-framer-name\":undefined},\"dVJgd7bwo-hover\":{\"data-framer-name\":undefined},\"e4H5AmPEL-hover\":{\"data-framer-name\":undefined},\"IyJcAhsIF-hover\":{\"data-framer-name\":undefined},dVJgd7bwo:{\"data-framer-name\":\"Claude - VideoPause\",onTap:onTapvqi57y},e4H5AmPEL:{\"data-framer-name\":\"Claude - VideoPlay\",onTap:onTapv9t7sn},IyJcAhsIF:{\"data-framer-name\":\"VideoPause\",onTap:onTap1dbkt1w}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||382.5)-0-112)/2)),pixelHeight:2304,pixelWidth:4096,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(qvf5nvoxY),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-we2hqj\",layoutDependency:layoutDependency,layoutId:\"csabR72or\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({\"e4H5AmPEL-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||380)-0-380)/2)),pixelHeight:2304,pixelWidth:4096,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(qvf5nvoxY),...{positionX:\"center\",positionY:\"center\"}}},dVJgd7bwo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||382)-0-382)/2)),pixelHeight:2304,pixelWidth:4096,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(qvf5nvoxY),...{positionX:\"center\",positionY:\"center\"}}},e4H5AmPEL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||382)-0-382)/2)),pixelHeight:2304,pixelWidth:4096,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(qvf5nvoxY),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dce55c-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rYFRGaA29-container\",nodeId:\"rYFRGaA29\",rendersWithMotion:true,scopeId:\"HGG1SQru0\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"rYFRGaA29\",isMixedBorderRadius:false,layoutId:\"rYFRGaA29\",loop:false,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:qSTZJrIuv,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:100,width:\"100%\",...addPropertyOverrides({\"a31Z67L1f-hover\":{volume:70},\"e4H5AmPEL-hover\":{volume:70},dVJgd7bwo:{muted:false,playing:true,style:{height:\"100%\",width:\"100%\"},volume:70},e4H5AmPEL:{style:{height:\"100%\",width:\"100%\"}},IyJcAhsIF:{muted:false,playing:true,volume:70}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gd4ko4\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"ltv7DpqHq\",style:{backgroundColor:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",opacity:.1},variants:{\"a31Z67L1f-hover\":{opacity:0},\"e4H5AmPEL-hover\":{opacity:0},dVJgd7bwo:{opacity:0},IyJcAhsIF:{opacity:0}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ozvwmm\",layoutDependency:layoutDependency,layoutId:\"LyVuxJ1nJ\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kueo1l-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yZDudW2qc-container\",nodeId:\"yZDudW2qc\",rendersWithMotion:true,scopeId:\"HGG1SQru0\",style:{opacity:1},variants:{\"a31Z67L1f-hover\":{opacity:.5},\"dVJgd7bwo-hover\":{opacity:.5},\"e4H5AmPEL-hover\":{opacity:.5},\"IyJcAhsIF-hover\":{opacity:.5},dVJgd7bwo:{opacity:0},e4H5AmPEL:{opacity:1},IyJcAhsIF:{opacity:0}},children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-7ef56079-1bd1-435d-a775-994666e07088, rgb(250, 250, 250))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",id:\"yZDudW2qc\",layoutId:\"yZDudW2qc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"a31Z67L1f-hover\":{color:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},\"dVJgd7bwo-hover\":{color:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",iconSelection:\"PauseCircle\"},\"e4H5AmPEL-hover\":{color:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},\"IyJcAhsIF-hover\":{color:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\"},IyJcAhsIF:{iconSelection:\"PauseCircle\"}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m5udu.framer-iazyua, .framer-m5udu .framer-iazyua { display: block; }\",\".framer-m5udu.framer-1ihp8zc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 680px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5udu .framer-we2hqj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5udu .framer-dce55c-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-m5udu .framer-gd4ko4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 100%; z-index: 1; }\",\".framer-m5udu .framer-ozvwmm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 320px; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-m5udu .framer-1kueo1l-container { flex: none; height: 77px; position: relative; width: 77px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-m5udu.framer-1ihp8zc, .framer-m5udu .framer-we2hqj, .framer-m5udu .framer-gd4ko4, .framer-m5udu .framer-ozvwmm { gap: 0px; } .framer-m5udu.framer-1ihp8zc > *, .framer-m5udu .framer-we2hqj > *, .framer-m5udu .framer-ozvwmm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-m5udu.framer-1ihp8zc > :first-child, .framer-m5udu .framer-we2hqj > :first-child, .framer-m5udu .framer-ozvwmm > :first-child { margin-left: 0px; } .framer-m5udu.framer-1ihp8zc > :last-child, .framer-m5udu .framer-we2hqj > :last-child, .framer-m5udu .framer-ozvwmm > :last-child { margin-right: 0px; } .framer-m5udu .framer-gd4ko4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-m5udu .framer-gd4ko4 > :first-child { margin-top: 0px; } .framer-m5udu .framer-gd4ko4 > :last-child { margin-bottom: 0px; } }\",\".framer-m5udu.framer-v-1btl0wq .framer-we2hqj, .framer-m5udu.framer-v-1x9jpii .framer-we2hqj { height: 382px; }\",\".framer-m5udu.framer-v-1btl0wq .framer-dce55c-container, .framer-m5udu.framer-v-1x9jpii .framer-dce55c-container { height: 100%; }\",\".framer-m5udu.framer-v-1btl0wq.hover .framer-we2hqj { height: 380px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 382.5\n * @framerIntrinsicWidth 680\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IyJcAhsIF\":{\"layout\":[\"fixed\",\"auto\"]},\"e4H5AmPEL\":{\"layout\":[\"fixed\",\"auto\"]},\"dVJgd7bwo\":{\"layout\":[\"fixed\",\"auto\"]},\"pnrgyClAt\":{\"layout\":[\"fixed\",\"auto\"]},\"uT72hVrn9\":{\"layout\":[\"fixed\",\"auto\"]},\"N4BulwaBU\":{\"layout\":[\"fixed\",\"auto\"]},\"t_GI8muOl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qvf5nvoxY\":\"image\",\"qSTZJrIuv\":\"videoFile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHGG1SQru0=withCSS(Component,css,\"framer-m5udu\");export default FramerHGG1SQru0;FramerHGG1SQru0.displayName=\"VideoStackNew\";FramerHGG1SQru0.defaultProps={height:382.5,width:680};addPropertyControls(FramerHGG1SQru0,{variant:{options:[\"a31Z67L1f\",\"IyJcAhsIF\",\"e4H5AmPEL\",\"dVJgd7bwo\"],optionTitles:[\"VideoPlay\",\"VideoPause\",\"Claude - VideoPlay\",\"Claude - VideoPause\"],title:\"Variant\",type:ControlType.Enum},qvf5nvoxY:{title:\"Image\",type:ControlType.ResponsiveImage},qSTZJrIuv:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,IFnqjFV9C0yyX1SuMQW16wmvYbQ.mp4?originalFilename=How_to_Time_Animations_in_Canva.mp4\",description:undefined,hidden:undefined,title:\"VideoFile\"}});addFonts(FramerHGG1SQru0,[{explicitInter:true,fonts:[]},...VideoFonts,...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHGG1SQru0\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"382.5\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"680\",\"framerVariables\":\"{\\\"qvf5nvoxY\\\":\\\"image\\\",\\\"qSTZJrIuv\\\":\\\"videoFile\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IyJcAhsIF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e4H5AmPEL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dVJgd7bwo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pnrgyClAt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uT72hVrn9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N4BulwaBU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t_GI8muOl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HGG1SQru0.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,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/9ezKGe0mqQ7ZpG1s2F6j/kwn4ckmkR93hWg1GqWdp/LlxBF921R.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"zTsDcC9yS\",\"e5dc5qNyp\",\"AKgMzszY2\",\"F5MLMj3uu\"];const serializationHash=\"framer-1hVzS\";const variantClassNames={AKgMzszY2:\"framer-v-14ksowi\",e5dc5qNyp:\"framer-v-1edg4oe\",F5MLMj3uu:\"framer-v-1qxz462\",zTsDcC9yS:\"framer-v-17j3hj4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={damping:40,delay:.6,mass:.2,stiffness:450,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={A:\"zTsDcC9yS\",B:\"e5dc5qNyp\",C:\"AKgMzszY2\",D:\"F5MLMj3uu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zTsDcC9yS\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zTsDcC9yS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1cqxw0q=activeVariantCallback(async(...args)=>{setVariant(\"zTsDcC9yS\");});const onTapphq38c=activeVariantCallback(async(...args)=>{setVariant(\"e5dc5qNyp\");});const onTapxsvy7v=activeVariantCallback(async(...args)=>{setVariant(\"AKgMzszY2\");});const onTap1uhhrjn=activeVariantCallback(async(...args)=>{setVariant(\"F5MLMj3uu\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"e5dc5qNyp\",\"AKgMzszY2\",\"F5MLMj3uu\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"e5dc5qNyp\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"AKgMzszY2\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"F5MLMj3uu\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-17j3hj4\",className,classNames),\"data-framer-name\":\"A\",layoutDependency:layoutDependency,layoutId:\"zTsDcC9yS\",ref:ref??ref1,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({AKgMzszY2:{\"data-framer-name\":\"C\"},e5dc5qNyp:{\"data-framer-name\":\"B\"},F5MLMj3uu:{\"data-framer-name\":\"D\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5ywctm\",\"data-framer-name\":\"Text Content\",layoutDependency:layoutDependency,layoutId:\"OL3Qcnf8j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0)))\"},children:[\"Create \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1k2zljd, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"professional\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-cku5m2, var(--token-9227370e-f30c-4500-b173-09badaa0201b, rgb(143, 147, 255)))\"},children:\" \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-7519bk, var(--token-87b98253-f876-428c-8ea6-3af0471f6c55, rgb(200, 125, 85)))\"},children:\"guides and docs\"}),\" that write themselves\"]})}),className:\"framer-z5788y\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"Fr6GyRDvT\",style:{\"--extracted-1k2zljd\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--extracted-7519bk\":\"var(--token-87b98253-f876-428c-8ea6-3af0471f6c55, rgb(200, 125, 85))\",\"--extracted-a0htzi\":\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",\"--extracted-cku5m2\":\"var(--token-9227370e-f30c-4500-b173-09badaa0201b, rgb(143, 147, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12d99br\",layoutDependency:layoutDependency,layoutId:\"gEV58YXYR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d35es0\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BrOws4avQ\",onTap:onTap1cqxw0q,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hqowqw\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"Nq47BkH64\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(82, 82, 82))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(82, 82, 82))\"},variants:{AKgMzszY2:{backgroundColor:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(212, 212, 212))\"},e5dc5qNyp:{backgroundColor:\"var(--token-dda0d3b9-bae9-4fa9-8098-bf4820017fac, rgba(204, 219, 217, 0.3))\"},F5MLMj3uu:{\"--border-color\":\"var(--token-dda0d3b9-bae9-4fa9-8098-bf4820017fac, rgba(204, 219, 217, 0.3))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fdl4l\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"IQEFQBsrn\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-18deix7\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MP2pKiX3j\",opacity:1,radius:400,style:{backgroundColor:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",borderBottomLeftRadius:400,borderBottomRightRadius:400,borderTopLeftRadius:400,borderTopRightRadius:400},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 4\"></svg>',svgContentId:10651642686,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Automated screenshot capture from recording.\"})}),className:\"framer-1fhcox3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XrU3okhmr\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r2x1hv\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"AYignpglp\",onTap:onTapphq38c,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jl516u\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"IALDwiZDP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(82, 82, 82))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(212, 212, 212))\"},variants:{e5dc5qNyp:{backgroundColor:\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(82, 82, 82))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pwor5w\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Jr_AdWjud\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Auto-generated steps, summary, titles.\"})}),className:\"framer-1affeu6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Po8OzB8eu\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-j2wwmb\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"N9ZHxBJK4\",opacity:1,radius:400,style:{backgroundColor:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",borderBottomLeftRadius:400,borderBottomRightRadius:400,borderTopLeftRadius:400,borderTopRightRadius:400},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 4\"></svg>',svgContentId:11776428942,withExternalLayout:true,...addPropertyOverrides({e5dc5qNyp:{svgContentId:10651642686}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g28we8\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"uvgR392DK\",onTap:onTapxsvy7v,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4mnegu\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"zrxegDobH\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(82, 82, 82))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(212, 212, 212))\"},variants:{AKgMzszY2:{backgroundColor:\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(82, 82, 82))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6mcrsw\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"rEiIkUNW1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Seamless word-like editor.\"})}),className:\"framer-1r45dzg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lDMBgP1sS\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1t8sibg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"d2X7BbAT7\",opacity:1,radius:400,style:{backgroundColor:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",borderBottomLeftRadius:400,borderBottomRightRadius:400,borderTopLeftRadius:400,borderTopRightRadius:400},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 4\"></svg>',svgContentId:11776428942,withExternalLayout:true,...addPropertyOverrides({AKgMzszY2:{svgContentId:10651642686}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qp2xyu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zhJEZlBbS\",onTap:onTap1uhhrjn,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w52ont\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"olOtckChb\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(82, 82, 82))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(212, 212, 212))\"},variants:{F5MLMj3uu:{backgroundColor:\"var(--token-7ef56079-1bd1-435d-a775-994666e07088, rgb(250, 250, 250))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xmr9dt\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"ylCSBqLBt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"16px\"},children:\"One-click translations in 30+ languages\"}),\".\"]})}),className:\"framer-10a1w5r\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"kgEL7hBTm\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-k08tqx\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cYRcVsiNh\",opacity:1,radius:400,style:{backgroundColor:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",borderBottomLeftRadius:400,borderBottomRightRadius:400,borderTopLeftRadius:400,borderTopRightRadius:400},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 4\"></svg>',svgContentId:11776428942,withExternalLayout:true,...addPropertyOverrides({F5MLMj3uu:{svgContentId:10651642686}},baseVariant,gestureVariant)})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-5uh52r\",\"data-framer-name\":\"Visual Content\",layoutDependency:layoutDependency,layoutId:\"IeTZv3pAa\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rryli\",\"data-framer-name\":\"A\",layoutDependency:layoutDependency,layoutId:\"da1pg1dYV\",style:{backgroundColor:\"var(--token-6d2e92b5-2819-4edd-8de7-0dc617dba68d, rgb(248, 249, 252))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2sinkp\",\"data-border\":true,\"data-framer-name\":\"Automated screenshots\",layoutDependency:layoutDependency,layoutId:\"LC1nm7BZe\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\"},children:\"Step 1\"})}),className:\"framer-xye4gk\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"whYsgr_8T\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\"Navigate to the SAP Dashboard. Click on the \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\"},children:\"\u201CSales\u201D\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\" tab.\"})]})}),className:\"framer-pj610u\",\"data-framer-name\":\"Navigate to the SAP Dashboard. Click on the \u201CSales\u201D tab.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"iCSXm_wte\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||482.5)-64-((componentViewport?.height||482.5)-64)*1)+(0+(((componentViewport?.height||482.5)-64)*1-0-(((componentViewport?.height||482.5)-64)*1-0)*1)/2)+0+(((((componentViewport?.height||482.5)-64)*1-0)*1-0-400)/2+0+0)+32+157.60000038146973),positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png\",srcSet:\"https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png 1300w\"},className:\"framer-zsxvh5\",\"data-framer-name\":\"Frame 1707477793\",layoutDependency:layoutDependency,layoutId:\"hJMA7TpzK\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\"},children:\"Step 2\"})}),className:\"framer-1x4muov\",\"data-framer-name\":\"Step 2\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"EwuNzsOwE\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\"Click on \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\"},children:\"\u201CCreate Sales Order\u201D\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\".\"})]})}),className:\"framer-tdmag\",\"data-framer-name\":\"Click on \u201CCreate Sales Order\u201D.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"AlQusiv5H\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||482.5)-64-((componentViewport?.height||482.5)-64)*1)+(0+(((componentViewport?.height||482.5)-64)*1-0-(((componentViewport?.height||482.5)-64)*1-0)*1)/2)+0+(((((componentViewport?.height||482.5)-64)*1-0)*1-0-400)/2+0+0)+32+475.0000009536743),positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png\",srcSet:\"https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png 1300w\"},className:\"framer-8d7k98\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"XCZgg6Q7X\"})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-dsld3k\",\"data-framer-name\":\"B\",layoutDependency:layoutDependency,layoutId:\"b8Ce5jYmE\",style:{backgroundColor:\"rgb(244, 240, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q7cmgt\",\"data-border\":true,\"data-framer-name\":\"AI generated steps, descriptions and titles\",layoutDependency:layoutDependency,layoutId:\"pSbC1FQ8n\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14.40000057220459px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\"},children:\"Domain Name Search Guide\"})})}),className:\"framer-1uctsqx\",\"data-framer-name\":\"Domain Name Search Guide\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"AQNKFsSum\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n1i7zd\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"bbhzweESC\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(61, 130, 246)\",\"--border-left-width\":\"1.600000023841858px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(239, 246, 255)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\"This guide provides a step-by-step process on how to search for, select, and purchase a domain name on Namecheap. Follow the instructions carefully to complete the transaction smoothly.\"})})}),className:\"framer-cu67o7\",\"data-framer-name\":\"This guide provides a step-by-step process on how to search for, select, and purchase a domain name on Namecheap. Follow the instructions carefully to complete the transaction smoothly.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PxxZJCGxm\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zmijjr\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"HCmVkdve1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11.199999809265137px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"11.2px\",\"--framer-font-weight\":\"700\"},children:\"Step 1\"})})}),className:\"framer-hbdhje\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Hz6E2jOd9\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\"To search for a new domain name on Namecheap, first navigate to \"}),/*#__PURE__*/_jsx(Link,{href:\"https://app.trupeer.ai/content/namecheap.com\",motionChild:true,nodeId:\"e_d0z2rSI\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{href:\"https://app.trupeer.ai/content/namecheap.com\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\",\"--framer-text-color\":\"var(--extracted-zp3slp, rgba(61, 130, 246, 1))\",\"--framer-text-decoration\":\"underline\"},children:\"namecheap.com\"})})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\". Enter the desired\\xa0domain name\\xa0in the search bar.\"})]})}),className:\"framer-1mcqn4m\",\"data-framer-name\":\"To search for a new domain name on Namecheap, first navigate to namecheap.com. Enter the desired\\xa0domain name\\xa0in the search bar.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e_d0z2rSI\",style:{\"--extracted-zp3slp\":\"rgba(61, 130, 246, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"316px\",src:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png\",srcSet:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png 1262w\"},className:\"framer-v8rtqb\",\"data-framer-name\":\"Frame 1707477793\",layoutDependency:layoutDependency,layoutId:\"yeqIfCzY9\",...addPropertyOverrides({e5dc5qNyp:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||482.5)-64-((componentViewport?.height||482.5)-64)*1)+(0+(((componentViewport?.height||482.5)-64)*1-0-(((componentViewport?.height||482.5)-64)*1-0)*1)/2)+0+(((((componentViewport?.height||482.5)-64)*1-0)*1-0-400)/2+0+0)+40+210.4+0+140.80000038146972),positionX:\"center\",positionY:\"center\",sizes:\"316px\",src:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png\",srcSet:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png 1262w\"}}},baseVariant,gestureVariant)})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wh6zqs\",\"data-framer-name\":\"C\",layoutDependency:layoutDependency,layoutId:\"KacXdsgp_\",style:{backgroundColor:\"rgb(244, 240, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eauayy\",\"data-border\":true,\"data-framer-name\":\"Seamless word like editor\",layoutDependency:layoutDependency,layoutId:\"Zaz20pdOD\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"371px\",src:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png\",srcSet:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png 1483w\"},className:\"framer-1vaewuf\",\"data-framer-name\":\"Group 1707477795\",layoutDependency:layoutDependency,layoutId:\"TGAfchGKP\",...addPropertyOverrides({AKgMzszY2:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||482.5)-64-((componentViewport?.height||482.5)-64)*1)+(0+(((componentViewport?.height||482.5)-64)*1-0-(((componentViewport?.height||482.5)-64)*1-0)*1)/2)+0+(((((componentViewport?.height||482.5)-64)*1-0)*1-0-281.99999809265137)/2+0+0)+32+0),positionX:\"center\",positionY:\"center\",sizes:\"371px\",src:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png\",srcSet:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png 1483w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u4avkc\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"RW_hyqgpX\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1be8f5u\",\"data-framer-name\":\"Group 1707477794\",layoutDependency:layoutDependency,layoutId:\"Al8UPfoQN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-100ge6l\",\"data-framer-name\":\"Rectangle 56\",layoutDependency:layoutDependency,layoutId:\"RgeC1HNPY\",style:{backgroundColor:\"rgb(255, 255, 0)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"14.40000057220459px\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\"},children:\"Notion button creation guide for \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\",\"--framer-text-decoration\":\"underline\"},children:\"beginners\"})]})}),className:\"framer-1647d4o\",\"data-framer-name\":\"Notion button creation guide for beginners\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"IT82Yg7DW\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vtvzva\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"ynd_JFkrc\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(61, 130, 246)\",\"--border-left-width\":\"1.600000023841858px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(239, 246, 255)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\"This guide will guide you through the process of adding a button in Notion, including setting up actions on Slack.\"})})}),className:\"framer-1da31mq\",\"data-framer-name\":\"This guide will guide you through the process of adding a button in Notion, including setting up actions on Slack.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nEsmGczMV\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lydkv1\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"QmYVPlV1r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11.199999809265137px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"11.2px\",\"--framer-font-weight\":\"700\"},children:\"Step 1\"})})}),className:\"framer-409fe3\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"uSTPMlcJa\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\"Begin by navigating to the desired page in Notion. Click on the desired location where you\u2019d like to place the button, and then press forward slash.\"})})}),className:\"framer-1mkeic3\",\"data-framer-name\":\"Begin by navigating to the desired page in Notion. Click on the desired location where you\u2019d like to place the button, and then press forward slash.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Cbg1j42pH\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iyuycr\",\"data-framer-name\":\"D\",layoutDependency:layoutDependency,layoutId:\"GEbZ9csXL\",style:{backgroundColor:\"rgb(244, 240, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8go1xh\",\"data-border\":true,\"data-framer-name\":\"Automated translations\",layoutDependency:layoutDependency,layoutId:\"z5HFJLX6E\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\"},children:\"Gu\\xeda de Creaci\\xf3n de Botones en Notion para Principiantes\"})}),className:\"framer-hrslvf\",\"data-framer-name\":\"Gu\\xeda de Creaci\\xf3n de Botones en Notion para Principiantes\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"kzyweXmhB\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1smx005\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"EsghMz7pd\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(61, 130, 246)\",\"--border-left-width\":\"1.600000023841858px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(239, 246, 255)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\"Esta gu\\xeda te llevar\\xe1 a trav\\xe9s del proceso de agregar un bot\\xf3n en Notion, personalizarlo con un nombre e \\xedcono, y configurar una acci\\xf3n para que el bot\\xf3n notifique a un canal de Slack.\"})})}),className:\"framer-18ib0je\",\"data-framer-name\":\"Esta gu\\xeda te llevar\\xe1 a trav\\xe9s del proceso de agregar un bot\\xf3n en Notion, personalizarlo con un nombre e \\xedcono, y configurar una acci\\xf3n para que el bot\\xf3n notifique a un canal de Slack.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HpCrfSST6\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n7bepu\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"xLKIgxTl7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11.199999809265137px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"11.2px\",\"--framer-font-weight\":\"700\"},children:\"Paso 1\"})})}),className:\"framer-7xa7pf\",\"data-framer-name\":\"Paso 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"u9MDVm2dg\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"8px\"},children:\"Comienza navegando a la p\\xe1gina deseada en Notion. Haz clic en la ubicaci\\xf3n deseada donde te gustar\\xeda colocar el bot\\xf3n, luego ve al men\\xfa de comandos con barra inclinada (slash command).\"})})}),className:\"framer-1m3aeep\",\"data-framer-name\":\"Comienza navegando a la p\\xe1gina deseada en Notion. Haz clic en la ubicaci\\xf3n deseada donde te gustar\\xeda colocar el bot\\xf3n, luego ve al men\\xfa de comandos con barra inclinada (slash command).\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l8wgc_m9Y\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",src:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png\",srcSet:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=512 512w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png 2880w\"},className:\"framer-12h5dm3\",\"data-framer-name\":\"image 8\",layoutDependency:layoutDependency,layoutId:\"m6Yh03LXa\",...addPropertyOverrides({F5MLMj3uu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||482.5)-64-((componentViewport?.height||482.5)-64)*1)+(0+(((componentViewport?.height||482.5)-64)*1-0-(((componentViewport?.height||482.5)-64)*1-0)*1)/2)+(0+((((componentViewport?.height||482.5)-64)*1-0)*1-0-400)/2)+40+212.8+0+140.80000038146972),sizes:\"320px\",src:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png\",srcSet:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=512 512w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png 2880w\"}}},baseVariant,gestureVariant)})]})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1hVzS.framer-1pcfc9, .framer-1hVzS .framer-1pcfc9 { display: block; }\",\".framer-1hVzS.framer-17j3hj4 { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 148px; height: min-content; justify-content: center; max-width: 1088px; overflow: visible; padding: 32px 16px 32px 16px; position: relative; width: 1088px; }\",\".framer-1hVzS .framer-5ywctm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 8px; position: relative; width: 400px; }\",\".framer-1hVzS .framer-z5788y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 392px; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-12d99br { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1hVzS .framer-1d35es0, .framer-1hVzS .framer-1r2x1hv, .framer-1hVzS .framer-g28we8, .framer-1hVzS .framer-1qp2xyu { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-1hVzS .framer-hqowqw { flex: none; height: 2px; overflow: hidden; position: relative; width: 404px; }\",\".framer-1hVzS .framer-fdl4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 4px; position: relative; width: 100%; }\",\".framer-1hVzS .framer-18deix7, .framer-1hVzS .framer-j2wwmb, .framer-1hVzS .framer-1t8sibg, .framer-1hVzS .framer-k08tqx { flex: none; height: 4px; position: relative; width: 4px; }\",\".framer-1hVzS .framer-1fhcox3 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-jl516u, .framer-1hVzS .framer-4mnegu, .framer-1hVzS .framer-w52ont { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-1hVzS .framer-1pwor5w, .framer-1hVzS .framer-6mcrsw, .framer-1hVzS .framer-1xmr9dt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1hVzS .framer-1affeu6, .framer-1hVzS .framer-1r45dzg, .framer-1hVzS .framer-10a1w5r { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-5uh52r { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1hVzS .framer-rryli, .framer-1hVzS .framer-dsld3k, .framer-1hVzS .framer-1wh6zqs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-1hVzS .framer-2sinkp { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1hVzS .framer-xye4gk, .framer-1hVzS .framer-1x4muov { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 111px; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-pj610u, .framer-1hVzS .framer-tdmag { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 259px; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-zsxvh5 { flex: none; height: 147px; position: relative; width: 325px; }\",\".framer-1hVzS .framer-8d7k98 { flex: none; height: 72px; position: relative; width: 325px; }\",\".framer-1hVzS .framer-q7cmgt { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1hVzS .framer-1uctsqx, .framer-1hVzS .framer-hbdhje, .framer-1hVzS .framer-1mcqn4m, .framer-1hVzS .framer-hrslvf, .framer-1hVzS .framer-7xa7pf, .framer-1hVzS .framer-1m3aeep { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-1n1i7zd, .framer-1hVzS .framer-1smx005 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12.800000190734863px 8px 12.800000190734863px; position: relative; width: 100%; }\",\".framer-1hVzS .framer-cu67o7, .framer-1hVzS .framer-18ib0je { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 290px; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-zmijjr, .framer-1hVzS .framer-1n7bepu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1hVzS .framer-v8rtqb { flex: none; height: 132px; position: relative; width: 316px; }\",\".framer-1hVzS .framer-eauayy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 22.399999618530273px 0px 22.399999618530273px; position: relative; width: 415px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1hVzS .framer-1vaewuf { flex: none; height: 28px; position: relative; width: 371px; }\",\".framer-1hVzS .framer-u4avkc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: 201px; justify-content: flex-start; overflow: visible; padding: 32px 19.200000762939453px 32px 19.200000762939453px; position: relative; width: 100%; }\",\".framer-1hVzS .framer-1be8f5u { flex: none; height: 19px; overflow: visible; position: relative; width: 400px; }\",\".framer-1hVzS .framer-100ge6l { flex: none; height: 19px; left: 228px; position: absolute; top: 0px; width: 71px; }\",\".framer-1hVzS .framer-1647d4o { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-1vtvzva { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 35px; justify-content: center; overflow: hidden; padding: 8px 12.800000190734863px 8px 12.800000190734863px; position: relative; width: 100%; }\",\".framer-1hVzS .framer-1da31mq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 306px; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-1lydkv1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1hVzS .framer-409fe3, .framer-1hVzS .framer-1mkeic3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 332px; word-break: break-word; word-wrap: break-word; }\",\".framer-1hVzS .framer-1iyuycr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-1hVzS .framer-8go1xh { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1hVzS .framer-12h5dm3 { aspect-ratio: 2.962406087281563 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1hVzS.framer-17j3hj4, .framer-1hVzS .framer-5ywctm, .framer-1hVzS .framer-12d99br, .framer-1hVzS .framer-1d35es0, .framer-1hVzS .framer-fdl4l, .framer-1hVzS .framer-1r2x1hv, .framer-1hVzS .framer-1pwor5w, .framer-1hVzS .framer-g28we8, .framer-1hVzS .framer-6mcrsw, .framer-1hVzS .framer-1qp2xyu, .framer-1hVzS .framer-1xmr9dt, .framer-1hVzS .framer-5uh52r, .framer-1hVzS .framer-rryli, .framer-1hVzS .framer-2sinkp, .framer-1hVzS .framer-dsld3k, .framer-1hVzS .framer-q7cmgt, .framer-1hVzS .framer-1n1i7zd, .framer-1hVzS .framer-zmijjr, .framer-1hVzS .framer-1wh6zqs, .framer-1hVzS .framer-eauayy, .framer-1hVzS .framer-u4avkc, .framer-1hVzS .framer-1vtvzva, .framer-1hVzS .framer-1lydkv1, .framer-1hVzS .framer-1iyuycr, .framer-1hVzS .framer-8go1xh, .framer-1hVzS .framer-1smx005, .framer-1hVzS .framer-1n7bepu { gap: 0px; } .framer-1hVzS.framer-17j3hj4 > * { margin: 0px; margin-left: calc(148px / 2); margin-right: calc(148px / 2); } .framer-1hVzS.framer-17j3hj4 > :first-child, .framer-1hVzS .framer-fdl4l > :first-child, .framer-1hVzS .framer-5uh52r > :first-child, .framer-1hVzS .framer-1n1i7zd > :first-child, .framer-1hVzS .framer-1vtvzva > :first-child, .framer-1hVzS .framer-1iyuycr > :first-child, .framer-1hVzS .framer-1smx005 > :first-child { margin-left: 0px; } .framer-1hVzS.framer-17j3hj4 > :last-child, .framer-1hVzS .framer-fdl4l > :last-child, .framer-1hVzS .framer-5uh52r > :last-child, .framer-1hVzS .framer-1n1i7zd > :last-child, .framer-1hVzS .framer-1vtvzva > :last-child, .framer-1hVzS .framer-1iyuycr > :last-child, .framer-1hVzS .framer-1smx005 > :last-child { margin-right: 0px; } .framer-1hVzS .framer-5ywctm > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-1hVzS .framer-5ywctm > :first-child, .framer-1hVzS .framer-12d99br > :first-child, .framer-1hVzS .framer-1d35es0 > :first-child, .framer-1hVzS .framer-1r2x1hv > :first-child, .framer-1hVzS .framer-1pwor5w > :first-child, .framer-1hVzS .framer-g28we8 > :first-child, .framer-1hVzS .framer-6mcrsw > :first-child, .framer-1hVzS .framer-1qp2xyu > :first-child, .framer-1hVzS .framer-1xmr9dt > :first-child, .framer-1hVzS .framer-rryli > :first-child, .framer-1hVzS .framer-2sinkp > :first-child, .framer-1hVzS .framer-dsld3k > :first-child, .framer-1hVzS .framer-q7cmgt > :first-child, .framer-1hVzS .framer-zmijjr > :first-child, .framer-1hVzS .framer-1wh6zqs > :first-child, .framer-1hVzS .framer-eauayy > :first-child, .framer-1hVzS .framer-u4avkc > :first-child, .framer-1hVzS .framer-1lydkv1 > :first-child, .framer-1hVzS .framer-8go1xh > :first-child, .framer-1hVzS .framer-1n7bepu > :first-child { margin-top: 0px; } .framer-1hVzS .framer-5ywctm > :last-child, .framer-1hVzS .framer-12d99br > :last-child, .framer-1hVzS .framer-1d35es0 > :last-child, .framer-1hVzS .framer-1r2x1hv > :last-child, .framer-1hVzS .framer-1pwor5w > :last-child, .framer-1hVzS .framer-g28we8 > :last-child, .framer-1hVzS .framer-6mcrsw > :last-child, .framer-1hVzS .framer-1qp2xyu > :last-child, .framer-1hVzS .framer-1xmr9dt > :last-child, .framer-1hVzS .framer-rryli > :last-child, .framer-1hVzS .framer-2sinkp > :last-child, .framer-1hVzS .framer-dsld3k > :last-child, .framer-1hVzS .framer-q7cmgt > :last-child, .framer-1hVzS .framer-zmijjr > :last-child, .framer-1hVzS .framer-1wh6zqs > :last-child, .framer-1hVzS .framer-eauayy > :last-child, .framer-1hVzS .framer-u4avkc > :last-child, .framer-1hVzS .framer-1lydkv1 > :last-child, .framer-1hVzS .framer-8go1xh > :last-child, .framer-1hVzS .framer-1n7bepu > :last-child { margin-bottom: 0px; } .framer-1hVzS .framer-12d99br > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1hVzS .framer-1d35es0 > *, .framer-1hVzS .framer-1r2x1hv > *, .framer-1hVzS .framer-g28we8 > *, .framer-1hVzS .framer-1qp2xyu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1hVzS .framer-fdl4l > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-1hVzS .framer-1pwor5w > *, .framer-1hVzS .framer-6mcrsw > *, .framer-1hVzS .framer-1xmr9dt > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-1hVzS .framer-5uh52r > *, .framer-1hVzS .framer-1iyuycr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1hVzS .framer-rryli > *, .framer-1hVzS .framer-dsld3k > *, .framer-1hVzS .framer-1wh6zqs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1hVzS .framer-2sinkp > *, .framer-1hVzS .framer-zmijjr > *, .framer-1hVzS .framer-1lydkv1 > *, .framer-1hVzS .framer-1n7bepu > * { margin: 0px; margin-bottom: calc(12.800000190734863px / 2); margin-top: calc(12.800000190734863px / 2); } .framer-1hVzS .framer-q7cmgt > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-1hVzS .framer-1n1i7zd > *, .framer-1hVzS .framer-1vtvzva > *, .framer-1hVzS .framer-1smx005 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-1hVzS .framer-eauayy > *, .framer-1hVzS .framer-u4avkc > * { margin: 0px; margin-bottom: calc(20.80000114440918px / 2); margin-top: calc(20.80000114440918px / 2); } .framer-1hVzS .framer-8go1xh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-1hVzS.framer-v-1edg4oe .framer-hqowqw, .framer-1hVzS.framer-v-14ksowi .framer-hqowqw, .framer-1hVzS.framer-v-1qxz462 .framer-hqowqw { height: 1px; }\",\".framer-1hVzS.framer-v-1edg4oe .framer-jl516u, .framer-1hVzS.framer-v-14ksowi .framer-4mnegu, .framer-1hVzS.framer-v-1qxz462 .framer-w52ont { height: 2px; }\",\".framer-1hVzS.framer-v-1edg4oe .framer-1pwor5w, .framer-1hVzS.framer-v-14ksowi .framer-6mcrsw, .framer-1hVzS.framer-v-1qxz462 .framer-1xmr9dt { align-content: center; align-items: center; flex-direction: row; padding: 0px 0px 0px 4px; }\",\".framer-1hVzS.framer-v-1edg4oe .framer-1affeu6, .framer-1hVzS.framer-v-14ksowi .framer-1r45dzg, .framer-1hVzS.framer-v-1qxz462 .framer-10a1w5r { flex: 1 0 0px; order: 1; width: 1px; }\",\".framer-1hVzS.framer-v-1edg4oe .framer-j2wwmb, .framer-1hVzS.framer-v-14ksowi .framer-1t8sibg, .framer-1hVzS.framer-v-1qxz462 .framer-k08tqx { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1hVzS.framer-v-1edg4oe .framer-1pwor5w { gap: 0px; } .framer-1hVzS.framer-v-1edg4oe .framer-1pwor5w > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-1hVzS.framer-v-1edg4oe .framer-1pwor5w > :first-child { margin-left: 0px; } .framer-1hVzS.framer-v-1edg4oe .framer-1pwor5w > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1hVzS.framer-v-14ksowi .framer-6mcrsw { gap: 0px; } .framer-1hVzS.framer-v-14ksowi .framer-6mcrsw > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-1hVzS.framer-v-14ksowi .framer-6mcrsw > :first-child { margin-left: 0px; } .framer-1hVzS.framer-v-14ksowi .framer-6mcrsw > :last-child { margin-right: 0px; } }\",\".framer-1hVzS.framer-v-1qxz462 .framer-12h5dm3 { height: var(--framer-aspect-ratio-supported, 108px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1hVzS.framer-v-1qxz462 .framer-1xmr9dt { gap: 0px; } .framer-1hVzS.framer-v-1qxz462 .framer-1xmr9dt > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-1hVzS.framer-v-1qxz462 .framer-1xmr9dt > :first-child { margin-left: 0px; } .framer-1hVzS.framer-v-1qxz462 .framer-1xmr9dt > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-1hVzS[data-border=\"true\"]::after, .framer-1hVzS [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 482.5\n * @framerIntrinsicWidth 1088\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1088px\",null,null]},\"e5dc5qNyp\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1088px\",null,null]},\"AKgMzszY2\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1088px\",null,null]},\"F5MLMj3uu\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1088px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerv8mZY29Jp=withCSS(Component,css,\"framer-1hVzS\");export default Framerv8mZY29Jp;Framerv8mZY29Jp.displayName=\"Slides Component 2\";Framerv8mZY29Jp.defaultProps={height:482.5,width:1088};addPropertyControls(Framerv8mZY29Jp,{variant:{options:[\"zTsDcC9yS\",\"e5dc5qNyp\",\"AKgMzszY2\",\"F5MLMj3uu\"],optionTitles:[\"A\",\"B\",\"C\",\"D\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerv8mZY29Jp,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv8mZY29Jp\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"482.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1088px\\\",null,null]},\\\"e5dc5qNyp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1088px\\\",null,null]},\\\"AKgMzszY2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1088px\\\",null,null]},\\\"F5MLMj3uu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1088px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1088\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,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/9ezKGe0mqQ7ZpG1s2F6j/kwn4ckmkR93hWg1GqWdp/LlxBF921R.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"RSrZlfe4G\",\"KFMHddOYQ\",\"jTgemD75o\",\"Pzdi8z_Mz\"];const serializationHash=\"framer-VHpXJ\";const variantClassNames={jTgemD75o:\"framer-v-1sc6qux\",KFMHddOYQ:\"framer-v-1ymvz65\",Pzdi8z_Mz:\"framer-v-1hpc4xz\",RSrZlfe4G:\"framer-v-do9ndt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={damping:50,delay:.6,mass:1,stiffness:451,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 2\":\"KFMHddOYQ\",\"Variant 3\":\"jTgemD75o\",\"Variant 4\":\"Pzdi8z_Mz\",A:\"RSrZlfe4G\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RSrZlfe4G\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RSrZlfe4G\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapatv321=activeVariantCallback(async(...args)=>{setVariant(\"RSrZlfe4G\");});const onTappocbjr=activeVariantCallback(async(...args)=>{setVariant(\"KFMHddOYQ\");});const onTap1xth8gx=activeVariantCallback(async(...args)=>{setVariant(\"jTgemD75o\");});const onTap1c8u4cj=activeVariantCallback(async(...args)=>{setVariant(\"Pzdi8z_Mz\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"KFMHddOYQ\",\"jTgemD75o\",\"Pzdi8z_Mz\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"KFMHddOYQ\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"jTgemD75o\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"Pzdi8z_Mz\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-do9ndt\",className,classNames),\"data-framer-name\":\"A\",layoutDependency:layoutDependency,layoutId:\"RSrZlfe4G\",ref:ref??ref1,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({jTgemD75o:{\"data-framer-name\":\"Variant 3\"},KFMHddOYQ:{\"data-framer-name\":\"Variant 2\"},Pzdi8z_Mz:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ymumw2\",\"data-framer-name\":\"Text Content\",layoutDependency:layoutDependency,layoutId:\"PEg1_Gmt4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f5if13\",\"data-framer-name\":\"A\",layoutDependency:layoutDependency,layoutId:\"hC0forcWm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k9xdep\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aKpmqYOj0\",onTap:onTapatv321,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ta2iy\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"PKEO6iuyg\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{jTgemD75o:{\"--border-bottom-width\":\"0.5px\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-top-width\":\"0.5px\"},KFMHddOYQ:{\"--border-bottom-width\":\"0.5px\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-top-width\":\"0.5px\"},Pzdi8z_Mz:{\"--border-bottom-width\":\"0.5px\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-top-width\":\"0.5px\"}}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1uw1rqk\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Kp28xXWhO\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Automated screenshot capture from recording.\"})}),className:\"framer-1lmzkrh\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Rh47EGUO5\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18d448o\",\"data-framer-name\":\"A\",layoutDependency:layoutDependency,layoutId:\"hxFEawC7s\",style:{backgroundColor:\"rgb(244, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-111l5wy\",\"data-border\":true,\"data-framer-name\":\"Automated screenshots\",layoutDependency:layoutDependency,layoutId:\"Z_cJJbDRt\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\",scale:.7},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\"},children:\"Step 1\"})}),className:\"framer-g3cjfg\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"FLqv4Q27f\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:[\"Navigate to the SAP Dashboard. Click on the \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"\u201CSales\u201D\"}),\" tab.\"]})}),className:\"framer-pxxxx3\",\"data-framer-name\":\"Navigate to the SAP Dashboard. Click on the \u201CSales\u201D tab.\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"CRlBugHvc\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+154+0+-38+32+157.60000038146973),positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png\",srcSet:\"https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8mIJpCkEshnMHFpajjzGde9x8k.png 1300w\"},className:\"framer-ydzaqm\",\"data-framer-name\":\"Frame 1707477793\",layoutDependency:layoutDependency,layoutId:\"fi7AMfLqg\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\"},children:\"Step 2\"})}),className:\"framer-ts3mye\",\"data-framer-name\":\"Step 2\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"nWfLasExg\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"Click on \"}),\"\u201CCreate Sales Order\u201D\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\".\"})]})}),className:\"framer-1455mry\",\"data-framer-name\":\"Click on \u201CCreate Sales Order\u201D.\",fonts:[\"Inter-Bold\",\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rCee0U0Gd\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+154+0+-38+32+475.0000009536743),positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png\",srcSet:\"https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/34pHp8P7qfQNeWdFzmO1PdfVRIU.png 1300w\"},className:\"framer-5bwdxj\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"pE2NtqlFc\"})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-do5id8\",\"data-framer-name\":\"B\",layoutDependency:layoutDependency,layoutId:\"flSbsK5fQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1md06e8\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Fxx1Em8LO\",onTap:onTappocbjr,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4onzx4\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"CL0xtya3T\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\"},variants:{KFMHddOYQ:{\"--border-bottom-width\":\"1px\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-top-width\":\"1px\"}}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1or5trw\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Co0vZWhAF\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Auto-generated steps, summary, titles.\"})}),className:\"framer-1djl5yw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oTvqHCdut\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-v6r2gn\",\"data-framer-name\":\"B\",layoutDependency:layoutDependency,layoutId:\"HxGBfkKW0\",style:{backgroundColor:\"rgb(244, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m7jcly\",\"data-border\":true,\"data-framer-name\":\"AI generated steps, descriptions and titles\",layoutDependency:layoutDependency,layoutId:\"RdrhswbOh\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\",scale:.7},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\"},children:\"Domain Name Search Guide\"})}),className:\"framer-tf4ug0\",\"data-framer-name\":\"Domain Name Search Guide\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"jTiYkiPb4\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ovx57r\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"ZWRyEJ8ca\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(61, 130, 246)\",\"--border-left-width\":\"1.600000023841858px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(239, 246, 255)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"This guide provides a step-by-step process on how to search for, select, and purchase a domain name on Namecheap. Follow the instructions carefully to complete the transaction smoothly.\"})}),className:\"framer-qtu5cv\",\"data-framer-name\":\"This guide provides a step-by-step process on how to search for, select, and purchase a domain name on Namecheap. Follow the instructions carefully to complete the transaction smoothly.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vVHOQXVIV\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13esh85\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"lfOZnTU4e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11.2px\",\"--framer-font-weight\":\"700\"},children:\"Step 1\"})}),className:\"framer-1slx6t\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"XY4f7GCg_\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:[\"To search for a new domain name on Namecheap, first navigate to \",/*#__PURE__*/_jsx(Link,{href:\"https://app.trupeer.ai/content/namecheap.com\",motionChild:true,nodeId:\"BzqADR05L\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-hl0iuy, rgb(61, 130, 246))\",\"--framer-text-decoration\":\"underline\"},children:\"namecheap.com\"})})}),\". Enter the desired\\xa0domain name\\xa0in the search bar.\"]})}),className:\"framer-gezt82\",\"data-framer-name\":\"To search for a new domain name on Namecheap, first navigate to namecheap.com. Enter the desired\\xa0domain name\\xa0in the search bar.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BzqADR05L\",style:{\"--extracted-hl0iuy\":\"rgb(61, 130, 246)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"316px\",src:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png\",srcSet:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png 1262w\"},className:\"framer-1dg9gav\",\"data-framer-name\":\"Frame 1707477793\",layoutDependency:layoutDependency,layoutId:\"LAfNuV4i_\",...addPropertyOverrides({KFMHddOYQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+153+0+154+0+-38+40+210.4+0+140.80000038146972),positionX:\"center\",positionY:\"center\",sizes:\"316px\",src:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png\",srcSet:\"https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gxmenjTjdKqb94mRfMuSGjVUk.png 1262w\"}}},baseVariant,gestureVariant)})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tq15nt\",\"data-framer-name\":\"C\",layoutDependency:layoutDependency,layoutId:\"K_tKL3qvU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ngbrmm\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GpgwuhRsM\",onTap:onTap1xth8gx,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1smt63y\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"s2Q6p5TVK\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\"},variants:{jTgemD75o:{\"--border-bottom-width\":\"1px\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-top-width\":\"1px\"}}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1lriu5z\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"CFTt9laqs\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Seamless word-like editor.\"})}),className:\"framer-1aucq65\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IWX03ErBF\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-lvstrt\",\"data-framer-name\":\"C\",layoutDependency:layoutDependency,layoutId:\"tvCOD75eT\",style:{backgroundColor:\"rgb(244, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iuhwdb\",\"data-border\":true,\"data-framer-name\":\"Seamless word like editor\",layoutDependency:layoutDependency,layoutId:\"B7AREMIfU\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\",scale:.7},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"371px\",src:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png\",srcSet:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png 1483w\"},className:\"framer-10bwwg2\",\"data-framer-name\":\"Group 1707477795\",layoutDependency:layoutDependency,layoutId:\"szyK9LAWS\",...addPropertyOverrides({jTgemD75o:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+306+0+154+0+21.000000953674316+32+0),positionX:\"center\",positionY:\"center\",sizes:\"371px\",src:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png\",srcSet:\"https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WFKLz8Az8lLucCOcsmC2Y7YGccw.png 1483w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7od9i\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"iTOKzacwQ\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yo7gep\",\"data-framer-name\":\"Group 1707477794\",layoutDependency:layoutDependency,layoutId:\"BPoIvTR9c\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11en1mu\",\"data-framer-name\":\"Rectangle 56\",layoutDependency:layoutDependency,layoutId:\"WdrAfPA4D\",style:{backgroundColor:\"rgb(255, 255, 0)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\"},children:[\"Notion button creation guide for \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"beginners\"})]})}),className:\"framer-l64los\",\"data-framer-name\":\"Notion button creation guide for beginners\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"F9bYMdc2V\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-41xvk1\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"ia4IlzqkD\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(61, 130, 246)\",\"--border-left-width\":\"1.600000023841858px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(239, 246, 255)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"This guide will guide you through the process of adding a button in Notion, including setting up actions on Slack.\"})}),className:\"framer-8myuwy\",\"data-framer-name\":\"This guide will guide you through the process of adding a button in Notion, including setting up actions on Slack.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ee2meInXX\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xsdw8j\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"yiJBbT1Qw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11.2px\",\"--framer-font-weight\":\"700\"},children:\"Step 1\"})}),className:\"framer-14obdy\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"kZXcbaARA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"Begin by navigating to the desired page in Notion. Click on the desired location where you\u2019d like to place the button, and then press forward slash.\"})}),className:\"framer-1oejz9b\",\"data-framer-name\":\"Begin by navigating to the desired page in Notion. Click on the desired location where you\u2019d like to place the button, and then press forward slash.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F7bYoTeLa\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u82pd1\",\"data-framer-name\":\"D\",layoutDependency:layoutDependency,layoutId:\"mvXEgNQuC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jbbe7q\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XNxakn1Uw\",onTap:onTap1c8u4cj,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pyw0bu\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"hqFnRFMiT\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\"},variants:{Pzdi8z_Mz:{\"--border-bottom-width\":\"1px\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-top-width\":\"1px\"}}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-v2bix0\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"ZF5nE9Dpq\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Translations in 30+ languages.\"})}),className:\"framer-hux8oc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I_7BXEy9P\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-122lykq\",\"data-framer-name\":\"D\",layoutDependency:layoutDependency,layoutId:\"nhMomUatQ\",style:{backgroundColor:\"rgb(244, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nhbvgj\",\"data-border\":true,\"data-framer-name\":\"Automated translations\",layoutDependency:layoutDependency,layoutId:\"CtyOxWlcJ\",style:{\"--border-bottom-width\":\"0.4000000059604645px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"0.4000000059604645px\",\"--border-right-width\":\"0.4000000059604645px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4000000059604645px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1.600000023841858px 1.600000023841858px 0px rgba(0, 0, 0, 0.25)\",scale:.7},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\"},children:\"Gu\\xeda de Creaci\\xf3n de Botones en Notion para Principiantes\"})}),className:\"framer-w47zwx\",\"data-framer-name\":\"Gu\\xeda de Creaci\\xf3n de Botones en Notion para Principiantes\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"vQ4Adh0u7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14k9hlf\",\"data-border\":true,\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"fqkC2H_E9\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(61, 130, 246)\",\"--border-left-width\":\"1.600000023841858px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(239, 246, 255)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"Esta gu\\xeda te llevar\\xe1 a trav\\xe9s del proceso de agregar un bot\\xf3n en Notion, personalizarlo con un nombre e \\xedcono, y configurar una acci\\xf3n para que el bot\\xf3n notifique a un canal de Slack.\"})}),className:\"framer-iovfra\",\"data-framer-name\":\"Esta gu\\xeda te llevar\\xe1 a trav\\xe9s del proceso de agregar un bot\\xf3n en Notion, personalizarlo con un nombre e \\xedcono, y configurar una acci\\xf3n para que el bot\\xf3n notifique a un canal de Slack.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w1OyQcZZl\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vj83mg\",\"data-framer-name\":\"Frame 1707477794\",layoutDependency:layoutDependency,layoutId:\"Hf8SDb8Ol\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11.2px\",\"--framer-font-weight\":\"700\"},children:\"Paso 1\"})}),className:\"framer-y869oo\",\"data-framer-name\":\"Paso 1\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"GYr4ZlmeT\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\"},children:\"Comienza navegando a la p\\xe1gina deseada en Notion. Haz clic en la ubicaci\\xf3n deseada donde te gustar\\xeda colocar el bot\\xf3n, luego ve al men\\xfa de comandos con barra inclinada (slash command).\"})}),className:\"framer-fqtai6\",\"data-framer-name\":\"Comienza navegando a la p\\xe1gina deseada en Notion. Haz clic en la ubicaci\\xf3n deseada donde te gustar\\xeda colocar el bot\\xf3n, luego ve al men\\xfa de comandos con barra inclinada (slash command).\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G8TepGzje\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"320px\",src:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png\",srcSet:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=512 512w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png 2880w\"},className:\"framer-auu3b6\",\"data-framer-name\":\"image 8\",layoutDependency:layoutDependency,layoutId:\"LosjQurVy\",...addPropertyOverrides({Pzdi8z_Mz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+459+0+154+0+-38+40+212.8+0+140.80000038146972),sizes:\"320px\",src:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png\",srcSet:\"https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=512 512w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IyO2JbpxZiroYByc7VoK6c2ezOs.png 2880w\"}}},baseVariant,gestureVariant)})]})]})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VHpXJ.framer-1ekg4xl, .framer-VHpXJ .framer-1ekg4xl { display: block; }\",\".framer-VHpXJ.framer-do9ndt { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 358px; }\",\".framer-VHpXJ .framer-1ymumw2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-1f5if13, .framer-VHpXJ .framer-do5id8, .framer-VHpXJ .framer-1tq15nt, .framer-VHpXJ .framer-1u82pd1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-k9xdep, .framer-VHpXJ .framer-1md06e8, .framer-VHpXJ .framer-ngbrmm, .framer-VHpXJ .framer-jbbe7q { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-10ta2iy { flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-1uw1rqk, .framer-VHpXJ .framer-1or5trw, .framer-VHpXJ .framer-1lriu5z, .framer-VHpXJ .framer-v2bix0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 4px; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-1lmzkrh, .framer-VHpXJ .framer-1djl5yw, .framer-VHpXJ .framer-1aucq65, .framer-VHpXJ .framer-hux8oc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\".framer-VHpXJ .framer-18d448o, .framer-VHpXJ .framer-v6r2gn, .framer-VHpXJ .framer-122lykq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 324px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 324px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VHpXJ .framer-111l5wy { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VHpXJ .framer-g3cjfg, .framer-VHpXJ .framer-ts3mye { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 111px; word-break: break-word; word-wrap: break-word; }\",\".framer-VHpXJ .framer-pxxxx3, .framer-VHpXJ .framer-1455mry { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 259px; word-break: break-word; word-wrap: break-word; }\",\".framer-VHpXJ .framer-ydzaqm { flex: none; height: 147px; position: relative; width: 325px; }\",\".framer-VHpXJ .framer-5bwdxj { flex: none; height: 72px; position: relative; width: 325px; }\",\".framer-VHpXJ .framer-4onzx4, .framer-VHpXJ .framer-1smt63y, .framer-VHpXJ .framer-1pyw0bu { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-1m7jcly { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VHpXJ .framer-tf4ug0, .framer-VHpXJ .framer-1slx6t, .framer-VHpXJ .framer-gezt82, .framer-VHpXJ .framer-w47zwx, .framer-VHpXJ .framer-y869oo, .framer-VHpXJ .framer-fqtai6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-VHpXJ .framer-1ovx57r, .framer-VHpXJ .framer-14k9hlf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12.800000190734863px 8px 12.800000190734863px; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-qtu5cv, .framer-VHpXJ .framer-iovfra { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 290px; word-break: break-word; word-wrap: break-word; }\",\".framer-VHpXJ .framer-13esh85, .framer-VHpXJ .framer-vj83mg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-1dg9gav { flex: none; height: 132px; position: relative; width: 316px; }\",\".framer-VHpXJ .framer-lvstrt { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 324px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 324px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VHpXJ .framer-1iuhwdb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 22.399999618530273px 0px 22.399999618530273px; position: relative; width: 415px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VHpXJ .framer-10bwwg2 { flex: none; height: 28px; position: relative; width: 371px; }\",\".framer-VHpXJ .framer-y7od9i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: 201px; justify-content: flex-start; overflow: visible; padding: 32px 19.200000762939453px 32px 19.200000762939453px; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-yo7gep { flex: none; height: 19px; overflow: visible; position: relative; width: 400px; }\",\".framer-VHpXJ .framer-11en1mu { flex: none; height: 19px; left: 228px; position: absolute; top: 0px; width: 71px; }\",\".framer-VHpXJ .framer-l64los { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-VHpXJ .framer-41xvk1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 35px; justify-content: center; overflow: hidden; padding: 8px 12.800000190734863px 8px 12.800000190734863px; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-8myuwy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 306px; word-break: break-word; word-wrap: break-word; }\",\".framer-VHpXJ .framer-xsdw8j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VHpXJ .framer-14obdy, .framer-VHpXJ .framer-1oejz9b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 332px; word-break: break-word; word-wrap: break-word; }\",\".framer-VHpXJ .framer-1nhbvgj { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VHpXJ .framer-auu3b6 { aspect-ratio: 2.962406087281563 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VHpXJ.framer-do9ndt, .framer-VHpXJ .framer-1ymumw2, .framer-VHpXJ .framer-1f5if13, .framer-VHpXJ .framer-k9xdep, .framer-VHpXJ .framer-1uw1rqk, .framer-VHpXJ .framer-18d448o, .framer-VHpXJ .framer-111l5wy, .framer-VHpXJ .framer-do5id8, .framer-VHpXJ .framer-1md06e8, .framer-VHpXJ .framer-1or5trw, .framer-VHpXJ .framer-v6r2gn, .framer-VHpXJ .framer-1m7jcly, .framer-VHpXJ .framer-1ovx57r, .framer-VHpXJ .framer-13esh85, .framer-VHpXJ .framer-1tq15nt, .framer-VHpXJ .framer-ngbrmm, .framer-VHpXJ .framer-1lriu5z, .framer-VHpXJ .framer-lvstrt, .framer-VHpXJ .framer-1iuhwdb, .framer-VHpXJ .framer-y7od9i, .framer-VHpXJ .framer-41xvk1, .framer-VHpXJ .framer-xsdw8j, .framer-VHpXJ .framer-1u82pd1, .framer-VHpXJ .framer-jbbe7q, .framer-VHpXJ .framer-v2bix0, .framer-VHpXJ .framer-122lykq, .framer-VHpXJ .framer-1nhbvgj, .framer-VHpXJ .framer-14k9hlf, .framer-VHpXJ .framer-vj83mg { gap: 0px; } .framer-VHpXJ.framer-do9ndt > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-VHpXJ.framer-do9ndt > :first-child, .framer-VHpXJ .framer-1ymumw2 > :first-child, .framer-VHpXJ .framer-1f5if13 > :first-child, .framer-VHpXJ .framer-k9xdep > :first-child, .framer-VHpXJ .framer-1uw1rqk > :first-child, .framer-VHpXJ .framer-18d448o > :first-child, .framer-VHpXJ .framer-111l5wy > :first-child, .framer-VHpXJ .framer-do5id8 > :first-child, .framer-VHpXJ .framer-1md06e8 > :first-child, .framer-VHpXJ .framer-1or5trw > :first-child, .framer-VHpXJ .framer-v6r2gn > :first-child, .framer-VHpXJ .framer-1m7jcly > :first-child, .framer-VHpXJ .framer-13esh85 > :first-child, .framer-VHpXJ .framer-1tq15nt > :first-child, .framer-VHpXJ .framer-ngbrmm > :first-child, .framer-VHpXJ .framer-1lriu5z > :first-child, .framer-VHpXJ .framer-lvstrt > :first-child, .framer-VHpXJ .framer-1iuhwdb > :first-child, .framer-VHpXJ .framer-y7od9i > :first-child, .framer-VHpXJ .framer-xsdw8j > :first-child, .framer-VHpXJ .framer-1u82pd1 > :first-child, .framer-VHpXJ .framer-jbbe7q > :first-child, .framer-VHpXJ .framer-v2bix0 > :first-child, .framer-VHpXJ .framer-122lykq > :first-child, .framer-VHpXJ .framer-1nhbvgj > :first-child, .framer-VHpXJ .framer-vj83mg > :first-child { margin-top: 0px; } .framer-VHpXJ.framer-do9ndt > :last-child, .framer-VHpXJ .framer-1ymumw2 > :last-child, .framer-VHpXJ .framer-1f5if13 > :last-child, .framer-VHpXJ .framer-k9xdep > :last-child, .framer-VHpXJ .framer-1uw1rqk > :last-child, .framer-VHpXJ .framer-18d448o > :last-child, .framer-VHpXJ .framer-111l5wy > :last-child, .framer-VHpXJ .framer-do5id8 > :last-child, .framer-VHpXJ .framer-1md06e8 > :last-child, .framer-VHpXJ .framer-1or5trw > :last-child, .framer-VHpXJ .framer-v6r2gn > :last-child, .framer-VHpXJ .framer-1m7jcly > :last-child, .framer-VHpXJ .framer-13esh85 > :last-child, .framer-VHpXJ .framer-1tq15nt > :last-child, .framer-VHpXJ .framer-ngbrmm > :last-child, .framer-VHpXJ .framer-1lriu5z > :last-child, .framer-VHpXJ .framer-lvstrt > :last-child, .framer-VHpXJ .framer-1iuhwdb > :last-child, .framer-VHpXJ .framer-y7od9i > :last-child, .framer-VHpXJ .framer-xsdw8j > :last-child, .framer-VHpXJ .framer-1u82pd1 > :last-child, .framer-VHpXJ .framer-jbbe7q > :last-child, .framer-VHpXJ .framer-v2bix0 > :last-child, .framer-VHpXJ .framer-122lykq > :last-child, .framer-VHpXJ .framer-1nhbvgj > :last-child, .framer-VHpXJ .framer-vj83mg > :last-child { margin-bottom: 0px; } .framer-VHpXJ .framer-1ymumw2 > *, .framer-VHpXJ .framer-1f5if13 > *, .framer-VHpXJ .framer-do5id8 > *, .framer-VHpXJ .framer-1tq15nt > *, .framer-VHpXJ .framer-1u82pd1 > *, .framer-VHpXJ .framer-1nhbvgj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VHpXJ .framer-k9xdep > *, .framer-VHpXJ .framer-1md06e8 > *, .framer-VHpXJ .framer-ngbrmm > *, .framer-VHpXJ .framer-jbbe7q > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-VHpXJ .framer-1uw1rqk > *, .framer-VHpXJ .framer-1or5trw > *, .framer-VHpXJ .framer-1lriu5z > *, .framer-VHpXJ .framer-v2bix0 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-VHpXJ .framer-18d448o > *, .framer-VHpXJ .framer-v6r2gn > *, .framer-VHpXJ .framer-lvstrt > *, .framer-VHpXJ .framer-122lykq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VHpXJ .framer-111l5wy > *, .framer-VHpXJ .framer-13esh85 > *, .framer-VHpXJ .framer-xsdw8j > *, .framer-VHpXJ .framer-vj83mg > * { margin: 0px; margin-bottom: calc(12.800000190734863px / 2); margin-top: calc(12.800000190734863px / 2); } .framer-VHpXJ .framer-1m7jcly > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-VHpXJ .framer-1ovx57r > *, .framer-VHpXJ .framer-41xvk1 > *, .framer-VHpXJ .framer-14k9hlf > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-VHpXJ .framer-1ovx57r > :first-child, .framer-VHpXJ .framer-41xvk1 > :first-child, .framer-VHpXJ .framer-14k9hlf > :first-child { margin-left: 0px; } .framer-VHpXJ .framer-1ovx57r > :last-child, .framer-VHpXJ .framer-41xvk1 > :last-child, .framer-VHpXJ .framer-14k9hlf > :last-child { margin-right: 0px; } .framer-VHpXJ .framer-1iuhwdb > *, .framer-VHpXJ .framer-y7od9i > * { margin: 0px; margin-bottom: calc(20.80000114440918px / 2); margin-top: calc(20.80000114440918px / 2); } }\",\".framer-VHpXJ.framer-v-1ymvz65 .framer-10ta2iy, .framer-VHpXJ.framer-v-1sc6qux .framer-10ta2iy, .framer-VHpXJ.framer-v-1hpc4xz .framer-10ta2iy { height: 1px; }\",\".framer-VHpXJ.framer-v-1ymvz65 .framer-4onzx4, .framer-VHpXJ.framer-v-1sc6qux .framer-1smt63y, .framer-VHpXJ.framer-v-1hpc4xz .framer-1pyw0bu { height: 2px; }\",\".framer-VHpXJ.framer-v-1hpc4xz .framer-auu3b6 { height: var(--framer-aspect-ratio-supported, 108px); }\",...sharedStyle.css,'.framer-VHpXJ[data-border=\"true\"]::after, .framer-VHpXJ [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 601\n * @framerIntrinsicWidth 358\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KFMHddOYQ\":{\"layout\":[\"fixed\",\"auto\"]},\"jTgemD75o\":{\"layout\":[\"fixed\",\"auto\"]},\"Pzdi8z_Mz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZMlHG0ceK=withCSS(Component,css,\"framer-VHpXJ\");export default FramerZMlHG0ceK;FramerZMlHG0ceK.displayName=\"Mweb Slide B\";FramerZMlHG0ceK.defaultProps={height:601,width:358};addPropertyControls(FramerZMlHG0ceK,{variant:{options:[\"RSrZlfe4G\",\"KFMHddOYQ\",\"jTgemD75o\",\"Pzdi8z_Mz\"],optionTitles:[\"A\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZMlHG0ceK,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZMlHG0ceK\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"601\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"358\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KFMHddOYQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jTgemD75o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pzdi8z_Mz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1emvyib", "args", "onTap69pcvq", "onTapq2nzoj", "onTap1n1onzh", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "RichText2", "Image2", "getLoadingLazyAtYPosition", "Link", "css", "Framere2Xo2u_bE", "withCSS", "e2Xo2u_bE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Component", "Home_default", "React", "title", "titleId", "props", "svgRef", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "Home_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "VideoFonts", "getFonts", "Video", "HeroFonts", "Icon", "VideoControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "videoFile", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qvf5nvoxY", "qSTZJrIuv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapv1exqe", "args", "onTap1dbkt1w", "onTapv9t7sn", "onTapvqi57y", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerHGG1SQru0", "withCSS", "HGG1SQru0_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1cqxw0q", "args", "onTapphq38c", "onTapxsvy7v", "onTap1uhhrjn", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "SVG", "Image2", "getLoadingLazyAtYPosition", "Link", "css", "Framerv8mZY29Jp", "withCSS", "v8mZY29Jp_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapatv321", "args", "onTappocbjr", "onTap1xth8gx", "onTap1c8u4cj", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "Link", "css", "FramerZMlHG0ceK", "withCSS", "ZMlHG0ceK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
