{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.15.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/TLhzBSJk3qUq0KapdaqP/WPk20xLR2d9R4HSj89Hc/FvnOxJ6Cr.js", "ssg:https://framerusercontent.com/modules/Sb8Zoec96JwB5VCHc44q/iFFqR8QCkKCtaXtLGPhp/m8hwsAklL.js", "ssg:https://framerusercontent.com/modules/loPw8aImolviqUJih7KB/H2mSSYIRdXJwp93vPbct/O4rOjFuzc.js", "ssg:https://framerusercontent.com/modules/i6lCZLZepm1vOq2Kx2KN/cdw0GQybRtJAHyTt5RgX/P0HukTiJ5.js", "ssg:https://framerusercontent.com/modules/ODfjXS0CLF2Iv3APytIx/LOMJ7bCXuo0GrfcTxhVd/QHkHrYBbH.js", "ssg:https://framerusercontent.com/modules/EgO46sM5mlGpb4ijaS1N/B8Iv843P3xnnVmcI3snQ/V1TDPe24x.js", "ssg:https://framerusercontent.com/modules/mQevPUwDTJyBsjEV6Tkw/x72osWTYkyxpmbNFUtIV/VnDs6sHAm.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 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 f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;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,isFunction,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}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"rtnIaKjEo\"];const serializationHash=\"framer-y43We\";const variantClassNames={rtnIaKjEo:\"framer-v-o6xfub\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rtnIaKjEo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-o6xfub\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rtnIaKjEo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),pixelHeight:1350,pixelWidth:1080,sizes:\"304px\",src:\"https://framerusercontent.com/images/xPt2OgvVNo3GC1yIKhINBNAts.png\",srcSet:\"https://framerusercontent.com/images/xPt2OgvVNo3GC1yIKhINBNAts.png?scale-down-to=1024 819w,https://framerusercontent.com/images/xPt2OgvVNo3GC1yIKhINBNAts.png 1080w\"},className:\"framer-179xja7\",layoutDependency:layoutDependency,layoutId:\"pWBvFK3Si\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8y5oxr\",layoutDependency:layoutDependency,layoutId:\"WNWLXG6c6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\"},children:\"Drop a Swatch\"})}),className:\"framer-19uqjbe\",fonts:[\"CUSTOM;Times Now SemiBold\"],layoutDependency:layoutDependency,layoutId:\"GT52oRseZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\"},children:\"Select an area and apply materials to your design.\"})}),className:\"framer-x9a688\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f0AZCd9Ji\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-y43We.framer-12scyck, .framer-y43We .framer-12scyck { display: block; }\",\".framer-y43We.framer-o6xfub { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 566px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 321px; }\",\".framer-y43We .framer-179xja7 { flex: none; height: 380px; position: relative; width: 304px; }\",\".framer-y43We .framer-8y5oxr { flex: none; height: 163px; position: relative; width: 304px; }\",\".framer-y43We .framer-19uqjbe { flex: none; height: 29px; left: 7px; position: absolute; top: 13px; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-y43We .framer-x9a688 { bottom: 17px; flex: none; height: 83px; left: calc(49.34210526315791% - 286px / 2); position: absolute; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y43We.framer-o6xfub { gap: 0px; } .framer-y43We.framer-o6xfub > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-y43We.framer-o6xfub > :first-child { margin-top: 0px; } .framer-y43We.framer-o6xfub > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 566\n * @framerIntrinsicWidth 321\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFvnOxJ6Cr=withCSS(Component,css,\"framer-y43We\");export default FramerFvnOxJ6Cr;FramerFvnOxJ6Cr.displayName=\"Flow-06-02\";FramerFvnOxJ6Cr.defaultProps={height:566,width:321};addFonts(FramerFvnOxJ6Cr,[{explicitInter:true,fonts:[{family:\"Times Now SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/MgVNOyjp1FejM3fXmrnVM9WMXM.woff2\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFvnOxJ6Cr\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"321\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"566\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FvnOxJ6Cr.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"RZI3RSA7j\"];const serializationHash=\"framer-2Jk6p\";const variantClassNames={RZI3RSA7j:\"framer-v-14sjh0u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RZI3RSA7j\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14sjh0u\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"RZI3RSA7j\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),pixelHeight:1351,pixelWidth:1080,sizes:\"304px\",src:\"https://framerusercontent.com/images/jMprpw5WfisjwTXH5WQJKMcEig.png\",srcSet:\"https://framerusercontent.com/images/jMprpw5WfisjwTXH5WQJKMcEig.png?scale-down-to=1024 818w,https://framerusercontent.com/images/jMprpw5WfisjwTXH5WQJKMcEig.png 1080w\"},className:\"framer-keat85\",layoutDependency:layoutDependency,layoutId:\"Ye1a6Qj0P\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13b3vax\",layoutDependency:layoutDependency,layoutId:\"Pm4U5wjBo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\"},children:\"AR Export\"})}),className:\"framer-33lnhw\",fonts:[\"CUSTOM;Times Now SemiBold\"],layoutDependency:layoutDependency,layoutId:\"BX2G0v2wk\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\"},children:\"View your design at scale by exporting as a USDZ file.\"})}),className:\"framer-fuycpn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kAcGtRWxX\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2Jk6p.framer-1y9u29e, .framer-2Jk6p .framer-1y9u29e { display: block; }\",\".framer-2Jk6p.framer-14sjh0u { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 566px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 321px; }\",\".framer-2Jk6p .framer-keat85 { flex: none; height: 380px; position: relative; width: 304px; }\",\".framer-2Jk6p .framer-13b3vax { flex: none; height: 163px; position: relative; width: 304px; }\",\".framer-2Jk6p .framer-33lnhw { flex: none; height: 29px; left: 7px; position: absolute; top: 13px; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-2Jk6p .framer-fuycpn { bottom: 17px; flex: none; height: 83px; left: calc(49.34210526315791% - 286px / 2); position: absolute; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2Jk6p.framer-14sjh0u { gap: 0px; } .framer-2Jk6p.framer-14sjh0u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2Jk6p.framer-14sjh0u > :first-child { margin-top: 0px; } .framer-2Jk6p.framer-14sjh0u > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 566\n * @framerIntrinsicWidth 321\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerm8hwsAklL=withCSS(Component,css,\"framer-2Jk6p\");export default Framerm8hwsAklL;Framerm8hwsAklL.displayName=\"Flow-03-03\";Framerm8hwsAklL.defaultProps={height:566,width:321};addFonts(Framerm8hwsAklL,[{explicitInter:true,fonts:[{family:\"Times Now SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/MgVNOyjp1FejM3fXmrnVM9WMXM.woff2\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm8hwsAklL\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"566\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"321\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./m8hwsAklL.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"DxjnQUAwd\"];const serializationHash=\"framer-F4s5h\";const variantClassNames={DxjnQUAwd:\"framer-v-18dntp1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DxjnQUAwd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18dntp1\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DxjnQUAwd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),pixelHeight:1350,pixelWidth:1080,sizes:\"304px\",src:\"https://framerusercontent.com/images/PFU00eYk4V6umC4dSbjbg9bmFo.png\",srcSet:\"https://framerusercontent.com/images/PFU00eYk4V6umC4dSbjbg9bmFo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/PFU00eYk4V6umC4dSbjbg9bmFo.png 1080w\"},className:\"framer-1kndrx4\",layoutDependency:layoutDependency,layoutId:\"d80if35iQ\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12v2nzt\",layoutDependency:layoutDependency,layoutId:\"nqDYE7j6a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\"},children:\"In Context\"})}),className:\"framer-onlzpu\",fonts:[\"CUSTOM;Times Now SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bH884zICe\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\"},children:\"Visualize your design in new environments.\"})}),className:\"framer-1a0z52u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ayC6tA3YG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-F4s5h.framer-87s01d, .framer-F4s5h .framer-87s01d { display: block; }\",\".framer-F4s5h.framer-18dntp1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 566px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 321px; }\",\".framer-F4s5h .framer-1kndrx4 { flex: none; height: 380px; position: relative; width: 304px; }\",\".framer-F4s5h .framer-12v2nzt { flex: none; height: 163px; position: relative; width: 304px; }\",\".framer-F4s5h .framer-onlzpu { flex: none; height: 29px; left: 7px; position: absolute; top: 13px; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-F4s5h .framer-1a0z52u { bottom: 17px; flex: none; height: 83px; left: calc(49.34210526315791% - 286px / 2); position: absolute; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-F4s5h.framer-18dntp1 { gap: 0px; } .framer-F4s5h.framer-18dntp1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-F4s5h.framer-18dntp1 > :first-child { margin-top: 0px; } .framer-F4s5h.framer-18dntp1 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 566\n * @framerIntrinsicWidth 321\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO4rOjFuzc=withCSS(Component,css,\"framer-F4s5h\");export default FramerO4rOjFuzc;FramerO4rOjFuzc.displayName=\"Flow-05-02\";FramerO4rOjFuzc.defaultProps={height:566,width:321};addFonts(FramerO4rOjFuzc,[{explicitInter:true,fonts:[{family:\"Times Now SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/MgVNOyjp1FejM3fXmrnVM9WMXM.woff2\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO4rOjFuzc\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"566\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"321\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O4rOjFuzc.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"tSlwRJl_Q\"];const serializationHash=\"framer-lrHKZ\";const variantClassNames={tSlwRJl_Q:\"framer-v-h70rxr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tSlwRJl_Q\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-h70rxr\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tSlwRJl_Q\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),pixelHeight:2048,pixelWidth:1638,sizes:\"304px\",src:\"https://framerusercontent.com/images/b5Vuw8r5hK0T4Af5ZAb7KeGkicQ.png\",srcSet:\"https://framerusercontent.com/images/b5Vuw8r5hK0T4Af5ZAb7KeGkicQ.png?scale-down-to=1024 819w,https://framerusercontent.com/images/b5Vuw8r5hK0T4Af5ZAb7KeGkicQ.png 1638w\"},className:\"framer-bsyuvl\",layoutDependency:layoutDependency,layoutId:\"ITJUsHHnO\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7gf668\",layoutDependency:layoutDependency,layoutId:\"ocUZx0llN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\"},children:\"Prototype\"})}),className:\"framer-13h6c5z\",fonts:[\"CUSTOM;Times Now SemiBold\"],layoutDependency:layoutDependency,layoutId:\"DfmxUL9Ms\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\"},children:\"3d print your idea to touch and feel it.\"})}),className:\"framer-12thznh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kNZ6Akj_V\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lrHKZ.framer-1tddbdh, .framer-lrHKZ .framer-1tddbdh { display: block; }\",\".framer-lrHKZ.framer-h70rxr { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 566px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 321px; }\",\".framer-lrHKZ .framer-bsyuvl { flex: none; height: 380px; position: relative; width: 304px; }\",\".framer-lrHKZ .framer-7gf668 { flex: none; height: 163px; position: relative; width: 304px; }\",\".framer-lrHKZ .framer-13h6c5z { flex: none; height: 29px; left: 7px; position: absolute; top: 13px; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-lrHKZ .framer-12thznh { bottom: 17px; flex: none; height: 83px; left: calc(49.34210526315791% - 286px / 2); position: absolute; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lrHKZ.framer-h70rxr { gap: 0px; } .framer-lrHKZ.framer-h70rxr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lrHKZ.framer-h70rxr > :first-child { margin-top: 0px; } .framer-lrHKZ.framer-h70rxr > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 566\n * @framerIntrinsicWidth 321\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP0HukTiJ5=withCSS(Component,css,\"framer-lrHKZ\");export default FramerP0HukTiJ5;FramerP0HukTiJ5.displayName=\"Flow-04-02\";FramerP0HukTiJ5.defaultProps={height:566,width:321};addFonts(FramerP0HukTiJ5,[{explicitInter:true,fonts:[{family:\"Times Now SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/MgVNOyjp1FejM3fXmrnVM9WMXM.woff2\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP0HukTiJ5\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"321\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"566\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P0HukTiJ5.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"emcR9WS_Y\"];const serializationHash=\"framer-oT1Pt\";const variantClassNames={emcR9WS_Y:\"framer-v-118jga\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"emcR9WS_Y\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-118jga\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"emcR9WS_Y\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),pixelHeight:2880,pixelWidth:2880,sizes:\"304px\",src:\"https://framerusercontent.com/images/ppxamWqnEIfE985nP6sWsQbLuA.png\",srcSet:\"https://framerusercontent.com/images/ppxamWqnEIfE985nP6sWsQbLuA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ppxamWqnEIfE985nP6sWsQbLuA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ppxamWqnEIfE985nP6sWsQbLuA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ppxamWqnEIfE985nP6sWsQbLuA.png 2880w\"},className:\"framer-p1fie8\",layoutDependency:layoutDependency,layoutId:\"wVRRlVG9f\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t8oi7k\",layoutDependency:layoutDependency,layoutId:\"fELa2MlOK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\"},children:\"Sketch to Render\"})}),className:\"framer-1nd99f8\",fonts:[\"CUSTOM;Times Now SemiBold\"],layoutDependency:layoutDependency,layoutId:\"MuxoT1eCy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\"},children:\"See your sketch come to life in a realistic photo.\"})}),className:\"framer-1ya6l40\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VqQwfd4Zh\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oT1Pt.framer-2udccw, .framer-oT1Pt .framer-2udccw { display: block; }\",\".framer-oT1Pt.framer-118jga { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 512px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 321px; }\",\".framer-oT1Pt .framer-p1fie8 { flex: none; height: 380px; position: relative; width: 304px; }\",\".framer-oT1Pt .framer-1t8oi7k { flex: none; height: 112px; position: relative; width: 304px; }\",\".framer-oT1Pt .framer-1nd99f8 { flex: none; height: 29px; left: 7px; position: absolute; top: 13px; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-oT1Pt .framer-1ya6l40 { bottom: 1px; flex: none; height: 48px; left: calc(49.34210526315791% - 286px / 2); position: absolute; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oT1Pt.framer-118jga { gap: 0px; } .framer-oT1Pt.framer-118jga > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oT1Pt.framer-118jga > :first-child { margin-top: 0px; } .framer-oT1Pt.framer-118jga > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 512\n * @framerIntrinsicWidth 321\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQHkHrYBbH=withCSS(Component,css,\"framer-oT1Pt\");export default FramerQHkHrYBbH;FramerQHkHrYBbH.displayName=\"Flow-01-02\";FramerQHkHrYBbH.defaultProps={height:512,width:321};addFonts(FramerQHkHrYBbH,[{explicitInter:true,fonts:[{family:\"Times Now SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/MgVNOyjp1FejM3fXmrnVM9WMXM.woff2\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQHkHrYBbH\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"321\",\"framerIntrinsicHeight\":\"512\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QHkHrYBbH.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"lJ971WQwg\"];const serializationHash=\"framer-Uf2Ml\";const variantClassNames={lJ971WQwg:\"framer-v-17h582r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lJ971WQwg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-17h582r\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"lJ971WQwg\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),pixelHeight:4800,pixelWidth:3840,sizes:\"304px\",src:\"https://framerusercontent.com/images/LULt7A7iX6MmAILky4PhcM5Cw3M.png\",srcSet:\"https://framerusercontent.com/images/LULt7A7iX6MmAILky4PhcM5Cw3M.png?scale-down-to=1024 819w,https://framerusercontent.com/images/LULt7A7iX6MmAILky4PhcM5Cw3M.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/LULt7A7iX6MmAILky4PhcM5Cw3M.png?scale-down-to=4096 3276w,https://framerusercontent.com/images/LULt7A7iX6MmAILky4PhcM5Cw3M.png 3840w\"},className:\"framer-77c7tn\",layoutDependency:layoutDependency,layoutId:\"ioxnEN0ke\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rwr7qs\",layoutDependency:layoutDependency,layoutId:\"cYBLidKgv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\"},children:\"Instant 3D\"})}),className:\"framer-1ot88j6\",fonts:[\"CUSTOM;Times Now SemiBold\"],layoutDependency:layoutDependency,layoutId:\"plJTVPdSJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\"},children:\"View your sketch from a new angle by generating a 3d model\"})}),className:\"framer-zjpsmg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gzN5Wwdgr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Uf2Ml.framer-159vg9t, .framer-Uf2Ml .framer-159vg9t { display: block; }\",\".framer-Uf2Ml.framer-17h582r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 511px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 321px; }\",\".framer-Uf2Ml .framer-77c7tn { flex: none; height: 380px; position: relative; width: 304px; }\",\".framer-Uf2Ml .framer-1rwr7qs { flex: none; height: 163px; position: relative; width: 304px; }\",\".framer-Uf2Ml .framer-1ot88j6 { flex: none; height: 29px; left: 7px; position: absolute; top: 13px; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-Uf2Ml .framer-zjpsmg { bottom: 53px; flex: none; height: 47px; left: calc(49.34210526315791% - 286px / 2); position: absolute; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uf2Ml.framer-17h582r { gap: 0px; } .framer-Uf2Ml.framer-17h582r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Uf2Ml.framer-17h582r > :first-child { margin-top: 0px; } .framer-Uf2Ml.framer-17h582r > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 511\n * @framerIntrinsicWidth 321\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerV1TDPe24x=withCSS(Component,css,\"framer-Uf2Ml\");export default FramerV1TDPe24x;FramerV1TDPe24x.displayName=\"Flow-02-02\";FramerV1TDPe24x.defaultProps={height:511,width:321};addFonts(FramerV1TDPe24x,[{explicitInter:true,fonts:[{family:\"Times Now SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/MgVNOyjp1FejM3fXmrnVM9WMXM.woff2\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV1TDPe24x\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"321\",\"framerIntrinsicHeight\":\"511\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./V1TDPe24x.map", "// Generated by Framer (f8e3bf6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Accordion from\"#framer/local/canvasComponent/eKh9CDyXa/eKh9CDyXa.js\";import Flow0602 from\"#framer/local/canvasComponent/FvnOxJ6Cr/FvnOxJ6Cr.js\";import Flow0303 from\"#framer/local/canvasComponent/m8hwsAklL/m8hwsAklL.js\";import NavbarDark from\"#framer/local/canvasComponent/nzmCkErt3/nzmCkErt3.js\";import Flow0502 from\"#framer/local/canvasComponent/O4rOjFuzc/O4rOjFuzc.js\";import Flow0402 from\"#framer/local/canvasComponent/P0HukTiJ5/P0HukTiJ5.js\";import Flow0102 from\"#framer/local/canvasComponent/QHkHrYBbH/QHkHrYBbH.js\";import FooterDark from\"#framer/local/canvasComponent/QiegliyPP/QiegliyPP.js\";import Flow0202 from\"#framer/local/canvasComponent/V1TDPe24x/V1TDPe24x.js\";import metadataProvider from\"#framer/local/webPageMetadata/VnDs6sHAm/VnDs6sHAm.js\";const NavbarDarkFonts=getFonts(NavbarDark);const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const Video1Fonts=getFonts(Video1);const Flow0102Fonts=getFonts(Flow0102);const Flow0202Fonts=getFonts(Flow0202);const Flow0303Fonts=getFonts(Flow0303);const Flow0402Fonts=getFonts(Flow0402);const Flow0502Fonts=getFonts(Flow0502);const Flow0602Fonts=getFonts(Flow0602);const CarouselFonts=getFonts(Carousel);const MotionDivWithFX=withFX(motion.div);const AccordionFonts=getFonts(Accordion);const FooterDarkFonts=getFonts(FooterDark);const breakpoints={HCoKFbXJz:\"(min-width: 810px) and (max-width: 1199px)\",mHjG03fVZ:\"(max-width: 777px)\",sFcNI0ZLQ:\"(min-width: 1480px)\",VdqHPNcqG:\"(min-width: 778px) and (max-width: 809px)\",vWbXKmemp:\"(min-width: 1200px) and (max-width: 1479px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-yfuOe\";const variantClassNames={HCoKFbXJz:\"framer-v-ykevpv\",mHjG03fVZ:\"framer-v-et3aef\",sFcNI0ZLQ:\"framer-v-123t071\",VdqHPNcqG:\"framer-v-2gb4c1\",vWbXKmemp:\"framer-v-12l2281\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop +\":\"sFcNI0ZLQ\",\"Laptop 2\":\"VdqHPNcqG\",Desktop:\"vWbXKmemp\",Phone:\"mHjG03fVZ\",Tablet:\"HCoKFbXJz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vWbXKmemp\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"mHjG03fVZ\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"mHjG03fVZ\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"HCoKFbXJz\",\"mHjG03fVZ\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"HCoKFbXJz\",\"VdqHPNcqG\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"BgxYWVKkS\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"vWbXKmemp\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(252, 245, 229); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-12l2281\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ubfkg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xkb54y-container\",nodeId:\"XZMdeq726\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{variant:\"wuHJG0H_n\"},mHjG03fVZ:{style:{width:\"100%\"},variant:\"zgD30VZhI\"}},children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"XZMdeq726\",layoutId:\"XZMdeq726\",style:{height:\"100%\",width:\"100%\"},variant:\"zcCntbuTL\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vl1nyh\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jwtk7p\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ycb9m\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:[\"Make it \",/*#__PURE__*/_jsx(\"em\",{children:\"real\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"124px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:[\"Make it \",/*#__PURE__*/_jsx(\"em\",{children:\"real\"})]})}),className:\"framer-84fv00\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Transform your sketches into renders and 3d models in seconds.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Transform your sketches into renders and 3d models in seconds.\"})}),className:\"framer-1xq4lk9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1orosre\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://app.vizcom.ai/\",motionChild:true,nodeId:\"hCjiFIcO_\",openInNewTab:false,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3gt1xa framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get started\"})}),className:\"framer-fmacfz\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://youtu.be/-SlyCVBrn9c\",motionChild:true,nodeId:\"fuMrWxGIw\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1szhi65 framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Watch Demo\"})}),className:\"framer-15n1uow\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11pfef4\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-az7gjf-container hidden-et3aef\",isModuleExternal:true,nodeId:\"ZuIfBV5z9\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{style:{height:\"100%\",width:\"100%\"}},VdqHPNcqG:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(240, 234, 218)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"ZuIfBV5z9\",isMixedBorderRadius:false,layoutId:\"ZuIfBV5z9\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/232eUMQCMW1oa7GGio7Q3U40UZs.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15k4dmu-container hidden-12l2281 hidden-123t071 hidden-ykevpv hidden-2gb4c1\",isModuleExternal:true,nodeId:\"AGUAq9Xwe\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(240, 234, 218)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"AGUAq9Xwe\",isMixedBorderRadius:false,layoutId:\"AGUAq9Xwe\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/1ZErKli0jnP69keo3VOfqEHt98I.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19l6ec9\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(5, 5, 5, 0.26)\"},children:\"Trusted by\"})}),className:\"framer-18powa7\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1crpykx-container\",isModuleExternal:true,nodeId:\"Rnw1SZMn3\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:70,height:\"100%\",hoverFactor:1,id:\"Rnw1SZMn3\",layoutId:\"Rnw1SZMn3\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w5k9c8\",\"data-framer-name\":\"Ital\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:331,intrinsicWidth:1280,pixelHeight:662,pixelWidth:2560,sizes:\"95px\",src:\"https://framerusercontent.com/images/bBEwHslkqzh5ngstuSjzkqnnr0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bBEwHslkqzh5ngstuSjzkqnnr0.png?scale-down-to=512 512w,https://framerusercontent.com/images/bBEwHslkqzh5ngstuSjzkqnnr0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bBEwHslkqzh5ngstuSjzkqnnr0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bBEwHslkqzh5ngstuSjzkqnnr0.png 2560w\"},className:\"framer-2w6d1v\",\"data-framer-name\":\"New_Project_13_\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9odwsf\",\"data-framer-name\":\"GAC\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266.5,intrinsicWidth:447.5,pixelHeight:533,pixelWidth:895,sizes:\"77px\",src:\"https://framerusercontent.com/images/aHqafVzeIm5fuGObwaPdYe2vlQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aHqafVzeIm5fuGObwaPdYe2vlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/aHqafVzeIm5fuGObwaPdYe2vlQ.png 895w\"},className:\"framer-1fxohpn\",\"data-framer-name\":\"New_Project_12_\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-154xj5g\",\"data-framer-name\":\"CocaCola\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:153.5,intrinsicWidth:465,pixelHeight:307,pixelWidth:930,sizes:\"77px\",src:\"https://framerusercontent.com/images/ioGOxdZ5rZjS2a5OvZv4UhWw8Q.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ioGOxdZ5rZjS2a5OvZv4UhWw8Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ioGOxdZ5rZjS2a5OvZv4UhWw8Q.png 930w\"},className:\"framer-1gq1kk1\",\"data-framer-name\":\"New_Project_5_\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rvp3im\",\"data-framer-name\":\"Dell\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:172,intrinsicWidth:548,pixelHeight:344,pixelWidth:1096,sizes:\"87px\",src:\"https://framerusercontent.com/images/uNhDTZfKY7l4QK6L22TKi41pnkw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uNhDTZfKY7l4QK6L22TKi41pnkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/uNhDTZfKY7l4QK6L22TKi41pnkw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uNhDTZfKY7l4QK6L22TKi41pnkw.png 1096w\"},className:\"framer-1v5bgrm\",\"data-framer-name\":\"New_Project_4_\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-apfcrq\",\"data-framer-name\":\"New Balance\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:697.5,intrinsicWidth:1272,pixelHeight:1395,pixelWidth:2544,sizes:\"72px\",src:\"https://framerusercontent.com/images/BtSmA2PPz5mjRBEJQZgINu1r7Lk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BtSmA2PPz5mjRBEJQZgINu1r7Lk.png?scale-down-to=512 512w,https://framerusercontent.com/images/BtSmA2PPz5mjRBEJQZgINu1r7Lk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BtSmA2PPz5mjRBEJQZgINu1r7Lk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BtSmA2PPz5mjRBEJQZgINu1r7Lk.png 2544w\"},className:\"framer-15lpe8k\",\"data-framer-name\":\"New_Project\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lv208c\",\"data-framer-name\":\"Brooks\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:76,intrinsicWidth:600,pixelHeight:152,pixelWidth:1200,sizes:\"92px\",src:\"https://framerusercontent.com/images/j7EmD3Ee3KCccA0HEOr26CtK7vI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/j7EmD3Ee3KCccA0HEOr26CtK7vI.png?scale-down-to=512 512w,https://framerusercontent.com/images/j7EmD3Ee3KCccA0HEOr26CtK7vI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j7EmD3Ee3KCccA0HEOr26CtK7vI.png 1200w\"},className:\"framer-ua40ac\",\"data-framer-name\":\"New_Project_2_\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xvbb3h\",\"data-framer-name\":\"Ford_Logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:697.5,intrinsicWidth:1272,pixelHeight:1395,pixelWidth:2544,sizes:\"79px\",src:\"https://framerusercontent.com/images/REhjvP8w7J76Ztk0hpu1izFg8pk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/REhjvP8w7J76Ztk0hpu1izFg8pk.png?scale-down-to=512 512w,https://framerusercontent.com/images/REhjvP8w7J76Ztk0hpu1izFg8pk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/REhjvP8w7J76Ztk0hpu1izFg8pk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/REhjvP8w7J76Ztk0hpu1izFg8pk.png 2544w\"},className:\"framer-6npjgl\",\"data-framer-name\":\"New_Project_1_\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:147.33333333333334,intrinsicWidth:682.6666666666666,pixelHeight:221,pixelWidth:1024,sizes:\"129.5px\",src:\"https://framerusercontent.com/images/cWvX15sbvEu7c3VDj7lKyeCONkA.png\",srcSet:\"https://framerusercontent.com/images/cWvX15sbvEu7c3VDj7lKyeCONkA.png?scale-down-to=512 512w,https://framerusercontent.com/images/cWvX15sbvEu7c3VDj7lKyeCONkA.png 1024w\"},className:\"framer-9i7a6d\",\"data-framer-name\":\"Logo-moen 1\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-whwet7\",\"data-framer-name\":\"Mitsubishi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:343,intrinsicWidth:475,pixelHeight:686,pixelWidth:950,sizes:\"70px\",src:\"https://framerusercontent.com/images/bgr1eTNBW541Et1Cu8rREwf9UI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bgr1eTNBW541Et1Cu8rREwf9UI.png?scale-down-to=512 512w,https://framerusercontent.com/images/bgr1eTNBW541Et1Cu8rREwf9UI.png 950w\"},className:\"framer-15migiy\",\"data-framer-name\":\"Tyotoa\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:193.5,intrinsicWidth:600,pixelHeight:387,pixelWidth:1200,sizes:\"70px\",src:\"https://framerusercontent.com/images/gKvYmCWrAIZRN42XZH7FOc47g8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gKvYmCWrAIZRN42XZH7FOc47g8.png?scale-down-to=512 512w,https://framerusercontent.com/images/gKvYmCWrAIZRN42XZH7FOc47g8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gKvYmCWrAIZRN42XZH7FOc47g8.png 1200w\"},className:\"framer-qxabld\",\"data-framer-name\":\"allbirds\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/4nTsYsQEsTSaix8RwJphB62ncS8.png\"},className:\"framer-14mtjtd\",\"data-framer-name\":\"New-gm-logo-1024x576 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Puma\",fit:\"fill\",intrinsicHeight:213.5,intrinsicWidth:400,pixelHeight:427,pixelWidth:800,sizes:\"70px\",src:\"https://framerusercontent.com/images/DBmMntiNPyqs7jh59ECGsii70o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DBmMntiNPyqs7jh59ECGsii70o.png?scale-down-to=512 512w,https://framerusercontent.com/images/DBmMntiNPyqs7jh59ECGsii70o.png 800w\"},className:\"framer-wb5ys4\",\"data-framer-name\":\"Puma\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1304,intrinsicWidth:1304,pixelHeight:1956,pixelWidth:1956,sizes:\"52px\",src:\"https://framerusercontent.com/images/I8XfEKD1nskgeaJ3IqtsZrsRQM.png\",srcSet:\"https://framerusercontent.com/images/I8XfEKD1nskgeaJ3IqtsZrsRQM.png?scale-down-to=512 512w,https://framerusercontent.com/images/I8XfEKD1nskgeaJ3IqtsZrsRQM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I8XfEKD1nskgeaJ3IqtsZrsRQM.png 1956w\"},className:\"framer-bga7du\",\"data-framer-name\":\"Fj\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ucm6f\",\"data-framer-name\":\"ACG\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:216,intrinsicWidth:594,pixelHeight:432,pixelWidth:1188,sizes:\"76px\",src:\"https://framerusercontent.com/images/sr0tbjoB50aOyYYltQgrwbrcsdM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sr0tbjoB50aOyYYltQgrwbrcsdM.png?scale-down-to=512 512w,https://framerusercontent.com/images/sr0tbjoB50aOyYYltQgrwbrcsdM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sr0tbjoB50aOyYYltQgrwbrcsdM.png 1188w\"},className:\"framer-bt3kzg\",\"data-framer-name\":\"New_Project_11_\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:424,pixelHeight:160,pixelWidth:424,src:\"https://framerusercontent.com/images/fBf9wxST41jLjDyo6GcEYkOuVfI.png\"},className:\"framer-h3urw4\",\"data-framer-name\":\"Temple &_Webster_Logo.svg 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:592,pixelHeight:160,pixelWidth:592,sizes:\"148px\",src:\"https://framerusercontent.com/images/KpuvGVpcnongFCR9aAnXojJeZM.png\",srcSet:\"https://framerusercontent.com/images/KpuvGVpcnongFCR9aAnXojJeZM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KpuvGVpcnongFCR9aAnXojJeZM.png 592w\"},className:\"framer-1s05r57\",\"data-framer-name\":\"Stellantis logo_white_background (1) 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:264,pixelHeight:160,pixelWidth:264,src:\"https://framerusercontent.com/images/dguthOSbJq5or1SHqeyaNTeWIE.png\"},className:\"framer-oktn0f\",\"data-framer-name\":\"Este\\xcc\\x81e Lauder_Companies_logo.svg 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:240,pixelHeight:160,pixelWidth:240,src:\"https://framerusercontent.com/images/g4fj5W4vhvuDsDu7jUH5xOXDb2o.png\"},className:\"framer-jrl6fz\",\"data-framer-name\":\"Under Armour-Logo.wine 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:288,pixelHeight:160,pixelWidth:288,src:\"https://framerusercontent.com/images/RHjfcrFQSbs860hiltpZ7DA0GE0.png\"},className:\"framer-mz5d0i\",\"data-framer-name\":\"News image_1440.t1513955372 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:292.6666666666667,intrinsicWidth:720,pixelHeight:439,pixelWidth:1080,sizes:\"98px\",src:\"https://framerusercontent.com/images/WG5Z42iGwcZDlkkGcMAu3xXtE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WG5Z42iGwcZDlkkGcMAu3xXtE.png?scale-down-to=512 512w,https://framerusercontent.com/images/WG5Z42iGwcZDlkkGcMAu3xXtE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WG5Z42iGwcZDlkkGcMAu3xXtE.png 1080w\"},className:\"framer-1a3t3fk\",\"data-framer-name\":\"Napolean Logo\"})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cl0x3\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-ykhq5s\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bt9da5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBMaWdodA==\",\"--framer-font-family\":'\"Times Now Light\", \"Times Now Light Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(252, 245, 229)\"},children:\"Introducing Palettes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBMaWdodA==\",\"--framer-font-family\":'\"Times Now Light\", \"Times Now Light Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(252, 245, 229)\"},children:\"Introducing Palettes\"})}),className:\"framer-1f209m6\",fonts:[\"CUSTOM;Times Now Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(252, 245, 229)\"},children:[\"Where \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"your style\"}),\" shapes the future, not the machine.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(252, 245, 229)\"},children:[\"Where \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"your style\"}),\" shapes the future, not the machine.\"]})}),className:\"framer-a7nly5\",fonts:[\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cc89ha\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZMqya4d8V\"},motionChild:true,nodeId:\"RIwEDJvfA\",openInNewTab:false,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4knuwf framer-1cm11d3\",\"data-border\":true,\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(252, 245, 229)\"},children:\"Get Started\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(252, 245, 229)\"},children:\"Get Started\"})}),className:\"framer-2livnq\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=fr5sYJCUOc8&t=1s\",motionChild:true,nodeId:\"f8WdKNvXV\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cyrdod framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Watch Demo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Watch Demo\"})}),className:\"framer-1761sxt\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jm29xf-container\",isModuleExternal:true,nodeId:\"sl0SuIWe8\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgb(0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"sl0SuIWe8\",isMixedBorderRadius:false,layoutId:\"sl0SuIWe8\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/wumHrp1YO1tmoSeQVReCzFIYSbY.mp4\",srcType:\"Upload\",srcUrl:\"https://www.youtube.com/watch?v=-SlyCVBrn9c&t=1s\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-62xotk\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:102,pixelWidth:485,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/95K5R6z7TQ4tqFh9kdgLwb1OM0g.svg\"},className:\"framer-2q9bbp\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"How it Works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"How it Works\"})}),className:\"framer-oknsj2\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tsafvx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16d4eno\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1440,pixelWidth:1440,positionX:\"center\",positionY:\"bottom\",sizes:\"320px\",src:\"https://framerusercontent.com/images/cBceO3DTsqtwNZ8bmYbjyMWnfY.png\",srcSet:\"https://framerusercontent.com/images/cBceO3DTsqtwNZ8bmYbjyMWnfY.png?scale-down-to=512 512w,https://framerusercontent.com/images/cBceO3DTsqtwNZ8bmYbjyMWnfY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cBceO3DTsqtwNZ8bmYbjyMWnfY.png 1440w\"},className:\"framer-1el2h3o\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sketch\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Take a picture of your sketch, or draw within Vizcom's studio.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-6sjyl1\",fonts:[\"CUSTOM;Times Now SemiBold\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13obv3\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tefp9b\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2880,pixelWidth:2880,positionX:\"center\",positionY:\"bottom\",sizes:\"320px\",src:\"https://framerusercontent.com/images/n1xqxEhvmpagYaR4dyXc40FDc.png\",srcSet:\"https://framerusercontent.com/images/n1xqxEhvmpagYaR4dyXc40FDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/n1xqxEhvmpagYaR4dyXc40FDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n1xqxEhvmpagYaR4dyXc40FDc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/n1xqxEhvmpagYaR4dyXc40FDc.png 2880w\"},className:\"framer-1qw87jq\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{start:\"2\",style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Render\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Prompt and render your design with one of the default styles, or with your own Palette.\"})]}),className:\"framer-gt9tqv\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-191v2ie\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mn1hwd-container\",isModuleExternal:true,nodeId:\"rUK43L6q9\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"rUK43L6q9\",isMixedBorderRadius:true,layoutId:\"rUK43L6q9\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/zDv6NY9GVM1fjLSsnlR9G18G8h8.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{start:\"3\",style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"3D Model\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Generate a 3d model of your rendering to view your idea from a new angle. Export the model to view in AR or to 3d print. \"})]}),className:\"framer-17ajfxf\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bnbl87\"})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-okrjvi\",\"data-framer-name\":\"Testimonials 4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ut6ypz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-47r4rl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[\"Communicate \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBCb2xkIEl0YWxpYw==\",\"--framer-font-family\":'\"Times Now Bold Italic\", \"Times Now Bold Italic Placeholder\", sans-serif'},children:\"Visually\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"75px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[\"Communicate \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBCb2xkIEl0YWxpYw==\",\"--framer-font-family\":'\"Times Now Bold Italic\", \"Times Now Bold Italic Placeholder\", sans-serif'},children:\"Visually\"})]})}),className:\"framer-e2xvtb\",fonts:[\"CUSTOM;Times Now SemiBold\",\"CUSTOM;Times Now Bold Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Seamlessly integrate reference imagery to sculpt your design's visual language.\"})})},mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Seamlessly integrate reference imagery to sculpt your design's visual language.\"})})},VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Seamlessly integrate reference imagery to sculpt your design's visual language.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Seamlessly integrate reference imagery to sculpt your design's visual language.\"})}),className:\"framer-1xr488v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WhXRBU1hn\"},motionChild:true,nodeId:\"ADqzcMTUN\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12ssy0c framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-fsbela\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:402,pixelWidth:295,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xgWIyVZqtcyzuZ7O5BvvRrclBw.svg\"},className:\"framer-o2szh4 hidden-ykevpv hidden-et3aef\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12qi44j-container\",isModuleExternal:true,nodeId:\"jP85KN1nd\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sFcNI0ZLQ:{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,topLeftRadius:20,topRightRadius:20}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,controls:false,height:\"100%\",id:\"jP85KN1nd\",isMixedBorderRadius:false,layoutId:\"jP85KN1nd\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Os5tZ4dsCWMhl4yXPflVj1vgtIk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:30,topRightRadius:30,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wqrvmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZCBJdGFsaWM=\",\"--framer-font-family\":'\"Times Now SemiBold Italic\", \"Times Now SemiBold Italic Placeholder\", sans-serif',\"--framer-font-size\":\"62px\"},children:\"Iterate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\"},children:\" at the speed of thought\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Explore countless variations without the wait\"]})})},mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZCBJdGFsaWM=\",\"--framer-font-family\":'\"Times Now SemiBold Italic\", \"Times Now SemiBold Italic Placeholder\", sans-serif',\"--framer-font-size\":\"41px\"},children:\"Iterate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"41px\"},children:\" at the speed of thought\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Explore countless variations\",/*#__PURE__*/_jsx(\"br\",{}),\" without the wait\"]})})},VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZCBJdGFsaWM=\",\"--framer-font-family\":'\"Times Now SemiBold Italic\", \"Times Now SemiBold Italic Placeholder\", sans-serif',\"--framer-font-size\":\"60px\"},children:\"Iterate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"60px\"},children:\" at the speed of thought\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"60px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Explore countless variations without the wait\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZCBJdGFsaWM=\",\"--framer-font-family\":'\"Times Now SemiBold Italic\", \"Times Now SemiBold Italic Placeholder\", sans-serif',\"--framer-font-size\":\"75px\"},children:\"Iterate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"75px\"},children:\" at the speed of thought\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"75px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Explore countless variations without the wait\"]})}),className:\"framer-1wbwi3b\",fonts:[\"CUSTOM;Times Now SemiBold Italic\",\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:225,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yzHn1Mx8tl8DnfHkvPdYPra8k.svg\"},className:\"framer-m0xiwj\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kmx5oz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13x9yi8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:334,pixelWidth:489,src:\"https://framerusercontent.com/images/4Ti46eEDWvke7kjTr0gEcOiaPyM.png\"},className:\"framer-13ldldb\",whileHover:animation}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fit\",pixelHeight:775,pixelWidth:1246,positionX:\"center\",positionY:\"center\",sizes:\"189.3464px\",src:\"https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png\",srcSet:\"https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png?scale-down-to=512 512w,https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png 1246w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fit\",pixelHeight:775,pixelWidth:1246,positionX:\"center\",positionY:\"center\",sizes:\"197.0938px\",src:\"https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png\",srcSet:\"https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png?scale-down-to=512 512w,https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png 1246w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:775,pixelWidth:1246,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png\",srcSet:\"https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png?scale-down-to=512 512w,https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vyCUj0ST82AMQWFUTOBSBmYTiwE.png 1246w\"},className:\"framer-xrmmgf\",whileHover:animation})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:334,pixelWidth:489,src:\"https://framerusercontent.com/images/3KstYbejHRc1hzmSJVFlYb0fmJg.png\"},className:\"framer-1vzmwm5\",whileHover:animation}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:334,pixelWidth:489,src:\"https://framerusercontent.com/images/mJCj6UhipxE61idD6syFUN2AXgM.png\"},className:\"framer-j52vu4 hidden-ykevpv hidden-2gb4c1\",whileHover:animation})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xzr0kt hidden-et3aef\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fit\",pixelHeight:783,pixelWidth:1253,positionX:\"center\",positionY:\"center\",sizes:\"192.5286px\",src:\"https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png\",srcSet:\"https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png?scale-down-to=512 512w,https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png 1253w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fit\",pixelHeight:783,pixelWidth:1253,positionX:\"center\",positionY:\"center\",sizes:\"200.4063px\",src:\"https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png\",srcSet:\"https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png?scale-down-to=512 512w,https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png 1253w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:783,pixelWidth:1253,positionX:\"center\",positionY:\"center\",sizes:\"242px\",src:\"https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png\",srcSet:\"https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png?scale-down-to=512 512w,https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xp8efd07BmLKEV3XciXDmQDY7R8.png 1253w\"},className:\"framer-1nyccj9\",whileHover:animation})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:334,pixelWidth:489,src:\"https://framerusercontent.com/images/AAmakRtoCHfVE21SQay6qvmNlbU.png\"},className:\"framer-1udog7m\",whileHover:animation}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:334,pixelWidth:489,src:\"https://framerusercontent.com/images/t5UtkF5qs50G3yEY7hdBnMDE.png\"},className:\"framer-1qs0165\",whileHover:animation}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:334,pixelWidth:489,src:\"https://framerusercontent.com/images/POyNaiJnfB4RpoJQ3Hr1q2CxD0.png\"},className:\"framer-cdtprp hidden-ykevpv hidden-2gb4c1\",whileHover:animation})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lqrubw hidden-et3aef\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:334,pixelWidth:489,src:\"https://framerusercontent.com/images/VzEtgUKcKvwKpvFfbbUcByKXEQ.png\"},className:\"framer-ny10qs\",whileHover:animation}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fit\",pixelHeight:768,pixelWidth:1243,positionX:\"center\",positionY:\"center\",sizes:\"192.5286px\",src:\"https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png\",srcSet:\"https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png?scale-down-to=512 512w,https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png 1243w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fit\",pixelHeight:768,pixelWidth:1243,positionX:\"center\",positionY:\"center\",sizes:\"200.4063px\",src:\"https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png\",srcSet:\"https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png?scale-down-to=512 512w,https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png 1243w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:768,pixelWidth:1243,positionX:\"center\",positionY:\"center\",sizes:\"242px\",src:\"https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png\",srcSet:\"https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png?scale-down-to=512 512w,https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hT8z74xs4OmaNUh46vb9Wbn9Vd8.png 1243w\"},className:\"framer-1fub6r7\",whileHover:animation})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:334,pixelWidth:489,src:\"https://framerusercontent.com/images/d7H5dzkfsPCdBsdi6sONEaLd6Rk.png\"},className:\"framer-4iljsu\",whileHover:animation}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:781,pixelWidth:1244,positionX:\"center\",positionY:\"center\",sizes:\"242.0441px\",src:\"https://framerusercontent.com/images/8uWjXKwAshGAtpHeXI3hlRfbDk.png\",srcSet:\"https://framerusercontent.com/images/8uWjXKwAshGAtpHeXI3hlRfbDk.png?scale-down-to=512 512w,https://framerusercontent.com/images/8uWjXKwAshGAtpHeXI3hlRfbDk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8uWjXKwAshGAtpHeXI3hlRfbDk.png 1244w\"},className:\"framer-v0ujez hidden-ykevpv hidden-2gb4c1\",whileHover:animation})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y4qsri\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19i8y8r\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-937i9y\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"74px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Workbench\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"111px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Workbench\"})}),className:\"framer-w2ftq8\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Add breakpoints to your blank page, then drop sections to have them responsive out of the box.\"})})},VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Add breakpoints to your blank page, then drop sections to have them responsive out of the box.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Collaborate and explore your ideas in the infinite canvas environment\"})}),className:\"framer-1ivq6e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1anf6it\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://app.vizcom.ai/\",motionChild:true,nodeId:\"tHzADZz49\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dpnavg framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get Started\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get Started\"})}),className:\"framer-1uxniqt\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WhXRBU1hn\"},motionChild:true,nodeId:\"L63J5Blgl\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-14vvhdg framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn More\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn More\"})}),className:\"framer-375f60\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ckwezp-container\",isModuleExternal:true,nodeId:\"uz8Z6hf_5\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,topLeftRadius:20,topRightRadius:20},mHjG03fVZ:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,topLeftRadius:15,topRightRadius:15},sFcNI0ZLQ:{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,topLeftRadius:20,topRightRadius:20}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,controls:false,height:\"100%\",id:\"uz8Z6hf_5\",isMixedBorderRadius:false,layoutId:\"uz8Z6hf_5\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/npeuIsbj99ddI4Dl0Cli2Jk10.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:30,topRightRadius:30,volume:25,width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xfpau2\",\"data-framer-name\":\"Testimonials 3\",children:/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1fscrxs\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:282,pixelWidth:169,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/T1lK0RiOId4lWpj5Mg2a6AM350.svg\"},className:\"framer-19p0roo\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Own your style\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"102px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Own your style\"})}),className:\"framer-1b3s3iv\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Create custom Palettes that understands your unique style.\"})})},sFcNI0ZLQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-font-size\":\"29px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Create custom Palettes that understands your unique style.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"29px\"},children:\"Create custom Palettes that capture your \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"29px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"29px\"},children:\"unique style.\"})]})}),className:\"framer-10imkdr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tq27q\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{href:undefined}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZMqya4d8V\"},motionChild:true,nodeId:\"RoPBsbV3E\",openInNewTab:false,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-c6kvii framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-x7bpl1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1muy4bm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qog0jr-container\",isModuleExternal:true,nodeId:\"HXLBgsxVz\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(240, 234, 218)\",borderRadius:25,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"HXLBgsxVz\",isMixedBorderRadius:false,layoutId:\"HXLBgsxVz\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/CT8XOJlNI8l2B3Bh6V3ZHTMNI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:25,topRightRadius:8,volume:25,width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1sqg5vx\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:358,pixelWidth:247,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wkzyi63EJNpEKrJVTugiRu243U.svg\"},className:\"framer-uhrm4n\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"128px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[\"Fits your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZCBJdGFsaWM=\",\"--framer-font-family\":'\"Times Now SemiBold Italic\", \"Times Now SemiBold Italic Placeholder\", sans-serif'},children:\"flow\"})]})}),className:\"framer-1m7tbfs\",fonts:[\"CUSTOM;Times Now SemiBold\",\"CUSTOM;Times Now SemiBold Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{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\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Vizcom fits anywhere within your design process\"})}),className:\"framer-121u24m\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h6fa9y\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ridmq9-container\",id:elementId,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BgxYWVKkS\",ref:ref1,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sFcNI0ZLQ:{snapObject:{fluid:false,snap:true,snapEdge:\"center\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.25)\",arrowPadding:12,arrowRadius:40,arrowSize:30,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"},fadeWidth:2},gap:0,height:\"100%\",id:\"BgxYWVKkS\",layoutId:\"BgxYWVKkS\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,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:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"321px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-se3dbz-container\",inComponentSlot:true,nodeId:\"gCI1itRpn\",rendersWithMotion:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Flow0102,{height:\"100%\",id:\"gCI1itRpn\",layoutId:\"gCI1itRpn\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"321px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u8io2c-container\",inComponentSlot:true,nodeId:\"Lr7yt7J1_\",rendersWithMotion:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Flow0202,{height:\"100%\",id:\"Lr7yt7J1_\",layoutId:\"Lr7yt7J1_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"321px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gufnqe-container\",inComponentSlot:true,nodeId:\"IJoWKD5qr\",rendersWithMotion:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Flow0303,{height:\"100%\",id:\"IJoWKD5qr\",layoutId:\"IJoWKD5qr\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"321px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bv8vtj-container\",inComponentSlot:true,nodeId:\"xtgsA4t1m\",rendersWithMotion:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Flow0402,{height:\"100%\",id:\"xtgsA4t1m\",layoutId:\"xtgsA4t1m\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"321px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ho73qt-container\",inComponentSlot:true,nodeId:\"DmOFPU2F7\",rendersWithMotion:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Flow0502,{height:\"100%\",id:\"DmOFPU2F7\",layoutId:\"DmOFPU2F7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"321px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19htcwx-container\",inComponentSlot:true,nodeId:\"WJth7MjNP\",rendersWithMotion:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Flow0602,{height:\"100%\",id:\"WJth7MjNP\",layoutId:\"WJth7MjNP\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-27nptf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"79px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Peace of mind by design\"})}),className:\"framer-1chm47c\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Vizcom's cloud-native infrastructure is built with security in mind, giving you the freedom to create without worry.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Vizcom's cloud-native infrastructure is built with security in mind, giving you the freedom to create without worry.\"})}),className:\"framer-12u5fxi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zzb4t\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D_poLwYJB\"},motionChild:true,nodeId:\"gAbvuWMwp\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1g3oxd0 framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{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-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn more\"})})},mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn more\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn more\"})}),className:\"framer-a1dq6q\",\"data-framer-name\":\"Choose Professional\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://vizcom.ai/demo-request\",motionChild:true,nodeId:\"GVZoM_Gqk\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-x0aemr framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Request a demo\"})}),className:\"framer-1xm4o16\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lt1ro0\",\"data-framer-name\":\"Frame 1541\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i8gt8b\",\"data-framer-name\":\"Frame 1538\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c5thhk\",\"data-framer-name\":\"Ellipse 225\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:162,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/EeRewo4kG1PkgEmVj8au1qEk8Xg.svg\"},className:\"framer-r25kmh\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Data protection\"})})},VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Data protection\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Data protection\"})}),className:\"framer-1lmcrql\",\"data-framer-name\":\"Total privacy\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135.52%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"Vizcom employs industry-leading encryption for all data.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135.52%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"Vizcom employs industry-leading encryption for all data.\"})}),className:\"framer-18xi0e\",\"data-framer-name\":\"We never share or sell your data. All files are stored securely in our cloud environment.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tazkrj\",\"data-framer-name\":\"Frame 1541\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tsqkua\",\"data-framer-name\":\"Ellipse 225\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:162,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/SrTQ7kKLBEAC1SMsfj4kG44k68.svg\"},className:\"framer-vit3ta\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Content ownership\"})})},VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Content ownership\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Content ownership\"})}),className:\"framer-1vdn0r7\",\"data-framer-name\":\"Total privacy\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oiz0d9\",\"data-framer-name\":\"Group 1466\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135.52%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"You retain full ownership of any designs created on our platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135.52%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"You retain full ownership of any designs created on our platform.\"})}),className:\"framer-1rppigy\",\"data-framer-name\":\"We never share or sell your data. All files are stored securely in our cloud environment.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jsew37\",\"data-framer-name\":\"Frame 1542\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f5753v\",\"data-framer-name\":\"Ellipse 225\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162,intrinsicWidth:162,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/kKPwkYr37cM3ViQIRsp1C1uIBM.svg\"},className:\"framer-y4o2j4\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Service reliability\"})})},VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Service reliability\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Service reliability\"})}),className:\"framer-1op4mdn\",\"data-framer-name\":\"Total privacy\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-139yd6b\",\"data-framer-name\":\"Group 1466\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VdqHPNcqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135.52%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"Vizcom has an engineering-focused and always-on security team\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135.52%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"Vizcom has an engineering-focused and always-on security team\"})}),className:\"framer-hp7ubj\",\"data-framer-name\":\"We never share or sell your data. All files are stored securely in our cloud environment.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-13pstq4\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Community\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"128px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Community\"})}),className:\"framer-1m5tw13\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jekabc\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1shkxn\",\"data-framer-name\":\"YouTube_Icon_White_Logo_wine\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 20\"><path d=\"M 12.64 12.814 L 12.64 7.186 L 18.671 10 Z M 26.056 5.415 C 25.791 4.596 25.009 3.95 24.016 3.731 C 22.216 3.333 15 3.333 15 3.333 C 15 3.333 7.784 3.333 5.984 3.731 C 4.991 3.95 4.209 4.596 3.944 5.415 C 3.462 6.901 3.462 10 3.462 10 C 3.462 10 3.462 13.099 3.944 14.585 C 4.209 15.404 4.991 16.05 5.984 16.269 C 7.784 16.667 15 16.667 15 16.667 C 15 16.667 22.216 16.667 24.016 16.269 C 25.009 16.05 25.791 15.404 26.056 14.585 C 26.538 13.099 26.538 10 26.538 10 C 26.538 10 26.538 6.901 26.056 5.415\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:11977250139,withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/vizcom_ai?lang=en\",motionChild:true,nodeId:\"Hjzy3Q4gJ\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1rvq7ei framer-1cm11d3\",\"data-framer-name\":\"Twitter\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 0 L 20 0 L 20 20 L 0 20 Z\" fill=\"transparent\"></path><path d=\"M 19.195 6.07 L 16.836 8.422 C 16.367 13.883 11.758 18.125 6.25 18.125 C 5.117 18.125 4.18 17.945 3.469 17.594 C 2.898 17.305 2.664 17 2.602 16.906 C 2.497 16.747 2.47 16.549 2.53 16.368 C 2.589 16.187 2.728 16.043 2.906 15.977 C 2.922 15.969 4.766 15.266 5.961 13.914 C 5.22 13.386 4.568 12.743 4.031 12.008 C 2.961 10.555 1.828 8.031 2.508 4.266 C 2.551 4.038 2.716 3.852 2.938 3.781 C 3.16 3.709 3.404 3.766 3.57 3.93 C 3.594 3.961 6.195 6.523 9.375 7.352 L 9.375 6.875 C 9.381 5.874 9.785 4.917 10.497 4.214 C 11.209 3.51 12.171 3.119 13.172 3.125 C 14.495 3.144 15.711 3.856 16.375 5 L 18.75 5 C 19.002 4.999 19.23 5.15 19.328 5.383 C 19.42 5.618 19.368 5.886 19.195 6.07 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:8728403298,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/vizcomco/\",motionChild:true,nodeId:\"WWoM8FoEc\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1bgi4nx framer-1cm11d3\",\"data-framer-name\":\"iconmonstr_linkedin_3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 12.667 0 L 3.333 0 C 1.492 0 0 1.492 0 3.333 L 0 12.667 C 0 14.508 1.492 16 3.333 16 L 12.667 16 C 14.508 16 16 14.508 16 12.667 L 16 3.333 C 16 1.492 14.508 0 12.667 0 Z M 5.333 12.667 L 3.333 12.667 L 3.333 5.333 L 5.333 5.333 Z M 4.333 4.488 C 3.689 4.488 3.167 3.961 3.167 3.312 C 3.167 2.663 3.689 2.136 4.333 2.136 C 4.977 2.136 5.5 2.663 5.5 3.312 C 5.5 3.961 4.978 4.488 4.333 4.488 Z M 13.333 12.667 L 11.333 12.667 L 11.333 8.931 C 11.333 6.685 8.667 6.855 8.667 8.931 L 8.667 12.667 L 6.667 12.667 L 6.667 5.333 L 8.667 5.333 L 8.667 6.51 C 9.597 4.786 13.333 4.659 13.333 8.161 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:10133526024,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/vizcom_/\",motionChild:true,nodeId:\"NTJkK_on_\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-yvk93w framer-1cm11d3\",\"data-framer-name\":\"Instagram\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 0 L 20 0 L 20 20 L 0 20 Z\" fill=\"transparent\"></path><path d=\"M 7.5 10 C 7.5 8.619 8.619 7.5 10 7.5 C 11.381 7.5 12.5 8.619 12.5 10 C 12.5 11.381 11.381 12.5 10 12.5 C 8.619 12.5 7.5 11.381 7.5 10 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 13.438 2.188 L 6.563 2.188 C 4.146 2.188 2.188 4.146 2.188 6.563 L 2.188 13.438 C 2.188 15.854 4.146 17.813 6.563 17.813 L 13.438 17.813 C 15.854 17.813 17.813 15.854 17.813 13.438 L 17.813 6.563 C 17.813 4.146 15.854 2.188 13.438 2.188 Z M 10 13.75 C 7.929 13.75 6.25 12.071 6.25 10 C 6.25 7.929 7.929 6.25 10 6.25 C 12.071 6.25 13.75 7.929 13.75 10 C 13.75 12.071 12.071 13.75 10 13.75 Z M 14.063 6.875 C 13.545 6.875 13.125 6.455 13.125 5.938 C 13.125 5.42 13.545 5 14.063 5 C 14.58 5 15 5.42 15 5.938 C 15 6.455 14.58 6.875 14.063 6.875 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:9346185358,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/QKNa5RJAgC\",motionChild:true,nodeId:\"Ajw7j3Ugc\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-f0i8z6 framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{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-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join our Discord\"})})},mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join our Discord\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join our Discord\"})}),className:\"framer-gq5mvz\",\"data-framer-name\":\"Choose Professional\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cbdbhq\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icqj5g\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/p/C_g0In8M1ut/?igsh=MWVmNWlrdXRpd2RzcQ==\",motionChild:true,nodeId:\"g33G47O3B\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:1372,pixelHeight:1072,pixelWidth:1440,sizes:\"272.25px\",src:\"https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg\",srcSet:\"https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg 1440w\"}},mHjG03fVZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:1372,pixelHeight:1072,pixelWidth:1440,sizes:\"358px\",src:\"https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg\",srcSet:\"https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg 1440w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:1372,pixelHeight:1072,pixelWidth:1440,sizes:\"248.625px\",src:\"https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg\",srcSet:\"https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:1372,pixelHeight:1072,pixelWidth:1440,sizes:\"405px\",src:\"https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg\",srcSet:\"https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L6f8jtD28x9jYcvfPzoYoxSVG5Y.jpeg 1440w\"},className:\"framer-1du6znu framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"FrRF4S6aP\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:608,intrinsicWidth:1080,pixelHeight:1440,pixelWidth:1440,sizes:\"226.875px\",src:\"https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png\",srcSet:\"https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png 1440w\"}},mHjG03fVZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:608,intrinsicWidth:1080,pixelHeight:1440,pixelWidth:1440,sizes:\"358px\",src:\"https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png\",srcSet:\"https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png 1440w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:608,intrinsicWidth:1080,pixelHeight:1440,pixelWidth:1440,sizes:\"207.1875px\",src:\"https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png\",srcSet:\"https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:608,intrinsicWidth:1080,pixelHeight:1440,pixelWidth:1440,sizes:\"337.5px\",src:\"https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png\",srcSet:\"https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tzw9F7SbflK1jlrt1uSwyag9k6U.png 1440w\"},className:\"framer-zmmixd framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/posts/loftllc_creating-a-scene-in-vizcom-activity-7237866581538590721-DJb-?utm_source=share&utm_medium=member_desktop\",motionChild:true,nodeId:\"H3qVpsbDh\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:800,pixelHeight:1998,pixelWidth:1268,positionX:\"50.6%\",positionY:\"56.5%\",sizes:\"226.875px\",src:\"https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png?scale-down-to=1024 649w,https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png 1268w\"}},mHjG03fVZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:800,pixelHeight:1998,pixelWidth:1268,positionX:\"50.6%\",positionY:\"56.5%\",sizes:\"358px\",src:\"https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png?scale-down-to=1024 649w,https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png 1268w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:800,pixelHeight:1998,pixelWidth:1268,positionX:\"50.6%\",positionY:\"56.5%\",sizes:\"207.1875px\",src:\"https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png?scale-down-to=1024 649w,https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png 1268w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:800,pixelHeight:1998,pixelWidth:1268,positionX:\"50.6%\",positionY:\"56.5%\",sizes:\"337.5px\",src:\"https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png?scale-down-to=1024 649w,https://framerusercontent.com/images/EoiTuP219oeAP5U3z6blL5x3OGg.png 1268w\"},className:\"framer-1lzecdk framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2kv hidden-et3aef\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/p/C7zKqguJy2Y/?img_index=1\",motionChild:true,nodeId:\"tkNlcLmRj\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:1365,pixelWidth:2048,sizes:\"207.4286px\",src:\"https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg 2048w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:1365,pixelWidth:2048,sizes:\"189.4277px\",src:\"https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:1365,pixelWidth:2048,sizes:\"308.5714px\",src:\"https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XugPK3jucZtT9lu4qLKkb2Z0c.jpg 2048w\"},className:\"framer-w2cjic framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/p/CzyH3TwoB_D/?img_index=1\",motionChild:true,nodeId:\"uyk94Kp3C\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:800,pixelHeight:1440,pixelWidth:1440,sizes:\"311.1429px\",src:\"https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg 1440w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:800,pixelHeight:1440,pixelWidth:1440,sizes:\"284.1434px\",src:\"https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:800,pixelHeight:1440,pixelWidth:1440,sizes:\"462.8571px\",src:\"https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FGhtmtJ1SI0s3iFuB1JU78PWfA.jpg 1440w\"},className:\"framer-aw3s8s framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/p/C8SU5PDIDM5/?img_index=1\",motionChild:true,nodeId:\"SDKg00bbM\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:1080,pixelWidth:1080,sizes:\"207.4286px\",src:\"https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg 1080w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:1080,pixelWidth:1080,sizes:\"189.4289px\",src:\"https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:1080,pixelWidth:1080,sizes:\"308.5714px\",src:\"https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZArMWT13OTmlyIDIzpVooMqKkY.jpeg 1080w\"},className:\"framer-1kv8rdg framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-51cb04 hidden-et3aef\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/posts/cardesign-academy_suv-concept-ai-activity-7237463507007340544-KJRo?utm_source=share&utm_medium=member_desktop\",motionChild:true,nodeId:\"erwBImPn7\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2048,pixelHeight:725,pixelWidth:1397,sizes:\"311.1429px\",src:\"https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg\",srcSet:\"https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg 1397w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2048,pixelHeight:725,pixelWidth:1397,sizes:\"285.287px\",src:\"https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg\",srcSet:\"https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg 1397w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2048,pixelHeight:725,pixelWidth:1397,sizes:\"462.8571px\",src:\"https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg\",srcSet:\"https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mhHvw4hpUn3vHy2yoPGgCtyDMRA.jpeg 1397w\"},className:\"framer-121itf2 framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/Vizcom_ai/status/1765456892149825875\",motionChild:true,nodeId:\"ckJX7f9Kn\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"207.4286px\",src:\"https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg\",srcSet:\"https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg 1080w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"189.4277px\",src:\"https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg\",srcSet:\"https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"308.5714px\",src:\"https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg\",srcSet:\"https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/P92Dvnxfh153JH1eskfg93BiM.jpg 1080w\"},className:\"framer-aun1yv framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/p/C8eeMbNMgsG/\",motionChild:true,nodeId:\"C9lyv4qQI\",openInNewTab:true,scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"207.4286px\",src:\"https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg\",srcSet:\"https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg 1080w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"190px\",src:\"https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg\",srcSet:\"https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"308.5714px\",src:\"https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg\",srcSet:\"https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hV4f0BGgS9UevkJLw7Aw7O3o98.jpg 1080w\"},className:\"framer-1vtuznh framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1crfeez hidden-et3aef\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/p/C5Ahks6OkLR/?img_index=1\",motionChild:true,nodeId:\"dUlZpE6B6\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"207.4286px\",src:\"https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg\",srcSet:\"https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg 1080w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"189.4277px\",src:\"https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg\",srcSet:\"https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"308.5714px\",src:\"https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg\",srcSet:\"https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQR9OSIkhLT8X7qQ2OzCaUQnE.jpg 1080w\"},className:\"framer-126lp65 framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/feed/update/urn:li:activity:7158522018676572161\",motionChild:true,nodeId:\"Ebzdr5fiz\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:913,intrinsicWidth:1022,pixelHeight:913,pixelWidth:1022,sizes:\"207.4286px\",src:\"https://framerusercontent.com/images/0ggFAS90Y47NSICD3wpaKRPVk.jpg\",srcSet:\"https://framerusercontent.com/images/0ggFAS90Y47NSICD3wpaKRPVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0ggFAS90Y47NSICD3wpaKRPVk.jpg 1022w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:913,intrinsicWidth:1022,pixelHeight:913,pixelWidth:1022,sizes:\"190px\",src:\"https://framerusercontent.com/images/0ggFAS90Y47NSICD3wpaKRPVk.jpg\",srcSet:\"https://framerusercontent.com/images/0ggFAS90Y47NSICD3wpaKRPVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0ggFAS90Y47NSICD3wpaKRPVk.jpg 1022w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:913,intrinsicWidth:1022,pixelHeight:913,pixelWidth:1022,sizes:\"308.5714px\",src:\"https://framerusercontent.com/images/0ggFAS90Y47NSICD3wpaKRPVk.jpg\",srcSet:\"https://framerusercontent.com/images/0ggFAS90Y47NSICD3wpaKRPVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0ggFAS90Y47NSICD3wpaKRPVk.jpg 1022w\"},className:\"framer-1hg8ihp framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/p/C48L7UJL-Hq/?utm_source=ig_web_copy_link&igsh=MzRlODBiNWFlZA==\",motionChild:true,nodeId:\"G2PUvhXOS\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2048,pixelHeight:1360,pixelWidth:2048,sizes:\"311.1429px\",src:\"https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg\",srcSet:\"https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg 2048w\"}},VdqHPNcqG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2048,pixelHeight:1360,pixelWidth:2048,sizes:\"285.287px\",src:\"https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg\",srcSet:\"https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1360,intrinsicWidth:2048,pixelHeight:1360,pixelWidth:2048,sizes:\"462.8571px\",src:\"https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg\",srcSet:\"https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/i1PI27Cksd1jn7i3FL720AfZpOM.jpg 2048w\"},className:\"framer-1x4v334 framer-1cm11d3\",\"data-framer-name\":\"Photo Copy\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-le54sp\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mHjG03fVZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[\"Get started for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZCBJdGFsaWM=\",\"--framer-font-family\":'\"Times Now SemiBold Italic\", \"Times Now SemiBold Italic Placeholder\", sans-serif'},children:\"free\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"116px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[\"Get started for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZCBJdGFsaWM=\",\"--framer-font-family\":'\"Times Now SemiBold Italic\", \"Times Now SemiBold Italic Placeholder\", sans-serif'},children:\"free\"})]})}),className:\"framer-1ci4b90\",fonts:[\"CUSTOM;Times Now SemiBold\",\"CUSTOM;Times Now SemiBold Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15vvv80\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://app.vizcom.ai/\",motionChild:true,nodeId:\"YWPncp55W\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11sfr2q framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get Started\"})})}},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-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get Started\"})}),className:\"framer-uctqoi\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QX7ng39mp\"},motionChild:true,nodeId:\"GUIW0gisp\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3rlkgl framer-1cm11d3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Enterprise\"})})}},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-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Enterprise\"})}),className:\"framer-1gxl9uf\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1244,intrinsicWidth:2268,pixelHeight:1568,pixelWidth:4376,positionX:\"center\",positionY:\"bottom\",sizes:\"815px\",src:\"https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png 4376w\"}},mHjG03fVZ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1244,intrinsicWidth:2268,pixelHeight:1568,pixelWidth:4376,positionX:\"center\",positionY:\"bottom\",sizes:\"388px\",src:\"https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png 4376w\"}},sFcNI0ZLQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1244,intrinsicWidth:2268,pixelHeight:1568,pixelWidth:4376,positionX:\"center\",positionY:\"bottom\",sizes:\"1400px\",src:\"https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png 4376w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1244,intrinsicWidth:2268,pixelHeight:1568,pixelWidth:4376,positionX:\"center\",positionY:\"bottom\",sizes:\"1120px\",src:\"https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JRo8lx5SMo1fXso2TM3B9oCBFeI.png 4376w\"},className:\"framer-al8mqr\",\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fxdaf6\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpbWVzIE5vdyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Times Now SemiBold\", \"Times Now SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"FAQ\"})}),className:\"framer-kpyujc\",fonts:[\"CUSTOM;Times Now SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j9d6gg\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-48qqwx\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sfxjv8\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:448,width:`max(min(1000px, ${componentViewport?.width||\"100vw\"}), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w44d7o-container\",nodeId:\"risSFNyzV\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"risSFNyzV\",layoutId:\"risSFNyzV\",style:{width:\"100%\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gnyzq8\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:485,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ssdjry-container\",nodeId:\"UBGs8sUzO\",scopeId:\"VnDs6sHAm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCoKFbXJz:{variant:\"QeyFO63CJ\"},mHjG03fVZ:{variant:\"AIh0SxA8B\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"UBGs8sUzO\",layoutId:\"UBGs8sUzO\",style:{width:\"100%\"},variant:\"lhoqzU6NG\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yfuOe.framer-1cm11d3, .framer-yfuOe .framer-1cm11d3 { display: block; }\",\".framer-yfuOe.framer-12l2281 { align-content: center; align-items: center; background-color: #fcf5e5; 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-yfuOe .framer-18ubfkg { align-content: center; align-items: center; background-color: #fcf5e5; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 76px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-yfuOe .framer-1xkb54y-container { flex: none; height: 76px; position: relative; width: 100%; z-index: 10; }\",\".framer-yfuOe .framer-1vl1nyh { align-content: center; align-items: center; background-color: #fcf5e5; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 184px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-jwtk7p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: 998px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1043px; }\",\".framer-yfuOe .framer-19ycb9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-yfuOe .framer-84fv00, .framer-yfuOe .framer-1b3s3iv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 663px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-1xq4lk9, .framer-yfuOe .framer-a7nly5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 795px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-1orosre, .framer-yfuOe .framer-1anf6it, .framer-yfuOe .framer-1tq27q, .framer-yfuOe .framer-15vvv80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yfuOe .framer-3gt1xa { align-content: center; align-items: center; background-color: var(--token-f19f41a2-a909-4187-9477-c350076bb8fd, #6a6af2); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-fmacfz, .framer-yfuOe .framer-15n1uow, .framer-yfuOe .framer-2livnq, .framer-yfuOe .framer-1761sxt, .framer-yfuOe .framer-1xm4o16 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yfuOe .framer-1szhi65, .framer-yfuOe .framer-x0aemr { align-content: center; align-items: center; background-color: #e0e0e0; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-11pfef4 { background-color: #efe9da; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 61%; overflow: hidden; position: relative; width: 98%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfuOe .framer-az7gjf-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 108%; }\",\".framer-yfuOe .framer-15k4dmu-container { flex: none; height: 238px; left: calc(50.00000000000002% - 359px / 2); position: absolute; top: calc(50.00000000000002% - 238px / 2); width: 359px; }\",\".framer-yfuOe .framer-19l6ec9 { align-content: center; align-items: center; background-color: #fcf5e5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-18powa7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 49px; position: relative; white-space: pre-wrap; width: 663px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-1crpykx-container { flex: none; height: 99px; opacity: 0.32; position: relative; width: 1120px; }\",\".framer-yfuOe .framer-1w5k9c8 { height: 25px; overflow: hidden; position: relative; width: 95px; }\",\".framer-yfuOe .framer-2w6d1v { aspect-ratio: 3.867069486404834 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-yfuOe .framer-9odwsf { height: 46px; overflow: hidden; position: relative; width: 77px; }\",\".framer-yfuOe .framer-1fxohpn { aspect-ratio: 1.679174484052533 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-yfuOe .framer-154xj5g { height: 25px; overflow: hidden; position: relative; width: 77px; }\",\".framer-yfuOe .framer-1gq1kk1 { aspect-ratio: 3.029315960912052 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-yfuOe .framer-rvp3im { height: 28px; overflow: hidden; position: relative; width: 87px; }\",\".framer-yfuOe .framer-1v5bgrm { aspect-ratio: 3.186046511627907 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-yfuOe .framer-apfcrq { height: 45px; overflow: hidden; position: relative; width: 72px; }\",\".framer-yfuOe .framer-15lpe8k { aspect-ratio: 1.8236559139784947 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-yfuOe .framer-lv208c { height: 20px; overflow: hidden; position: relative; width: 92px; }\",\".framer-yfuOe .framer-ua40ac { aspect-ratio: 7.894736842105263 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-yfuOe .framer-1xvbb3h { height: 44px; overflow: hidden; position: relative; width: 79px; }\",\".framer-yfuOe .framer-6npjgl { aspect-ratio: 1.8236559139784947 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-yfuOe .framer-9i7a6d { aspect-ratio: 4.633484162895927 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 130px; }\",\".framer-yfuOe .framer-whwet7 { height: 49px; overflow: hidden; position: relative; width: 45px; }\",\".framer-yfuOe .framer-15migiy { aspect-ratio: 1.3848396501457727 / 1; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 70px; }\",\".framer-yfuOe .framer-qxabld { aspect-ratio: 3.10077519379845 / 1; height: var(--framer-aspect-ratio-supported, 23px); overflow: visible; position: relative; width: 70px; }\",\".framer-yfuOe .framer-14mtjtd { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-yfuOe .framer-wb5ys4 { aspect-ratio: 1.873536299765808 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 70px; }\",\".framer-yfuOe .framer-bga7du { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 52px; }\",\".framer-yfuOe .framer-8ucm6f { height: 28px; overflow: hidden; position: relative; width: 76px; }\",\".framer-yfuOe .framer-bt3kzg { aspect-ratio: 2.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-yfuOe .framer-h3urw4 { aspect-ratio: 2.65 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 106px; }\",\".framer-yfuOe .framer-1s05r57 { aspect-ratio: 3.7 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 148px; }\",\".framer-yfuOe .framer-oktn0f { aspect-ratio: 1.65 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 66px; }\",\".framer-yfuOe .framer-jrl6fz { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 60px; }\",\".framer-yfuOe .framer-mz5d0i { aspect-ratio: 1.8 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 72px; }\",\".framer-yfuOe .framer-1a3t3fk { aspect-ratio: 2.460136674259681 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 98px; }\",\".framer-yfuOe .framer-cl0x3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: 639px; justify-content: flex-start; overflow: hidden; padding: 90px 0px 0px 0px; position: relative; width: 1123px; z-index: 0; }\",\".framer-yfuOe .framer-ykhq5s { --border-bottom-width: 4px; --border-color: var(--token-f19f41a2-a909-4187-9477-c350076bb8fd, #6a6af2); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; align-content: center; align-items: center; border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfuOe .framer-1bt9da5 { 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: min-content; z-index: 1; }\",\".framer-yfuOe .framer-1f209m6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 997px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-cc89ha { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-yfuOe .framer-4knuwf { --border-bottom-width: 2px; --border-color: #fcf5e5; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-1cyrdod { align-content: center; align-items: center; background-color: #fcf5e5; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-jm29xf-container { flex: none; height: 100%; left: calc(49.955476402493346% - 100% / 2); position: absolute; top: calc(49.891067538126386% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-yfuOe .framer-62xotk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 40px 64px 40px; position: relative; width: 1200px; }\",\".framer-yfuOe .framer-2q9bbp { aspect-ratio: 3.3857142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 78px); position: relative; width: 264px; }\",\".framer-yfuOe .framer-oknsj2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 99px; position: relative; white-space: pre-wrap; width: 488px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-tsafvx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-yfuOe .framer-16d4eno, .framer-yfuOe .framer-tefp9b, .framer-yfuOe .framer-191v2ie { --border-bottom-width: 2px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #efe9da; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 453px; justify-content: flex-start; padding: 0px; position: relative; width: 320px; }\",\".framer-yfuOe .framer-1el2h3o { border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 309px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfuOe .framer-6sjyl1, .framer-yfuOe .framer-gt9tqv, .framer-yfuOe .framer-17ajfxf { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 284px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-13obv3, .framer-yfuOe .framer-bnbl87 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 102px; justify-content: center; overflow: hidden; padding: 23px 40px 23px 140px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-1qw87jq { border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 309px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-mn1hwd-container { flex: none; height: 309px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-okrjvi { align-content: center; align-items: center; background-color: #f4e7d3; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 40px 140px 40px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-ut6ypz { align-content: center; align-items: center; background-color: #f4e7d3; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 0px 72px 0px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-47r4rl { align-content: flex-start; align-items: flex-start; background-color: #f4e7d3; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: visible; padding: 70px 70px 0px 70px; position: relative; width: 955px; }\",\".framer-yfuOe .framer-e2xvtb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.9; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-1xr488v, .framer-yfuOe .framer-w2ftq8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-12ssy0c { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-fsbela, .framer-yfuOe .framer-1uxniqt, .framer-yfuOe .framer-375f60, .framer-yfuOe .framer-x7bpl1, .framer-yfuOe .framer-uctqoi, .framer-yfuOe .framer-1gxl9uf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yfuOe .framer-o2szh4 { align-content: center; align-items: center; aspect-ratio: 0.6712962962962963 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 226px); justify-content: flex-end; padding: 0px; position: relative; width: 152px; }\",\".framer-yfuOe .framer-12qi44j-container { flex: none; height: 639px; position: relative; width: 982px; }\",\".framer-yfuOe .framer-1wqrvmo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 349px; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-1wbwi3b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.9; overflow: visible; position: relative; white-space: pre-wrap; width: 1120px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-m0xiwj { flex: none; height: 172px; position: relative; width: 229px; }\",\".framer-yfuOe .framer-1kmx5oz { 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; position: relative; width: 106%; }\",\".framer-yfuOe .framer-13x9yi8, .framer-yfuOe .framer-1xzr0kt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 86%; }\",\".framer-yfuOe .framer-13ldldb, .framer-yfuOe .framer-j52vu4, .framer-yfuOe .framer-1nyccj9, .framer-yfuOe .framer-1qs0165, .framer-yfuOe .framer-cdtprp, .framer-yfuOe .framer-ny10qs, .framer-yfuOe .framer-1fub6r7, .framer-yfuOe .framer-v0ujez { flex: none; height: 220px; position: relative; width: 242px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yfuOe .framer-xrmmgf { flex: none; height: 220px; position: relative; width: 238px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yfuOe .framer-1vzmwm5, .framer-yfuOe .framer-1udog7m { flex: none; height: 220px; position: relative; width: 284px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yfuOe .framer-lqrubw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 86%; }\",\".framer-yfuOe .framer-4iljsu { flex: none; height: 219px; position: relative; width: 242px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yfuOe .framer-1y4qsri { align-content: center; align-items: center; background-color: #fcf5e5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1203px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1200px; }\",\".framer-yfuOe .framer-19i8y8r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1193px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-937i9y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; max-width: 2018px; padding: 61px 0px 61px 0px; position: relative; width: 1017px; }\",\".framer-yfuOe .framer-1ivq6e { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-1dpnavg { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-14vvhdg { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-ckwezp-container { flex: none; height: 567px; position: relative; width: 1017px; }\",\".framer-yfuOe .framer-xfpau2 { align-content: center; align-items: center; background-color: #e3dcce; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 40px 32px 40px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-1fscrxs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: 1107px; justify-content: center; overflow: hidden; padding: 40px 40px 5px 40px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-19p0roo { aspect-ratio: 0.9497206703910615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); position: relative; width: 83px; }\",\".framer-yfuOe .framer-10imkdr { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 660px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-c6kvii { align-content: center; align-items: center; background-color: var(--token-f19f41a2-a909-4187-9477-c350076bb8fd, #6a6af2); border-bottom-left-radius: 23px; border-bottom-right-radius: 23px; border-top-left-radius: 23px; border-top-right-radius: 23px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 46px; justify-content: center; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-1muy4bm { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; box-shadow: 0px 1px 29px 0px rgba(0, 0, 0, 0.25); flex: none; height: 545px; overflow: hidden; position: relative; width: 968px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfuOe .framer-1qog0jr-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 967px; }\",\".framer-yfuOe .framer-1sqg5vx { align-content: center; align-items: center; background-color: #fcf5e5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 2050px; justify-content: center; overflow: hidden; padding: 20px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-uhrm4n { aspect-ratio: 0.7551020408163265 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 292px); position: relative; width: 220px; }\",\".framer-yfuOe .framer-1m7tbfs, .framer-yfuOe .framer-1m5tw13, .framer-yfuOe .framer-1ci4b90 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-121u24m { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 540px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-h6fa9y { flex: none; height: 590px; overflow: hidden; position: relative; width: 100%; }\",\".framer-yfuOe .framer-1ridmq9-container { bottom: 0px; cursor: default; flex: none; left: calc(49.958437240232776% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-yfuOe .framer-se3dbz-container, .framer-yfuOe .framer-u8io2c-container, .framer-yfuOe .framer-1gufnqe-container, .framer-yfuOe .framer-1bv8vtj-container, .framer-yfuOe .framer-ho73qt-container, .framer-yfuOe .framer-19htcwx-container { height: 511px; position: relative; width: 321px; }\",\".framer-yfuOe .framer-27nptf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 84px 0px 58px 0px; position: relative; width: 849px; }\",\".framer-yfuOe .framer-1chm47c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 807px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-12u5fxi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 440px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-zzb4t, .framer-yfuOe .framer-jekabc { 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-yfuOe .framer-1g3oxd0, .framer-yfuOe .framer-f0i8z6 { align-content: center; align-items: center; background-color: var(--token-f19f41a2-a909-4187-9477-c350076bb8fd, #6a6af2); border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9.99936294555664px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 30px 12px 30px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfuOe .framer-a1dq6q, .framer-yfuOe .framer-1lmcrql, .framer-yfuOe .framer-1vdn0r7, .framer-yfuOe .framer-1op4mdn, .framer-yfuOe .framer-gq5mvz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yfuOe .framer-1lt1ro0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 987px; }\",\".framer-yfuOe .framer-1i8gt8b { align-content: center; align-items: center; background-color: #efe9da; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 368px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfuOe .framer-1c5thhk { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #3c3d3e; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 97px); justify-content: center; padding: 0px; position: relative; width: 97px; }\",\".framer-yfuOe .framer-r25kmh, .framer-yfuOe .framer-vit3ta { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 72px); justify-content: center; opacity: 0.85; overflow: hidden; padding: 0px; position: relative; width: 72px; }\",\".framer-yfuOe .framer-18xi0e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 239px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-1tazkrj, .framer-yfuOe .framer-1jsew37 { align-content: center; align-items: center; align-self: stretch; background-color: #efe9da; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfuOe .framer-tsqkua, .framer-yfuOe .framer-1f5753v { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #3c3c3e; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 97px); justify-content: center; padding: 0px; position: relative; width: 97px; }\",\".framer-yfuOe .framer-oiz0d9 { 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; position: relative; width: min-content; }\",\".framer-yfuOe .framer-1rppigy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 252px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-y4o2j4 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 72px); justify-content: center; opacity: 0.95; overflow: hidden; padding: 0px; position: relative; width: 72px; }\",\".framer-yfuOe .framer-139yd6b { flex: none; height: 45px; overflow: visible; position: relative; width: 289px; }\",\".framer-yfuOe .framer-hp7ubj { flex: none; height: 43px; left: calc(50% - 289px / 2); position: absolute; top: 0px; white-space: pre-wrap; width: 289px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfuOe .framer-13pstq4 { align-content: center; align-items: center; background-color: #fcf5e5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-1shkxn { flex: none; height: 20px; position: relative; width: 30px; }\",\".framer-yfuOe .framer-1rvq7ei, .framer-yfuOe .framer-yvk93w { flex: none; height: 20px; position: relative; text-decoration: none; width: 20px; }\",\".framer-yfuOe .framer-1bgi4nx { flex: none; height: 16px; position: relative; text-decoration: none; width: 16px; }\",\".framer-yfuOe .framer-cbdbhq { align-content: center; align-items: center; 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: 1120px; }\",\".framer-yfuOe .framer-1icqj5g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-1du6znu { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1.2 0 0px; height: 310px; overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-yfuOe .framer-zmmixd, .framer-yfuOe .framer-1lzecdk, .framer-yfuOe .framer-1kv8rdg { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: 309px; overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-yfuOe .framer-d2kv, .framer-yfuOe .framer-51cb04, .framer-yfuOe .framer-1crfeez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-w2cjic, .framer-yfuOe .framer-aun1yv, .framer-yfuOe .framer-126lp65 { aspect-ratio: 0.9969879518072289 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 310px); overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-yfuOe .framer-aw3s8s { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1.5 0 0px; height: 309px; overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-yfuOe .framer-121itf2, .framer-yfuOe .framer-1x4v334 { aspect-ratio: 1.501510574018127 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1.5 0 0px; height: var(--framer-aspect-ratio-supported, 309px); overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-yfuOe .framer-1vtuznh, .framer-yfuOe .framer-1hg8ihp { aspect-ratio: 1 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 309px); overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-yfuOe .framer-le54sp { align-content: center; align-items: center; background-color: #fcf5e5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: 719px; justify-content: center; overflow: hidden; padding: 120px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-11sfr2q { align-content: center; align-items: center; background-color: #6a6af2; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-3rlkgl { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfuOe .framer-al8mqr { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 496px; overflow: visible; position: relative; width: 1120px; }\",\".framer-yfuOe .framer-fxdaf6 { align-content: center; align-items: center; background-color: #fcf5e5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 40px 100px 40px; position: relative; width: 100%; z-index: 0; }\",\".framer-yfuOe .framer-kpyujc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-yfuOe .framer-j9d6gg, .framer-yfuOe .framer-1sfxjv8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-yfuOe .framer-48qqwx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-yfuOe .framer-1w44d7o-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-yfuOe .framer-1gnyzq8 { 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; position: relative; width: 100%; }\",\".framer-yfuOe .framer-1ssdjry-container { flex: none; height: auto; position: relative; width: 100%; }\",'.framer-yfuOe[data-border=\"true\"]::after, .framer-yfuOe [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: 1480px) { .framer-yfuOe.framer-12l2281 { width: 1480px; } .framer-yfuOe .framer-az7gjf-container { width: 105%; } .framer-yfuOe .framer-1crpykx-container { width: 1439px; } .framer-yfuOe .framer-cl0x3 { height: 739px; width: 1405px; } .framer-yfuOe .framer-1y4qsri { height: 1208px; } .framer-yfuOe .framer-1fscrxs { gap: 31px; height: 1197px; } .framer-yfuOe .framer-19p0roo { height: var(--framer-aspect-ratio-supported, 87px); } .framer-yfuOe .framer-10imkdr { width: 962px; } .framer-yfuOe .framer-h6fa9y { width: 95%; } .framer-yfuOe .framer-1ridmq9-container { left: calc(50.00000000000002% - 100% / 2); } .framer-yfuOe .framer-13pstq4 { height: 1843px; } .framer-yfuOe .framer-le54sp { height: 756px; } .framer-yfuOe .framer-al8mqr { height: 488px; width: 1400px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-yfuOe.framer-12l2281 { width: 810px; } .framer-yfuOe .framer-18ubfkg, .framer-yfuOe .framer-uhrm4n { order: 0; } .framer-yfuOe .framer-1vl1nyh, .framer-yfuOe .framer-1m7tbfs { order: 1; } .framer-yfuOe .framer-jwtk7p { height: 782px; width: 1042px; } .framer-yfuOe .framer-11pfef4 { height: 58%; width: 69%; } .framer-yfuOe .framer-az7gjf-container { height: 101%; left: calc(50.00000000000002% - 100.97765363128492% / 2); top: calc(50.110864745011106% - 101.10864745011085% / 2); transform: unset; width: 101%; } .framer-yfuOe .framer-19l6ec9, .framer-yfuOe .framer-121u24m { order: 2; } .framer-yfuOe .framer-cl0x3 { height: 690px; order: 3; width: 91%; } .framer-yfuOe .framer-1f209m6 { width: 669px; } .framer-yfuOe .framer-a7nly5 { width: 613px; } .framer-yfuOe .framer-62xotk { order: 12; width: 100%; } .framer-yfuOe .framer-okrjvi { order: 14; } .framer-yfuOe .framer-47r4rl, .framer-yfuOe .framer-1wbwi3b, .framer-yfuOe .framer-ckwezp-container, .framer-yfuOe .framer-1chm47c { width: 100%; } .framer-yfuOe .framer-12ssy0c { border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; border-top-left-radius: 44px; border-top-right-radius: 44px; height: 55px; padding: 15px 34px 15px 34px; } .framer-yfuOe .framer-12qi44j-container { height: 517px; width: 739px; } .framer-yfuOe .framer-m0xiwj { height: 137px; width: 182px; } .framer-yfuOe .framer-1kmx5oz { width: 132%; } .framer-yfuOe .framer-13ldldb, .framer-yfuOe .framer-1nyccj9, .framer-yfuOe .framer-1qs0165, .framer-yfuOe .framer-ny10qs, .framer-yfuOe .framer-1fub6r7 { height: 175px; width: 193px; } .framer-yfuOe .framer-xrmmgf { height: 175px; width: 189px; } .framer-yfuOe .framer-1vzmwm5, .framer-yfuOe .framer-1udog7m { height: 175px; width: 226px; } .framer-yfuOe .framer-4iljsu { height: 174px; width: 193px; } .framer-yfuOe .framer-1y4qsri { height: 1188px; order: 15; width: 100%; } .framer-yfuOe .framer-937i9y { width: 717px; } .framer-yfuOe .framer-1dpnavg { border-bottom-left-radius: 38px; border-bottom-right-radius: 38px; border-top-left-radius: 38px; border-top-right-radius: 38px; height: 55px; width: 207px; } .framer-yfuOe .framer-14vvhdg { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; height: 55px; width: 207px; } .framer-yfuOe .framer-xfpau2 { order: 16; } .framer-yfuOe .framer-1fscrxs { gap: 45px; width: 109%; } .framer-yfuOe .framer-c6kvii { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: 51px; width: 175px; } .framer-yfuOe .framer-1muy4bm { height: 390px; width: 692px; } .framer-yfuOe .framer-1qog0jr-container { left: -4px; right: -4px; top: 50%; transform: translateY(-50%); width: unset; } .framer-yfuOe .framer-1sqg5vx { height: 2162px; order: 17; } .framer-yfuOe .framer-h6fa9y { order: 3; } .framer-yfuOe .framer-27nptf { order: 4; width: 100%; } .framer-yfuOe .framer-1g3oxd0 { border-bottom-left-radius: 38px; border-bottom-right-radius: 38px; border-top-left-radius: 38px; border-top-right-radius: 38px; height: 55px; width: 195px; } .framer-yfuOe .framer-1lt1ro0 { order: 5; width: 773px; } .framer-yfuOe .framer-1i8gt8b, .framer-yfuOe .framer-1tazkrj, .framer-yfuOe .framer-1jsew37 { padding: 40px; } .framer-yfuOe .framer-18xi0e, .framer-yfuOe .framer-1rppigy { width: 200px; } .framer-yfuOe .framer-hp7ubj { height: 84px; left: calc(49.82698961937718% - 200px / 2); width: 200px; } .framer-yfuOe .framer-13pstq4 { height: 1543px; order: 18; } .framer-yfuOe .framer-f0i8z6 { border-bottom-left-radius: 38px; border-bottom-right-radius: 38px; border-top-left-radius: 38px; border-top-right-radius: 38px; height: 55px; width: 246px; } .framer-yfuOe .framer-cbdbhq { width: 766px; } .framer-yfuOe .framer-w2cjic { height: var(--framer-aspect-ratio-supported, 209px); } .framer-yfuOe .framer-121itf2, .framer-yfuOe .framer-1x4v334 { height: var(--framer-aspect-ratio-supported, 207px); } .framer-yfuOe .framer-aun1yv, .framer-yfuOe .framer-1vtuznh, .framer-yfuOe .framer-126lp65, .framer-yfuOe .framer-1hg8ihp { height: var(--framer-aspect-ratio-supported, 208px); } .framer-yfuOe .framer-le54sp { height: 1199px; order: 19; padding: 0px 40px 40px 40px; } .framer-yfuOe .framer-11sfr2q, .framer-yfuOe .framer-3rlkgl { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; height: 55px; width: 207px; } .framer-yfuOe .framer-al8mqr { width: 815px; } .framer-yfuOe .framer-fxdaf6 { order: 20; } .framer-yfuOe .framer-1gnyzq8 { order: 21; }}\",\"@media (min-width: 778px) and (max-width: 809px) { .framer-yfuOe.framer-12l2281 { width: 778px; } .framer-yfuOe .framer-18ubfkg { overflow: hidden; } .framer-yfuOe .framer-jwtk7p { height: 812px; width: 1042px; } .framer-yfuOe .framer-19ycb9m, .framer-yfuOe .framer-1bt9da5 { padding: 29px 0px 29px 0px; } .framer-yfuOe .framer-3gt1xa { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; height: 51px; order: 0; width: 127px; } .framer-yfuOe .framer-1szhi65 { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; height: 51px; order: 1; width: 128px; } .framer-yfuOe .framer-11pfef4 { height: 52%; width: 70%; } .framer-yfuOe .framer-az7gjf-container { height: 106%; left: calc(50.00000000000002% - 105.20547945205479% / 2); top: calc(50.00000000000002% - 105.95238095238095% / 2); transform: unset; width: 105%; } .framer-yfuOe .framer-cl0x3 { height: 766px; width: 90%; } .framer-yfuOe .framer-1f209m6 { width: 613px; } .framer-yfuOe .framer-a7nly5 { width: 606px; } .framer-yfuOe .framer-4knuwf, .framer-yfuOe .framer-1cyrdod { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; height: 55px; width: 173px; } .framer-yfuOe .framer-62xotk, .framer-yfuOe .framer-12qi44j-container, .framer-yfuOe .framer-ckwezp-container, .framer-yfuOe .framer-1chm47c { width: 100%; } .framer-yfuOe .framer-47r4rl { padding: 7px; width: 509px; } .framer-yfuOe .framer-e2xvtb { order: 0; width: 123%; } .framer-yfuOe .framer-1xr488v { order: 1; } .framer-yfuOe .framer-12ssy0c { order: 3; } .framer-yfuOe .framer-1wqrvmo { height: 424px; width: 106%; } .framer-yfuOe .framer-1wbwi3b { width: 734px; } .framer-yfuOe .framer-m0xiwj { height: 142px; width: 189px; } .framer-yfuOe .framer-1kmx5oz { width: 145%; } .framer-yfuOe .framer-13ldldb, .framer-yfuOe .framer-1nyccj9, .framer-yfuOe .framer-1qs0165, .framer-yfuOe .framer-ny10qs, .framer-yfuOe .framer-1fub6r7 { height: 182px; width: 200px; } .framer-yfuOe .framer-xrmmgf { height: 182px; width: 197px; } .framer-yfuOe .framer-1vzmwm5, .framer-yfuOe .framer-1udog7m { height: 182px; width: 235px; } .framer-yfuOe .framer-4iljsu { height: 181px; width: 200px; } .framer-yfuOe .framer-1y4qsri { height: 1219px; width: 100%; } .framer-yfuOe .framer-937i9y { width: 686px; } .framer-yfuOe .framer-1fscrxs { gap: 35px; height: 953px; width: 113%; } .framer-yfuOe .framer-c6kvii { border-bottom-left-radius: 33px; border-bottom-right-radius: 33px; border-top-left-radius: 33px; border-top-right-radius: 33px; height: 44px; width: 136px; } .framer-yfuOe .framer-1muy4bm { height: 387px; width: 695px; } .framer-yfuOe .framer-1qog0jr-container { width: 693px; } .framer-yfuOe .framer-1sqg5vx { height: 3494px; } .framer-yfuOe .framer-27nptf { width: 718px; } .framer-yfuOe .framer-12u5fxi { width: 545px; } .framer-yfuOe .framer-x0aemr { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; height: 51px; width: 128px; } .framer-yfuOe .framer-1lt1ro0 { flex-direction: column; width: 385px; } .framer-yfuOe .framer-1i8gt8b { flex: none; height: 505px; width: 100%; } .framer-yfuOe .framer-18xi0e { width: 288px; } .framer-yfuOe .framer-1tazkrj, .framer-yfuOe .framer-1jsew37 { align-self: unset; flex: none; height: 505px; width: 100%; } .framer-yfuOe .framer-1rppigy { width: 304px; } .framer-yfuOe .framer-hp7ubj { height: 43px; left: -32px; right: -28px; top: -1px; width: unset; } .framer-yfuOe .framer-13pstq4 { height: 1265px; padding: 0px 40px 40px 40px; } .framer-yfuOe .framer-cbdbhq { width: 703px; } .framer-yfuOe .framer-1du6znu, .framer-yfuOe .framer-zmmixd, .framer-yfuOe .framer-1lzecdk, .framer-yfuOe .framer-aw3s8s, .framer-yfuOe .framer-1kv8rdg { height: 190px; } .framer-yfuOe .framer-w2cjic, .framer-yfuOe .framer-aun1yv, .framer-yfuOe .framer-126lp65 { flex: none; height: var(--framer-aspect-ratio-supported, 190px); width: 189px; } .framer-yfuOe .framer-121itf2, .framer-yfuOe .framer-1x4v334 { flex: none; height: var(--framer-aspect-ratio-supported, 190px); width: 285px; } .framer-yfuOe .framer-1vtuznh, .framer-yfuOe .framer-1hg8ihp { flex: none; height: var(--framer-aspect-ratio-supported, 190px); width: 190px; } .framer-yfuOe .framer-le54sp { height: 923px; }}\",\"@media (max-width: 777px) { .framer-yfuOe.framer-12l2281 { width: 390px; } .framer-yfuOe .framer-18ubfkg { flex-direction: column; height: min-content; order: 0; overflow: hidden; right: unset; width: 100%; } .framer-yfuOe .framer-1xkb54y-container { height: auto; } .framer-yfuOe .framer-1vl1nyh { flex-direction: column; order: 1; } .framer-yfuOe .framer-jwtk7p { gap: 44px; height: 949px; width: 379px; } .framer-yfuOe .framer-84fv00, .framer-yfuOe .framer-1f209m6 { width: 379px; } .framer-yfuOe .framer-1xq4lk9 { width: 353px; } .framer-yfuOe .framer-3gt1xa, .framer-yfuOe .framer-1szhi65, .framer-yfuOe .framer-12ssy0c, .framer-yfuOe .framer-1dpnavg, .framer-yfuOe .framer-14vvhdg, .framer-yfuOe .framer-x0aemr, .framer-yfuOe .framer-11sfr2q, .framer-yfuOe .framer-3rlkgl { height: 41px; } .framer-yfuOe .framer-11pfef4 { height: 47%; width: 98%; } .framer-yfuOe .framer-19l6ec9 { order: 2; } .framer-yfuOe .framer-cl0x3 { gap: 44px; height: 534px; order: 3; width: 379px; } .framer-yfuOe .framer-ykhq5s { height: 91%; width: 96%; } .framer-yfuOe .framer-a7nly5 { width: 314px; } .framer-yfuOe .framer-62xotk { order: 12; width: 100%; } .framer-yfuOe .framer-okrjvi { order: 14; } .framer-yfuOe .framer-ut6ypz { padding: 50px 20px 50px 20px; width: 121%; } .framer-yfuOe .framer-47r4rl { padding: 70px 0px 0px 0px; width: 358px; } .framer-yfuOe .framer-12qi44j-container { height: 493px; width: 377px; } .framer-yfuOe .framer-1wqrvmo { height: 423px; width: 117%; } .framer-yfuOe .framer-1wbwi3b { width: 98%; } .framer-yfuOe .framer-1kmx5oz { width: 165%; } .framer-yfuOe .framer-13x9yi8 { flex-direction: column; width: 78%; } .framer-yfuOe .framer-1y4qsri { height: 908px; order: 15; padding: 100px 20px 100px 20px; width: 100%; } .framer-yfuOe .framer-19i8y8r { height: 812px; } .framer-yfuOe .framer-937i9y { width: 100%; } .framer-yfuOe .framer-ckwezp-container { height: 230px; width: 348px; } .framer-yfuOe .framer-xfpau2 { order: 16; padding: 79px 40px 79px 40px; } .framer-yfuOe .framer-1fscrxs { height: 675px; padding: 40px 10px 5px 10px; width: 127%; } .framer-yfuOe .framer-19p0roo { height: var(--framer-aspect-ratio-supported, 105px); width: 100px; } .framer-yfuOe .framer-10imkdr { width: 344px; } .framer-yfuOe .framer-1tq27q { width: 108px; } .framer-yfuOe .framer-c6kvii { height: 41px; padding: 15px 27px 15px 27px; } .framer-yfuOe .framer-1muy4bm { height: 188px; width: 333px; } .framer-yfuOe .framer-1qog0jr-container { bottom: 0px; left: 0px; top: unset; transform: unset; width: 337px; } .framer-yfuOe .framer-1sqg5vx { height: 3310px; order: 17; } .framer-yfuOe .framer-uhrm4n { height: var(--framer-aspect-ratio-supported, 291px); } .framer-yfuOe .framer-27nptf { width: 376px; } .framer-yfuOe .framer-1chm47c { width: 395px; } .framer-yfuOe .framer-12u5fxi { width: 248px; } .framer-yfuOe .framer-1g3oxd0 { border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; height: 41px; width: 149px; } .framer-yfuOe .framer-1lt1ro0 { flex-direction: column; width: 355px; } .framer-yfuOe .framer-1i8gt8b { flex: none; height: 295px; width: 100%; } .framer-yfuOe .framer-1tazkrj, .framer-yfuOe .framer-1jsew37 { align-self: unset; flex: none; height: 295px; width: 100%; } .framer-yfuOe .framer-13pstq4 { height: 1291px; order: 18; padding: 0px 20px 40px 20px; } .framer-yfuOe .framer-f0i8z6 { height: 41px; width: 200px; } .framer-yfuOe .framer-cbdbhq { flex-direction: row; width: 358px; } .framer-yfuOe .framer-1icqj5g { flex: 1 0 0px; flex-direction: column; width: 1px; } .framer-yfuOe .framer-1du6znu { flex: none; height: 309px; width: 100%; } .framer-yfuOe .framer-zmmixd, .framer-yfuOe .framer-1lzecdk { flex: none; width: 100%; } .framer-yfuOe .framer-le54sp { height: 599px; order: 19; padding: 10px 20px 40px 20px; } .framer-yfuOe .framer-al8mqr { height: 144px; width: 388px; } .framer-yfuOe .framer-fxdaf6 { order: 20; padding: 0px 0px 100px 0px; } .framer-yfuOe .framer-1gnyzq8 { order: 21; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13371.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sFcNI0ZLQ\":{\"layout\":[\"fixed\",\"auto\"]},\"HCoKFbXJz\":{\"layout\":[\"fixed\",\"auto\"]},\"VdqHPNcqG\":{\"layout\":[\"fixed\",\"auto\"]},\"mHjG03fVZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"BgxYWVKkS\":{\"pattern\":\":BgxYWVKkS\",\"name\":\"\"}}\n * @framerResponsiveScreen\n */const FramerVnDs6sHAm=withCSS(Component,css,\"framer-yfuOe\");export default FramerVnDs6sHAm;FramerVnDs6sHAm.displayName=\"Home\";FramerVnDs6sHAm.defaultProps={height:13371.5,width:1200};addFonts(FramerVnDs6sHAm,[{explicitInter:true,fonts:[{family:\"Times Now SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/MgVNOyjp1FejM3fXmrnVM9WMXM.woff2\"},{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:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Times Now Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/Ihzek5EylEsVdOhcuLLTuw1o.woff2\"},{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\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Times Now Bold Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/y5wM2L9uuliS37ryS3OD8L56iSA.woff2\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Times Now SemiBold Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/Ha0YdJoavLo3NBkVyKQVZsb2rlE.woff2\"},{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:\"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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...NavbarDarkFonts,...VideoFonts,...TickerFonts,...Video1Fonts,...Flow0102Fonts,...Flow0202Fonts,...Flow0303Fonts,...Flow0402Fonts,...Flow0502Fonts,...Flow0602Fonts,...CarouselFonts,...AccordionFonts,...FooterDarkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVnDs6sHAm\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"BgxYWVKkS\\\":{\\\"pattern\\\":\\\":BgxYWVKkS\\\",\\\"name\\\":\\\"\\\"}}\",\"framerIntrinsicHeight\":\"13371.5\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sFcNI0ZLQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HCoKFbXJz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VdqHPNcqG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mHjG03fVZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "progress", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerFvnOxJ6Cr", "withCSS", "FvnOxJ6Cr_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "Framerm8hwsAklL", "withCSS", "m8hwsAklL_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerO4rOjFuzc", "withCSS", "O4rOjFuzc_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerP0HukTiJ5", "withCSS", "P0HukTiJ5_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerQHkHrYBbH", "withCSS", "QHkHrYBbH_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerV1TDPe24x", "withCSS", "V1TDPe24x_default", "addFonts", "NavbarDarkFonts", "getFonts", "nzmCkErt3_default", "VideoFonts", "Video", "TickerFonts", "Ticker", "Video1Fonts", "Flow0102Fonts", "QHkHrYBbH_default", "Flow0202Fonts", "V1TDPe24x_default", "Flow0303Fonts", "m8hwsAklL_default", "Flow0402Fonts", "P0HukTiJ5_default", "Flow0502Fonts", "O4rOjFuzc_default", "Flow0602Fonts", "FvnOxJ6Cr_default", "CarouselFonts", "Carousel", "MotionDivWithFX", "withFX", "motion", "AccordionFonts", "eKh9CDyXa_default", "FooterDarkFonts", "QiegliyPP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText", "Link", "Image2", "SVG", "css", "FramerVnDs6sHAm", "withCSS", "VnDs6sHAm_default", "addFonts", "__FramerMetadata__"]
}
