{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/s4Rqy3kwwwYNz7aVD5CM/WjL8g8r4tHvegddZOWpd/qpC0Kiy3j.js", "ssg:https://framerusercontent.com/modules/4JtyLqzzeYjUoaVVjfTw/oAoImaHw5EH1HSPjVInQ/bXXZ6Vas_.js", "ssg:https://framerusercontent.com/modules/DwNVUz3yFHguBigX29i1/A84SkBRhxArkUw0rt7RG/THs8FU_KY.js", "ssg:https://framerusercontent.com/modules/aI6RFuwJ8pZMQIZpeCun/yU5iichv3iodHLtRFmhY/FramerShopOneClickCheckout.js", "ssg:https://framerusercontent.com/modules/1Ums24jIWDFySkHu8g2h/SokwKf7JWECBr1xvpspt/nKPLfdhrm.js", "ssg:https://framerusercontent.com/modules/CH34L8b1k2dJV8TuGD8j/XYYyVPYJseUFlWcSzpQB/uryyJ19X_.js", "ssg:https://framerusercontent.com/modules/LOt2uP9jLp7caoTeT5UE/YAgHhoBII0oZt4z9UO0E/HEvyp2Ctp.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}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(()=>{startTransition(()=>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\",{decoding:\"async\",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\",{decoding:\"async\",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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (ca23763)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iIKCOREyrdlVj6YHf50a/j0QZqzWxbX7BF2gmeger/xZndidUCt.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"wtonqjZ5B\",\"zPZ0UbW6L\"];const serializationHash=\"framer-GR628\";const variantClassNames={wtonqjZ5B:\"framer-v-1171lll\",zPZ0UbW6L:\"framer-v-2ppny3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"wtonqjZ5B\",\"Variant 2\":\"zPZ0UbW6L\"};const getProps=({description,height,icon,id,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,PTopfCbj6:(_ref=title!==null&&title!==void 0?title:props.PTopfCbj6)!==null&&_ref!==void 0?_ref:\"Title\",s6YvzZ4CA:(_ref1=description!==null&&description!==void 0?description:props.s6YvzZ4CA)!==null&&_ref1!==void 0?_ref1:\"Quis leo facilisis dui magnis odio lorem aliquet maecenas mattis.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"wtonqjZ5B\",xSAdnf_Fz:(_ref3=icon!==null&&icon!==void 0?icon:props.xSAdnf_Fz)!==null&&_ref3!==void 0?_ref3:\"House\"};};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,xSAdnf_Fz,PTopfCbj6,s6YvzZ4CA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wtonqjZ5B\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1171lll\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"wtonqjZ5B\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({zPZ0UbW6L:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ir11v4\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"aXGSblWVI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-99426e30-dac1-45d5-8d82-e54e8b042f53, rgb(64, 64, 64))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-ecb1c2b2-92db-498c-b975-e33cdc9f272b, rgb(38, 38, 38))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6jw4fe-container\",layoutDependency:layoutDependency,layoutId:\"bPwox3lwv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:xSAdnf_Fz,id:\"bPwox3lwv\",layoutId:\"bPwox3lwv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r2iruj\",layoutDependency:layoutDependency,layoutId:\"p2aoZ284l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94)))\"},children:\"Title\"})}),className:\"framer-13woqn6\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"b7D0h403k\",style:{\"--extracted-1eung3n\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:PTopfCbj6,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zPZ0UbW6L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94)))\"},children:\"Title\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94)))\"},children:\"Quis leo facilisis dui magnis odio lorem aliquet maecenas mattis.\"})}),className:\"framer-1kd3iya\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uyAKrgs3a\",style:{\"--extracted-r6o4lv\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:s6YvzZ4CA,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GR628.framer-sc5cum, .framer-GR628 .framer-sc5cum { display: block; }\",\".framer-GR628.framer-1171lll { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 288px; }\",\".framer-GR628 .framer-ir11v4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GR628 .framer-6jw4fe-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-GR628 .framer-1r2iruj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GR628 .framer-13woqn6, .framer-GR628 .framer-1kd3iya { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GR628.framer-1171lll, .framer-GR628 .framer-1r2iruj { gap: 0px; } .framer-GR628.framer-1171lll > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-GR628.framer-1171lll > :first-child, .framer-GR628 .framer-1r2iruj > :first-child { margin-top: 0px; } .framer-GR628.framer-1171lll > :last-child, .framer-GR628 .framer-1r2iruj > :last-child { margin-bottom: 0px; } .framer-GR628 .framer-1r2iruj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,'.framer-GR628[data-border=\"true\"]::after, .framer-GR628 [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 149\n * @framerIntrinsicWidth 288\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zPZ0UbW6L\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xSAdnf_Fz\":\"icon\",\"PTopfCbj6\":\"title\",\"s6YvzZ4CA\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqpC0Kiy3j=withCSS(Component,css,\"framer-GR628\");export default FramerqpC0Kiy3j;FramerqpC0Kiy3j.displayName=\"Feature\";FramerqpC0Kiy3j.defaultProps={height:149,width:288};addPropertyControls(FramerqpC0Kiy3j,{variant:{options:[\"wtonqjZ5B\",\"zPZ0UbW6L\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},xSAdnf_Fz:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"},PTopfCbj6:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},s6YvzZ4CA:{defaultValue:\"Quis leo facilisis dui magnis odio lorem aliquet maecenas mattis.\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerqpC0Kiy3j,[{explicitInter:true,fonts:[{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/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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqpC0Kiy3j\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"149\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"xSAdnf_Fz\\\":\\\"icon\\\",\\\"PTopfCbj6\\\":\\\"title\\\",\\\"s6YvzZ4CA\\\":\\\"description\\\"}\",\"framerIntrinsicWidth\":\"288\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zPZ0UbW6L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qpC0Kiy3j.map", "// Generated by Framer (999bb5e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"SSvEaD_qK\",\"eu8FMg6cJ\"];const serializationHash=\"framer-rFWlo\";const variantClassNames={eu8FMg6cJ:\"framer-v-1k8cusa\",SSvEaD_qK:\"framer-v-9ivt4l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"SSvEaD_qK\",Selected:\"eu8FMg6cJ\"};const getProps=({click,cover,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,iUMRHAk5U:click!==null&&click!==void 0?click:props.iUMRHAk5U,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"SSvEaD_qK\",xRALwOhFA:cover!==null&&cover!==void 0?cover:props.xRALwOhFA};};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,xRALwOhFA,iUMRHAk5U,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SSvEaD_qK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1p185b=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(iUMRHAk5U){const res=await iUMRHAk5U(...args);if(res===false)return false;}});const ref1=React.useRef(null);const visible=isSet(xRALwOhFA);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9ivt4l\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SSvEaD_qK\",onTap:onTap1p185b,ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({eu8FMg6cJ:{\"data-framer-name\":\"Selected\"}},baseVariant,gestureVariant),children:visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(xRALwOhFA)},className:\"framer-18cjzkw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nfjsWd6qv\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rFWlo.framer-1s7exm7, .framer-rFWlo .framer-1s7exm7 { display: block; }\",\".framer-rFWlo.framer-9ivt4l { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: flex-end; padding: 0px; position: relative; width: 200px; }\",\".framer-rFWlo .framer-18cjzkw { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rFWlo.framer-9ivt4l { gap: 0px; } .framer-rFWlo.framer-9ivt4l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rFWlo.framer-9ivt4l > :first-child { margin-left: 0px; } .framer-rFWlo.framer-9ivt4l > :last-child { margin-right: 0px; } }\",\".framer-rFWlo.framer-v-1k8cusa.framer-9ivt4l { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eu8FMg6cJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xRALwOhFA\":\"cover\",\"iUMRHAk5U\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbXXZ6Vas_=withCSS(Component,css,\"framer-rFWlo\");export default FramerbXXZ6Vas_;FramerbXXZ6Vas_.displayName=\"CMS/Image\";FramerbXXZ6Vas_.defaultProps={height:200,width:200};addPropertyControls(FramerbXXZ6Vas_,{variant:{options:[\"SSvEaD_qK\",\"eu8FMg6cJ\"],optionTitles:[\"Default\",\"Selected\"],title:\"Variant\",type:ControlType.Enum},xRALwOhFA:{title:\"Cover\",type:ControlType.ResponsiveImage},iUMRHAk5U:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerbXXZ6Vas_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbXXZ6Vas_\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eu8FMg6cJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"200\",\"framerVariables\":\"{\\\"xRALwOhFA\\\":\\\"cover\\\",\\\"iUMRHAk5U\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bXXZ6Vas_.map", "// Generated by Framer (4c8d0fb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CMSImage from\"https://framerusercontent.com/modules/4JtyLqzzeYjUoaVVjfTw/oAoImaHw5EH1HSPjVInQ/bXXZ6Vas_.js\";import Label from\"https://framerusercontent.com/modules/348nidfwvVMz13Hyg4v8/CiXhmYHJodyCQzG5PJd6/TIqjCbrVl.js\";const CMSImageFonts=getFonts(CMSImage);const LabelFonts=getFonts(Label);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"R77WxUvrF\",\"V_uIUOS5V\",\"QI_VPGLTN\",\"USzTvu85N\"];const serializationHash=\"framer-tOILv\";const variantClassNames={QI_VPGLTN:\"framer-v-1w51p9r\",R77WxUvrF:\"framer-v-i6oqzb\",USzTvu85N:\"framer-v-ij4h21\",V_uIUOS5V:\"framer-v-bexxk9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Image 1\":\"R77WxUvrF\",\"Image 2\":\"V_uIUOS5V\",\"Image 3\":\"QI_VPGLTN\",\"Image 4\":\"USzTvu85N\"};const getProps=({height,id,image1,image2,image3,image4,save,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,EuYA_d7iS:image4!==null&&image4!==void 0?image4:props.EuYA_d7iS,NdAPPIZZl:image1!==null&&image1!==void 0?image1:props.NdAPPIZZl,P2KqmmNNM:(_ref=save!==null&&save!==void 0?save:props.P2KqmmNNM)!==null&&_ref!==void 0?_ref:\"Save 40%\",Qv6SMqzLw:image2!==null&&image2!==void 0?image2:props.Qv6SMqzLw,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"R77WxUvrF\",x3VfjJs75:image3!==null&&image3!==void 0?image3:props.x3VfjJs75};};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,NdAPPIZZl,Qv6SMqzLw,x3VfjJs75,EuYA_d7iS,P2KqmmNNM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R77WxUvrF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const iUMRHAk5U9z1byl=activeVariantCallback(async(...args)=>{setVariant(\"R77WxUvrF\");});const iUMRHAk5U1opz76r=activeVariantCallback(async(...args)=>{setVariant(\"V_uIUOS5V\");});const iUMRHAk5U1kerw9o=activeVariantCallback(async(...args)=>{setVariant(\"QI_VPGLTN\");});const iUMRHAk5Uzkm56x=activeVariantCallback(async(...args)=>{setVariant(\"USzTvu85N\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-i6oqzb\",className,classNames),\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"R77WxUvrF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({QI_VPGLTN:{\"data-framer-name\":\"Image 3\"},USzTvu85N:{\"data-framer-name\":\"Image 4\"},V_uIUOS5V:{\"data-framer-name\":\"Image 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||704)-0-416)/2+0+0),...addPropertyOverrides({QI_VPGLTN:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+0+0)},USzTvu85N:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nupsih-container\",layoutDependency:layoutDependency,layoutId:\"diYWC9PBy-container\",children:/*#__PURE__*/_jsx(CMSImage,{height:\"100%\",id:\"diYWC9PBy\",layoutId:\"diYWC9PBy\",style:{height:\"100%\",width:\"100%\"},variant:\"SSvEaD_qK\",width:\"100%\",xRALwOhFA:toResponsiveImage(NdAPPIZZl),...addPropertyOverrides({QI_VPGLTN:{xRALwOhFA:toResponsiveImage(x3VfjJs75)},USzTvu85N:{xRALwOhFA:toResponsiveImage(EuYA_d7iS)},V_uIUOS5V:{xRALwOhFA:toResponsiveImage(Qv6SMqzLw)}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+23,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1eyz30g-container\",layoutDependency:layoutDependency,layoutId:\"PP47Y8BCF-container\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"PP47Y8BCF\",layoutId:\"PP47Y8BCF\",q2lyywsmd:P2KqmmNNM,variant:\"bvclgxmS8\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-52hsut\",layoutDependency:layoutDependency,layoutId:\"G8Kv_PXoR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||704)-0-416)/2+200+16)+0,...addPropertyOverrides({QI_VPGLTN:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+200+16)+0},USzTvu85N:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+200+16)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v1qj3e-container\",layoutDependency:layoutDependency,layoutId:\"peKRNvMkF-container\",style:{opacity:1},variants:{QI_VPGLTN:{opacity:.5},USzTvu85N:{opacity:.5},V_uIUOS5V:{opacity:.5}},children:/*#__PURE__*/_jsx(CMSImage,{height:\"100%\",id:\"peKRNvMkF\",layoutId:\"peKRNvMkF\",style:{height:\"100%\",width:\"100%\"},variant:\"SSvEaD_qK\",width:\"100%\",xRALwOhFA:toResponsiveImage(NdAPPIZZl),...addPropertyOverrides({QI_VPGLTN:{iUMRHAk5U:iUMRHAk5U9z1byl},USzTvu85N:{iUMRHAk5U:iUMRHAk5U9z1byl},V_uIUOS5V:{iUMRHAk5U:iUMRHAk5U9z1byl}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||704)-0-416)/2+200+16)+0,...addPropertyOverrides({QI_VPGLTN:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+200+16)+0},USzTvu85N:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+200+16)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jah83h-container\",layoutDependency:layoutDependency,layoutId:\"dZm0C_WYo-container\",style:{opacity:.5},variants:{V_uIUOS5V:{opacity:1}},children:/*#__PURE__*/_jsx(CMSImage,{height:\"100%\",id:\"dZm0C_WYo\",iUMRHAk5U:iUMRHAk5U1opz76r,layoutId:\"dZm0C_WYo\",style:{height:\"100%\",width:\"100%\"},variant:\"SSvEaD_qK\",width:\"100%\",xRALwOhFA:toResponsiveImage(Qv6SMqzLw)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||704)-0-416)/2+200+16)+0,...addPropertyOverrides({QI_VPGLTN:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+200+16)+0},USzTvu85N:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+200+16)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kgzgke-container\",layoutDependency:layoutDependency,layoutId:\"UDdkY_YKQ-container\",style:{opacity:.5},variants:{QI_VPGLTN:{opacity:1}},children:/*#__PURE__*/_jsx(CMSImage,{height:\"100%\",id:\"UDdkY_YKQ\",iUMRHAk5U:iUMRHAk5U1kerw9o,layoutId:\"UDdkY_YKQ\",style:{height:\"100%\",width:\"100%\"},variant:\"SSvEaD_qK\",width:\"100%\",xRALwOhFA:toResponsiveImage(x3VfjJs75)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||704)-0-416)/2+200+16)+0,...addPropertyOverrides({QI_VPGLTN:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+200+16)+0},USzTvu85N:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-416)/2+200+16)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1zkv24-container\",layoutDependency:layoutDependency,layoutId:\"BON8hbQde-container\",style:{opacity:.5},variants:{USzTvu85N:{opacity:1}},children:/*#__PURE__*/_jsx(CMSImage,{height:\"100%\",id:\"BON8hbQde\",iUMRHAk5U:iUMRHAk5Uzkm56x,layoutId:\"BON8hbQde\",style:{height:\"100%\",width:\"100%\"},variant:\"SSvEaD_qK\",width:\"100%\",xRALwOhFA:toResponsiveImage(EuYA_d7iS)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tOILv.framer-fxaiuy, .framer-tOILv .framer-fxaiuy { display: block; }\",\".framer-tOILv.framer-i6oqzb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 560px; }\",\".framer-tOILv .framer-nupsih-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 560px); position: relative; width: 100%; }\",\".framer-tOILv .framer-1eyz30g-container { flex: none; height: auto; left: 24px; position: absolute; top: 23px; width: auto; z-index: 1; }\",\".framer-tOILv .framer-52hsut { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tOILv .framer-1v1qj3e-container, .framer-tOILv .framer-1jah83h-container, .framer-tOILv .framer-kgzgke-container, .framer-tOILv .framer-1zkv24-container { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 128px); position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tOILv.framer-i6oqzb, .framer-tOILv .framer-52hsut { gap: 0px; } .framer-tOILv.framer-i6oqzb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-tOILv.framer-i6oqzb > :first-child { margin-top: 0px; } .framer-tOILv.framer-i6oqzb > :last-child { margin-bottom: 0px; } .framer-tOILv .framer-52hsut > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-tOILv .framer-52hsut > :first-child { margin-left: 0px; } .framer-tOILv .framer-52hsut > :last-child { margin-right: 0px; } }\",\".framer-tOILv.framer-v-1w51p9r .framer-nupsih-container, .framer-tOILv.framer-v-1w51p9r .framer-1v1qj3e-container, .framer-tOILv.framer-v-1w51p9r .framer-1jah83h-container, .framer-tOILv.framer-v-1w51p9r .framer-kgzgke-container, .framer-tOILv.framer-v-1w51p9r .framer-1zkv24-container, .framer-tOILv.framer-v-ij4h21 .framer-nupsih-container, .framer-tOILv.framer-v-ij4h21 .framer-1v1qj3e-container, .framer-tOILv.framer-v-ij4h21 .framer-1jah83h-container, .framer-tOILv.framer-v-ij4h21 .framer-kgzgke-container, .framer-tOILv.framer-v-ij4h21 .framer-1zkv24-container { height: var(--framer-aspect-ratio-supported, 200px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 704\n * @framerIntrinsicWidth 560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"V_uIUOS5V\":{\"layout\":[\"fixed\",\"auto\"]},\"QI_VPGLTN\":{\"layout\":[\"fixed\",\"auto\"]},\"USzTvu85N\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NdAPPIZZl\":\"image1\",\"Qv6SMqzLw\":\"image2\",\"x3VfjJs75\":\"image3\",\"EuYA_d7iS\":\"image4\",\"P2KqmmNNM\":\"save\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTHs8FU_KY=withCSS(Component,css,\"framer-tOILv\");export default FramerTHs8FU_KY;FramerTHs8FU_KY.displayName=\"CMS / Image Previewer\";FramerTHs8FU_KY.defaultProps={height:704,width:560};addPropertyControls(FramerTHs8FU_KY,{variant:{options:[\"R77WxUvrF\",\"V_uIUOS5V\",\"QI_VPGLTN\",\"USzTvu85N\"],optionTitles:[\"Image 1\",\"Image 2\",\"Image 3\",\"Image 4\"],title:\"Variant\",type:ControlType.Enum},NdAPPIZZl:{title:\"Image 1\",type:ControlType.ResponsiveImage},Qv6SMqzLw:{title:\"Image 2\",type:ControlType.ResponsiveImage},x3VfjJs75:{title:\"Image 3\",type:ControlType.ResponsiveImage},EuYA_d7iS:{title:\"Image 4\",type:ControlType.ResponsiveImage},P2KqmmNNM:{defaultValue:\"Save 40%\",displayTextArea:false,title:\"Save\",type:ControlType.String}});addFonts(FramerTHs8FU_KY,[{explicitInter:true,fonts:[]},...CMSImageFonts,...LabelFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTHs8FU_KY\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"NdAPPIZZl\\\":\\\"image1\\\",\\\"Qv6SMqzLw\\\":\\\"image2\\\",\\\"x3VfjJs75\\\":\\\"image3\\\",\\\"EuYA_d7iS\\\":\\\"image4\\\",\\\"P2KqmmNNM\\\":\\\"save\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V_uIUOS5V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QI_VPGLTN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"USzTvu85N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"704\",\"framerIntrinsicWidth\":\"560\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";export function FramerShopCheckout({webhookUrl,productID,productName,productPrice,buttonBackgroundColor,buttonTextColor,buttonFontSize,buttonFontFamily,buttonFontWeight,buttonPadding,buttonBorderRadius,showBorders,buttonBorderColor,buttonBorderWidth,buttonText,buttonTopLeftRadius,buttonTopRightRadius,buttonBottomRightRadius,buttonBottomLeftRadius,paddingTop,paddingRight,paddingBottom,paddingLeft,isBorderRadiusMixed,isPaddingMixed}){const buttonStyle={display:\"flex\",justifyContent:\"center\",alignItems:\"center\",backgroundColor:buttonBackgroundColor,color:buttonTextColor,fontSize:`${buttonFontSize}px`,fontFamily:buttonFontFamily,fontWeight:buttonFontWeight,borderRadius:isBorderRadiusMixed?`${buttonTopLeftRadius}px ${buttonTopRightRadius}px ${buttonBottomRightRadius}px ${buttonBottomLeftRadius}px`:`${buttonBorderRadius}px`,padding:isPaddingMixed?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${buttonPadding}px`,cursor:\"pointer\",border:showBorders?`${buttonBorderWidth}px solid ${buttonBorderColor}`:\"none\",width:\"100%\"};const handlePayment=async()=>{const lineItems=[{id:String(productID),quantity:1,price:Number(productPrice),name:String(productName)}];console.log(\"Line item to send:\",lineItems);try{const response=await fetch(webhookUrl,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({lineItems:lineItems})});const data=await response.json();if(response.ok&&data.success&&data.url){// Redirect to the url property\nwindow.location.href=data.url;}else{console.error(\"Error from webhook:\",data);alert(\"An error occurred. Please try again.\");}}catch(error){console.error(\"Network or server error:\",error);alert(\"An error occurred. Please try again.\");}};return /*#__PURE__*/_jsx(\"button\",{style:buttonStyle,onClick:handlePayment,children:buttonText});}FramerShopCheckout.defaultProps={webhookUrl:\"\",productID:\"\",price:\"\",productName:\"\",buttonBackgroundColor:\"#000000\",buttonTextColor:\"#FFFFFF\",buttonFontSize:16,buttonFontFamily:\"Inter\",buttonFontWeight:\"400\",buttonPadding:10,buttonBorderRadius:10,showBorders:false,buttonBorderColor:\"#000000\",buttonBorderWidth:1,buttonText:\"CHECKOUT\"};addPropertyControls(FramerShopCheckout,{webhookUrl:{title:\"Webhook URL\",type:ControlType.String},productID:{title:\"Product ID\",type:ControlType.String},productName:{title:\"Product Name\",type:ControlType.String},productPrice:{title:\"Product Price\",type:ControlType.Number},buttonText:{type:ControlType.String,title:\"Text\",defaultValue:\"Checkout\"},buttonBackgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"#000000\"},buttonTextColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#FFFFFF\"},buttonFontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:16,min:8,max:100,unit:\"px\",displayStepper:true},buttonFontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Inter\"},buttonFontWeight:{type:ControlType.Enum,title:\"Font Weight\",options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],optionTitles:[\"Thin\",\"Extra Light\",\"Light\",\"Regular\",\"Medium\",\"Semi Bold\",\"Bold\",\"Extra Bold\",\"Black\"],defaultValue:\"400\"},buttonPadding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:10,toggleKey:\"isPaddingMixed\",toggleTitles:[\"Uniform\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonBorderRadius:{type:ControlType.FusedNumber,title:\"Border Radius\",defaultValue:10,toggleKey:\"isBorderRadiusMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"buttonTopLeftRadius\",\"buttonTopRightRadius\",\"buttonBottomRightRadius\",\"buttonBottomLeftRadius\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},showBorders:{type:ControlType.Boolean,title:\"Show Borders\",defaultValue:false},buttonBorderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#000000\",hidden:({showBorders})=>!showBorders},buttonBorderWidth:{type:ControlType.Number,title:\"Border Width\",defaultValue:1,min:0,max:20,step:1,displayStepper:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"FramerShopCheckout\":{\"type\":\"reactComponent\",\"name\":\"FramerShopCheckout\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerShopOneClickCheckout.map", "// Generated by Framer (f318921)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-0PyTx .framer-styles-preset-5m0sla:not(.rich-text-wrapper), .framer-0PyTx .framer-styles-preset-5m0sla.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 30px; --framer-paragraph-spacing: 13px; --framer-text-alignment: start; --framer-text-color: #ebebeb; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-0PyTx\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf240c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-s6sZ3 .framer-styles-preset-1gnaw95:not(.rich-text-wrapper), .framer-s6sZ3 .framer-styles-preset-1gnaw95.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, #ffffff); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, #ffffff); --framer-link-text-decoration: underline; }\"];export const className=\"framer-s6sZ3\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,resolvePageScope,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Pattern from\"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";import SenjaWidget from\"https://framerusercontent.com/modules/ckGZj3yYY0eOgQQMpSdE/2IF4Ix0E6KE5rfpejr3L/SenjaWidget.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import HeaderInverse from\"#framer/local/canvasComponent/CIyaBC8JU/CIyaBC8JU.js\";import HeroImage from\"#framer/local/canvasComponent/Djd3KzfPW/Djd3KzfPW.js\";import HomepageUsecasesTicker from\"#framer/local/canvasComponent/e6nPuX_sC/e6nPuX_sC.js\";import ProductThumbnailDefaultHighlight from\"#framer/local/canvasComponent/GhW4S0L9P/GhW4S0L9P.js\";import Logos from\"#framer/local/canvasComponent/mVLJMDSbP/mVLJMDSbP.js\";import SocialProofAvatarsStars from\"#framer/local/canvasComponent/n9WlBNdQU/n9WlBNdQU.js\";import ButtonArrow from\"#framer/local/canvasComponent/Pb87phZi_/Pb87phZi_.js\";import Feature from\"#framer/local/canvasComponent/qpC0Kiy3j/qpC0Kiy3j.js\";import Basket from\"#framer/local/canvasComponent/RDU5986bK/RDU5986bK.js\";import Footer from\"#framer/local/canvasComponent/RwxZLcIgs/RwxZLcIgs.js\";import CMSImagePreviewer from\"#framer/local/canvasComponent/THs8FU_KY/THs8FU_KY.js\";import Label from\"#framer/local/canvasComponent/TIqjCbrVl/TIqjCbrVl.js\";import{FramerShopAddToCart}from\"#framer/local/codeFile/ubKEylu/FramerShopAddToCart.js\";import{FramerShopCart}from\"#framer/local/codeFile/BegYgXm/FramerShopCart.js\";import{FramerShopCheckout as FramerShopCheckout1}from\"#framer/local/codeFile/kF0y3US/FramerShopCheckouttoMake.js\";import{FramerShopCheckout}from\"#framer/local/codeFile/TDt4hKy/FramerShopOneClickCheckout.js\";import StoreProducts,{enumToDisplayNameFunctions}from\"#framer/local/collection/oipdULEIc/oipdULEIc.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle3 from\"#framer/local/css/et4INEFqK/et4INEFqK.js\";import*as sharedStyle1 from\"#framer/local/css/h4jVEYDkM/h4jVEYDkM.js\";import*as sharedStyle7 from\"#framer/local/css/HPCNkCHCb/HPCNkCHCb.js\";import*as sharedStyle5 from\"#framer/local/css/hUF4ljaQZ/hUF4ljaQZ.js\";import*as sharedStyle9 from\"#framer/local/css/i6r0kI2sg/i6r0kI2sg.js\";import*as sharedStyle4 from\"#framer/local/css/lufySrkWF/lufySrkWF.js\";import*as sharedStyle16 from\"#framer/local/css/mvXlq_92F/mvXlq_92F.js\";import*as sharedStyle10 from\"#framer/local/css/nKPLfdhrm/nKPLfdhrm.js\";import*as sharedStyle15 from\"#framer/local/css/NWkCScbQS/NWkCScbQS.js\";import*as sharedStyle6 from\"#framer/local/css/OCT8uTqJ5/OCT8uTqJ5.js\";import*as sharedStyle11 from\"#framer/local/css/s4WM_kJAO/s4WM_kJAO.js\";import*as sharedStyle14 from\"#framer/local/css/Syr2lEaWR/Syr2lEaWR.js\";import*as sharedStyle8 from\"#framer/local/css/szJtSwdtx/szJtSwdtx.js\";import*as sharedStyle13 from\"#framer/local/css/uryyJ19X_/uryyJ19X_.js\";import*as sharedStyle12 from\"#framer/local/css/xeExPKBch/xeExPKBch.js\";import*as sharedStyle2 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/HEvyp2Ctp/HEvyp2Ctp.js\";const BasketFonts=getFonts(Basket);const FramerShopCartFonts=getFonts(FramerShopCart);const PhosphorFonts=getFonts(Phosphor);const SearchFonts=getFonts(Search);const HeaderInverseFonts=getFonts(HeaderInverse);const LabelFonts=getFonts(Label);const MaterialFonts=getFonts(Material);const CMSImagePreviewerFonts=getFonts(CMSImagePreviewer);const ContainerWithFX=withFX(Container);const CarouselFonts=getFonts(Carousel);const EmbedFonts=getFonts(Embed);const FramerShopCheckoutFonts=getFonts(FramerShopCheckout);const FramerShopAddToCartFonts=getFonts(FramerShopAddToCart);const FeatureFonts=getFonts(Feature);const HomepageUsecasesTickerFonts=getFonts(HomepageUsecasesTicker);const SenjaWidgetFonts=getFonts(SenjaWidget);const FramerShopCheckout1Fonts=getFonts(FramerShopCheckout1);const LogosFonts=getFonts(Logos);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonArrowFonts=getFonts(ButtonArrow);const ProductThumbnailDefaultHighlightFonts=getFonts(ProductThumbnailDefaultHighlight);const SocialProofAvatarsStarsFonts=getFonts(SocialProofAvatarsStars);const HeroImageFonts=getFonts(HeroImage);const PatternFonts=getFonts(Pattern);const FooterFonts=getFonts(Footer);const breakpoints={d9gr5gTZD:\"(min-width: 810px) and (max-width: 1199px)\",M5wtqChDr:\"(max-width: 809px)\",qDNc5yMHi:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-s2ath\";const variantClassNames={d9gr5gTZD:\"framer-v-10ak5a6\",M5wtqChDr:\"framer-v-cjyopb\",qDNc5yMHi:\"framer-v-1h107kj\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const negate=value=>{return!value;};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const transition2={delay:0,duration:1,ease:[.5,1,.89,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-20};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition3={delay:.5,duration:.5,ease:[.5,1,.89,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"qDNc5yMHi\",Phone:\"M5wtqChDr\",Tablet:\"d9gr5gTZD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qDNc5yMHi\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"HEvyp2Ctp\",data:StoreProducts,type:\"Collection\"},select:[{collection:\"HEvyp2Ctp\",name:\"QYeNQANjw\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"kTaaausLL\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"EFJdLES8y\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"EANd0ilvK\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"v1blpK_3o\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"J0rtZY62Z\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"LfDtojfzd\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"IxZnOMjZA\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"ySkvuGpwA\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"wmwA4qjUN\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"JZk5XJY2I\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"v46qfy5ee\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"UqOgA4hlm\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"xPpUNjva5\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"bUpkWzAai\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"xh0x3r9wO\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"m4AZjZpST\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"CZ6etWyzE\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"fuZ0UsSK3\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"NYrVnEYEw\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"LfVYeMziw\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"oXjClqL_t\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"K42jMRZdh\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"LKgdGCNqM\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"GeQyJWIF2\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"IpBuh0lo4\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"rPcSmKQ_M\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"gtpSfb3zM\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"ZLy61Z3_5\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"XWr6bZDok\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"biZWWECKU\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"JPUxydWwG\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"J8qlTFBU4\",type:\"Identifier\"},{collection:\"HEvyp2Ctp\",name:\"ftdBGD90g\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"HEvyp2Ctp\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,J0rtZY62Z=getFromCurrentRouteData(\"J0rtZY62Z\"),QYeNQANjw=getFromCurrentRouteData(\"QYeNQANjw\")??\"\",IxZnOMjZA=getFromCurrentRouteData(\"IxZnOMjZA\")??\"\",bUpkWzAai=getFromCurrentRouteData(\"bUpkWzAai\"),m4AZjZpST=getFromCurrentRouteData(\"m4AZjZpST\"),xh0x3r9wO=getFromCurrentRouteData(\"xh0x3r9wO\"),CZ6etWyzE=getFromCurrentRouteData(\"CZ6etWyzE\"),EFJdLES8y=getFromCurrentRouteData(\"EFJdLES8y\")??\"\",fuZ0UsSK3=getFromCurrentRouteData(\"fuZ0UsSK3\"),NYrVnEYEw=getFromCurrentRouteData(\"NYrVnEYEw\"),LfVYeMziw=getFromCurrentRouteData(\"LfVYeMziw\"),xPpUNjva5=getFromCurrentRouteData(\"xPpUNjva5\"),v1blpK_3o=getFromCurrentRouteData(\"v1blpK_3o\")??0,EANd0ilvK=getFromCurrentRouteData(\"EANd0ilvK\")??0,ySkvuGpwA=getFromCurrentRouteData(\"ySkvuGpwA\")??\"\",kTaaausLL=getFromCurrentRouteData(\"kTaaausLL\")??\"\",lJIbfLIOzv9Uej3pB5,wmwA4qjUN=getFromCurrentRouteData(\"wmwA4qjUN\")??\"\",oXjClqL_t=getFromCurrentRouteData(\"oXjClqL_t\"),K42jMRZdh=getFromCurrentRouteData(\"K42jMRZdh\"),LKgdGCNqM=getFromCurrentRouteData(\"LKgdGCNqM\"),GeQyJWIF2=getFromCurrentRouteData(\"GeQyJWIF2\"),IpBuh0lo4=getFromCurrentRouteData(\"IpBuh0lo4\"),rPcSmKQ_M=getFromCurrentRouteData(\"rPcSmKQ_M\"),gtpSfb3zM=getFromCurrentRouteData(\"gtpSfb3zM\"),ZLy61Z3_5=getFromCurrentRouteData(\"ZLy61Z3_5\"),XWr6bZDok=getFromCurrentRouteData(\"XWr6bZDok\"),biZWWECKU=getFromCurrentRouteData(\"biZWWECKU\"),JPUxydWwG=getFromCurrentRouteData(\"JPUxydWwG\"),J8qlTFBU4=getFromCurrentRouteData(\"J8qlTFBU4\"),ftdBGD90g=getFromCurrentRouteData(\"ftdBGD90g\"),JZk5XJY2I=getFromCurrentRouteData(\"JZk5XJY2I\")??\"\",LfDtojfzd=getFromCurrentRouteData(\"LfDtojfzd\")??0,v46qfy5ee=getFromCurrentRouteData(\"v46qfy5ee\")??\"\",UqOgA4hlm=getFromCurrentRouteData(\"UqOgA4hlm\")??\"\",IcwosRbGPOSjJ5uEOg,bUpkWzAaiOSjJ5uEOg,J0rtZY62ZOSjJ5uEOg,QYeNQANjwOSjJ5uEOg,EANd0ilvKOSjJ5uEOg,v1blpK_3oOSjJ5uEOg,xh0x3r9wOOSjJ5uEOg,m4AZjZpSTOSjJ5uEOg,CZ6etWyzEOSjJ5uEOg,EFJdLES8yOSjJ5uEOg,vAJiJiH9QOSjJ5uEOg,idOSjJ5uEOg,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Ez8vEH8dc\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"JGAae3Jv6\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"UrsZVCS3i\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"M5wtqChDr\")return false;return true;};const visible=equals(J0rtZY62Z,\"UoXfyiU8I\");const visible1=equals(J0rtZY62Z,\"EW3R70cRt\");const visible2=negate(equals(J0rtZY62Z,\"UoXfyiU8I\"));const visible3=isSet(xh0x3r9wO);const visible4=isSet(m4AZjZpST);const visible5=isSet(CZ6etWyzE);const visible6=isSet(fuZ0UsSK3);const visible7=isSet(NYrVnEYEw);const visible8=isSet(LfVYeMziw);const activeLocaleCode=useLocaleCode();const textContent=numberToString(v1blpK_3o,{currency:\"USD\",currencyDisplay:\"symbol\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode);const textContent1=numberToString(EANd0ilvK,{currency:\"USD\",currencyDisplay:\"symbol\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"M5wtqChDr\")return true;return false;};const visible9=isSet(oXjClqL_t);const visible10=isSet(K42jMRZdh);const visible11=isSet(LKgdGCNqM);const visible12=isSet(GeQyJWIF2);const visible13=isSet(IpBuh0lo4);const visible14=isSet(rPcSmKQ_M);const visible15=isSet(gtpSfb3zM);const visible16=isSet(ZLy61Z3_5);const visible17=equals(J0rtZY62Z,\"pyo79WSs3\");const isDisplayed2=()=>{if(!isBrowser())return true;if([\"d9gr5gTZD\",\"M5wtqChDr\"].includes(baseVariant))return false;return true;};const visible18=isSet(XWr6bZDok);const visible19=isSet(biZWWECKU);const visible20=isSet(JPUxydWwG);const visible21=isSet(J8qlTFBU4);const visible22=isSet(ftdBGD90g);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"d9gr5gTZD\",\"M5wtqChDr\"].includes(baseVariant))return true;return false;};const elementId3=useRouteElementId(\"Vlg2AJXI9\");const ref4=React.useRef(null);const textContent2=suffix(JZk5XJY2I,\" Words\");const textContent3=suffix(numberToString(LfDtojfzd,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),\" Products\");const textContent4=suffix(v46qfy5ee,\" Pages\");const textContent5=enumToDisplayNameFunctions[\"J0rtZY62Z\"]?.(J0rtZY62Z,activeLocale);const textContent6=suffix(UqOgA4hlm,\" MB\");const elementId4=useRouteElementId(\"OxDW4Dw2j\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"hPS1mIT9h\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"qDNc5yMHi\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-e54a4610-5c2c-47f3-80e2-24eeafdc975f, rgb(23, 23, 23)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1h107kj\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ofrqj-container\",isAuthoredByUser:true,nodeId:\"wqaTkQl5D\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(FramerShopCart,{background:\"rgb(35, 35, 35)\",cartPanelWidth:390,closeButtonBackgroundColor:\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\",closeButtonIconColor:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",closeButtonIconSize:32,counterBackground:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",counterSize:20,counterTextColor:\"rgb(255, 255, 255)\",height:\"100%\",iconColor:\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\",iconSize:20,id:\"wqaTkQl5D\",layoutId:\"wqaTkQl5D\",radius:500,style:{height:\"100%\",width:\"100%\"},width:\"100%\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:324,width:\"390px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zib0br-container\",inComponentSlot:true,nodeId:\"CC2kLV4v0\",rendersWithMotion:true,scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Basket,{height:\"100%\",id:\"CC2kLV4v0\",layoutId:\"CC2kLV4v0\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-21uw0l\",\"data-framer-name\":\"Main Wrapper\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1r71i72\",\"data-framer-name\":\"Section Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ciugyb\",\"data-framer-name\":\"Search Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iplrn0\",\"data-framer-name\":\"Fake Search Bar\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lr50gl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"B4wx6T9O_\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"MagnifyingGlass\",id:\"B4wx6T9O_\",layoutId:\"B4wx6T9O_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9hn0kq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Avuo9lBbE\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",iconSize:24,iconType:\"default\",id:\"Avuo9lBbE\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"text\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500},placeholderOptions:{placeholderColor:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",placeholderText:\"Search\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"Avuo9lBbE\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:16,heightIsStatic:true,heightTransition:{damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"13px\",fontStyle:\"normal\"},subtitleType:\"description\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},urlScope:resolvePageScope({webPageId:\"HEvyp2Ctp\"},router),width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.625em\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:\"Search\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.625em\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:\"Search\"})}),className:\"framer-oqce3z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:138,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-175v84k-container\",nodeId:\"LyCbg52r7\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{variant:\"eD1DoVbnj\"},M5wtqChDr:{variant:\"N1qEbVfDD\"}},children:/*#__PURE__*/_jsx(HeaderInverse,{height:\"100%\",id:\"LyCbg52r7\",layoutId:\"LyCbg52r7\",style:{width:\"100%\"},variant:\"CC_BRJtdi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vt25ht\",\"data-framer-name\":\"H Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r5ro8w\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nzyzbh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{y:(componentViewport?.y||0)+0+0+0+0+0+170+0+0+0+0+0},M5wtqChDr:{y:(componentViewport?.y||0)+0+0+0+0+0+161+0+0+22+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+0+0+186+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s7qn4t-container\",nodeId:\"LlP4pTFvL\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"LlP4pTFvL\",layoutId:\"LlP4pTFvL\",q2lyywsmd:enumToDisplayNameFunctions[\"J0rtZY62Z\"]?.(J0rtZY62Z,activeLocale),variant:\"bvclgxmS8\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12g9rg0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1zixgu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"Starting 6-Figure Business\"})}),className:\"framer-nbljms\",\"data-framer-name\":\"Unleashing the Magic of Design\",fonts:[\"Inter\"],text:QYeNQANjw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",style:{\"--framer-text-color\":\"var(--token-2fd58cfe-5ad8-4c77-b978-fbd0588f0aa4, rgb(139, 139, 139))\"},children:\"This PLR Ebook provides essential strategies for starting a successful online business in 30 days, helping to avoid common mistakes and achieve success.\"})}),className:\"framer-h4wfa5\",fonts:[\"Inter\"],text:IxZnOMjZA,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kuyns8\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qr3uvj\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rpwvar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t3fnff\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y3y2in\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1psjshh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"G2CyHt46l\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Pen\",id:\"G2CyHt46l\",layoutId:\"G2CyHt46l\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"Rebrand, Edit, Sell, or Use\"})}),className:\"framer-10y73oa\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1noearp\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vqbvec\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r9kt4x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OwgRynR5X\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"OwgRynR5X\",layoutId:\"OwgRynR5X\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"Premium Quality\"})}),className:\"framer-12vd4ac\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aakbz3\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tmt0fu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s6eya0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"azP6srb8X\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Repeat\",id:\"azP6srb8X\",layoutId:\"azP6srb8X\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"Up To Date\"})}),className:\"framer-183b8m1\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o98iqe\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qiewnb\",\"data-framer-name\":\"Background Image\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0),pixelHeight:486,pixelWidth:640,sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,...toResponsiveImage(bUpkWzAai)},className:\"framer-71ss9v\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rors3c\",\"data-framer-name\":\"Gradient\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q7ybpd\",\"data-framer-name\":\"Wrapper\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xyua18\",\"data-framer-name\":\"Product\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpmyb8\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QlwK99wTu\"},motionChild:true,nodeId:\"FVk1I7a16\",openInNewTab:false,scopeId:\"HEvyp2Ctp\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-9c5wnd\",\"data-styles-preset\":\"et4INEFqK\",children:\"Store\"})})})}),className:\"framer-6ijrm8 hidden-cjyopb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1phcq80-container hidden-cjyopb\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"L5AamHJ3u\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"L5AamHJ3u\",layoutId:\"L5AamHJ3u\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d6gWf9e6m\"},motionChild:true,nodeId:\"bdjqJ1EBn\",openInNewTab:false,scopeId:\"HEvyp2Ctp\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-9c5wnd\",\"data-styles-preset\":\"et4INEFqK\",children:\"All Products\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d6gWf9e6m\"},motionChild:true,nodeId:\"bdjqJ1EBn\",openInNewTab:false,scopeId:\"HEvyp2Ctp\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-9c5wnd\",\"data-styles-preset\":\"et4INEFqK\",children:\"All Products\"})})})}),className:\"framer-130lk6k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9uewvc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fkt8O5zxO\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"fkt8O5zxO\",layoutId:\"fkt8O5zxO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"Become Creative Genius\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"Become Creative Genius\"})}),className:\"framer-16uct1c\",fonts:[\"Inter\"],text:QYeNQANjw,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hpp2ak\",\"data-framer-name\":\"Upper Product Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19503t0\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{width:`max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px)`,y:(componentViewport?.y||0)+0+0+0+631.8+48+0+0+72+0+0+-364},M5wtqChDr:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+710.8+32+0+0+72+0+0+0+-364}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:`max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+0+0+72+0+0+-364,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10l0rt6-container\",nodeId:\"ZimvXb6mW\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(CMSImagePreviewer,{EuYA_d7iS:toResponsiveImage(CZ6etWyzE),height:\"100%\",id:\"ZimvXb6mW\",layoutId:\"ZimvXb6mW\",NdAPPIZZl:toResponsiveImage(m4AZjZpST),P2KqmmNNM:suffix(prefix(EFJdLES8y,\"Save \"),\"%\"),Qv6SMqzLw:toResponsiveImage(xh0x3r9wO),style:{width:\"100%\"},variant:\"R77WxUvrF\",width:\"100%\",x3VfjJs75:toResponsiveImage(bUpkWzAai)})})})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hw6mah\",children:[visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+631.8+48+0+0+72+0+0+364+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(bUpkWzAai)}},M5wtqChDr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+710.8+32+0+0+72+0+0+0+364+-159),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) + 10px) / 0, 1px)`,...toResponsiveImage(bUpkWzAai)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+647.8+64+0+0+72+0+0+364+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(bUpkWzAai)},className:\"framer-o5qyvo\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{y:(componentViewport?.y||0)+0+0+0+631.8+48+0+0+72+0+0+364+23},M5wtqChDr:{y:(componentViewport?.y||0)+0+0+0+710.8+32+0+0+72+0+0+0+364+23}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+647.8+64+0+0+72+0+0+364+23,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ko5496-container\",nodeId:\"uSBRf3S0S\",rendersWithMotion:true,scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"uSBRf3S0S\",layoutId:\"uSBRf3S0S\",q2lyywsmd:suffix(prefix(EFJdLES8y,\"Save \"),\"%\"),variant:\"bvclgxmS8\",width:\"100%\"})})})})]}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ev77o9-container\",\"data-framer-name\":\"Carousel Kit\",isModuleExternal:true,name:\"Carousel Kit\",nodeId:\"JnCeYndb4\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{arrowObject:{arrowFill:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",arrowPadding:30,arrowRadius:40,arrowSize:40,showMouseControls:true},fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:3,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:50}},M5wtqChDr:{arrowObject:{arrowFill:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",arrowPadding:30,arrowRadius:40,arrowSize:40,showMouseControls:true},fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:45},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",arrowPadding:50,arrowRadius:40,arrowSize:60,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:45},gap:24,height:\"100%\",id:\"JnCeYndb4\",layoutId:\"JnCeYndb4\",name:\"Carousel Kit\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[visible3&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(xh0x3r9wO)},className:\"framer-1huf8zp\",\"data-framer-name\":\"Img 1\"}),visible4&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(m4AZjZpST)},className:\"framer-97j13f\",\"data-framer-name\":\"Img 2\"}),visible5&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(CZ6etWyzE)},className:\"framer-10xmckd\",\"data-framer-name\":\"Img 3\"}),visible6&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(fuZ0UsSK3)},className:\"framer-1bt0qff\",\"data-framer-name\":\"Img 4\"}),visible7&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(NYrVnEYEw)},className:\"framer-6yqrhw\",\"data-framer-name\":\"Img 5\"}),visible8&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(LfVYeMziw)},className:\"framer-f95v41\",\"data-framer-name\":\"Img 6\"})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-p0mey8\",\"data-framer-name\":\"Product Details\",children:[/*#__PURE__*/_jsx(\"aside\",{className:\"framer-165suxd\",\"data-border\":true,\"data-framer-name\":\"Buy Button/Overlay\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j6foh6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+631.8+48+0+0+72+0+0+0+0+0+0+0),sizes:\"310px\",...toResponsiveImage(xPpUNjva5)}},M5wtqChDr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+710.8+32+0+0+72+0+598+0+0+0+0+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,...toResponsiveImage(xPpUNjva5)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+647.8+64+0+0+72+0+0+0+0+0+0+0),sizes:\"374px\",...toResponsiveImage(xPpUNjva5)},className:\"framer-3zsyac\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tvskik\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1exs219\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b5xm9f-container\",isModuleExternal:true,nodeId:\"GC0zzJ_AR\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://widget.senja.io/widget/35b2d3b9-a7f6-4599-8a82-c4a6f5975597/platform.js\" type=\"text/javascript\" async></script>\\n<div class=\"senja-embed\" data-id=\"35b2d3b9-a7f6-4599-8a82-c4a6f5975597\" data-mode=\"shadow\" data-lazyload=\"false\" style=\"display: block;\"></div>',id:\"GC0zzJ_AR\",layoutId:\"GC0zzJ_AR\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://widget.senja.io/widget/35b2d3b9-a7f6-4599-8a82-c4a6f5975597\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ktj0k9\",\"data-framer-name\":\"Product details\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Starting 6-Figure Business\"})})}),fonts:[\"GF;Inter-500\",\"GF;Inter-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Starting 6-Figure Business\"})})}),className:\"framer-17ul5vn\",fonts:[\"Inter\",\"Inter-Bold\"],text:QYeNQANjw,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9z5xml\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"$NaN\"})}),fonts:[\"Inter-SemiBold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"$NaN\"})}),className:\"framer-dp82zd\",fonts:[\"Inter-Bold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\",\"--framer-text-decoration\":\"line-through\"},children:\"$NaN\"})}),fonts:[\"Inter-SemiBold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\",\"--framer-text-decoration\":\"line-through\"},children:\"$NaN\"})}),className:\"framer-hjmlon\",fonts:[\"Inter-Bold\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gcgprp\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"JAxOJo9dW\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"t1aOiXWPo\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ySkvuGpwA,className:\"framer-40irs1\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-9c5wnd\",code:\"framer-styles-preset-h14ja\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-mqdsfd\",h3:\"framer-styles-preset-15mjgn0\",h4:\"framer-styles-preset-1x09rnd\",h5:\"framer-styles-preset-9d1pfe\",h6:\"framer-styles-preset-1tde6wz\",img:\"framer-styles-preset-1bypgco\",p:\"framer-styles-preset-5m0sla\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w625ra\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i3wd2j-container\",isAuthoredByUser:true,nodeId:\"MCAQlaJPP\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(FramerShopCheckout,{buttonBackgroundColor:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:500,buttonBorderWidth:1,buttonBottomLeftRadius:500,buttonBottomRightRadius:500,buttonFontFamily:\"Inter\",buttonFontSize:16,buttonFontWeight:\"500\",buttonPadding:10,buttonText:\"Checkout\",buttonTextColor:\"rgb(255, 255, 255)\",buttonTopLeftRadius:500,buttonTopRightRadius:500,height:\"100%\",id:\"MCAQlaJPP\",isBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"MCAQlaJPP\",paddingBottom:10,paddingLeft:10,paddingRight:10,paddingTop:10,productID:kTaaausLL,productName:QYeNQANjw,productPrice:v1blpK_3o,showBorders:false,style:{width:\"100%\"},webhookUrl:\"https://entrepedia.vercel.app/api/checkout/store\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zd11t-container\",isAuthoredByUser:true,nodeId:\"P4k4Z6IZB\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(FramerShopAddToCart,{articleId:kTaaausLL,borderBottomWidth:1,borderLeftWidth:1,borderRightWidth:1,borderTopWidth:1,buttonBackgroundColor:\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:500,buttonBorderWidth:1,buttonBottomLeftRadius:500,buttonBottomRightRadius:500,buttonFontFamily:\"Inter\",buttonFontSize:16,buttonFontWeight:\"600\",buttonPadding:10,buttonText:\"Add to Cart\",buttonTextColor:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",buttonTopLeftRadius:500,buttonTopRightRadius:500,height:\"100%\",iconPosition:\"left\",id:\"P4k4Z6IZB\",isBorderWidthMixed:false,isButtonBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"P4k4Z6IZB\",paddingBottom:10,paddingLeft:10,paddingRight:10,paddingTop:10,price:v1blpK_3o,productImage:toImageSrc(xPpUNjva5),productName:QYeNQANjw,showBorders:false,showIcon:false,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xopi22\",\"data-framer-name\":\"Stripe badge\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2fd58cfe-5ad8-4c77-b978-fbd0588f0aa4, rgb(139, 139, 139))\"},children:\"Secure checkout with\"})}),className:\"framer-rnuki\",\"data-framer-name\":\"Stripe\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j8673x\",\"data-framer-name\":\"Stripe link\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dkxq3z-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gE9SevvTy\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(84, 51, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"VerifiedUser\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"gE9SevvTy\",layoutId:\"gE9SevvTy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(84, 51, 255)\"},children:\"Stripe\"})}),className:\"framer-f75al7\",\"data-framer-name\":\"Stripe\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"t1aOiXWPo\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{stylesPresetsClassNames:{a:\"framer-styles-preset-1gnaw95\",code:\"framer-styles-preset-l47z89\",h1:\"framer-styles-preset-18nzosw\",h2:\"framer-styles-preset-1f0xaw6\",h3:\"framer-styles-preset-1pwf7vj\",h4:\"framer-styles-preset-1p2c2vr\",h5:\"framer-styles-preset-1dceyci\",h6:\"framer-styles-preset-1rcrpyl\",p:\"framer-styles-preset-1v2qn5i\"}},M5wtqChDr:{stylesPresetsClassNames:{a:\"framer-styles-preset-1gnaw95\",code:\"framer-styles-preset-l47z89\",h1:\"framer-styles-preset-18nzosw\",h2:\"framer-styles-preset-1f0xaw6\",h3:\"framer-styles-preset-1pwf7vj\",h4:\"framer-styles-preset-1p2c2vr\",h5:\"framer-styles-preset-1dceyci\",h6:\"framer-styles-preset-1rcrpyl\",p:\"framer-styles-preset-1v2qn5i\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:lJIbfLIOzv9Uej3pB5,className:\"framer-osrqny\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1gnaw95\",code:\"framer-styles-preset-h14ja\",h1:\"framer-styles-preset-18nzosw\",h2:\"framer-styles-preset-1f0xaw6\",h3:\"framer-styles-preset-1pwf7vj\",h4:\"framer-styles-preset-1p2c2vr\",h5:\"framer-styles-preset-1dceyci\",h6:\"framer-styles-preset-1rcrpyl\",p:\"framer-styles-preset-1v2qn5i\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lfljnz\",\"data-framer-name\":\"Upper Product Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-sonudz hidden-1h107kj hidden-10ak5a6\",children:isDisplayed1()&&/*#__PURE__*/_jsx(\"aside\",{className:\"framer-i7z7h0 hidden-1h107kj\",\"data-framer-name\":\"Buy Button/Overlay\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ck1iw\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-s7lw54 hidden-cjyopb\",\"data-framer-name\":\"Product details\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-752jah\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uy8wg1-container\",isAuthoredByUser:true,nodeId:\"qJSgMoYL3\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(FramerShopAddToCart,{articleId:kTaaausLL,borderBottomWidth:1,borderLeftWidth:1,borderRightWidth:1,borderTopWidth:1,buttonBackgroundColor:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:500,buttonBorderWidth:1,buttonBottomLeftRadius:500,buttonBottomRightRadius:500,buttonFontFamily:\"Inter\",buttonFontSize:16,buttonFontWeight:\"500\",buttonPadding:10,buttonText:\"Add to Cart\",buttonTextColor:\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\",buttonTopLeftRadius:500,buttonTopRightRadius:500,height:\"100%\",iconPosition:\"left\",id:\"qJSgMoYL3\",isBorderWidthMixed:false,isButtonBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"qJSgMoYL3\",paddingBottom:10,paddingLeft:10,paddingRight:10,paddingTop:10,price:v1blpK_3o,productImage:toImageSrc(xPpUNjva5),productName:QYeNQANjw,showBorders:false,showIcon:false,style:{width:\"100%\"},width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wb39sr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14w6v8k\",\"data-framer-name\":\"Tab Group/Product\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7ma10s\",\"data-framer-name\":\"Tab Group/Product\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h7ci04\",\"data-framer-name\":\"2nd Tab Content\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"JAxOJo9dW\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"t1aOiXWPo\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wmwA4qjUN,className:\"framer-1r0r101\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-9c5wnd\",code:\"framer-styles-preset-h14ja\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-doc9aq\",h3:\"framer-styles-preset-15mjgn0\",h4:\"framer-styles-preset-1x09rnd\",h5:\"framer-styles-preset-9d1pfe\",h6:\"framer-styles-preset-1tde6wz\",img:\"framer-styles-preset-1bypgco\",p:\"framer-styles-preset-wmecg\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2lp3js\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Premium mockups included\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Premium mockups included\"})}),className:\"framer-nglwjh\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1974g4n\",\"data-framer-name\":\"1st Tab Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+315.2857+0+67.2+0+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 24px) / 2, 1px)`,...toResponsiveImage(CZ6etWyzE)}},M5wtqChDr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+543.2+0+67.2+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,...toResponsiveImage(CZ6etWyzE)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+154+0+67.2+0+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 24px) / 2, 1px)`,...toResponsiveImage(CZ6etWyzE)},className:\"framer-c8tg0f\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+315.2857+0+67.2+0+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 24px) / 2, 1px)`,...toResponsiveImage(xh0x3r9wO)}},M5wtqChDr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+543.2+0+67.2+0+284),sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,...toResponsiveImage(xh0x3r9wO)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+154+0+67.2+0+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 24px) / 2, 1px)`,...toResponsiveImage(xh0x3r9wO)},className:\"framer-1a8yxvn\",\"data-framer-name\":\"Image\"})})]})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-162wxm9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Premium mockups included\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Premium mockups included\"})}),className:\"framer-1mg558h\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lvmp6m-container\",\"data-framer-name\":\"Carousel Kit\",isModuleExternal:true,name:\"Carousel Kit\",nodeId:\"c1KsgzDsi\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{arrowObject:{arrowFill:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",arrowPadding:30,arrowRadius:40,arrowSize:40,showMouseControls:true},fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:50}},M5wtqChDr:{arrowObject:{arrowFill:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",arrowPadding:30,arrowRadius:40,arrowSize:40,showMouseControls:true},fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:45},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",arrowPadding:50,arrowRadius:40,arrowSize:60,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:45},gap:24,height:\"100%\",id:\"c1KsgzDsi\",layoutId:\"c1KsgzDsi\",name:\"Carousel Kit\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[visible9&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(oXjClqL_t)},className:\"framer-14lluxi\",\"data-framer-name\":\"Img 7\"}),visible10&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(K42jMRZdh)},className:\"framer-sp9kim\",\"data-framer-name\":\"Img 8\"}),visible11&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(LKgdGCNqM)},className:\"framer-13nkpbe\",\"data-framer-name\":\"Img 9\"}),visible12&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(GeQyJWIF2)},className:\"framer-vlky05\",\"data-framer-name\":\"Img 10\"}),visible13&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(IpBuh0lo4)},className:\"framer-1dw7cll\",\"data-framer-name\":\"Img 11\"}),visible14&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(rPcSmKQ_M)},className:\"framer-m6r4xc\",\"data-framer-name\":\"Img 12\"}),visible15&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(gtpSfb3zM)},className:\"framer-2876lm\",\"data-framer-name\":\"Img 13\"}),visible16&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(ZLy61Z3_5)},className:\"framer-jm3rmi\",\"data-framer-name\":\"Img 14\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})}),visible17&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12mfuvy-container\",isModuleExternal:true,nodeId:\"FiPfxQUyb\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:50,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:100},gap:10,height:\"100%\",id:\"FiPfxQUyb\",layoutId:\"FiPfxQUyb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[visible4&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(m4AZjZpST)},className:\"framer-97j13f\",\"data-framer-name\":\"Img 2\"}),visible5&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(CZ6etWyzE)},className:\"framer-10xmckd\",\"data-framer-name\":\"Img 3\"}),visible6&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(fuZ0UsSK3)},className:\"framer-1bt0qff\",\"data-framer-name\":\"Img 4\"}),visible3&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(xh0x3r9wO)},className:\"framer-1huf8zp\",\"data-framer-name\":\"Img 1\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-hbr4k6\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(\"li\",{className:\"framer-14sspvd\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+1071.6857+20+0+0+0},M5wtqChDr:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+3375.5857+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:149,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+910.4+20+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-153fv0a-container\",nodeId:\"uOruF2yeb\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"uOruF2yeb\",layoutId:\"uOruF2yeb\",PTopfCbj6:\"Satisfaction Guarantee\",s6YvzZ4CA:\"\",style:{width:\"100%\"},variant:\"wtonqjZ5B\",width:\"100%\",xSAdnf_Fz:\"Shield\"})})})})}),/*#__PURE__*/_jsx(\"li\",{className:\"framer-1j224wn\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+1071.6857+20+0+0+0},M5wtqChDr:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+3375.5857+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:149,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+910.4+20+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d67lfm-container\",nodeId:\"tqAtBHo2z\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"tqAtBHo2z\",layoutId:\"tqAtBHo2z\",PTopfCbj6:\"Private Label Rights\",s6YvzZ4CA:\"\",style:{width:\"100%\"},variant:\"wtonqjZ5B\",width:\"100%\",xSAdnf_Fz:\"Pen\"})})})})}),/*#__PURE__*/_jsx(\"li\",{className:\"framer-oucez7\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+1071.6857+20+197+0+0},M5wtqChDr:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+3375.5857+0+197+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:149,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+910.4+20+197+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pb9e32-container\",nodeId:\"V0P56UE9q\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"V0P56UE9q\",layoutId:\"V0P56UE9q\",PTopfCbj6:\"The Highest Quality\",s6YvzZ4CA:\"\",style:{width:\"100%\"},variant:\"wtonqjZ5B\",width:\"100%\",xSAdnf_Fz:\"Check\"})})})})}),/*#__PURE__*/_jsx(\"li\",{className:\"framer-1bmeqrb\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+1071.6857+20+197+0+0},M5wtqChDr:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+3375.5857+0+197+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:149,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+910.4+20+197+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-muupka-container\",nodeId:\"Cfxf19BJL\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"Cfxf19BJL\",layoutId:\"Cfxf19BJL\",PTopfCbj6:\"Exclusive Production\",s6YvzZ4CA:\"\",style:{width:\"100%\"},variant:\"wtonqjZ5B\",width:\"100%\",xSAdnf_Fz:\"House\"})})})})}),/*#__PURE__*/_jsx(\"li\",{className:\"framer-t1hx32\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+1071.6857+20+394+0+0},M5wtqChDr:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+3375.5857+0+394+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:149,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+910.4+20+394+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xzcikq-container\",nodeId:\"R6V1yBjdy\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"R6V1yBjdy\",layoutId:\"R6V1yBjdy\",PTopfCbj6:\"Interesting Content\",s6YvzZ4CA:\"\",style:{width:\"100%\"},variant:\"wtonqjZ5B\",width:\"100%\",xSAdnf_Fz:\"Star\"})})})})}),/*#__PURE__*/_jsx(\"li\",{className:\"framer-f1bwik\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+1071.6857+20+394+0+0},M5wtqChDr:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+3375.5857+0+394+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:149,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+910.4+20+394+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-154diy2-container\",nodeId:\"S4lrzEHUw\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"S4lrzEHUw\",layoutId:\"S4lrzEHUw\",PTopfCbj6:\"Beautiful Designs\",s6YvzZ4CA:\"\",style:{width:\"100%\"},variant:\"wtonqjZ5B\",width:\"100%\",xSAdnf_Fz:\"Palette\"})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k4pqsr hidden-10ak5a6 hidden-cjyopb\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.trustpilot.com/review/entrepedia.co?sort=recency\",motionChild:true,nodeId:\"zixEBp_8z\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-3b94ul framer-zpnuh\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lh5rii\",\"data-framer-name\":\"Trustpilot_logo\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" baseProfile=\"basic\"><path fill=\"#00b67a\" d=\"M45.023 18.995H28.991L24.039 3.737l-4.968 15.259-16.032-.016 12.984 9.44-4.968 15.243 12.984-9.424 12.968 9.424-4.952-15.243 12.968-9.425z\"/><path fill=\"#005128\" d=\"m33.169 31.871-1.114-3.451-8.016 5.819 9.13-2.368z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:\"Trustpilot 4.7/5\"})}),className:\"framer-5ri62e\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.6249988730997,intrinsicWidth:393.7499941326679,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+1551.4+0+6+100),pixelHeight:121,pixelWidth:630,sizes:\"126px\",src:\"https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg 630w\"},className:\"framer-193kbpj\",\"data-framer-name\":\"Group_1000006693\"})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/entrepedia.co\",motionChild:true,nodeId:\"g90UQ1CUw\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1m1ece5 framer-zpnuh\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8g1ay6\",\"data-framer-name\":\"Facebook_icons\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\"><linearGradient id=\"a\" x1=\"9.993\" x2=\"40.615\" y1=\"9.993\" y2=\"40.615\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#2aa4f4\"/><stop offset=\"1\" stop-color=\"#007ad9\"/></linearGradient><path fill=\"url(#a)\" d=\"M24 4C12.954 4 4 12.954 4 24s8.954 20 20 20 20-8.954 20-20S35.046 4 24 4z\"/><path fill=\"#fff\" d=\"M26.707 29.301h5.176l.813-5.258h-5.989v-2.874c0-2.184.714-4.121 2.757-4.121h3.283V12.46c-.577-.078-1.797-.248-4.102-.248-4.814 0-7.636 2.542-7.636 8.334v3.498H16.06v5.258h4.948v14.452c.98.146 1.973.246 2.992.246.921 0 1.82-.084 2.707-.204V29.301z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:\"Facebook 5.0/5\"})}),className:\"framer-16me4nj\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-904by3\",\"data-framer-name\":\"Group_1000006694\",fill:\"black\",intrinsicHeight:121,intrinsicWidth:630,svg:'<svg width=\"630\" height=\"121\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m62 6.113 18.407 35.101 39.168 6.85-27.61 28.466 5.565 39.168L62 98.361l-35.744 17.337 5.78-39.168L4.21 48.063l39.168-6.849L62 6.113Z\" fill=\"url(#a)\"/><path d=\"m195.33 6.113 18.407 35.101 39.168 6.85-27.61 28.466 5.565 39.168-35.53-17.337-35.744 17.337 5.779-39.168-27.824-28.467 39.168-6.849L195.33 6.113Z\" fill=\"url(#b)\"/><path d=\"m319.527 6.113 18.407 35.101 39.169 6.85-27.611 28.466 5.565 39.168-35.53-17.337-35.743 17.337 5.779-39.168-27.825-28.467 39.168-6.849 18.621-35.101Z\" fill=\"url(#c)\"/><path d=\"m443.723 6.113 18.407 35.101 39.168 6.85-27.611 28.466 5.565 39.168-35.529-17.337-35.744 17.337 5.779-39.168-27.825-28.467 39.169-6.849 18.621-35.101Z\" fill=\"url(#d)\"/><path d=\"m443.723 6.113 18.407 35.101 39.168 6.85-27.611 28.466 5.565 39.168-35.529-17.337-35.744 17.337 5.779-39.168-27.825-28.467 39.169-6.849 18.621-35.101Z\" fill=\"url(#e)\"/><path d=\"m568 6.113 18.407 35.101 39.168 6.85-27.61 28.466 5.565 39.168L568 98.361l-35.744 17.337 5.779-39.168-27.824-28.467 39.168-6.849L568 6.113Z\" fill=\"url(#f)\"/><defs><linearGradient id=\"a\" x1=\"62\" y1=\"102\" x2=\"62\" y2=\"0\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"b\" x1=\"195\" y1=\"117.5\" x2=\"195\" y2=\"4.5\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"c\" x1=\"320\" y1=\"116.5\" x2=\"320\" y2=\"5.5\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"d\" x1=\"444\" y1=\"116.5\" x2=\"444\" y2=\"7\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"e\" x1=\"444\" y1=\"116.5\" x2=\"444\" y2=\"7\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"f\" x1=\"568.277\" y1=\"116.5\" x2=\"568.277\" y2=\"7\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient></defs></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13vkcgt\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-smx444\",\"data-framer-name\":\"Google_logo\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\"><path fill=\"#fbc02d\" d=\"M43.611 20.083H42V20H24v8h11.303c-1.649 4.657-6.08 8-11.303 8-6.627 0-12-5.373-12-12s5.373-12 12-12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 12.955 4 4 12.955 4 24s8.955 20 20 20 20-8.955 20-20c0-1.341-.138-2.65-.389-3.917z\"/><path fill=\"#e53935\" d=\"m6.306 14.691 6.571 4.819C14.655 15.108 18.961 12 24 12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 16.318 4 9.656 8.337 6.306 14.691z\"/><path fill=\"#4caf50\" d=\"M24 44c5.166 0 9.86-1.977 13.409-5.192l-6.19-5.238A11.91 11.91 0 0 1 24 36c-5.202 0-9.619-3.317-11.283-7.946l-6.522 5.025C9.505 39.556 16.227 44 24 44z\"/><path fill=\"#1565c0\" d=\"M43.611 20.083 43.595 20H24v8h11.303a12.04 12.04 0 0 1-4.087 5.571l.003-.002 6.19 5.238C36.971 39.205 44 34 44 24c0-1.341-.138-2.65-.389-3.917z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:\"Google 4.6/5\"})}),className:\"framer-1309n5h\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.6249988730997,intrinsicWidth:393.7499941326679,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+1551.4+0+6+100),pixelHeight:121,pixelWidth:630,sizes:\"126px\",src:\"https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg 630w\"},className:\"framer-p7z1mt\",\"data-framer-name\":\"Group_1000006694\"})]})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-djtmvo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"14 days money-back guarantee\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"14 days money-back guarantee\"})}),className:\"framer-1ad1zi0\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-46ycf-container\",\"data-framer-name\":\"Carousel Kit\",isModuleExternal:true,name:\"Carousel Kit\",nodeId:\"VjuZO95Qf\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{arrowObject:{arrowFill:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",arrowPadding:30,arrowRadius:40,arrowSize:40,showMouseControls:true},fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:3,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:50}},M5wtqChDr:{arrowObject:{arrowFill:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",arrowPadding:30,arrowRadius:40,arrowSize:40,showMouseControls:true},fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:45},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",arrowPadding:50,arrowRadius:40,arrowSize:60,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:45},gap:24,height:\"100%\",id:\"VjuZO95Qf\",layoutId:\"VjuZO95Qf\",name:\"Carousel Kit\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[visible18&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(XWr6bZDok)},className:\"framer-tx8jod\",\"data-framer-name\":\"Img 15\"}),visible19&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(biZWWECKU)},className:\"framer-1h7ogxk\",\"data-framer-name\":\"Img 16\"}),visible20&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(JPUxydWwG)},className:\"framer-4oly4t\",\"data-framer-name\":\"Img 17\"}),visible21&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(J8qlTFBU4)},className:\"framer-1bjcrr3\",\"data-framer-name\":\"Img 18\"}),visible22&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(ftdBGD90g)},className:\"framer-1mbw18w\",\"data-framer-name\":\"Img 19\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})}),visible17&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wadlln-container\",isModuleExternal:true,nodeId:\"cEL6AsIgQ\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:50,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:100},gap:10,height:\"100%\",id:\"cEL6AsIgQ\",layoutId:\"cEL6AsIgQ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[visible4&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(m4AZjZpST)},className:\"framer-97j13f\",\"data-framer-name\":\"Img 2\"}),visible5&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(CZ6etWyzE)},className:\"framer-10xmckd\",\"data-framer-name\":\"Img 3\"}),visible6&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(fuZ0UsSK3)},className:\"framer-1bt0qff\",\"data-framer-name\":\"Img 4\"}),visible3&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"400px\",...toResponsiveImage(xh0x3r9wO)},className:\"framer-1huf8zp\",\"data-framer-name\":\"Img 1\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zm6iqj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"14 days money-back guarantee\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"14 days money-back guarantee\"})}),className:\"framer-ihdr3r\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m8ks6s\",\"data-framer-name\":\"1st Tab Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+2083.8857+0+67.2+0+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 24px) / 2, 1px)`,...toResponsiveImage(bUpkWzAai)}},M5wtqChDr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+2317.1857+0+67.2+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,...toResponsiveImage(bUpkWzAai)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+2146.8+0+67.2+0+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 24px) / 2, 1px)`,...toResponsiveImage(bUpkWzAai)},className:\"framer-1pliiec\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+2083.8857+0+67.2+0+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px) - 24px) / 2, 1px)`,...toResponsiveImage(m4AZjZpST)}},M5wtqChDr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+2317.1857+0+67.2+0+284),sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,...toResponsiveImage(m4AZjZpST)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+2146.8+0+67.2+0+0),sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px) - 24px) / 2, 1px)`,...toResponsiveImage(m4AZjZpST)},className:\"framer-wjfyyx\",\"data-framer-name\":\"Image\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kdd74f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Unlimited ways to use this product\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Unlimited ways to use this product\"})}),className:\"framer-1rn9h62\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{width:`max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 342px, 1px)`,y:(componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+2469.0857+28+59.2},M5wtqChDr:{height:248,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+4008.5857+0+68.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:232,width:`max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 444px, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+0+0+2532+28+68.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-odt1vp-container\",nodeId:\"HJm4UJtRw\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(HomepageUsecasesTicker,{height:\"100%\",id:\"HJm4UJtRw\",layoutId:\"HJm4UJtRw\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-74az3b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Thousands of successful users\"})}),className:\"framer-1cn0sd0\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vddyqm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8et2zt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XMa3FbOz5\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(SenjaWidget,{height:\"100%\",id:\"XMa3FbOz5\",layoutId:\"XMa3FbOz5\",lazy:true,style:{width:\"100%\"},widgetUrl:\"https://widget.senja.io/widget/f869f564-7eaa-44fd-9c4d-daf557e371e7\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5x8e8p hidden-1h107kj\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.trustpilot.com/review/entrepedia.co?sort=recency\",motionChild:true,nodeId:\"Wnyql3W5b\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-gmdyth framer-zpnuh\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12nd5dh\",\"data-framer-name\":\"Trustpilot_logo\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\" baseProfile=\"basic\"><path fill=\"#00b67a\" d=\"M45.023 18.995H28.991L24.039 3.737l-4.968 15.259-16.032-.016 12.984 9.44-4.968 15.243 12.984-9.424 12.968 9.424-4.952-15.243 12.968-9.425z\"/><path fill=\"#005128\" d=\"m33.169 31.871-1.114-3.451-8.016 5.819 9.13-2.368z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:\"Trustpilot 4.7/5\"})}),className:\"framer-1msu8su\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.6249988730997,intrinsicWidth:393.7499941326679,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+154+0+6+74),pixelHeight:121,pixelWidth:630,sizes:\"90px\",src:\"https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg 630w\"}},M5wtqChDr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.6249988730997,intrinsicWidth:393.7499941326679,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+1244.4+0+6+74),pixelHeight:121,pixelWidth:630,sizes:\"90px\",src:\"https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg 630w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.6249988730997,intrinsicWidth:393.7499941326679,pixelHeight:121,pixelWidth:630,sizes:\"90px\",src:\"https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BQ3il2tnsSbmcmbFiQFJVGyKvW4.svg 630w\"},className:\"framer-fsip8h\",\"data-framer-name\":\"Group_1000006693\"})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/entrepedia.co\",motionChild:true,nodeId:\"C7Hq5ujWD\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1crcafb framer-zpnuh\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-948nn\",\"data-framer-name\":\"Facebook_icons\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\"><linearGradient id=\"a\" x1=\"9.993\" x2=\"40.615\" y1=\"9.993\" y2=\"40.615\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#2aa4f4\"/><stop offset=\"1\" stop-color=\"#007ad9\"/></linearGradient><path fill=\"url(#a)\" d=\"M24 4C12.954 4 4 12.954 4 24s8.954 20 20 20 20-8.954 20-20S35.046 4 24 4z\"/><path fill=\"#fff\" d=\"M26.707 29.301h5.176l.813-5.258h-5.989v-2.874c0-2.184.714-4.121 2.757-4.121h3.283V12.46c-.577-.078-1.797-.248-4.102-.248-4.814 0-7.636 2.542-7.636 8.334v3.498H16.06v5.258h4.948v14.452c.98.146 1.973.246 2.992.246.921 0 1.82-.084 2.707-.204V29.301z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:\"Facebook 5.0/5\"})}),className:\"framer-vhh4qi\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n1e1ua\",\"data-framer-name\":\"Group_1000006694\",fill:\"black\",intrinsicHeight:121,intrinsicWidth:630,svg:'<svg width=\"630\" height=\"121\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m62 6.113 18.407 35.101 39.168 6.85-27.61 28.466 5.565 39.168L62 98.361l-35.744 17.337 5.78-39.168L4.21 48.063l39.168-6.849L62 6.113Z\" fill=\"url(#a)\"/><path d=\"m195.33 6.113 18.407 35.101 39.168 6.85-27.61 28.466 5.565 39.168-35.53-17.337-35.744 17.337 5.779-39.168-27.824-28.467 39.168-6.849L195.33 6.113Z\" fill=\"url(#b)\"/><path d=\"m319.527 6.113 18.407 35.101 39.169 6.85-27.611 28.466 5.565 39.168-35.53-17.337-35.743 17.337 5.779-39.168-27.825-28.467 39.168-6.849 18.621-35.101Z\" fill=\"url(#c)\"/><path d=\"m443.723 6.113 18.407 35.101 39.168 6.85-27.611 28.466 5.565 39.168-35.529-17.337-35.744 17.337 5.779-39.168-27.825-28.467 39.169-6.849 18.621-35.101Z\" fill=\"url(#d)\"/><path d=\"m443.723 6.113 18.407 35.101 39.168 6.85-27.611 28.466 5.565 39.168-35.529-17.337-35.744 17.337 5.779-39.168-27.825-28.467 39.169-6.849 18.621-35.101Z\" fill=\"url(#e)\"/><path d=\"m568 6.113 18.407 35.101 39.168 6.85-27.61 28.466 5.565 39.168L568 98.361l-35.744 17.337 5.779-39.168-27.824-28.467 39.168-6.849L568 6.113Z\" fill=\"url(#f)\"/><defs><linearGradient id=\"a\" x1=\"62\" y1=\"102\" x2=\"62\" y2=\"0\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"b\" x1=\"195\" y1=\"117.5\" x2=\"195\" y2=\"4.5\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"c\" x1=\"320\" y1=\"116.5\" x2=\"320\" y2=\"5.5\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"d\" x1=\"444\" y1=\"116.5\" x2=\"444\" y2=\"7\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"e\" x1=\"444\" y1=\"116.5\" x2=\"444\" y2=\"7\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient><linearGradient id=\"f\" x1=\"568.277\" y1=\"116.5\" x2=\"568.277\" y2=\"7\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFC328\"/><stop offset=\"1\" stop-color=\"#FCDB88\"/></linearGradient></defs></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19h0ca7\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1j9zmp6\",\"data-framer-name\":\"Google_logo\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"48\"><path fill=\"#fbc02d\" d=\"M43.611 20.083H42V20H24v8h11.303c-1.649 4.657-6.08 8-11.303 8-6.627 0-12-5.373-12-12s5.373-12 12-12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 12.955 4 4 12.955 4 24s8.955 20 20 20 20-8.955 20-20c0-1.341-.138-2.65-.389-3.917z\"/><path fill=\"#e53935\" d=\"m6.306 14.691 6.571 4.819C14.655 15.108 18.961 12 24 12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 16.318 4 9.656 8.337 6.306 14.691z\"/><path fill=\"#4caf50\" d=\"M24 44c5.166 0 9.86-1.977 13.409-5.192l-6.19-5.238A11.91 11.91 0 0 1 24 36c-5.202 0-9.619-3.317-11.283-7.946l-6.522 5.025C9.505 39.556 16.227 44 24 44z\"/><path fill=\"#1565c0\" d=\"M43.611 20.083 43.595 20H24v8h11.303a12.04 12.04 0 0 1-4.087 5.571l.003-.002 6.19 5.238C36.971 39.205 44 34 44 24c0-1.341-.138-2.65-.389-3.917z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\"},children:\"Google 4.5/5\"})}),className:\"framer-e0djku\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.6249988730997,intrinsicWidth:393.7499941326679,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+0+0+154+0+6+74),pixelHeight:121,pixelWidth:630,sizes:\"90px\",src:\"https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg 630w\"}},M5wtqChDr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.6249988730997,intrinsicWidth:393.7499941326679,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+710.8+32+0+0+1851+0+0+0+0+0+1244.4+0+6+74),pixelHeight:121,pixelWidth:630,sizes:\"90px\",src:\"https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg 630w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.6249988730997,intrinsicWidth:393.7499941326679,pixelHeight:121,pixelWidth:630,sizes:\"90px\",src:\"https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jcw1k3LZwjokzDXj9Xn5XEmw3A.svg 630w\"},className:\"framer-1bc069x\",\"data-framer-name\":\"Group_1000006694\"})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t57rk6 hidden-1h107kj hidden-10ak5a6\",\"data-framer-name\":\"Book Showcase\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bmkcok\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qje\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"You are free to\"})}),className:\"framer-1xvel4x\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1blqtgs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xcwbcu\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vrtyxi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"s3qc7BOr8\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"s3qc7BOr8\",layoutId:\"s3qc7BOr8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Brand it as your own\"})}),className:\"framer-1w5oe90\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mjxmcn\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gctu4m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AfzYpKYrI\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"AfzYpKYrI\",layoutId:\"AfzYpKYrI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Adjust and edit anything \"})}),className:\"framer-1k6z2iu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5famh\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uq4m62-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C1ussaUa3\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"C1ussaUa3\",layoutId:\"C1ussaUa3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Sell and keep all the profits\"})}),className:\"framer-r7q5j1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gr18qu\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cc125s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nsDlZa2kv\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"nsDlZa2kv\",layoutId:\"nsDlZa2kv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Give it away for free\"})}),className:\"framer-1r06ex\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cb6ns4\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9umics-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yxNx3efdc\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"yxNx3efdc\",layoutId:\"yxNx3efdc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Use the content without limits\"})}),className:\"framer-1gsji2c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tc1q5\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w3t9vo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VvxSMwu3e\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"VvxSMwu3e\",layoutId:\"VvxSMwu3e\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Claim yourself as author\"})}),className:\"framer-138c77t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18wn8m1\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1miwlu9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zGVkLxHnc\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"zGVkLxHnc\",layoutId:\"zGVkLxHnc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Repurpose into other formats\"})}),className:\"framer-15uzjui\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-438zaj\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vfvyt7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wd8jXN3cr\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"wd8jXN3cr\",layoutId:\"wd8jXN3cr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Bundle products or repackage\"})}),className:\"framer-n0h5dv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r86riSPdo\"},motionChild:true,nodeId:\"gwT7WwJwi\",openInNewTab:true,scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-n8vm7p framer-zpnuh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"See the full license\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"See the full license\"})}),className:\"framer-17r1ghy\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v2f757\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qhpi92\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fax50f\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l4sx6b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"A4Kjk26Lh\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Globe\",id:\"A4Kjk26Lh\",layoutId:\"A4Kjk26Lh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"English\"})}),className:\"framer-17eaknb\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17d98kv\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lp8pst\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q9p3jo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iQho2_Ny7\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Book\",id:\"iQho2_Ny7\",layoutId:\"iQho2_Ny7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\" Words\"})}),className:\"framer-1vf0bls\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xygwgh\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ujp9i0\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-viu6k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ieteIp6ic\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Book\",id:\"ieteIp6ic\",layoutId:\"ieteIp6ic\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"NaN Products\"})}),className:\"framer-18znz1q\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iokkl8\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1knf44y\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1orrooe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PkkcUJsF5\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CalendarCheck\",id:\"PkkcUJsF5\",layoutId:\"PkkcUJsF5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"2024\"})}),className:\"framer-bcdgys\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1curutl\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1owxc1h\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xk4zuu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C71E8fSwY\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"BookmarkSimple\",id:\"C71E8fSwY\",layoutId:\"C71E8fSwY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\" Pages\"})}),className:\"framer-d5ocym\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tfzp2u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Technical Details\"})}),className:\"framer-q9jxzm\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qouzzl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ydu1u3\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Product type\"})}),className:\"framer-1mdm4ie\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Content\"})}),className:\"framer-gcie3p\",fonts:[\"Inter\"],text:textContent5,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1re5ak0\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Download file\"})}),className:\"framer-tjdc8h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"ZIP\"})}),className:\"framer-1eub76x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkhnxw\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"File size\"})}),className:\"framer-2e5kg3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\" MB\"})}),className:\"framer-151tvk0\",fonts:[\"Inter\"],text:textContent6,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vf0pcw hidden-1h107kj hidden-10ak5a6\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1s7c0i9 hidden-cjyopb\",\"data-framer-name\":\"Product Details\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cfzmat\",\"data-framer-name\":\"Book Showcase\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6z95l5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f7qu35\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"You are free to\"})}),className:\"framer-v96z4\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j7jglh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zqosav\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xerhtx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nh5AY2Ibf\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"nh5AY2Ibf\",layoutId:\"nh5AY2Ibf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Brand it as your own\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Brand it as your own\"})}),className:\"framer-sopf9x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-syefjc\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-riui3y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GQS5HWaYq\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"GQS5HWaYq\",layoutId:\"GQS5HWaYq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Adjust and edit anything \"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Adjust and edit anything \"})}),className:\"framer-1svqep4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xiwbit\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1154nj2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nl4N7tJZs\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"nl4N7tJZs\",layoutId:\"nl4N7tJZs\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Sell and keep all the profits\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Sell and keep all the profits\"})}),className:\"framer-1jvk07o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ib3b0t\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-duaj0a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"og1sJAFID\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"og1sJAFID\",layoutId:\"og1sJAFID\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Give it away for free\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Give it away for free\"})}),className:\"framer-kjrm74\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11a4mjh\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b9o20c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jp_LrFe1G\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"jp_LrFe1G\",layoutId:\"jp_LrFe1G\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Use content without limits\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Use the content without limits\"})}),className:\"framer-seg8ro\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3uu2n\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bdwipl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"csYQ0sjv_\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"csYQ0sjv_\",layoutId:\"csYQ0sjv_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Claim yourself as author\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Claim yourself as author\"})}),className:\"framer-w2t54n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16yyhvf\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gxwpco-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jQmbe8rET\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"jQmbe8rET\",layoutId:\"jQmbe8rET\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Transform to other formats\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Repurpose into other formats\"})}),className:\"framer-1l2580e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kfavzb\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mg1y8s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VwAJoqGyX\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"VwAJoqGyX\",layoutId:\"VwAJoqGyX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Bundle or repackage\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Bundle products or repackage\"})}),className:\"framer-1r6znlk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r86riSPdo\"},motionChild:true,nodeId:\"qUf_v_PUB\",openInNewTab:true,scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bhscnl framer-zpnuh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"See the full license\"})}),className:\"framer-1tj6ts3\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2h8gym\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pksb3c\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p8573v\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j1p2rb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EWOXCUJa8\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Globe\",id:\"EWOXCUJa8\",layoutId:\"EWOXCUJa8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",\"--framer-text-transform\":\"uppercase\"},children:\"English\"})}),fonts:[\"GF;Inter-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"English\"})}),className:\"framer-13pxyat\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azo5k1\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kmkaoo\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hzwjuy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dbv3HyzjU\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Book\",id:\"dbv3HyzjU\",layoutId:\"dbv3HyzjU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",\"--framer-text-transform\":\"uppercase\"},children:\" Words\"})}),fonts:[\"GF;Inter-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\" Words\"})}),className:\"framer-ye4447\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10bejh\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jm6brb\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mrfgvl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jfL3PvOrq\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Book\",id:\"jfL3PvOrq\",layoutId:\"jfL3PvOrq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",\"--framer-text-transform\":\"uppercase\"},children:\"NaN Products\"})}),fonts:[\"GF;Inter-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"NaN Products\"})}),className:\"framer-1a3icb4\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m19q2t\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1izxlsz\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l9m019-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"biF2qPzbN\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CalendarCheck\",id:\"biF2qPzbN\",layoutId:\"biF2qPzbN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"2024\"})}),className:\"framer-16l0ln5\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xw94g\",\"data-framer-name\":\"Scroll Down\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8y84g9\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mh2xep-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ScgE0uRjV\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-dd156e69-0631-4fa9-9eb2-a4d98cbfe920, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"BookmarkSimple\",id:\"ScgE0uRjV\",layoutId:\"ScgE0uRjV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",\"--framer-text-transform\":\"uppercase\"},children:\" Pages\"})}),fonts:[\"GF;Inter-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\" Pages\"})}),className:\"framer-1qo75bo\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130nt29\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Technical Details\"})}),className:\"framer-1nvwo1h\",\"data-framer-name\":\"Flexible Pricing Plans to Suit Your Needs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13tgtd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e04r82\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Product type\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Product type\"})}),className:\"framer-1jwk3e0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Content\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Content\"})}),className:\"framer-ntmlx4\",fonts:[\"Inter\"],text:textContent5,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l6l7w7\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Download file\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Download file\"})}),className:\"framer-ejzchg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"ZIP\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"ZIP\"})}),className:\"framer-bf8zov\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6vdq\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"File size\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"File size\"})}),className:\"framer-1d4a9n3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\" MB\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\" MB\"})}),className:\"framer-1ulth6u\",fonts:[\"Inter\"],text:textContent6,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"aside\",{className:\"framer-c3gade\",\"data-border\":true,\"data-framer-name\":\"Buy Button/Overlay\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+631.8+48+0+0+1004+0+0+823+0+0),sizes:\"428.5px\",...toResponsiveImage(xPpUNjva5)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+647.8+64+0+0+1004+0+0+842+0+-147),sizes:\"374px\",...toResponsiveImage(xPpUNjva5)},className:\"framer-xvyao4\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3aoczi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hfds2-container\",isModuleExternal:true,nodeId:\"v96KA6VwR\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://widget.senja.io/widget/35b2d3b9-a7f6-4599-8a82-c4a6f5975597/platform.js\" type=\"text/javascript\" async></script>\\n<div class=\"senja-embed\" data-id=\"35b2d3b9-a7f6-4599-8a82-c4a6f5975597\" data-mode=\"shadow\" data-lazyload=\"false\" style=\"display: block;\"></div>',id:\"v96KA6VwR\",layoutId:\"v96KA6VwR\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://widget.senja.io/widget/35b2d3b9-a7f6-4599-8a82-c4a6f5975597\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1753642\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ea4at6\",\"data-framer-name\":\"Product details\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Starting 6-Figure Business\"})})}),fonts:[\"GF;Inter-500\",\"GF;Inter-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Starting 6-Figure Business\"})})}),className:\"framer-1bwqvay\",fonts:[\"Inter\",\"Inter-Bold\"],text:QYeNQANjw,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15bwmc3\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"$NaN\"})}),fonts:[\"Inter-SemiBold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"$NaN\"})}),className:\"framer-1b4x4nb\",fonts:[\"Inter-Bold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\",\"--framer-text-decoration\":\"line-through\"},children:\"$NaN\"})}),fonts:[\"Inter-SemiBold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\",\"--framer-text-decoration\":\"line-through\"},children:\"$NaN\"})}),className:\"framer-sue3cf\",fonts:[\"Inter-Bold\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40q87i\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14466e1-container\",isAuthoredByUser:true,nodeId:\"EJFCkc_Oc\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(FramerShopCheckout,{buttonBackgroundColor:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:500,buttonBorderWidth:1,buttonBottomLeftRadius:500,buttonBottomRightRadius:500,buttonFontFamily:\"Inter\",buttonFontSize:16,buttonFontWeight:\"500\",buttonPadding:10,buttonText:\"Checkout\",buttonTextColor:\"rgb(255, 255, 255)\",buttonTopLeftRadius:500,buttonTopRightRadius:500,height:\"100%\",id:\"EJFCkc_Oc\",isBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"EJFCkc_Oc\",paddingBottom:10,paddingLeft:10,paddingRight:10,paddingTop:10,productID:kTaaausLL,productName:QYeNQANjw,productPrice:v1blpK_3o,showBorders:false,style:{width:\"100%\"},webhookUrl:\"https://hook.eu1.make.com/izh1qgg730xeqio4fcd926n244vjiv76\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uqli3z-container\",isAuthoredByUser:true,nodeId:\"bccD13OGE\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(FramerShopAddToCart,{articleId:kTaaausLL,borderBottomWidth:1,borderLeftWidth:1,borderRightWidth:1,borderTopWidth:1,buttonBackgroundColor:\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:500,buttonBorderWidth:1,buttonBottomLeftRadius:500,buttonBottomRightRadius:500,buttonFontFamily:\"Inter\",buttonFontSize:16,buttonFontWeight:\"500\",buttonPadding:10,buttonText:\"Add to Cart\",buttonTextColor:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",buttonTopLeftRadius:500,buttonTopRightRadius:500,height:\"100%\",iconPosition:\"left\",id:\"bccD13OGE\",isBorderWidthMixed:false,isButtonBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"bccD13OGE\",paddingBottom:10,paddingLeft:10,paddingRight:10,paddingTop:10,price:v1blpK_3o,productImage:toImageSrc(xPpUNjva5),productName:QYeNQANjw,showBorders:false,showIcon:false,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ubg5cu\",\"data-framer-name\":\"Stripe badge\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2fd58cfe-5ad8-4c77-b978-fbd0588f0aa4, rgb(139, 139, 139))\"},children:\"Secure checkout with\"})}),className:\"framer-p516kg\",\"data-framer-name\":\"Stripe\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14wag2j\",\"data-framer-name\":\"Stripe link\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-183plxz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FNikm7ALN\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(84, 51, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"VerifiedUser\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"FNikm7ALN\",layoutId:\"FNikm7ALN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(84, 51, 255)\"},children:\"Stripe\"})}),className:\"framer-18s0ebp\",\"data-framer-name\":\"Stripe\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ijo863 hidden-1h107kj hidden-10ak5a6\",children:/*#__PURE__*/_jsxs(\"aside\",{className:\"framer-14u3ds4\",\"data-border\":true,\"data-framer-name\":\"Buy Button/Overlay\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M5wtqChDr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+710.8+32+5403.5857+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,...toResponsiveImage(xPpUNjva5)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(xPpUNjva5)},className:\"framer-s7w0hk\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i6bunz\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xya2jq-container\",isModuleExternal:true,nodeId:\"Lo_cGbEtA\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://widget.senja.io/widget/35b2d3b9-a7f6-4599-8a82-c4a6f5975597/platform.js\" type=\"text/javascript\" async></script>\\n<div class=\"senja-embed\" data-id=\"35b2d3b9-a7f6-4599-8a82-c4a6f5975597\" data-mode=\"shadow\" data-lazyload=\"false\" style=\"display: block;\"></div>',id:\"Lo_cGbEtA\",layoutId:\"Lo_cGbEtA\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://widget.senja.io/widget/35b2d3b9-a7f6-4599-8a82-c4a6f5975597\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9j79jk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yeih6n\",\"data-framer-name\":\"Product details\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-doc9aq\",\"data-styles-preset\":\"lufySrkWF\",style:{\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Starting 6-Figure Business\"})})}),className:\"framer-vbjpye\",fonts:[\"Inter\",\"Inter-Bold\"],text:QYeNQANjw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ao2yrm\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"$NaN\"})}),className:\"framer-boqf5r\",fonts:[\"Inter-Bold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(94, 94, 94))\",\"--framer-text-decoration\":\"line-through\"},children:\"$NaN\"})}),className:\"framer-1or7vof\",fonts:[\"Inter-Bold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cykqht\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10zlu4x-container hidden-cjyopb\",isAuthoredByUser:true,nodeId:\"cIvPk5a0C\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(FramerShopCheckout1,{allowedCountries:[\"US\",\"CA\",\"GB\"],buttonBackgroundColor:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:500,buttonBorderWidth:1,buttonBottomLeftRadius:500,buttonBottomRightRadius:500,buttonFontFamily:\"Inter\",buttonFontSize:16,buttonFontWeight:\"500\",buttonPadding:10,buttonText:\"Checkout\",buttonTextColor:\"rgb(255, 255, 255)\",buttonTopLeftRadius:500,buttonTopRightRadius:500,height:\"100%\",id:\"cIvPk5a0C\",isBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"cIvPk5a0C\",paddingBottom:10,paddingLeft:10,paddingRight:10,paddingTop:10,showBorders:false,style:{width:\"100%\"},webhookUrl:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k7rkxe-container\",isAuthoredByUser:true,nodeId:\"leTN4PUzt\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(FramerShopAddToCart,{articleId:kTaaausLL,borderBottomWidth:1,borderLeftWidth:1,borderRightWidth:1,borderTopWidth:1,buttonBackgroundColor:\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:500,buttonBorderWidth:1,buttonBottomLeftRadius:500,buttonBottomRightRadius:500,buttonFontFamily:\"Inter\",buttonFontSize:16,buttonFontWeight:\"500\",buttonPadding:10,buttonText:\"Add to Cart\",buttonTextColor:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\",buttonTopLeftRadius:500,buttonTopRightRadius:500,height:\"100%\",iconPosition:\"left\",id:\"leTN4PUzt\",isBorderWidthMixed:false,isButtonBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"leTN4PUzt\",paddingBottom:10,paddingLeft:10,paddingRight:10,paddingTop:10,price:v1blpK_3o,productImage:toImageSrc(xPpUNjva5),productName:QYeNQANjw,showBorders:false,showIcon:false,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kwqexu\",\"data-framer-name\":\"Stripe badge\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2fd58cfe-5ad8-4c77-b978-fbd0588f0aa4, rgb(139, 139, 139))\"},children:\"Secure checkout with\"})}),className:\"framer-czian2\",\"data-framer-name\":\"Stripe\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1osrwny\",\"data-framer-name\":\"Stripe link\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zg94bs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sPKSNnnlD\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(84, 51, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"VerifiedUser\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"sPKSNnnlD\",layoutId:\"sPKSNnnlD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(84, 51, 255)\"},children:\"Stripe\"})}),className:\"framer-1ka5gev\",\"data-framer-name\":\"Stripe\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-541vi6-container\",isAuthoredByUser:true,nodeId:\"G5a6gputG\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(FramerShopCheckout,{buttonBackgroundColor:\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:500,buttonBorderWidth:1,buttonBottomLeftRadius:500,buttonBottomRightRadius:500,buttonFontFamily:\"Inter\",buttonFontSize:16,buttonFontWeight:\"500\",buttonPadding:10,buttonText:\"Checkout\",buttonTextColor:\"rgb(255, 255, 255)\",buttonTopLeftRadius:500,buttonTopRightRadius:500,height:\"100%\",id:\"G5a6gputG\",isBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"G5a6gputG\",paddingBottom:10,paddingLeft:10,paddingRight:10,paddingTop:10,productID:kTaaausLL,productName:QYeNQANjw,productPrice:v1blpK_3o,showBorders:false,style:{width:\"100%\"},webhookUrl:\"https://hook.eu1.make.com/izh1qgg730xeqio4fcd926n244vjiv76\",width:\"100%\"})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13vimim\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{y:(componentViewport?.y||0)+0+0+0+631.8+48+3471.0857+0},M5wtqChDr:{y:(componentViewport?.y||0)+0+0+0+710.8+32+6372.5857+50}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+3584+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17z1jev-container\",nodeId:\"d6Ng3XVlr\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{variant:\"UprEQi3S4\"},M5wtqChDr:{variant:\"TMnUGPsQn\"}},children:/*#__PURE__*/_jsx(Logos,{height:\"100%\",id:\"d6Ng3XVlr\",layoutId:\"d6Ng3XVlr\",style:{width:\"100%\"},variant:\"p7HU4hTjA\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ooyn25\",\"data-framer-name\":\"Featured Goods\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-atmb9f\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-tuagc2\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s0mnak\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{y:(componentViewport?.y||0)+0+0+0+631.8+48+3885.0857+64+0+0+0+0+0+0+0},M5wtqChDr:{y:(componentViewport?.y||0)+0+0+0+710.8+32+6836.5857+56+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+647.8+64+3998+67+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-16f7df9-container\",\"data-framer-appear-id\":\"16f7df9\",initial:animation2,nodeId:\"TCzYaUozV\",optimized:true,rendersWithMotion:true,scopeId:\"HEvyp2Ctp\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"TCzYaUozV\",layoutId:\"TCzYaUozV\",q2lyywsmd:\"Ebooks with up to 6 rich shorter formats\",variant:\"j8RFTBbgI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Explore premium product kits\"})}),className:\"framer-qgf2ia\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c41zpx\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"d6gWf9e6m\"},implicitPathVariables:undefined},{href:{webPageId:\"d6gWf9e6m\"},implicitPathVariables:undefined},{href:{webPageId:\"d6gWf9e6m\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{y:(componentViewport?.y||0)+0+0+0+631.8+48+3885.0857+64+0+0+0+0+52.8+9},M5wtqChDr:{y:(componentViewport?.y||0)+0+0+0+710.8+32+6836.5857+56+0+0+0+0+138.8+9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+647.8+64+3998+67+0+0+0+0+52.8+9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o44rrn-container\",nodeId:\"NCxErAj9j\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{CVXqFgoUf:resolvedLinks[1]},M5wtqChDr:{CVXqFgoUf:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonArrow,{CAyNElI9L:false,CVXqFgoUf:resolvedLinks[0],height:\"100%\",id:\"NCxErAj9j\",layoutId:\"NCxErAj9j\",variant:\"i11fdEfHk\",welrCka7A:\"Browse more products\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-1wo2w1h\",\"data-framer-name\":\"Products\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{query:{from:{alias:\"OSjJ5uEOg\",data:StoreProducts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"OSjJ5uEOg\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"OSjJ5uEOg\",name:\"IcwosRbGP\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"bUpkWzAai\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"J0rtZY62Z\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"QYeNQANjw\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"EANd0ilvK\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"v1blpK_3o\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"xh0x3r9wO\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"m4AZjZpST\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"CZ6etWyzE\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"EFJdLES8y\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"vAJiJiH9Q\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"OSjJ5uEOg\",name:\"J0rtZY62Z\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"EW3R70cRt\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"OSjJ5uEOg\",data:StoreProducts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"OSjJ5uEOg\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"OSjJ5uEOg\",name:\"IcwosRbGP\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"bUpkWzAai\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"J0rtZY62Z\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"QYeNQANjw\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"EANd0ilvK\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"v1blpK_3o\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"xh0x3r9wO\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"m4AZjZpST\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"CZ6etWyzE\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"EFJdLES8y\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"vAJiJiH9Q\",type:\"Identifier\"},{collection:\"OSjJ5uEOg\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"OSjJ5uEOg\",name:\"J0rtZY62Z\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"EW3R70cRt\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bUpkWzAai:bUpkWzAaiOSjJ5uEOg,CZ6etWyzE:CZ6etWyzEOSjJ5uEOg,EANd0ilvK:EANd0ilvKOSjJ5uEOg,EFJdLES8y:EFJdLES8yOSjJ5uEOg,IcwosRbGP:IcwosRbGPOSjJ5uEOg,id:idOSjJ5uEOg,J0rtZY62Z:J0rtZY62ZOSjJ5uEOg,m4AZjZpST:m4AZjZpSTOSjJ5uEOg,QYeNQANjw:QYeNQANjwOSjJ5uEOg,v1blpK_3o:v1blpK_3oOSjJ5uEOg,vAJiJiH9Q:vAJiJiH9QOSjJ5uEOg,xh0x3r9wO:xh0x3r9wOOSjJ5uEOg},index)=>{IcwosRbGPOSjJ5uEOg??=\"\";QYeNQANjwOSjJ5uEOg??=\"\";EANd0ilvKOSjJ5uEOg??=0;v1blpK_3oOSjJ5uEOg??=0;EFJdLES8yOSjJ5uEOg??=\"\";vAJiJiH9QOSjJ5uEOg??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`OSjJ5uEOg-${idOSjJ5uEOg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IcwosRbGP:IcwosRbGPOSjJ5uEOg},children:/*#__PURE__*/_jsx(\"li\",{className:\"framer-1ww00lq\",\"data-framer-name\":\"Product\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IcwosRbGP:IcwosRbGPOSjJ5uEOg},webPageId:\"HEvyp2Ctp\"},implicitPathVariables:undefined},{href:{pathVariables:{IcwosRbGP:IcwosRbGPOSjJ5uEOg},webPageId:\"HEvyp2Ctp\"},implicitPathVariables:undefined},{href:{pathVariables:{IcwosRbGP:IcwosRbGPOSjJ5uEOg},webPageId:\"HEvyp2Ctp\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+631.8+48+3885.0857+64+0+0+162.8+0+0+0+0},M5wtqChDr:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+0+710.8+32+6836.5857+56+0+0+232.8+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:652,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+647.8+64+3998+67+0+0+175.8+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12blkzb-container\",nodeId:\"ihnOimwcW\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{Y_28uojNg:resolvedLinks1[1]},M5wtqChDr:{Y_28uojNg:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ProductThumbnailDefaultHighlight,{gOw6UvfUU:toResponsiveImage(bUpkWzAaiOSjJ5uEOg),height:\"100%\",id:\"ihnOimwcW\",iY2iLQeS2:false,izDoFktuy:toResponsiveImage(xh0x3r9wOOSjJ5uEOg),j16j6nu6A:toResponsiveImage(CZ6etWyzEOSjJ5uEOg),layoutId:\"ihnOimwcW\",lUwm6dxhp:numberToString(EANd0ilvKOSjJ5uEOg,{currency:\"USD\",currencyDisplay:\"symbol\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode),NPAkQ29gF:vAJiJiH9QOSjJ5uEOg,O5gc_nvnb:enumToDisplayNameFunctions[\"J0rtZY62Z\"]?.(J0rtZY62ZOSjJ5uEOg,activeLocale),oEtRlKK_M:suffix(prefix(EFJdLES8yOSjJ5uEOg,\"Save \"),\"%\"),QAtdh06gg:toResponsiveImage(m4AZjZpSTOSjJ5uEOg),style:{height:\"100%\",width:\"100%\"},T1pP2tp8o:QYeNQANjwOSjJ5uEOg,W2afr2aVv:numberToString(v1blpK_3oOSjJ5uEOg,{currency:\"USD\",currencyDisplay:\"symbol\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode),width:\"100%\",Y_28uojNg:resolvedLinks1[0]})})})})})})})})},idOSjJ5uEOg);})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ditkw9\",\"data-framer-name\":\"Section CTA\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ykrfe8\",\"data-framer-name\":\"H Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cwaxi1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o7eqxj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fj4yja\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{y:(componentViewport?.y||0)+0+0+0+5611.6857+96+0+0+0+0+0+0+0+0+0},M5wtqChDr:{y:(componentViewport?.y||0)+0+0+0+8640.1857+62+0+0+0+0+0+0+0+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+5801.6+128+0+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-122alm6-container\",\"data-framer-appear-id\":\"122alm6\",initial:animation2,nodeId:\"RYYePx9f5\",optimized:true,rendersWithMotion:true,scopeId:\"HEvyp2Ctp\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"RYYePx9f5\",layoutId:\"RYYePx9f5\",q2lyywsmd:\"Get everything for 90% OFF\",variant:\"bvclgxmS8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:[\"Or get all products \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"from\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"our huge library\"})]})})},M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:[\"Or get all products \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"from\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"our huge library\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:[\"Or get all products \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"from\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, rgb(218, 43, 53))\"},children:\"our huge library\"})]})}),className:\"framer-3afk40\",\"data-framer-name\":\"Unleashing the Magic of Design\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2fd58cfe-5ad8-4c77-b978-fbd0588f0aa4, rgb(139, 139, 139))\"},children:\"Imagine you have more than 1000 business and marketing video courses, books, templates, audios, and more. Your own digital library without limits.\"})})},M5wtqChDr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2fd58cfe-5ad8-4c77-b978-fbd0588f0aa4, rgb(139, 139, 139))\"},children:\"Imagine you have more than 1000 business and marketing video courses, books, templates, audios, and more. Your own digital library without limits.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2fd58cfe-5ad8-4c77-b978-fbd0588f0aa4, rgb(139, 139, 139))\"},children:\"Imagine you have more than 1000 business and marketing video courses, books, templates, audios, and more. Your own digital library without limits.\"})}),className:\"framer-1xrjxcy\",\"data-framer-name\":\"Build Professional Websites Without a Single Line of Code, Blasting Speed, and Elevate SEO and Performance.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tygfm5\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WSRvqElNf\"},implicitPathVariables:undefined},{href:{webPageId:\"WSRvqElNf\"},implicitPathVariables:undefined},{href:{webPageId:\"WSRvqElNf\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{y:(componentViewport?.y||0)+0+0+0+5611.6857+96+0+0+0+0+0+0+320.5+0+0},M5wtqChDr:{y:(componentViewport?.y||0)+0+0+0+8640.1857+62+0+0+0+0+0+0+310+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+5801.6+128+0+0+0+0+0+0+400+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-knqqd6-container\",nodeId:\"l5RQpSScn\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{CVXqFgoUf:resolvedLinks2[1]},M5wtqChDr:{CVXqFgoUf:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonArrow,{CAyNElI9L:false,CVXqFgoUf:resolvedLinks2[0],height:\"100%\",id:\"l5RQpSScn\",layoutId:\"l5RQpSScn\",variant:\"i11fdEfHk\",welrCka7A:\"Save 90% with Master Library\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{y:(componentViewport?.y||0)+0+0+0+5611.6857+96+0+0+0+0+0+0+320.5+0+78},M5wtqChDr:{y:(componentViewport?.y||0)+0+0+0+8640.1857+62+0+0+0+0+0+0+310+0+73}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+5801.6+128+0+0+0+0+0+0+400+0+75,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d3ax1v-container\",nodeId:\"kUnJOsRcU\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(SocialProofAvatarsStars,{height:\"100%\",id:\"kUnJOsRcU\",layoutId:\"kUnJOsRcU\",style:{height:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{height:449,width:`min(min(${componentViewport?.width||\"100vw\"} - 96px, 1600px), 1200px)`,y:(componentViewport?.y||0)+0+0+0+5611.6857+96+0+0+0+0+467.5},M5wtqChDr:{height:223,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+8640.1857+62+0+0+0+0+448}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:`min(min(${componentViewport?.width||\"100vw\"} - 128px, 1600px), 1200px)`,y:(componentViewport?.y||0)+0+0+0+5801.6+128+0+0+0+0+545,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yj7tv2-container\",nodeId:\"ZnJpNkeoF\",rendersWithMotion:true,scopeId:\"HEvyp2Ctp\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(HeroImage,{DungVmtnA:addImageAlt({pixelHeight:1219,pixelWidth:1839,src:\"https://framerusercontent.com/images/WHHBxNCjnjvNUWalCq4CwE7qhI.png\",srcSet:\"https://framerusercontent.com/images/WHHBxNCjnjvNUWalCq4CwE7qhI.png?scale-down-to=512 512w,https://framerusercontent.com/images/WHHBxNCjnjvNUWalCq4CwE7qhI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WHHBxNCjnjvNUWalCq4CwE7qhI.png 1839w\"},\"\"),height:\"100%\",id:\"ZnJpNkeoF\",layoutId:\"ZnJpNkeoF\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"Y3jRqcvyI\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dca0fq\",\"data-framer-name\":\"Pattern Overlay\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e5wued-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LcANIgNB0\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{scale:48},M5wtqChDr:{scale:32}},children:/*#__PURE__*/_jsx(Pattern,{back:\"var(--token-1c0ed768-6f1a-461b-98b6-59c7c8e02179, rgb(23, 23, 23))\",diagonal:true,direction:\"left\",duration:5,front:\"rgb(255, 255, 255)\",height:\"100%\",id:\"LcANIgNB0\",layoutId:\"LcANIgNB0\",patternType:\"paper\",radius:0,scale:68,shouldAnimate:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{y:(componentViewport?.y||0)+0+6624.1857},M5wtqChDr:{y:(componentViewport?.y||0)+0+9373.1857}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:788,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7174.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rjpvop-container\",nodeId:\"XbcoopMDV\",scopeId:\"HEvyp2Ctp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d9gr5gTZD:{variant:\"X7nOlkXY9\"},M5wtqChDr:{variant:\"N32m2TuiJ\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"XbcoopMDV\",layoutId:\"XbcoopMDV\",style:{width:\"100%\"},variant:\"trS9HLZeB\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s2ath.framer-zpnuh, .framer-s2ath .framer-zpnuh { display: block; }\",\".framer-s2ath.framer-1h107kj { align-content: center; align-items: center; background-color: var(--token-e54a4610-5c2c-47f3-80e2-24eeafdc975f, #171717); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-s2ath .framer-8ofrqj-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: absolute; right: 273px; top: 181px; width: 40px; z-index: 3; }\",\".framer-s2ath .framer-zib0br-container { height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-s2ath .framer-21uw0l { align-content: center; align-items: center; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-s2ath .framer-1r71i72 { align-content: center; align-items: center; background-color: var(--token-1c0ed768-6f1a-461b-98b6-59c7c8e02179, #171717); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1ciugyb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 64px; top: 181px; width: min-content; z-index: 3; }\",\".framer-s2ath .framer-iplrn0 { align-content: center; align-items: center; background-color: #232323; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 192px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s2ath .framer-1lr50gl-container, .framer-s2ath .framer-1vrtyxi-container, .framer-s2ath .framer-gctu4m-container, .framer-s2ath .framer-uq4m62-container, .framer-s2ath .framer-cc125s-container, .framer-s2ath .framer-9umics-container, .framer-s2ath .framer-1w3t9vo-container, .framer-s2ath .framer-1miwlu9-container, .framer-s2ath .framer-vfvyt7-container, .framer-s2ath .framer-xerhtx-container, .framer-s2ath .framer-riui3y-container, .framer-s2ath .framer-1154nj2-container, .framer-s2ath .framer-duaj0a-container, .framer-s2ath .framer-1b9o20c-container, .framer-s2ath .framer-bdwipl-container, .framer-s2ath .framer-1gxwpco-container, .framer-s2ath .framer-1mg1y8s-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-s2ath .framer-9hn0kq-container { bottom: 0px; cursor: pointer; flex: none; left: 0px; opacity: 0; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-s2ath .framer-oqce3z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ath .framer-175v84k-container { flex: none; height: auto; position: relative; width: 100%; z-index: 8; }\",\".framer-s2ath .framer-vt25ht { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; z-index: 2; }\",\".framer-s2ath .framer-r5ro8w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-nzyzbh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-s7qn4t-container, .framer-s2ath .framer-knqqd6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-s2ath .framer-12g9rg0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1zixgu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-nbljms, .framer-s2ath .framer-40irs1, .framer-s2ath .framer-nglwjh, .framer-s2ath .framer-1mg558h, .framer-s2ath .framer-1ad1zi0, .framer-s2ath .framer-ihdr3r, .framer-s2ath .framer-1rn9h62, .framer-s2ath .framer-1cn0sd0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ath .framer-h4wfa5 { flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ath .framer-kuyns8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-qr3uvj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s2ath .framer-rpwvar { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-s2ath .framer-1t3fnff, .framer-s2ath .framer-1noearp, .framer-s2ath .framer-1aakbz3, .framer-s2ath .framer-1xcwbcu, .framer-s2ath .framer-1mjxmcn, .framer-s2ath .framer-1i5famh, .framer-s2ath .framer-gr18qu, .framer-s2ath .framer-1cb6ns4, .framer-s2ath .framer-1tc1q5, .framer-s2ath .framer-18wn8m1, .framer-s2ath .framer-438zaj, .framer-s2ath .framer-zqosav, .framer-s2ath .framer-syefjc, .framer-s2ath .framer-xiwbit, .framer-s2ath .framer-ib3b0t, .framer-s2ath .framer-11a4mjh, .framer-s2ath .framer-1j3uu2n, .framer-s2ath .framer-16yyhvf, .framer-s2ath .framer-kfavzb { align-content: center; align-items: center; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 12px 6px 6px; position: relative; width: min-content; }\",\".framer-s2ath .framer-1y3y2in, .framer-s2ath .framer-vqbvec, .framer-s2ath .framer-tmt0fu { aspect-ratio: 1 / 1; background-color: var(--token-c74ea950-e579-4e09-a173-7d8a524d06b2, #da2b35); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 35px); overflow: hidden; position: relative; width: 35px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s2ath .framer-1psjshh-container, .framer-s2ath .framer-r9kt4x-container, .framer-s2ath .framer-1s6eya0-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 49%; position: absolute; top: 54%; transform: translate(-50%, -50%); width: 17px; }\",\".framer-s2ath .framer-10y73oa, .framer-s2ath .framer-12vd4ac, .framer-s2ath .framer-183b8m1, .framer-s2ath .framer-rnuki, .framer-s2ath .framer-f75al7, .framer-s2ath .framer-5ri62e, .framer-s2ath .framer-16me4nj, .framer-s2ath .framer-1309n5h, .framer-s2ath .framer-1msu8su, .framer-s2ath .framer-vhh4qi, .framer-s2ath .framer-e0djku, .framer-s2ath .framer-1xvel4x, .framer-s2ath .framer-1w5oe90, .framer-s2ath .framer-1k6z2iu, .framer-s2ath .framer-r7q5j1, .framer-s2ath .framer-1r06ex, .framer-s2ath .framer-1gsji2c, .framer-s2ath .framer-138c77t, .framer-s2ath .framer-15uzjui, .framer-s2ath .framer-n0h5dv, .framer-s2ath .framer-17r1ghy, .framer-s2ath .framer-17eaknb, .framer-s2ath .framer-1vf0bls, .framer-s2ath .framer-18znz1q, .framer-s2ath .framer-bcdgys, .framer-s2ath .framer-d5ocym, .framer-s2ath .framer-q9jxzm, .framer-s2ath .framer-1mdm4ie, .framer-s2ath .framer-gcie3p, .framer-s2ath .framer-tjdc8h, .framer-s2ath .framer-1eub76x, .framer-s2ath .framer-2e5kg3, .framer-s2ath .framer-151tvk0, .framer-s2ath .framer-v96z4, .framer-s2ath .framer-sopf9x, .framer-s2ath .framer-1svqep4, .framer-s2ath .framer-1jvk07o, .framer-s2ath .framer-kjrm74, .framer-s2ath .framer-seg8ro, .framer-s2ath .framer-w2t54n, .framer-s2ath .framer-1l2580e, .framer-s2ath .framer-1r6znlk, .framer-s2ath .framer-1tj6ts3, .framer-s2ath .framer-13pxyat, .framer-s2ath .framer-ye4447, .framer-s2ath .framer-1a3icb4, .framer-s2ath .framer-16l0ln5, .framer-s2ath .framer-1qo75bo, .framer-s2ath .framer-1nvwo1h, .framer-s2ath .framer-1jwk3e0, .framer-s2ath .framer-ntmlx4, .framer-s2ath .framer-ejzchg, .framer-s2ath .framer-bf8zov, .framer-s2ath .framer-1d4a9n3, .framer-s2ath .framer-1ulth6u, .framer-s2ath .framer-p516kg, .framer-s2ath .framer-18s0ebp, .framer-s2ath .framer-czian2, .framer-s2ath .framer-1ka5gev { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-s2ath .framer-o98iqe { background-color: var(--token-e54a4610-5c2c-47f3-80e2-24eeafdc975f, #0f0f0f); bottom: 0px; flex: none; left: 0px; opacity: 0.4; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-s2ath .framer-qiewnb { aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); left: 50%; max-width: 1440px; overflow: hidden; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 0; }\",\".framer-s2ath .framer-71ss9v { -webkit-backdrop-filter: blur(41px); backdrop-filter: blur(41px); bottom: 0px; flex: none; left: 0px; opacity: 0.2; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-s2ath .framer-1rors3c { background: radial-gradient(50% 100% at 48.5% 0%, rgba(23, 23, 23, 0) 0%, rgb(23, 23, 23) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-s2ath .framer-q7ybpd { align-content: center; align-items: center; background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #ffffff); border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 0px 59px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-xyua18 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 48px 96px 48px; position: relative; width: 100%; z-index: 1; }\",\".framer-s2ath .framer-fpmyb8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-6ijrm8, .framer-s2ath .framer-130lk6k, .framer-s2ath .framer-16uct1c { flex: none; height: auto; max-width: 660px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ath .framer-1phcq80-container, .framer-s2ath .framer-9uewvc-container { flex: none; height: 19px; position: relative; width: 16px; }\",\".framer-s2ath .framer-1hpp2ak, .framer-s2ath .framer-lfljnz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-19503t0, .framer-s2ath .framer-1wb39sr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s2ath .framer-10l0rt6-container, .framer-s2ath .framer-1ev77o9-container, .framer-s2ath .framer-1i3wd2j-container, .framer-s2ath .framer-zd11t-container, .framer-s2ath .framer-1uy8wg1-container, .framer-s2ath .framer-lvmp6m-container, .framer-s2ath .framer-12mfuvy-container, .framer-s2ath .framer-153fv0a-container, .framer-s2ath .framer-1d67lfm-container, .framer-s2ath .framer-1pb9e32-container, .framer-s2ath .framer-muupka-container, .framer-s2ath .framer-xzcikq-container, .framer-s2ath .framer-154diy2-container, .framer-s2ath .framer-46ycf-container, .framer-s2ath .framer-wadlln-container, .framer-s2ath .framer-14466e1-container, .framer-s2ath .framer-uqli3z-container, .framer-s2ath .framer-10zlu4x-container, .framer-s2ath .framer-1k7rkxe-container, .framer-s2ath .framer-541vi6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-s2ath .framer-hw6mah, .framer-s2ath .framer-vddyqm, .framer-s2ath .framer-13vimim { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-o5qyvo { aspect-ratio: 1 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 660px); overflow: visible; position: relative; width: 1px; }\",\".framer-s2ath .framer-ko5496-container { flex: none; height: auto; left: 24px; position: absolute; top: 23px; width: auto; z-index: 1; }\",\".framer-s2ath .framer-1huf8zp, .framer-s2ath .framer-97j13f, .framer-s2ath .framer-10xmckd, .framer-s2ath .framer-1bt0qff, .framer-s2ath .framer-6yqrhw, .framer-s2ath .framer-f95v41, .framer-s2ath .framer-14lluxi, .framer-s2ath .framer-sp9kim, .framer-s2ath .framer-13nkpbe, .framer-s2ath .framer-vlky05, .framer-s2ath .framer-1dw7cll, .framer-s2ath .framer-m6r4xc, .framer-s2ath .framer-2876lm, .framer-s2ath .framer-jm3rmi, .framer-s2ath .framer-tx8jod, .framer-s2ath .framer-1h7ogxk, .framer-s2ath .framer-4oly4t, .framer-s2ath .framer-1bjcrr3, .framer-s2ath .framer-1mbw18w { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 320px; position: relative; width: 400px; }\",\".framer-s2ath .framer-p0mey8 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 374px; }\",\".framer-s2ath .framer-165suxd { --border-bottom-width: 1px; --border-color: var(--token-99426e30-dac1-45d5-8d82-e54e8b042f53, #404040); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1c0ed768-6f1a-461b-98b6-59c7c8e02179, #171717); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-s2ath .framer-1j6foh6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-3zsyac { -webkit-mask: linear-gradient(180deg, #000000 57.00000000000001%, rgba(0,0,0,0) 100%) add; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 231px; mask: linear-gradient(180deg, #000000 57.00000000000001%, rgba(0,0,0,0) 100%) add; position: relative; width: 100%; }\",\".framer-s2ath .framer-tvskik { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1exs219, .framer-s2ath .framer-3aoczi, .framer-s2ath .framer-1i6bunz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 0px 7px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-b5xm9f-container, .framer-s2ath .framer-1hfds2-container, .framer-s2ath .framer-1xya2jq-container { flex: none; height: 18px; position: relative; width: 132px; }\",\".framer-s2ath .framer-ktj0k9, .framer-s2ath .framer-ea4at6, .framer-s2ath .framer-yeih6n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-17ul5vn, .framer-s2ath .framer-1bwqvay, .framer-s2ath .framer-vbjpye, .framer-s2ath .framer-qgf2ia { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ath .framer-9z5xml, .framer-s2ath .framer-15bwmc3, .framer-s2ath .framer-ao2yrm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-dp82zd, .framer-s2ath .framer-hjmlon, .framer-s2ath .framer-1b4x4nb, .framer-s2ath .framer-sue3cf, .framer-s2ath .framer-boqf5r, .framer-s2ath .framer-1or7vof { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-s2ath .framer-1gcgprp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-w625ra { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 29px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-s2ath .framer-xopi22, .framer-s2ath .framer-1ubg5cu, .framer-s2ath .framer-kwqexu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 0px 7px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1j8673x, .framer-s2ath .framer-14wag2j, .framer-s2ath .framer-1osrwny { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-s2ath .framer-1dkxq3z-container, .framer-s2ath .framer-183plxz-container, .framer-s2ath .framer-zg94bs-container { flex: none; height: 13px; position: relative; width: 13px; }\",\".framer-s2ath .framer-osrqny { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ath .framer-sonudz { align-content: center; align-items: center; background-color: #ffffff; bottom: 0px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 107px; overflow: hidden; padding: 0px; position: sticky; width: 1px; z-index: 2; }\",\".framer-s2ath .framer-i7z7h0 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: sticky; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-s2ath .framer-15ck1iw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 68px 0px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-s7lw54 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 26px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-752jah, .framer-s2ath .framer-40q87i, .framer-s2ath .framer-1cykqht { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-14w6v8k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-7ma10s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 67px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-h7ci04 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1r0r101 { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 95%; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ath .framer-2lp3js, .framer-s2ath .framer-zm6iqj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1974g4n, .framer-s2ath .framer-1m8ks6s { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-c8tg0f, .framer-s2ath .framer-1a8yxvn, .framer-s2ath .framer-1pliiec, .framer-s2ath .framer-wjfyyx { align-self: start; aspect-ratio: 1.2653846153846153 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 158px); justify-self: start; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-s2ath .framer-162wxm9, .framer-s2ath .framer-djtmvo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 23px 0px 23px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-hbr4k6 { display: grid; flex: none; gap: 48px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(1px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: start; list-style: none; margin: 0px; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-14sspvd, .framer-s2ath .framer-1j224wn, .framer-s2ath .framer-oucez7, .framer-s2ath .framer-1bmeqrb, .framer-s2ath .framer-t1hx32, .framer-s2ath .framer-f1bwik { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-k4pqsr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 83px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-3b94ul, .framer-s2ath .framer-1m1ece5, .framer-s2ath .framer-gmdyth, .framer-s2ath .framer-1crcafb { align-content: center; align-items: center; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px; position: relative; text-decoration: none; width: min-content; }\",\".framer-s2ath .framer-lh5rii, .framer-s2ath .framer-8g1ay6, .framer-s2ath .framer-smx444 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-s2ath .framer-193kbpj, .framer-s2ath .framer-p7z1mt { aspect-ratio: 5.206611570247935 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 126px; }\",\".framer-s2ath .framer-904by3 { aspect-ratio: 5.206611570247934 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 126px; }\",\".framer-s2ath .framer-13vkcgt { align-content: center; align-items: center; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px; position: relative; width: min-content; }\",\".framer-s2ath .framer-kdd74f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 28px 0px 28px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-odt1vp-container { flex: none; height: 232px; position: relative; width: 100%; }\",\".framer-s2ath .framer-74az3b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-8et2zt-container, .framer-s2ath .framer-17z1jev-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-s2ath .framer-5x8e8p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-12nd5dh, .framer-s2ath .framer-948nn, .framer-s2ath .framer-1j9zmp6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-s2ath .framer-fsip8h, .framer-s2ath .framer-1bc069x { aspect-ratio: 5.206611570247935 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); overflow: visible; position: relative; width: 90px; }\",\".framer-s2ath .framer-1n1e1ua { aspect-ratio: 5.206611570247934 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 90px; }\",\".framer-s2ath .framer-19h0ca7 { align-content: center; align-items: center; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 6px; position: relative; width: min-content; }\",\".framer-s2ath .framer-1t57rk6, .framer-s2ath .framer-cfzmat { align-content: flex-start; align-items: flex-start; background-color: var(--token-cd2934a7-4e35-4347-a32c-9650fca4db23, #f2f2f2); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; z-index: 1; }\",\".framer-s2ath .framer-1bmkcok, .framer-s2ath .framer-6z95l5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 53px 0px 53px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-qje, .framer-s2ath .framer-1f7qu35 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1blqtgs, .framer-s2ath .framer-1qouzzl, .framer-s2ath .framer-j7jglh, .framer-s2ath .framer-13tgtd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-n8vm7p, .framer-s2ath .framer-bhscnl { 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: hidden; padding: 14px 0px 14px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-s2ath .framer-1v2f757, .framer-s2ath .framer-2h8gym { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1qhpi92, .framer-s2ath .framer-17d98kv, .framer-s2ath .framer-xygwgh, .framer-s2ath .framer-iokkl8, .framer-s2ath .framer-1curutl, .framer-s2ath .framer-1pksb3c, .framer-s2ath .framer-1azo5k1, .framer-s2ath .framer-10bejh, .framer-s2ath .framer-m19q2t, .framer-s2ath .framer-5xw94g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-s2ath .framer-1fax50f, .framer-s2ath .framer-1lp8pst, .framer-s2ath .framer-1ujp9i0, .framer-s2ath .framer-1knf44y, .framer-s2ath .framer-1owxc1h, .framer-s2ath .framer-p8573v, .framer-s2ath .framer-kmkaoo, .framer-s2ath .framer-1jm6brb, .framer-s2ath .framer-1izxlsz, .framer-s2ath .framer-8y84g9 { --border-bottom-width: 1px; --border-color: var(--token-99426e30-dac1-45d5-8d82-e54e8b042f53, #404040); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; background-color: var(--token-ecb1c2b2-92db-498c-b975-e33cdc9f272b, #262626); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s2ath .framer-1l4sx6b-container, .framer-s2ath .framer-1q9p3jo-container, .framer-s2ath .framer-viu6k-container, .framer-s2ath .framer-1orrooe-container, .framer-s2ath .framer-xk4zuu-container, .framer-s2ath .framer-j1p2rb-container, .framer-s2ath .framer-hzwjuy-container, .framer-s2ath .framer-mrfgvl-container, .framer-s2ath .framer-1l9m019-container, .framer-s2ath .framer-1mh2xep-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-s2ath .framer-1tfzp2u, .framer-s2ath .framer-130nt29 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-ydu1u3, .framer-s2ath .framer-1re5ak0, .framer-s2ath .framer-jkhnxw, .framer-s2ath .framer-1e04r82, .framer-s2ath .framer-l6l7w7, .framer-s2ath .framer-c6vdq { align-content: center; align-items: center; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 6px 12px 6px 6px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1vf0pcw { align-content: center; align-items: center; background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #ffffff); bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; min-height: 60px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 5; }\",\".framer-s2ath .framer-1s7c0i9 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 374px; }\",\".framer-s2ath .framer-c3gade { --border-bottom-width: 1px; --border-color: var(--token-99426e30-dac1-45d5-8d82-e54e8b042f53, #404040); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1c0ed768-6f1a-461b-98b6-59c7c8e02179, #171717); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: 619px; justify-content: center; overflow: hidden; padding: 0px 0px 36px 0px; position: sticky; top: 70px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-s2ath .framer-xvyao4, .framer-s2ath .framer-s7w0hk { -webkit-mask: linear-gradient(180deg, #000000 26.424291112401466%, rgba(0,0,0,0) 92%) add; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 229px; mask: linear-gradient(180deg, #000000 26.424291112401466%, rgba(0,0,0,0) 92%) add; position: relative; width: 100%; }\",\".framer-s2ath .framer-1753642 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-s2ath .framer-ijo863 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 24px 24px; position: relative; width: 100%; }\",\".framer-s2ath .framer-14u3ds4 { --border-bottom-width: 1px; --border-color: var(--token-99426e30-dac1-45d5-8d82-e54e8b042f53, #404040); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1c0ed768-6f1a-461b-98b6-59c7c8e02179, #171717); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 36px 0px; position: sticky; top: 30px; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-s2ath .framer-9j79jk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-s2ath .framer-ooyn25 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 67px 48px 114px 48px; position: relative; width: 100%; }\",\".framer-s2ath .framer-atmb9f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-s2ath .framer-tuagc2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-s0mnak { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s2ath .framer-16f7df9-container, .framer-s2ath .framer-122alm6-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-s2ath .framer-c41zpx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 9px 0px 9px 0px; position: relative; width: min-content; }\",\".framer-s2ath .framer-1o44rrn-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-s2ath .framer-1wo2w1h { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(1px, 1fr)); height: min-content; justify-content: start; list-style: none; margin: 0px; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1ww00lq { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-12blkzb-container { aspect-ratio: 0.5398773006134969 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 652px); position: relative; width: 100%; }\",\".framer-s2ath .framer-1ditkw9 { align-content: center; align-items: center; background-color: var(--token-1c0ed768-6f1a-461b-98b6-59c7c8e02179, #171717); border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 128px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-s2ath .framer-ykrfe8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; z-index: 2; }\",\".framer-s2ath .framer-1cwaxi1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1o7eqxj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1fj4yja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: flex-start; max-width: 1408px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ath .framer-3afk40 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 845px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ath .framer-1xrjxcy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ath .framer-1tygfm5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-s2ath .framer-d3ax1v-container { flex: none; height: 40px; position: relative; width: auto; z-index: 1; }\",\".framer-s2ath .framer-yj7tv2-container { flex: none; height: 700px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-s2ath .framer-1dca0fq { background: radial-gradient(50% 50% at 50% 50%, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0.8) 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.956101843722585% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-s2ath .framer-e5wued-container { flex: none; height: 100%; left: 0px; opacity: 0.05; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-s2ath .framer-1rjpvop-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2ath.framer-1h107kj, .framer-s2ath .framer-21uw0l, .framer-s2ath .framer-1r71i72, .framer-s2ath .framer-1ciugyb, .framer-s2ath .framer-iplrn0, .framer-s2ath .framer-vt25ht, .framer-s2ath .framer-r5ro8w, .framer-s2ath .framer-nzyzbh, .framer-s2ath .framer-12g9rg0, .framer-s2ath .framer-1zixgu, .framer-s2ath .framer-kuyns8, .framer-s2ath .framer-qr3uvj, .framer-s2ath .framer-rpwvar, .framer-s2ath .framer-1t3fnff, .framer-s2ath .framer-1noearp, .framer-s2ath .framer-1aakbz3, .framer-s2ath .framer-q7ybpd, .framer-s2ath .framer-xyua18, .framer-s2ath .framer-fpmyb8, .framer-s2ath .framer-1hpp2ak, .framer-s2ath .framer-19503t0, .framer-s2ath .framer-hw6mah, .framer-s2ath .framer-p0mey8, .framer-s2ath .framer-165suxd, .framer-s2ath .framer-tvskik, .framer-s2ath .framer-1exs219, .framer-s2ath .framer-ktj0k9, .framer-s2ath .framer-1gcgprp, .framer-s2ath .framer-w625ra, .framer-s2ath .framer-xopi22, .framer-s2ath .framer-1j8673x, .framer-s2ath .framer-lfljnz, .framer-s2ath .framer-sonudz, .framer-s2ath .framer-i7z7h0, .framer-s2ath .framer-15ck1iw, .framer-s2ath .framer-s7lw54, .framer-s2ath .framer-752jah, .framer-s2ath .framer-1wb39sr, .framer-s2ath .framer-14w6v8k, .framer-s2ath .framer-7ma10s, .framer-s2ath .framer-h7ci04, .framer-s2ath .framer-2lp3js, .framer-s2ath .framer-162wxm9, .framer-s2ath .framer-14sspvd, .framer-s2ath .framer-1j224wn, .framer-s2ath .framer-oucez7, .framer-s2ath .framer-1bmeqrb, .framer-s2ath .framer-t1hx32, .framer-s2ath .framer-f1bwik, .framer-s2ath .framer-k4pqsr, .framer-s2ath .framer-3b94ul, .framer-s2ath .framer-1m1ece5, .framer-s2ath .framer-13vkcgt, .framer-s2ath .framer-djtmvo, .framer-s2ath .framer-zm6iqj, .framer-s2ath .framer-kdd74f, .framer-s2ath .framer-74az3b, .framer-s2ath .framer-vddyqm, .framer-s2ath .framer-5x8e8p, .framer-s2ath .framer-gmdyth, .framer-s2ath .framer-1crcafb, .framer-s2ath .framer-19h0ca7, .framer-s2ath .framer-1t57rk6, .framer-s2ath .framer-1bmkcok, .framer-s2ath .framer-qje, .framer-s2ath .framer-1blqtgs, .framer-s2ath .framer-1xcwbcu, .framer-s2ath .framer-1mjxmcn, .framer-s2ath .framer-1i5famh, .framer-s2ath .framer-gr18qu, .framer-s2ath .framer-1cb6ns4, .framer-s2ath .framer-1tc1q5, .framer-s2ath .framer-18wn8m1, .framer-s2ath .framer-438zaj, .framer-s2ath .framer-n8vm7p, .framer-s2ath .framer-1qhpi92, .framer-s2ath .framer-17d98kv, .framer-s2ath .framer-xygwgh, .framer-s2ath .framer-iokkl8, .framer-s2ath .framer-1curutl, .framer-s2ath .framer-1tfzp2u, .framer-s2ath .framer-1qouzzl, .framer-s2ath .framer-1vf0pcw, .framer-s2ath .framer-1s7c0i9, .framer-s2ath .framer-cfzmat, .framer-s2ath .framer-6z95l5, .framer-s2ath .framer-1f7qu35, .framer-s2ath .framer-j7jglh, .framer-s2ath .framer-zqosav, .framer-s2ath .framer-syefjc, .framer-s2ath .framer-xiwbit, .framer-s2ath .framer-ib3b0t, .framer-s2ath .framer-11a4mjh, .framer-s2ath .framer-1j3uu2n, .framer-s2ath .framer-16yyhvf, .framer-s2ath .framer-kfavzb, .framer-s2ath .framer-bhscnl, .framer-s2ath .framer-1pksb3c, .framer-s2ath .framer-1azo5k1, .framer-s2ath .framer-10bejh, .framer-s2ath .framer-m19q2t, .framer-s2ath .framer-5xw94g, .framer-s2ath .framer-130nt29, .framer-s2ath .framer-13tgtd, .framer-s2ath .framer-c3gade, .framer-s2ath .framer-3aoczi, .framer-s2ath .framer-1753642, .framer-s2ath .framer-ea4at6, .framer-s2ath .framer-40q87i, .framer-s2ath .framer-1ubg5cu, .framer-s2ath .framer-14wag2j, .framer-s2ath .framer-ijo863, .framer-s2ath .framer-14u3ds4, .framer-s2ath .framer-1i6bunz, .framer-s2ath .framer-9j79jk, .framer-s2ath .framer-yeih6n, .framer-s2ath .framer-1cykqht, .framer-s2ath .framer-kwqexu, .framer-s2ath .framer-1osrwny, .framer-s2ath .framer-13vimim, .framer-s2ath .framer-ooyn25, .framer-s2ath .framer-atmb9f, .framer-s2ath .framer-tuagc2, .framer-s2ath .framer-s0mnak, .framer-s2ath .framer-c41zpx, .framer-s2ath .framer-1ww00lq, .framer-s2ath .framer-1ditkw9, .framer-s2ath .framer-ykrfe8, .framer-s2ath .framer-1cwaxi1, .framer-s2ath .framer-1o7eqxj, .framer-s2ath .framer-1fj4yja, .framer-s2ath .framer-1tygfm5 { gap: 0px; } .framer-s2ath.framer-1h107kj > *, .framer-s2ath .framer-21uw0l > *, .framer-s2ath .framer-q7ybpd > *, .framer-s2ath .framer-p0mey8 > *, .framer-s2ath .framer-s7lw54 > *, .framer-s2ath .framer-h7ci04 > *, .framer-s2ath .framer-14sspvd > *, .framer-s2ath .framer-1j224wn > *, .framer-s2ath .framer-oucez7 > *, .framer-s2ath .framer-1bmeqrb > *, .framer-s2ath .framer-t1hx32 > *, .framer-s2ath .framer-f1bwik > *, .framer-s2ath .framer-1blqtgs > *, .framer-s2ath .framer-1qouzzl > *, .framer-s2ath .framer-j7jglh > *, .framer-s2ath .framer-13tgtd > *, .framer-s2ath .framer-ooyn25 > *, .framer-s2ath .framer-1ww00lq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s2ath.framer-1h107kj > :first-child, .framer-s2ath .framer-21uw0l > :first-child, .framer-s2ath .framer-1r71i72 > :first-child, .framer-s2ath .framer-vt25ht > :first-child, .framer-s2ath .framer-r5ro8w > :first-child, .framer-s2ath .framer-12g9rg0 > :first-child, .framer-s2ath .framer-1zixgu > :first-child, .framer-s2ath .framer-q7ybpd > :first-child, .framer-s2ath .framer-xyua18 > :first-child, .framer-s2ath .framer-19503t0 > :first-child, .framer-s2ath .framer-p0mey8 > :first-child, .framer-s2ath .framer-165suxd > :first-child, .framer-s2ath .framer-tvskik > :first-child, .framer-s2ath .framer-ktj0k9 > :first-child, .framer-s2ath .framer-1gcgprp > :first-child, .framer-s2ath .framer-w625ra > :first-child, .framer-s2ath .framer-sonudz > :first-child, .framer-s2ath .framer-i7z7h0 > :first-child, .framer-s2ath .framer-15ck1iw > :first-child, .framer-s2ath .framer-s7lw54 > :first-child, .framer-s2ath .framer-752jah > :first-child, .framer-s2ath .framer-1wb39sr > :first-child, .framer-s2ath .framer-14w6v8k > :first-child, .framer-s2ath .framer-7ma10s > :first-child, .framer-s2ath .framer-h7ci04 > :first-child, .framer-s2ath .framer-2lp3js > :first-child, .framer-s2ath .framer-162wxm9 > :first-child, .framer-s2ath .framer-14sspvd > :first-child, .framer-s2ath .framer-1j224wn > :first-child, .framer-s2ath .framer-oucez7 > :first-child, .framer-s2ath .framer-1bmeqrb > :first-child, .framer-s2ath .framer-t1hx32 > :first-child, .framer-s2ath .framer-f1bwik > :first-child, .framer-s2ath .framer-3b94ul > :first-child, .framer-s2ath .framer-1m1ece5 > :first-child, .framer-s2ath .framer-13vkcgt > :first-child, .framer-s2ath .framer-djtmvo > :first-child, .framer-s2ath .framer-zm6iqj > :first-child, .framer-s2ath .framer-kdd74f > :first-child, .framer-s2ath .framer-74az3b > :first-child, .framer-s2ath .framer-gmdyth > :first-child, .framer-s2ath .framer-1crcafb > :first-child, .framer-s2ath .framer-19h0ca7 > :first-child, .framer-s2ath .framer-1t57rk6 > :first-child, .framer-s2ath .framer-1bmkcok > :first-child, .framer-s2ath .framer-qje > :first-child, .framer-s2ath .framer-1blqtgs > :first-child, .framer-s2ath .framer-1qhpi92 > :first-child, .framer-s2ath .framer-17d98kv > :first-child, .framer-s2ath .framer-xygwgh > :first-child, .framer-s2ath .framer-iokkl8 > :first-child, .framer-s2ath .framer-1curutl > :first-child, .framer-s2ath .framer-1tfzp2u > :first-child, .framer-s2ath .framer-1qouzzl > :first-child, .framer-s2ath .framer-1vf0pcw > :first-child, .framer-s2ath .framer-1s7c0i9 > :first-child, .framer-s2ath .framer-cfzmat > :first-child, .framer-s2ath .framer-6z95l5 > :first-child, .framer-s2ath .framer-1f7qu35 > :first-child, .framer-s2ath .framer-j7jglh > :first-child, .framer-s2ath .framer-1pksb3c > :first-child, .framer-s2ath .framer-1azo5k1 > :first-child, .framer-s2ath .framer-10bejh > :first-child, .framer-s2ath .framer-m19q2t > :first-child, .framer-s2ath .framer-5xw94g > :first-child, .framer-s2ath .framer-130nt29 > :first-child, .framer-s2ath .framer-13tgtd > :first-child, .framer-s2ath .framer-c3gade > :first-child, .framer-s2ath .framer-1753642 > :first-child, .framer-s2ath .framer-ea4at6 > :first-child, .framer-s2ath .framer-40q87i > :first-child, .framer-s2ath .framer-14u3ds4 > :first-child, .framer-s2ath .framer-9j79jk > :first-child, .framer-s2ath .framer-yeih6n > :first-child, .framer-s2ath .framer-1cykqht > :first-child, .framer-s2ath .framer-ooyn25 > :first-child, .framer-s2ath .framer-atmb9f > :first-child, .framer-s2ath .framer-s0mnak > :first-child, .framer-s2ath .framer-1ww00lq > :first-child, .framer-s2ath .framer-1ditkw9 > :first-child, .framer-s2ath .framer-ykrfe8 > :first-child, .framer-s2ath .framer-1cwaxi1 > :first-child, .framer-s2ath .framer-1o7eqxj > :first-child, .framer-s2ath .framer-1fj4yja > :first-child, .framer-s2ath .framer-1tygfm5 > :first-child { margin-top: 0px; } .framer-s2ath.framer-1h107kj > :last-child, .framer-s2ath .framer-21uw0l > :last-child, .framer-s2ath .framer-1r71i72 > :last-child, .framer-s2ath .framer-vt25ht > :last-child, .framer-s2ath .framer-r5ro8w > :last-child, .framer-s2ath .framer-12g9rg0 > :last-child, .framer-s2ath .framer-1zixgu > :last-child, .framer-s2ath .framer-q7ybpd > :last-child, .framer-s2ath .framer-xyua18 > :last-child, .framer-s2ath .framer-19503t0 > :last-child, .framer-s2ath .framer-p0mey8 > :last-child, .framer-s2ath .framer-165suxd > :last-child, .framer-s2ath .framer-tvskik > :last-child, .framer-s2ath .framer-ktj0k9 > :last-child, .framer-s2ath .framer-1gcgprp > :last-child, .framer-s2ath .framer-w625ra > :last-child, .framer-s2ath .framer-sonudz > :last-child, .framer-s2ath .framer-i7z7h0 > :last-child, .framer-s2ath .framer-15ck1iw > :last-child, .framer-s2ath .framer-s7lw54 > :last-child, .framer-s2ath .framer-752jah > :last-child, .framer-s2ath .framer-1wb39sr > :last-child, .framer-s2ath .framer-14w6v8k > :last-child, .framer-s2ath .framer-7ma10s > :last-child, .framer-s2ath .framer-h7ci04 > :last-child, .framer-s2ath .framer-2lp3js > :last-child, .framer-s2ath .framer-162wxm9 > :last-child, .framer-s2ath .framer-14sspvd > :last-child, .framer-s2ath .framer-1j224wn > :last-child, .framer-s2ath .framer-oucez7 > :last-child, .framer-s2ath .framer-1bmeqrb > :last-child, .framer-s2ath .framer-t1hx32 > :last-child, .framer-s2ath .framer-f1bwik > :last-child, .framer-s2ath .framer-3b94ul > :last-child, .framer-s2ath .framer-1m1ece5 > :last-child, .framer-s2ath .framer-13vkcgt > :last-child, .framer-s2ath .framer-djtmvo > :last-child, .framer-s2ath .framer-zm6iqj > :last-child, .framer-s2ath .framer-kdd74f > :last-child, .framer-s2ath .framer-74az3b > :last-child, .framer-s2ath .framer-gmdyth > :last-child, .framer-s2ath .framer-1crcafb > :last-child, .framer-s2ath .framer-19h0ca7 > :last-child, .framer-s2ath .framer-1t57rk6 > :last-child, .framer-s2ath .framer-1bmkcok > :last-child, .framer-s2ath .framer-qje > :last-child, .framer-s2ath .framer-1blqtgs > :last-child, .framer-s2ath .framer-1qhpi92 > :last-child, .framer-s2ath .framer-17d98kv > :last-child, .framer-s2ath .framer-xygwgh > :last-child, .framer-s2ath .framer-iokkl8 > :last-child, .framer-s2ath .framer-1curutl > :last-child, .framer-s2ath .framer-1tfzp2u > :last-child, .framer-s2ath .framer-1qouzzl > :last-child, .framer-s2ath .framer-1vf0pcw > :last-child, .framer-s2ath .framer-1s7c0i9 > :last-child, .framer-s2ath .framer-cfzmat > :last-child, .framer-s2ath .framer-6z95l5 > :last-child, .framer-s2ath .framer-1f7qu35 > :last-child, .framer-s2ath .framer-j7jglh > :last-child, .framer-s2ath .framer-1pksb3c > :last-child, .framer-s2ath .framer-1azo5k1 > :last-child, .framer-s2ath .framer-10bejh > :last-child, .framer-s2ath .framer-m19q2t > :last-child, .framer-s2ath .framer-5xw94g > :last-child, .framer-s2ath .framer-130nt29 > :last-child, .framer-s2ath .framer-13tgtd > :last-child, .framer-s2ath .framer-c3gade > :last-child, .framer-s2ath .framer-1753642 > :last-child, .framer-s2ath .framer-ea4at6 > :last-child, .framer-s2ath .framer-40q87i > :last-child, .framer-s2ath .framer-14u3ds4 > :last-child, .framer-s2ath .framer-9j79jk > :last-child, .framer-s2ath .framer-yeih6n > :last-child, .framer-s2ath .framer-1cykqht > :last-child, .framer-s2ath .framer-ooyn25 > :last-child, .framer-s2ath .framer-atmb9f > :last-child, .framer-s2ath .framer-s0mnak > :last-child, .framer-s2ath .framer-1ww00lq > :last-child, .framer-s2ath .framer-1ditkw9 > :last-child, .framer-s2ath .framer-ykrfe8 > :last-child, .framer-s2ath .framer-1cwaxi1 > :last-child, .framer-s2ath .framer-1o7eqxj > :last-child, .framer-s2ath .framer-1fj4yja > :last-child, .framer-s2ath .framer-1tygfm5 > :last-child { margin-bottom: 0px; } .framer-s2ath .framer-1r71i72 > *, .framer-s2ath .framer-vt25ht > *, .framer-s2ath .framer-xyua18 > *, .framer-s2ath .framer-1s7c0i9 > *, .framer-s2ath .framer-1ditkw9 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-s2ath .framer-1ciugyb > *, .framer-s2ath .framer-hw6mah > *, .framer-s2ath .framer-1exs219 > *, .framer-s2ath .framer-vddyqm > *, .framer-s2ath .framer-3aoczi > *, .framer-s2ath .framer-ijo863 > *, .framer-s2ath .framer-1i6bunz > *, .framer-s2ath .framer-13vimim > *, .framer-s2ath .framer-c41zpx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-s2ath .framer-1ciugyb > :first-child, .framer-s2ath .framer-iplrn0 > :first-child, .framer-s2ath .framer-nzyzbh > :first-child, .framer-s2ath .framer-kuyns8 > :first-child, .framer-s2ath .framer-qr3uvj > :first-child, .framer-s2ath .framer-rpwvar > :first-child, .framer-s2ath .framer-1t3fnff > :first-child, .framer-s2ath .framer-1noearp > :first-child, .framer-s2ath .framer-1aakbz3 > :first-child, .framer-s2ath .framer-fpmyb8 > :first-child, .framer-s2ath .framer-1hpp2ak > :first-child, .framer-s2ath .framer-hw6mah > :first-child, .framer-s2ath .framer-1exs219 > :first-child, .framer-s2ath .framer-xopi22 > :first-child, .framer-s2ath .framer-1j8673x > :first-child, .framer-s2ath .framer-lfljnz > :first-child, .framer-s2ath .framer-k4pqsr > :first-child, .framer-s2ath .framer-vddyqm > :first-child, .framer-s2ath .framer-5x8e8p > :first-child, .framer-s2ath .framer-1xcwbcu > :first-child, .framer-s2ath .framer-1mjxmcn > :first-child, .framer-s2ath .framer-1i5famh > :first-child, .framer-s2ath .framer-gr18qu > :first-child, .framer-s2ath .framer-1cb6ns4 > :first-child, .framer-s2ath .framer-1tc1q5 > :first-child, .framer-s2ath .framer-18wn8m1 > :first-child, .framer-s2ath .framer-438zaj > :first-child, .framer-s2ath .framer-n8vm7p > :first-child, .framer-s2ath .framer-zqosav > :first-child, .framer-s2ath .framer-syefjc > :first-child, .framer-s2ath .framer-xiwbit > :first-child, .framer-s2ath .framer-ib3b0t > :first-child, .framer-s2ath .framer-11a4mjh > :first-child, .framer-s2ath .framer-1j3uu2n > :first-child, .framer-s2ath .framer-16yyhvf > :first-child, .framer-s2ath .framer-kfavzb > :first-child, .framer-s2ath .framer-bhscnl > :first-child, .framer-s2ath .framer-3aoczi > :first-child, .framer-s2ath .framer-1ubg5cu > :first-child, .framer-s2ath .framer-14wag2j > :first-child, .framer-s2ath .framer-ijo863 > :first-child, .framer-s2ath .framer-1i6bunz > :first-child, .framer-s2ath .framer-kwqexu > :first-child, .framer-s2ath .framer-1osrwny > :first-child, .framer-s2ath .framer-13vimim > :first-child, .framer-s2ath .framer-tuagc2 > :first-child, .framer-s2ath .framer-c41zpx > :first-child { margin-left: 0px; } .framer-s2ath .framer-1ciugyb > :last-child, .framer-s2ath .framer-iplrn0 > :last-child, .framer-s2ath .framer-nzyzbh > :last-child, .framer-s2ath .framer-kuyns8 > :last-child, .framer-s2ath .framer-qr3uvj > :last-child, .framer-s2ath .framer-rpwvar > :last-child, .framer-s2ath .framer-1t3fnff > :last-child, .framer-s2ath .framer-1noearp > :last-child, .framer-s2ath .framer-1aakbz3 > :last-child, .framer-s2ath .framer-fpmyb8 > :last-child, .framer-s2ath .framer-1hpp2ak > :last-child, .framer-s2ath .framer-hw6mah > :last-child, .framer-s2ath .framer-1exs219 > :last-child, .framer-s2ath .framer-xopi22 > :last-child, .framer-s2ath .framer-1j8673x > :last-child, .framer-s2ath .framer-lfljnz > :last-child, .framer-s2ath .framer-k4pqsr > :last-child, .framer-s2ath .framer-vddyqm > :last-child, .framer-s2ath .framer-5x8e8p > :last-child, .framer-s2ath .framer-1xcwbcu > :last-child, .framer-s2ath .framer-1mjxmcn > :last-child, .framer-s2ath .framer-1i5famh > :last-child, .framer-s2ath .framer-gr18qu > :last-child, .framer-s2ath .framer-1cb6ns4 > :last-child, .framer-s2ath .framer-1tc1q5 > :last-child, .framer-s2ath .framer-18wn8m1 > :last-child, .framer-s2ath .framer-438zaj > :last-child, .framer-s2ath .framer-n8vm7p > :last-child, .framer-s2ath .framer-zqosav > :last-child, .framer-s2ath .framer-syefjc > :last-child, .framer-s2ath .framer-xiwbit > :last-child, .framer-s2ath .framer-ib3b0t > :last-child, .framer-s2ath .framer-11a4mjh > :last-child, .framer-s2ath .framer-1j3uu2n > :last-child, .framer-s2ath .framer-16yyhvf > :last-child, .framer-s2ath .framer-kfavzb > :last-child, .framer-s2ath .framer-bhscnl > :last-child, .framer-s2ath .framer-3aoczi > :last-child, .framer-s2ath .framer-1ubg5cu > :last-child, .framer-s2ath .framer-14wag2j > :last-child, .framer-s2ath .framer-ijo863 > :last-child, .framer-s2ath .framer-1i6bunz > :last-child, .framer-s2ath .framer-kwqexu > :last-child, .framer-s2ath .framer-1osrwny > :last-child, .framer-s2ath .framer-13vimim > :last-child, .framer-s2ath .framer-tuagc2 > :last-child, .framer-s2ath .framer-c41zpx > :last-child { margin-right: 0px; } .framer-s2ath .framer-iplrn0 > *, .framer-s2ath .framer-1t3fnff > *, .framer-s2ath .framer-1noearp > *, .framer-s2ath .framer-1aakbz3 > *, .framer-s2ath .framer-1xcwbcu > *, .framer-s2ath .framer-1mjxmcn > *, .framer-s2ath .framer-1i5famh > *, .framer-s2ath .framer-gr18qu > *, .framer-s2ath .framer-1cb6ns4 > *, .framer-s2ath .framer-1tc1q5 > *, .framer-s2ath .framer-18wn8m1 > *, .framer-s2ath .framer-438zaj > *, .framer-s2ath .framer-zqosav > *, .framer-s2ath .framer-syefjc > *, .framer-s2ath .framer-xiwbit > *, .framer-s2ath .framer-ib3b0t > *, .framer-s2ath .framer-11a4mjh > *, .framer-s2ath .framer-1j3uu2n > *, .framer-s2ath .framer-16yyhvf > *, .framer-s2ath .framer-kfavzb > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-s2ath .framer-r5ro8w > *, .framer-s2ath .framer-9j79jk > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-s2ath .framer-nzyzbh > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-s2ath .framer-12g9rg0 > *, .framer-s2ath .framer-kdd74f > *, .framer-s2ath .framer-74az3b > *, .framer-s2ath .framer-1bmkcok > *, .framer-s2ath .framer-6z95l5 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-s2ath .framer-1zixgu > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-s2ath .framer-kuyns8 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-s2ath .framer-qr3uvj > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-s2ath .framer-rpwvar > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-s2ath .framer-fpmyb8 > *, .framer-s2ath .framer-xopi22 > *, .framer-s2ath .framer-1ubg5cu > *, .framer-s2ath .framer-kwqexu > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-s2ath .framer-1hpp2ak > *, .framer-s2ath .framer-lfljnz > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-s2ath .framer-19503t0 > *, .framer-s2ath .framer-1wb39sr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-s2ath .framer-165suxd > *, .framer-s2ath .framer-i7z7h0 > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-s2ath .framer-tvskik > *, .framer-s2ath .framer-1fj4yja > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-s2ath .framer-ktj0k9 > *, .framer-s2ath .framer-ea4at6 > *, .framer-s2ath .framer-yeih6n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-s2ath .framer-1gcgprp > *, .framer-s2ath .framer-sonudz > *, .framer-s2ath .framer-15ck1iw > *, .framer-s2ath .framer-qje > *, .framer-s2ath .framer-1tfzp2u > *, .framer-s2ath .framer-1vf0pcw > *, .framer-s2ath .framer-1f7qu35 > *, .framer-s2ath .framer-130nt29 > *, .framer-s2ath .framer-ykrfe8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s2ath .framer-w625ra > *, .framer-s2ath .framer-752jah > *, .framer-s2ath .framer-40q87i > *, .framer-s2ath .framer-1cykqht > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-s2ath .framer-1j8673x > *, .framer-s2ath .framer-14wag2j > *, .framer-s2ath .framer-1osrwny > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-s2ath .framer-14w6v8k > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } .framer-s2ath .framer-7ma10s > * { margin: 0px; margin-bottom: calc(67px / 2); margin-top: calc(67px / 2); } .framer-s2ath .framer-2lp3js > *, .framer-s2ath .framer-162wxm9 > *, .framer-s2ath .framer-djtmvo > *, .framer-s2ath .framer-zm6iqj > *, .framer-s2ath .framer-1753642 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-s2ath .framer-k4pqsr > * { margin: 0px; margin-left: calc(83px / 2); margin-right: calc(83px / 2); } .framer-s2ath .framer-3b94ul > *, .framer-s2ath .framer-1m1ece5 > *, .framer-s2ath .framer-13vkcgt > *, .framer-s2ath .framer-gmdyth > *, .framer-s2ath .framer-1crcafb > *, .framer-s2ath .framer-19h0ca7 > *, .framer-s2ath .framer-1qhpi92 > *, .framer-s2ath .framer-17d98kv > *, .framer-s2ath .framer-xygwgh > *, .framer-s2ath .framer-iokkl8 > *, .framer-s2ath .framer-1curutl > *, .framer-s2ath .framer-1pksb3c > *, .framer-s2ath .framer-1azo5k1 > *, .framer-s2ath .framer-10bejh > *, .framer-s2ath .framer-m19q2t > *, .framer-s2ath .framer-5xw94g > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-s2ath .framer-5x8e8p > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } .framer-s2ath .framer-1t57rk6 > *, .framer-s2ath .framer-cfzmat > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-s2ath .framer-n8vm7p > *, .framer-s2ath .framer-bhscnl > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-s2ath .framer-c3gade > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-s2ath .framer-14u3ds4 > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-s2ath .framer-atmb9f > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-s2ath .framer-tuagc2 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-s2ath .framer-s0mnak > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-s2ath .framer-1cwaxi1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-s2ath .framer-1o7eqxj > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-s2ath .framer-1tygfm5 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,'.framer-s2ath[data-border=\"true\"]::after, .framer-s2ath [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-s2ath.framer-1h107kj { width: 810px; } .framer-s2ath .framer-8ofrqj-container { right: 250px; top: 134px; } .framer-s2ath .framer-21uw0l { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; } .framer-s2ath .framer-1r71i72 { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; gap: 32px; will-change: var(--framer-will-change-override, transform); } .framer-s2ath .framer-1ciugyb { right: 43px; top: 134px; } .framer-s2ath .framer-vt25ht, .framer-s2ath .framer-ykrfe8 { padding: 0px 48px 0px 48px; } .framer-s2ath .framer-o98iqe { bottom: unset; height: 10470vh; } .framer-s2ath .framer-qiewnb { height: var(--framer-aspect-ratio-supported, 270px); } .framer-s2ath .framer-q7ybpd { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; padding: 48px 0px 80px 0px; } .framer-s2ath .framer-xyua18 { padding: 0px 32px 64px 32px; } .framer-s2ath .framer-1hpp2ak, .framer-s2ath .framer-lfljnz { gap: 32px; } .framer-s2ath .framer-19503t0 { order: 0; position: sticky; top: 30px; z-index: 1; } .framer-s2ath .framer-o5qyvo { height: var(--framer-aspect-ratio-supported, 404px); } .framer-s2ath .framer-p0mey8 { order: 1; width: 310px; } .framer-s2ath .framer-165suxd { flex: none; height: min-content; position: sticky; top: 30px; } .framer-s2ath .framer-1j6foh6 { flex: none; gap: 0px; height: min-content; justify-content: center; max-width: 400px; } .framer-s2ath .framer-tvskik { gap: 18px; } .framer-s2ath .framer-1wb39sr, .framer-s2ath .framer-1crcafb { order: 0; } .framer-s2ath .framer-7ma10s, .framer-s2ath .framer-gmdyth { order: 1; } .framer-s2ath .framer-1r0r101 { width: 90%; } .framer-s2ath .framer-2lp3js { order: 3; } .framer-s2ath .framer-162wxm9 { order: 7; } .framer-s2ath .framer-hbr4k6 { order: 8; } .framer-s2ath .framer-djtmvo { order: 9; } .framer-s2ath .framer-zm6iqj { order: 10; } .framer-s2ath .framer-kdd74f { gap: 24px; order: 11; } .framer-s2ath .framer-74az3b { gap: 24px; order: 12; } .framer-s2ath .framer-5x8e8p, .framer-s2ath .framer-19h0ca7 { order: 2; } .framer-s2ath .framer-fsip8h, .framer-s2ath .framer-1n1e1ua, .framer-s2ath .framer-1bc069x { height: var(--framer-aspect-ratio-supported, 18px); } .framer-s2ath .framer-1s7c0i9 { order: 3; width: 310px; } .framer-s2ath .framer-cfzmat { padding: 0px 30px 0px 30px; } .framer-s2ath .framer-6z95l5 { gap: 40px; } .framer-s2ath .framer-zqosav, .framer-s2ath .framer-syefjc, .framer-s2ath .framer-xiwbit, .framer-s2ath .framer-ib3b0t, .framer-s2ath .framer-11a4mjh, .framer-s2ath .framer-1j3uu2n, .framer-s2ath .framer-16yyhvf, .framer-s2ath .framer-kfavzb { width: 100%; } .framer-s2ath .framer-2h8gym { padding: 0px; } .framer-s2ath .framer-1nvwo1h { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-s2ath .framer-c3gade { gap: 7px; height: min-content; } .framer-s2ath .framer-xvyao4 { width: 429px; } .framer-s2ath .framer-1753642 { gap: 30px; } .framer-s2ath .framer-ooyn25 { padding: 64px 32px 64px 32px; } .framer-s2ath .framer-atmb9f { gap: 48px; } .framer-s2ath .framer-1wo2w1h { grid-template-columns: repeat(2, minmax(1px, 1fr)); } .framer-s2ath .framer-12blkzb-container { height: var(--framer-aspect-ratio-supported, 669px); } .framer-s2ath .framer-1ditkw9 { border-top-left-radius: 32px; border-top-right-radius: 32px; padding: 96px 0px 0px 0px; } .framer-s2ath .framer-1cwaxi1 { gap: 29px; } .framer-s2ath .framer-1o7eqxj { gap: 60px; } .framer-s2ath .framer-1fj4yja { gap: 17px; max-width: 714px; } .framer-s2ath .framer-3afk40 { width: 650px; } .framer-s2ath .framer-1xrjxcy { width: 450px; } .framer-s2ath .framer-1tygfm5 { gap: 34px; } .framer-s2ath .framer-yj7tv2-container { aspect-ratio: 1.5902004454342984 / 1; height: var(--framer-aspect-ratio-supported, 449px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2ath .framer-1r71i72, .framer-s2ath .framer-1hpp2ak, .framer-s2ath .framer-1j6foh6, .framer-s2ath .framer-tvskik, .framer-s2ath .framer-lfljnz, .framer-s2ath .framer-kdd74f, .framer-s2ath .framer-74az3b, .framer-s2ath .framer-6z95l5, .framer-s2ath .framer-c3gade, .framer-s2ath .framer-1753642, .framer-s2ath .framer-atmb9f, .framer-s2ath .framer-1cwaxi1, .framer-s2ath .framer-1o7eqxj, .framer-s2ath .framer-1fj4yja, .framer-s2ath .framer-1tygfm5 { gap: 0px; } .framer-s2ath .framer-1r71i72 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-s2ath .framer-1r71i72 > :first-child, .framer-s2ath .framer-1j6foh6 > :first-child, .framer-s2ath .framer-tvskik > :first-child, .framer-s2ath .framer-kdd74f > :first-child, .framer-s2ath .framer-74az3b > :first-child, .framer-s2ath .framer-6z95l5 > :first-child, .framer-s2ath .framer-c3gade > :first-child, .framer-s2ath .framer-1753642 > :first-child, .framer-s2ath .framer-atmb9f > :first-child, .framer-s2ath .framer-1cwaxi1 > :first-child, .framer-s2ath .framer-1o7eqxj > :first-child, .framer-s2ath .framer-1fj4yja > :first-child, .framer-s2ath .framer-1tygfm5 > :first-child { margin-top: 0px; } .framer-s2ath .framer-1r71i72 > :last-child, .framer-s2ath .framer-1j6foh6 > :last-child, .framer-s2ath .framer-tvskik > :last-child, .framer-s2ath .framer-kdd74f > :last-child, .framer-s2ath .framer-74az3b > :last-child, .framer-s2ath .framer-6z95l5 > :last-child, .framer-s2ath .framer-c3gade > :last-child, .framer-s2ath .framer-1753642 > :last-child, .framer-s2ath .framer-atmb9f > :last-child, .framer-s2ath .framer-1cwaxi1 > :last-child, .framer-s2ath .framer-1o7eqxj > :last-child, .framer-s2ath .framer-1fj4yja > :last-child, .framer-s2ath .framer-1tygfm5 > :last-child { margin-bottom: 0px; } .framer-s2ath .framer-1hpp2ak > *, .framer-s2ath .framer-lfljnz > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-s2ath .framer-1hpp2ak > :first-child, .framer-s2ath .framer-lfljnz > :first-child { margin-left: 0px; } .framer-s2ath .framer-1hpp2ak > :last-child, .framer-s2ath .framer-lfljnz > :last-child { margin-right: 0px; } .framer-s2ath .framer-1j6foh6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s2ath .framer-tvskik > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-s2ath .framer-kdd74f > *, .framer-s2ath .framer-74az3b > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-s2ath .framer-6z95l5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-s2ath .framer-c3gade > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-s2ath .framer-1753642 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-s2ath .framer-atmb9f > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-s2ath .framer-1cwaxi1 > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-s2ath .framer-1o7eqxj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-s2ath .framer-1fj4yja > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-s2ath .framer-1tygfm5 > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } }}\",\"@media (max-width: 809px) { .framer-s2ath.framer-1h107kj { width: 390px; } .framer-s2ath .framer-8ofrqj-container { right: 68px; top: 16px; } .framer-s2ath .framer-21uw0l { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; } .framer-s2ath .framer-1r71i72 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; gap: 23px; padding: 0px 0px 72px 0px; will-change: var(--framer-will-change-override, transform); } .framer-s2ath .framer-1ciugyb { right: 24px; top: 128px; } .framer-s2ath .framer-iplrn0 { height: 32px; order: 0; padding: 0px 16px 0px 10px; } .framer-s2ath .framer-1lr50gl-container { height: 16px; width: 16px; } .framer-s2ath .framer-vt25ht, .framer-s2ath .framer-xyua18 { padding: 0px 24px 0px 24px; } .framer-s2ath .framer-r5ro8w { gap: 18px; padding: 22px 0px 0px 0px; } .framer-s2ath .framer-12g9rg0 { gap: 43px; } .framer-s2ath .framer-kuyns8 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 51px; } .framer-s2ath .framer-qr3uvj, .framer-s2ath .framer-8et2zt-container, .framer-s2ath .framer-s0mnak { flex: none; width: 100%; } .framer-s2ath .framer-rpwvar { flex: 1 0 0px; flex-direction: column; justify-content: flex-start; width: 1px; } .framer-s2ath .framer-1t3fnff, .framer-s2ath .framer-541vi6-container { order: 1; } .framer-s2ath .framer-1noearp, .framer-s2ath .framer-7ma10s { order: 0; } .framer-s2ath .framer-1aakbz3, .framer-s2ath .framer-2lp3js, .framer-s2ath .framer-1vf0pcw, .framer-s2ath .framer-1k7rkxe-container { order: 2; } .framer-s2ath .framer-qiewnb { height: var(--framer-aspect-ratio-supported, 67px); } .framer-s2ath .framer-71ss9v { bottom: -60px; opacity: 0.34; } .framer-s2ath .framer-q7ybpd { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; padding: 32px 0px 32px 0px; } .framer-s2ath .framer-1hpp2ak, .framer-s2ath .framer-lfljnz { flex-direction: column; gap: 32px; } .framer-s2ath .framer-19503t0 { flex: none; order: 0; width: 100%; } .framer-s2ath .framer-hw6mah { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); } .framer-s2ath .framer-o5qyvo { height: var(--framer-aspect-ratio-supported, 200px); } .framer-s2ath .framer-p0mey8 { align-self: unset; height: min-content; order: 1; width: 100%; } .framer-s2ath .framer-165suxd { flex: none; height: min-content; } .framer-s2ath .framer-1j6foh6 { flex: none; gap: 0px; height: min-content; justify-content: center; } .framer-s2ath .framer-sonudz { flex: none; min-height: unset; order: 3; width: 100%; } .framer-s2ath .framer-1wb39sr { flex: none; order: 1; width: 100%; } .framer-s2ath .framer-14w6v8k { gap: 90px; order: 0; } .framer-s2ath .framer-1r0r101 { width: 100%; } .framer-s2ath .framer-1974g4n, .framer-s2ath .framer-1m8ks6s { grid-template-columns: repeat(1, minmax(1px, 1fr)); } .framer-s2ath .framer-162wxm9 { order: 1; padding: 0px; } .framer-s2ath .framer-hbr4k6 { order: 10; padding: 0px; } .framer-s2ath .framer-djtmvo { order: 9; padding: 0px; } .framer-s2ath .framer-zm6iqj { order: 7; } .framer-s2ath .framer-kdd74f { order: 11; padding: 0px; } .framer-s2ath .framer-odt1vp-container { height: 248px; } .framer-s2ath .framer-74az3b { order: 12; padding: 0px; } .framer-s2ath .framer-vddyqm { flex-direction: column; } .framer-s2ath .framer-5x8e8p { gap: 18px; justify-content: center; order: 3; } .framer-s2ath .framer-1t57rk6 { justify-content: center; order: 5; } .framer-s2ath .framer-1v2f757 { gap: 36px; justify-content: center; } .framer-s2ath .framer-kwqexu { order: 3; } .framer-s2ath .framer-13vimim { padding: 50px 0px 0px 0px; } .framer-s2ath .framer-ooyn25 { padding: 56px 24px 56px 24px; } .framer-s2ath .framer-atmb9f { gap: 32px; } .framer-s2ath .framer-tuagc2 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-s2ath .framer-1wo2w1h { gap: 32px; grid-template-columns: repeat(1, minmax(1px, 1fr)); } .framer-s2ath .framer-12blkzb-container { height: var(--framer-aspect-ratio-supported, 370px); } .framer-s2ath .framer-1ditkw9 { border-top-left-radius: 24px; border-top-right-radius: 24px; padding: 62px 0px 0px 0px; } .framer-s2ath .framer-ykrfe8 { padding: 0px 20px 0px 20px; } .framer-s2ath .framer-1cwaxi1 { gap: 25px; max-width: unset; } .framer-s2ath .framer-1o7eqxj { gap: 41px; } .framer-s2ath .framer-1fj4yja { gap: 14px; max-width: 350px; padding: 24px 0px 24px 0px; } .framer-s2ath .framer-3afk40 { width: 350px; } .framer-s2ath .framer-1xrjxcy { width: 310px; } .framer-s2ath .framer-1tygfm5 { gap: 29px; } .framer-s2ath .framer-yj7tv2-container { aspect-ratio: 1.5336322869955157 / 1; height: var(--framer-aspect-ratio-supported, 130px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2ath .framer-1r71i72, .framer-s2ath .framer-r5ro8w, .framer-s2ath .framer-12g9rg0, .framer-s2ath .framer-kuyns8, .framer-s2ath .framer-rpwvar, .framer-s2ath .framer-1hpp2ak, .framer-s2ath .framer-1j6foh6, .framer-s2ath .framer-lfljnz, .framer-s2ath .framer-14w6v8k, .framer-s2ath .framer-vddyqm, .framer-s2ath .framer-5x8e8p, .framer-s2ath .framer-1v2f757, .framer-s2ath .framer-atmb9f, .framer-s2ath .framer-tuagc2, .framer-s2ath .framer-1wo2w1h, .framer-s2ath .framer-1cwaxi1, .framer-s2ath .framer-1o7eqxj, .framer-s2ath .framer-1fj4yja, .framer-s2ath .framer-1tygfm5 { gap: 0px; } .framer-s2ath .framer-1r71i72 > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-s2ath .framer-1r71i72 > :first-child, .framer-s2ath .framer-r5ro8w > :first-child, .framer-s2ath .framer-12g9rg0 > :first-child, .framer-s2ath .framer-kuyns8 > :first-child, .framer-s2ath .framer-rpwvar > :first-child, .framer-s2ath .framer-1hpp2ak > :first-child, .framer-s2ath .framer-1j6foh6 > :first-child, .framer-s2ath .framer-lfljnz > :first-child, .framer-s2ath .framer-14w6v8k > :first-child, .framer-s2ath .framer-vddyqm > :first-child, .framer-s2ath .framer-atmb9f > :first-child, .framer-s2ath .framer-tuagc2 > :first-child, .framer-s2ath .framer-1cwaxi1 > :first-child, .framer-s2ath .framer-1o7eqxj > :first-child, .framer-s2ath .framer-1fj4yja > :first-child, .framer-s2ath .framer-1tygfm5 > :first-child { margin-top: 0px; } .framer-s2ath .framer-1r71i72 > :last-child, .framer-s2ath .framer-r5ro8w > :last-child, .framer-s2ath .framer-12g9rg0 > :last-child, .framer-s2ath .framer-kuyns8 > :last-child, .framer-s2ath .framer-rpwvar > :last-child, .framer-s2ath .framer-1hpp2ak > :last-child, .framer-s2ath .framer-1j6foh6 > :last-child, .framer-s2ath .framer-lfljnz > :last-child, .framer-s2ath .framer-14w6v8k > :last-child, .framer-s2ath .framer-vddyqm > :last-child, .framer-s2ath .framer-atmb9f > :last-child, .framer-s2ath .framer-tuagc2 > :last-child, .framer-s2ath .framer-1cwaxi1 > :last-child, .framer-s2ath .framer-1o7eqxj > :last-child, .framer-s2ath .framer-1fj4yja > :last-child, .framer-s2ath .framer-1tygfm5 > :last-child { margin-bottom: 0px; } .framer-s2ath .framer-r5ro8w > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-s2ath .framer-12g9rg0 > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-s2ath .framer-kuyns8 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } .framer-s2ath .framer-rpwvar > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-s2ath .framer-1hpp2ak > *, .framer-s2ath .framer-lfljnz > *, .framer-s2ath .framer-atmb9f > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-s2ath .framer-1j6foh6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s2ath .framer-14w6v8k > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-s2ath .framer-vddyqm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s2ath .framer-5x8e8p > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-s2ath .framer-5x8e8p > :first-child, .framer-s2ath .framer-1v2f757 > :first-child { margin-left: 0px; } .framer-s2ath .framer-5x8e8p > :last-child, .framer-s2ath .framer-1v2f757 > :last-child { margin-right: 0px; } .framer-s2ath .framer-1v2f757 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-s2ath .framer-tuagc2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-s2ath .framer-1wo2w1h > *, .framer-s2ath .framer-1wo2w1h > :first-child, .framer-s2ath .framer-1wo2w1h > :last-child { margin: 0px; } .framer-s2ath .framer-1cwaxi1 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-s2ath .framer-1o7eqxj > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-s2ath .framer-1fj4yja > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-s2ath .framer-1tygfm5 > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11057\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"d9gr5gTZD\":{\"layout\":[\"fixed\",\"auto\"]},\"M5wtqChDr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Ez8vEH8dc\":{\"pattern\":\":Ez8vEH8dc\",\"name\":\"hero\"},\"JGAae3Jv6\":{\"pattern\":\":JGAae3Jv6\",\"name\":\"content\"},\"UrsZVCS3i\":{\"pattern\":\":UrsZVCS3i\",\"name\":\"components\"},\"Vlg2AJXI9\":{\"pattern\":\":Vlg2AJXI9\",\"name\":\"product-page-detail\"},\"OxDW4Dw2j\":{\"pattern\":\":OxDW4Dw2j\",\"name\":\"product-page-detail\"},\"hPS1mIT9h\":{\"pattern\":\":hPS1mIT9h\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const FramerHEvyp2Ctp=withCSS(Component,css,\"framer-s2ath\");export default FramerHEvyp2Ctp;FramerHEvyp2Ctp.displayName=\"Page\";FramerHEvyp2Ctp.defaultProps={height:11057,width:1200};addFonts(FramerHEvyp2Ctp,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.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/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_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.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\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...BasketFonts,...FramerShopCartFonts,...PhosphorFonts,...SearchFonts,...HeaderInverseFonts,...LabelFonts,...MaterialFonts,...CMSImagePreviewerFonts,...CarouselFonts,...EmbedFonts,...FramerShopCheckoutFonts,...FramerShopAddToCartFonts,...FeatureFonts,...HomepageUsecasesTickerFonts,...SenjaWidgetFonts,...FramerShopCheckout1Fonts,...LogosFonts,...ButtonArrowFonts,...ProductThumbnailDefaultHighlightFonts,...SocialProofAvatarsStarsFonts,...HeroImageFonts,...PatternFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...componentPresets.fonts?.[\"JAxOJo9dW\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"JAxOJo9dW\"]):[],...componentPresets.fonts?.[\"t1aOiXWPo\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"t1aOiXWPo\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHEvyp2Ctp\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d9gr5gTZD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M5wtqChDr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"Ez8vEH8dc\\\":{\\\"pattern\\\":\\\":Ez8vEH8dc\\\",\\\"name\\\":\\\"hero\\\"},\\\"JGAae3Jv6\\\":{\\\"pattern\\\":\\\":JGAae3Jv6\\\",\\\"name\\\":\\\"content\\\"},\\\"UrsZVCS3i\\\":{\\\"pattern\\\":\\\":UrsZVCS3i\\\",\\\"name\\\":\\\"components\\\"},\\\"Vlg2AJXI9\\\":{\\\"pattern\\\":\\\":Vlg2AJXI9\\\",\\\"name\\\":\\\"product-page-detail\\\"},\\\"OxDW4Dw2j\\\":{\\\"pattern\\\":\\\":OxDW4Dw2j\\\",\\\"name\\\":\\\"product-page-detail\\\"},\\\"hPS1mIT9h\\\":{\\\"pattern\\\":\\\":hPS1mIT9h\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"11057\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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W,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAA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",
  "names": ["clamp", "t", "e", "n", "progress", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "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", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "icon", "id", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xSAdnf_Fz", "PTopfCbj6", "s6YvzZ4CA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerqpC0Kiy3j", "withCSS", "qpC0Kiy3j_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "cover", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xRALwOhFA", "iUMRHAk5U", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1p185b", "args", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramerbXXZ6Vas_", "withCSS", "bXXZ6Vas_default", "addPropertyControls", "ControlType", "addFonts", "CMSImageFonts", "getFonts", "bXXZ6Vas_default", "LabelFonts", "TIqjCbrVl_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "image4", "save", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NdAPPIZZl", "Qv6SMqzLw", "x3VfjJs75", "EuYA_d7iS", "P2KqmmNNM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "iUMRHAk5U9z1byl", "args", "iUMRHAk5U1opz76r", "iUMRHAk5U1kerw9o", "iUMRHAk5Uzkm56x", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerTHs8FU_KY", "withCSS", "THs8FU_KY_default", "addPropertyControls", "ControlType", "addFonts", "FramerShopCheckout", "webhookUrl", "productID", "productName", "productPrice", "buttonBackgroundColor", "buttonTextColor", "buttonFontSize", "buttonFontFamily", "buttonFontWeight", "buttonPadding", "buttonBorderRadius", "showBorders", "buttonBorderColor", "buttonBorderWidth", "buttonText", "buttonTopLeftRadius", "buttonTopRightRadius", "buttonBottomRightRadius", "buttonBottomLeftRadius", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "isBorderRadiusMixed", "isPaddingMixed", "buttonStyle", "p", "lineItems", "response", "data", "window", "error", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "BasketFonts", "getFonts", "RDU5986bK_default", "FramerShopCartFonts", "FramerShopCart", "PhosphorFonts", "Icon", "SearchFonts", "Search_default", "HeaderInverseFonts", "CIyaBC8JU_default", "LabelFonts", "TIqjCbrVl_default", "MaterialFonts", "CMSImagePreviewerFonts", "THs8FU_KY_default", "ContainerWithFX", "withFX", "Container", "CarouselFonts", "Carousel", "EmbedFonts", "Embed", "FramerShopCheckoutFonts", "FramerShopCheckout", "FramerShopAddToCartFonts", "FramerShopAddToCart", "FeatureFonts", "qpC0Kiy3j_default", "HomepageUsecasesTickerFonts", "e6nPuX_sC_default", "SenjaWidgetFonts", "SenjaWidget", "FramerShopCheckout1Fonts", "LogosFonts", "mVLJMDSbP_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "ButtonArrowFonts", "Pb87phZi_default", "ProductThumbnailDefaultHighlightFonts", "GhW4S0L9P_default", "SocialProofAvatarsStarsFonts", "n9WlBNdQU_default", "HeroImageFonts", "Djd3KzfPW_default", "PatternFonts", "Pattern", "FooterFonts", "RwxZLcIgs_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "equals", "a", "b", "prefix", "suffix", "negate", "transition1", "animation", "isSet", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "toImageSrc", "transition2", "animation1", "animation2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation3", "transition3", "animation4", "addImageAlt", "image", "alt", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "oipdULEIc_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "J0rtZY62Z", "QYeNQANjw", "IxZnOMjZA", "bUpkWzAai", "m4AZjZpST", "xh0x3r9wO", "CZ6etWyzE", "EFJdLES8y", "fuZ0UsSK3", "NYrVnEYEw", "LfVYeMziw", "xPpUNjva5", "v1blpK_3o", "EANd0ilvK", "ySkvuGpwA", "kTaaausLL", "lJIbfLIOzv9Uej3pB5", "wmwA4qjUN", "oXjClqL_t", "K42jMRZdh", "LKgdGCNqM", "GeQyJWIF2", "IpBuh0lo4", "rPcSmKQ_M", "gtpSfb3zM", "ZLy61Z3_5", "XWr6bZDok", "biZWWECKU", "JPUxydWwG", "J8qlTFBU4", "ftdBGD90g", "JZk5XJY2I", "LfDtojfzd", "v46qfy5ee", "UqOgA4hlm", "IcwosRbGPOSjJ5uEOg", "bUpkWzAaiOSjJ5uEOg", "J0rtZY62ZOSjJ5uEOg", "QYeNQANjwOSjJ5uEOg", "EANd0ilvKOSjJ5uEOg", "v1blpK_3oOSjJ5uEOg", "xh0x3r9wOOSjJ5uEOg", "m4AZjZpSTOSjJ5uEOg", "CZ6etWyzEOSjJ5uEOg", "EFJdLES8yOSjJ5uEOg", "vAJiJiH9QOSjJ5uEOg", "idOSjJ5uEOg", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "isDisplayed1", "visible9", "visible10", "visible11", "visible12", "visible13", "visible14", "visible15", "visible16", "visible17", "isDisplayed2", "visible18", "visible19", "visible20", "visible21", "visible22", "isDisplayed3", "elementId3", "ref4", "textContent2", "textContent3", "textContent4", "textContent5", "enumToDisplayNameFunctions", "textContent6", "elementId4", "ref5", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "resolvePageScope", "PropertyOverrides2", "x", "RichText2", "Image2", "getLoadingLazyAtYPosition", "Link", "ComponentPresetsProvider", "SVG", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "resolvedLinks2", "css", "FramerHEvyp2Ctp", "withCSS", "HEvyp2Ctp_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
