{"version":3,"file":"3oSG04ZaPJS03pfi4sOLA8v_XdN1jkN1KUDvEXCJY_c.usoFc2fo.mjs","names":["props","end","start","isSelected","dotStyle","serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","props","Component","className","css","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","NavNavBar","ButtonsPrimary","BlogYiRVideo","Product","Footer","props","Blog","metadata","className","Image","PropertyOverrides","css"],"sources":["https:/ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js","https:/framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js","https:/framerusercontent.com/modules/iRMvxQib9cg2CzPfPDC9/JAoHvZ6GyMSFP0w0Yzmn/j99TW23iU.js","https:/framerusercontent.com/modules/a2xErIFZG3ZGkucJdyiL/XOknME4VqZe2Kf1nzJ7b/GSFg0Zb_Y.js","https:/framerusercontent.com/modules/mPG3gJ2fgXvwG3PhOdfV/8eMS6xhHHWHaf4uk7bMr/mD6tE3zcZ.js","https:/framerusercontent.com/modules/fxbvO4YpUJwKsB9Ikw1N/oA2t3zGYJt02uPLFr6NY/MsnZv98M9.js","https:/framerusercontent.com/modules/tEBVlbLH1KMi3ylVkekB/Jv6nf2QUVSriueY3eHZq/S8hiXMl4E.js","https:/framerusercontent.com/modules/685pIx77MF4xf1c6zNPv/wZpsYdTs13HBQmvDttOu/z3CMSs3Lp.js","https:/framerusercontent.com/modules/e7bbYxa1oq1R0v5ENyA0/MxD5uunx8WI21jq1Q3Cz/ANA7p7NvP.js"],"sourcesContent":["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}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,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 — Benjamin\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: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/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,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};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));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\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:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`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)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...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:[isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.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:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map","// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";const VideoFonts=getFonts(Video);const cycleOrder=[\"TfxXaIzyY\",\"F0DVgWlM_\"];const serializationHash=\"framer-JSRDu\";const variantClassNames={F0DVgWlM_:\"framer-v-1chv49x\",TfxXaIzyY:\"framer-v-56bjym\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Playing:\"F0DVgWlM_\",Stopped:\"TfxXaIzyY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TfxXaIzyY\"};};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:\"TfxXaIzyY\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearkgzet=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"F0DVgWlM_\"),1e3);});useOnVariantChange(baseVariant,{default:onAppearkgzet});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-56bjym\",className,classNames),\"data-framer-name\":\"Stopped\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TfxXaIzyY\",ref:ref??ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({F0DVgWlM_:{\"data-framer-name\":\"Playing\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c5fb27-container\",layoutDependency:layoutDependency,layoutId:\"emvhfAD7n-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"emvhfAD7n\",isMixedBorderRadius:false,layoutId:\"emvhfAD7n\",loop:false,muted:true,objectFit:\"contain\",playing:false,poster:\"https://framerusercontent.com/images/yHHdjIaLeQRaELZLU3opi0LY4GM.png\",posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/xucyMx6F8bAsiF569iG4JFeEMFE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\",...addPropertyOverrides({F0DVgWlM_:{playing:true}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JSRDu.framer-1be4nme, .framer-JSRDu .framer-1be4nme { display: block; }\",\".framer-JSRDu.framer-56bjym { height: 405px; overflow: hidden; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JSRDu .framer-1c5fb27-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-JSRDu.framer-v-1chv49x.framer-56bjym { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 405px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 405\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"F0DVgWlM_\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerj99TW23iU=withCSS(Component,css,\"framer-JSRDu\");export default Framerj99TW23iU;Framerj99TW23iU.displayName=\"Blog/YiRVideo\";Framerj99TW23iU.defaultProps={height:405,width:720};addPropertyControls(Framerj99TW23iU,{variant:{options:[\"TfxXaIzyY\",\"F0DVgWlM_\"],optionTitles:[\"Stopped\",\"Playing\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerj99TW23iU,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj99TW23iU\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"405\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F0DVgWlM_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"720\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./j99TW23iU.map","import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}];export const css=['.framer-nQ35q .framer-styles-preset-1smm3gt:not(.rich-text-wrapper), .framer-nQ35q .framer-styles-preset-1smm3gt.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: rgba(0, 0, 0, 0.9); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-nQ35q\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (7e0329e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;TWK Everett Medium\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"TWK Everett Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/xtgJycQRrMLJgbUYup59h5ly6YA.otf\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-1OYbe .framer-styles-preset-1rmduu8:not(.rich-text-wrapper), .framer-1OYbe .framer-styles-preset-1rmduu8.rich-text-wrapper h1 { --framer-font-family: \"TWK Everett Medium\", \"TWK Everett Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 55px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -2px; --framer-line-height: 1.05em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-1OYbe\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;TWK Everett Regular\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"TWK Everett Regular\",url:\"https://framerusercontent.com/assets/BsWFV9UShrNbNBzali4CZTXQxg8.otf\"}];export const css=['.framer-mLDA0 .framer-styles-preset-14z7dfe:not(.rich-text-wrapper), .framer-mLDA0 .framer-styles-preset-14z7dfe.rich-text-wrapper h2 { --framer-font-family: \"TWK Everett Regular\", \"TWK Everett Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.4px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-mLDA0\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;TWK Everett Medium\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"TWK Everett Medium\",url:\"https://framerusercontent.com/assets/xtgJycQRrMLJgbUYup59h5ly6YA.otf\"}];export const css=['.framer-4rX3c .framer-styles-preset-11glxez:not(.rich-text-wrapper), .framer-4rX3c .framer-styles-preset-11glxez.rich-text-wrapper h1 { --framer-font-family: \"TWK Everett Medium\", \"TWK Everett Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -4px; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-4rX3c\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[];export const css=['.framer-TNpH9 .framer-styles-preset-15hoe8k:not(.rich-text-wrapper), .framer-TNpH9 .framer-styles-preset-15hoe8k.rich-text-wrapper h5 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-TNpH9\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Intercom from\"https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import ButtonsPrimary from\"#framer/local/canvasComponent/B3O2mqxOl/B3O2mqxOl.js\";import NavNavBar from\"#framer/local/canvasComponent/bdD9GzqjM/bdD9GzqjM.js\";import Product from\"#framer/local/canvasComponent/hb_ReNSkG/hb_ReNSkG.js\";import BlogYiRVideo from\"#framer/local/canvasComponent/j99TW23iU/j99TW23iU.js\";import Footer from\"#framer/local/canvasComponent/LwJ3MUuqS/LwJ3MUuqS.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/CdehZuO_o/CdehZuO_o.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle10 from\"#framer/local/css/C8xR0FUrX/C8xR0FUrX.js\";import*as sharedStyle7 from\"#framer/local/css/cU0Q8X3jw/cU0Q8X3jw.js\";import*as sharedStyle8 from\"#framer/local/css/GSFg0Zb_Y/GSFg0Zb_Y.js\";import*as sharedStyle from\"#framer/local/css/mD6tE3zcZ/mD6tE3zcZ.js\";import*as sharedStyle11 from\"#framer/local/css/MjMmzR9Cc/MjMmzR9Cc.js\";import*as sharedStyle3 from\"#framer/local/css/MsnZv98M9/MsnZv98M9.js\";import*as sharedStyle1 from\"#framer/local/css/OqtLvfV3D/OqtLvfV3D.js\";import*as sharedStyle12 from\"#framer/local/css/q_Yk7xJIT/q_Yk7xJIT.js\";import*as sharedStyle9 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle2 from\"#framer/local/css/S8hiXMl4E/S8hiXMl4E.js\";import*as sharedStyle4 from\"#framer/local/css/VV5BAyWzg/VV5BAyWzg.js\";import*as sharedStyle5 from\"#framer/local/css/xUo8XtYox/xUo8XtYox.js\";import*as sharedStyle6 from\"#framer/local/css/z3CMSs3Lp/z3CMSs3Lp.js\";import*as sharedStyle13 from\"#framer/local/css/zOQXnGubI/zOQXnGubI.js\";import metadataProvider from\"#framer/local/webPageMetadata/ANA7p7NvP/ANA7p7NvP.js\";const NavNavBarFonts=getFonts(NavNavBar);const ButtonsPrimaryFonts=getFonts(ButtonsPrimary);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const BlogYiRVideoFonts=getFonts(BlogYiRVideo);const CarouselFonts=getFonts(Carousel);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ProductFonts=getFonts(Product);const FooterFonts=getFonts(Footer);const IntercomFonts=getFonts(Intercom);const breakpoints={ctJ_alXnK:\"(min-width: 1200px)\",glG0OUDKh:\"(min-width: 1024px) and (max-width: 1199px)\",KzwVEdZLX:\"(max-width: 809px)\",PzIpkAz0W:\"(min-width: 810px) and (max-width: 1023px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gSZj5\";const variantClassNames={ctJ_alXnK:\"framer-v-1p1lmhf\",glG0OUDKh:\"framer-v-jzu3yo\",KzwVEdZLX:\"framer-v-133n9ml\",PzIpkAz0W:\"framer-v-14mjz8i\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:100,delay:.2,mass:10,stiffness:336,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:44};const transition2={damping:100,delay:.5,mass:10,stiffness:336,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ctJ_alXnK\",Middle:\"glG0OUDKh\",Phone:\"KzwVEdZLX\",Tablet:\"PzIpkAz0W\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ctJ_alXnK\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"ANA7p7NvP\",data:Blog,type:\"Collection\"},select:[{collection:\"ANA7p7NvP\",name:\"HF9XidKnq\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"VLT0KILWl\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"msj1wdyhO\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"y_j0HVUpa\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"Ka5u5XxkG\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"S2dyqMm0T\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"zVjwcRt__\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"mJO_8Wuh0\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"pDHKR84bv\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"Y0SSr2lLP\",type:\"Identifier\"},{collection:\"ANA7p7NvP\",name:\"fG7P8ZY8c\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"ANA7p7NvP\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,y_j0HVUpa=getFromCurrentRouteData(\"y_j0HVUpa\"),HF9XidKnq=getFromCurrentRouteData(\"HF9XidKnq\")??\"\",fG7P8ZY8c=getFromCurrentRouteData(\"fG7P8ZY8c\")??true,msj1wdyhO=getFromCurrentRouteData(\"msj1wdyhO\"),Y0SSr2lLP=getFromCurrentRouteData(\"Y0SSr2lLP\")??true,Ka5u5XxkG=getFromCurrentRouteData(\"Ka5u5XxkG\")??\"\",S2dyqMm0T=getFromCurrentRouteData(\"S2dyqMm0T\")??\"\",mJO_8Wuh0=getFromCurrentRouteData(\"mJO_8Wuh0\"),zVjwcRt__=getFromCurrentRouteData(\"zVjwcRt__\")??\"\",VLT0KILWl=getFromCurrentRouteData(\"VLT0KILWl\"),pDHKR84bv=getFromCurrentRouteData(\"pDHKR84bv\"),...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(isSet(y_j0HVUpa));const visible1=isSet(y_j0HVUpa);const router=useRouter();const elementId=useRouteElementId(\"IvthlKfG6\");const ref1=React.useRef(null);const visible2=isSet(Ka5u5XxkG);const visible3=equals(equals(mJO_8Wuh0,\"uihkTGdYr\"),true);const visible4=isSet(zVjwcRt__);const textContent=enumToDisplayNameFunctions[\"VLT0KILWl\"]?.(VLT0KILWl,activeLocale);const textContent1=enumToDisplayNameFunctions[\"mJO_8Wuh0\"]?.(mJO_8Wuh0,activeLocale);const textContent2=enumToDisplayNameFunctions[\"pDHKR84bv\"]?.(pDHKR84bv,activeLocale);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ctJ_alXnK\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1p1lmhf\",className),ref:refBinding,style:{...style},children:[visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-e0nl4j\",\"data-framer-name\":\"Image Conditional\"}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+52),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(y_j0HVUpa)},className:\"framer-7occls\",\"data-framer-name\":\"Main Image\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oi07he-container\",layoutScroll:true,nodeId:\"vAhM5I41a\",scopeId:\"ANA7p7NvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KzwVEdZLX:{variant:\"GI0XFHEx2\",X_pd67UXj:\"GkvQboSf2\"},PzIpkAz0W:{variant:\"GI0XFHEx2\"}},children:/*#__PURE__*/_jsx(NavNavBar,{GME6_dz3F:\"wEo_fgZTl\",height:\"100%\",id:\"vAhM5I41a\",Je4qgbPyw:\"wEo_fgZTl\",JrGNB0Rln:\"GkvQboSf2\",layoutId:\"vAhM5I41a\",ll5mo3Rq5:\"8px 40px 4px 40px\",rr9M22HL_:\"wEo_fgZTl\",ShCuF4x_D:\"GkvQboSf2\",style:{width:\"100%\"},tc9zRza32:\"wEo_fgZTl\",variant:\"n7KwFXc9u\",WB_pmczZk:\"wEo_fgZTl\",width:\"100%\",wxmd7mChZ:\"GkvQboSf2\",X_pd67UXj:\"wEo_fgZTl\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qwt07i\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hd3uok\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hIgeUyFbh\"},implicitPathVariables:undefined},{href:{webPageId:\"hIgeUyFbh\"},implicitPathVariables:undefined},{href:{webPageId:\"hIgeUyFbh\"},implicitPathVariables:undefined},{href:{webPageId:\"hIgeUyFbh\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KzwVEdZLX:{y:(componentViewport?.y||0)+0+352+32+0+0},PzIpkAz0W:{y:(componentViewport?.y||0)+0+602+56+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+602+56+32+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-106tgv9-container\",\"data-framer-appear-id\":\"106tgv9\",initial:animation1,nodeId:\"f3BarQHvZ\",optimized:true,rendersWithMotion:true,scopeId:\"ANA7p7NvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{glG0OUDKh:{bgFeRUeiJ:resolvedLinks[1]},KzwVEdZLX:{bgFeRUeiJ:resolvedLinks[3],variant:\"AanzX8aN2\"},PzIpkAz0W:{bgFeRUeiJ:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{bgFeRUeiJ:resolvedLinks[0],dw87eIr7P:true,height:\"100%\",HqtLn5_09:\"Blog\",id:\"f3BarQHvZ\",layoutId:\"f3BarQHvZ\",OGmQ4ZfO3:\"rgb(255, 255, 255)\",style:{height:\"100%\"},uOlja5w9g:0,urHN8R_I3:\"rgb(18, 18, 18)\",variant:\"O84hazI2o\",width:\"100%\",ZM77e1rKJ:false})})})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1l9ej83\",\"data-framer-appear-id\":\"1l9ej83\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18y3ka1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g29iag\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KzwVEdZLX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBFdmVyZXR0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TWK Everett Medium\", \"TWK Everett Medium Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"1.1em\"},children:\"Play Wins the Apple Design Award for Innovation\"})}),fonts:[\"CUSTOM;TWK Everett Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1rmduu8\",\"data-styles-preset\":\"mD6tE3zcZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Designers Deserve Better Than Mirroring Apps.\"})}),className:\"framer-gocwq4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:HF9XidKnq,verticalAlignment:\"top\",withExternalLayout:true})})}),fG7P8ZY8c&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KzwVEdZLX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+352+32+0+58+0+0+0+104),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 800px) - 40px)`,...toResponsiveImage(msj1wdyhO),...{positionX:\"center\",positionY:\"center\"}}},PzIpkAz0W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+602+56+0+74+0+0+0+104),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(msj1wdyhO)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+602+56+32+74+0+0+0+104),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(msj1wdyhO)},className:\"framer-20s8f6\",\"data-framer-name\":\"Hero Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1v3bjs2\",\"data-framer-appear-id\":\"1v3bjs2\",initial:animation4,optimized:true,children:[Y0SSr2lLP&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KzwVEdZLX:{height:200,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 800px) - 40px)`,y:(componentViewport?.y||0)+0+352+32+0+58+0+392+0+0},PzIpkAz0W:{y:(componentViewport?.y||0)+0+602+56+0+74+0+664+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:405,width:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,y:(componentViewport?.y||0)+0+602+56+32+74+0+664+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xhuypb-container\",id:elementId,nodeId:\"IvthlKfG6\",ref:ref1,scopeId:\"ANA7p7NvP\",children:/*#__PURE__*/_jsx(BlogYiRVideo,{height:\"100%\",id:\"IvthlKfG6\",layoutId:\"IvthlKfG6\",style:{height:\"100%\",width:\"100%\"},variant:\"TfxXaIzyY\",width:\"100%\"})})})}),visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hhebto\",\"data-styles-preset\":\"OqtLvfV3D\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Ditch mirroring for a new way to view your designs across every iPhone device in a way that is true to life.\"})}),className:\"framer-1adfn9t\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],text:Ka5u5XxkG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ngt9p1\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"jqitrwWCj\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"rfRKbQg5g\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:S2dyqMm0T,className:\"framer-dsxqpj\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-15peff1\",code:\"framer-styles-preset-1kheg6h\",h1:\"framer-styles-preset-11glxez\",h2:\"framer-styles-preset-14z7dfe\",h3:\"framer-styles-preset-187fbhg\",h4:\"framer-styles-preset-bb8z4f\",h5:\"framer-styles-preset-15hoe8k\",h6:\"framer-styles-preset-1wmk7l8\",img:\"framer-styles-preset-yiasnw\",p:\"framer-styles-preset-1smm3gt\",table:\"framer-styles-preset-1b0visf\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gi79qj-container\",isModuleExternal:true,nodeId:\"s285OLZhT\",scopeId:\"ANA7p7NvP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"Play Team Photos\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.4)\",arrowPadding:24,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:12,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:0,height:\"100%\",id:\"s285OLZhT\",layoutId:\"s285OLZhT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:9,dotsInset:10,dotSize:6,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"rows\",widthColumns:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,pixelHeight:3024,pixelWidth:4032,sizes:\"798.6667px\",src:\"https://framerusercontent.com/images/C7d5jSzbEsmWlHDbvGm6G9lCrQ.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/C7d5jSzbEsmWlHDbvGm6G9lCrQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/C7d5jSzbEsmWlHDbvGm6G9lCrQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C7d5jSzbEsmWlHDbvGm6G9lCrQ.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/C7d5jSzbEsmWlHDbvGm6G9lCrQ.jpeg 4032w\"},className:\"framer-aj4sfm\",\"data-framer-name\":\"1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,pixelHeight:3024,pixelWidth:4032,sizes:\"780px\",src:\"https://framerusercontent.com/images/Xv4Qt2ZFpEORGuoIViBLhZRw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Xv4Qt2ZFpEORGuoIViBLhZRw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Xv4Qt2ZFpEORGuoIViBLhZRw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xv4Qt2ZFpEORGuoIViBLhZRw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xv4Qt2ZFpEORGuoIViBLhZRw.jpg 4032w\"},className:\"framer-1wb8fyb\",\"data-framer-name\":\"2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,pixelHeight:3024,pixelWidth:4032,sizes:\"804px\",src:\"https://framerusercontent.com/images/z2SoRcuiiZO9R6vg7lTIsMD2JDU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/z2SoRcuiiZO9R6vg7lTIsMD2JDU.png?scale-down-to=512 512w,https://framerusercontent.com/images/z2SoRcuiiZO9R6vg7lTIsMD2JDU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z2SoRcuiiZO9R6vg7lTIsMD2JDU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z2SoRcuiiZO9R6vg7lTIsMD2JDU.png 4032w\"},className:\"framer-1cmd065\",\"data-framer-name\":\"3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1861.5,intrinsicWidth:1396,pixelHeight:3723,pixelWidth:2792,sizes:\"299.9731px\",src:\"https://framerusercontent.com/images/eu0rDiXeTNJL0Z4qCYLnVtylrE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/eu0rDiXeTNJL0Z4qCYLnVtylrE.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/eu0rDiXeTNJL0Z4qCYLnVtylrE.jpg?scale-down-to=2048 1535w,https://framerusercontent.com/images/eu0rDiXeTNJL0Z4qCYLnVtylrE.jpg 2792w\"},className:\"framer-9ceg93\",\"data-framer-name\":\"IMG 3577\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2016,intrinsicWidth:1512,pixelHeight:4032,pixelWidth:3024,sizes:\"300px\",src:\"https://framerusercontent.com/images/bFuIEcX5G285QUdoJObECesCtw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bFuIEcX5G285QUdoJObECesCtw.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/bFuIEcX5G285QUdoJObECesCtw.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/bFuIEcX5G285QUdoJObECesCtw.jpg 3024w\"},className:\"framer-10pfmz\",\"data-framer-name\":\"4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,pixelHeight:3024,pixelWidth:4032,sizes:\"780px\",src:\"https://framerusercontent.com/images/RMldaR9hTOaSAcK1hEvwC6pTlSw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/RMldaR9hTOaSAcK1hEvwC6pTlSw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RMldaR9hTOaSAcK1hEvwC6pTlSw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RMldaR9hTOaSAcK1hEvwC6pTlSw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RMldaR9hTOaSAcK1hEvwC6pTlSw.jpg 4032w\"},className:\"framer-w1gy90\",\"data-framer-name\":\"5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1512,intrinsicWidth:2016,pixelHeight:3024,pixelWidth:4032,sizes:\"780px\",src:\"https://framerusercontent.com/images/Zn7FxsfgkGqBqfsVi0CY9Q1xYwU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Zn7FxsfgkGqBqfsVi0CY9Q1xYwU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Zn7FxsfgkGqBqfsVi0CY9Q1xYwU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zn7FxsfgkGqBqfsVi0CY9Q1xYwU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Zn7FxsfgkGqBqfsVi0CY9Q1xYwU.jpg 4032w\"},className:\"framer-1qpgkb1\",\"data-framer-name\":\"6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2016,intrinsicWidth:1512,pixelHeight:4032,pixelWidth:3024,sizes:\"300px\",src:\"https://framerusercontent.com/images/HJrsUZn8lYOBGYnji7UAVgPXyg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/HJrsUZn8lYOBGYnji7UAVgPXyg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/HJrsUZn8lYOBGYnji7UAVgPXyg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/HJrsUZn8lYOBGYnji7UAVgPXyg.jpg 3024w\"},className:\"framer-1wz7ghk\",\"data-framer-name\":\"7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2040,intrinsicWidth:1536,pixelHeight:4080,pixelWidth:3072,sizes:\"300.4235px\",src:\"https://framerusercontent.com/images/HCKywmdogn1mxBHBgROEujvg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/HCKywmdogn1mxBHBgROEujvg.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/HCKywmdogn1mxBHBgROEujvg.jpg?scale-down-to=2048 1542w,https://framerusercontent.com/images/HCKywmdogn1mxBHBgROEujvg.jpg 3072w\"},className:\"framer-4uqbgg\",\"data-framer-name\":\"8\"})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),visible4&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"jqitrwWCj\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"rfRKbQg5g\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:zVjwcRt__,className:\"framer-14twn68\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-15peff1\",code:\"framer-styles-preset-1kheg6h\",h1:\"framer-styles-preset-11glxez\",h2:\"framer-styles-preset-14z7dfe\",h3:\"framer-styles-preset-187fbhg\",h4:\"framer-styles-preset-bb8z4f\",h5:\"framer-styles-preset-15hoe8k\",h6:\"framer-styles-preset-1wmk7l8\",img:\"framer-styles-preset-yiasnw\",p:\"framer-styles-preset-1smm3gt\",table:\"framer-styles-preset-1b0visf\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-he7sup\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o5afj8\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ada7me\",\"data-framer-name\":\"Tags\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kt2794\",\"data-framer-name\":\"Tag 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\"},children:\"Interaction\"})}),className:\"framer-1u1qds7\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a5heh6\",\"data-framer-name\":\"Tag 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\"},children:\"Interaction\"})}),className:\"framer-a44utq\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qv8bjs\",\"data-framer-name\":\"Tag 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\"},children:\"Content\"})}),className:\"framer-1m02y29\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12mu59l\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KzwVEdZLX:{y:(componentViewport?.y||0)+0+1060+0+0},PzIpkAz0W:{y:(componentViewport?.y||0)+0+1646+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:565,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1678+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zeixcm-container\",nodeId:\"d8dCcYn3d\",scopeId:\"ANA7p7NvP\",children:/*#__PURE__*/_jsx(Product,{height:\"100%\",id:\"d8dCcYn3d\",KqAku2z1H:\"Start designing your mobile app in Play today.\",layoutId:\"d8dCcYn3d\",lHsuArWnG:true,style:{width:\"100%\"},variant:\"UDHcgo4Qq\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KzwVEdZLX:{y:(componentViewport?.y||0)+0+1060+0+565},PzIpkAz0W:{y:(componentViewport?.y||0)+0+1646+0+565}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:458,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1678+0+565,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19nh85b-container\",nodeId:\"r68HgADAX\",scopeId:\"ANA7p7NvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{glG0OUDKh:{variant:\"MhnPJDpy_\"},KzwVEdZLX:{variant:\"m4A58NOVV\"},PzIpkAz0W:{variant:\"MhnPJDpy_\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"r68HgADAX\",layoutId:\"r68HgADAX\",style:{width:\"100%\"},variant:\"dK_EtlXGv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kwklo1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xuivc5UB5\",scopeId:\"ANA7p7NvP\",children:/*#__PURE__*/_jsx(Intercom,{appId:\"rc0gf3d7\",height:\"100%\",id:\"xuivc5UB5\",layoutId:\"xuivc5UB5\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gSZj5.framer-ntx9c7, .framer-gSZj5 .framer-ntx9c7 { display: block; }\",\".framer-gSZj5.framer-1p1lmhf { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-gSZj5 .framer-e0nl4j { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-7occls { flex: none; height: 550px; overflow: hidden; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-oi07he-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-gSZj5 .framer-qwt07i { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 56px 0px 56px 0px; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-1hd3uok { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 800px; padding: 32px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-106tgv9-container { flex: none; height: 34px; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-gSZj5 .framer-1l9ej83 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gSZj5 .framer-18y3ka1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-g29iag { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 80px; overflow: visible; padding: 0px 48px 0px 0px; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-gocwq4 { --framer-text-wrap-override: none; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-gSZj5 .framer-20s8f6 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 528px; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-1v3bjs2 { 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: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gSZj5 .framer-1xhuypb-container { flex: none; height: 405px; position: relative; scroll-margin-top: 24px; width: 100%; }\",\".framer-gSZj5 .framer-1adfn9t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gSZj5 .framer-ngt9p1, .framer-gSZj5 .framer-1o5afj8 { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-dsxqpj, .framer-gSZj5 .framer-14twn68 { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gSZj5 .framer-gi79qj-container { flex: none; height: 440px; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-aj4sfm { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 599px); overflow: visible; position: relative; width: 798px; }\",\".framer-gSZj5 .framer-1wb8fyb, .framer-gSZj5 .framer-w1gy90, .framer-gSZj5 .framer-1qpgkb1 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 585px); overflow: visible; position: relative; width: 780px; }\",\".framer-gSZj5 .framer-1cmd065 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 603px); overflow: visible; position: relative; width: 804px; }\",\".framer-gSZj5 .framer-9ceg93 { aspect-ratio: 0.7499328498522697 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 300px; }\",\".framer-gSZj5 .framer-10pfmz, .framer-gSZj5 .framer-1wz7ghk { aspect-ratio: 0.75 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 300px; }\",\".framer-gSZj5 .framer-4uqbgg { aspect-ratio: 0.7529411764705882 / 1; height: var(--framer-aspect-ratio-supported, 399px); overflow: visible; position: relative; width: 300px; }\",\".framer-gSZj5 .framer-he7sup { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-1ada7me { 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: min-content; }\",\".framer-gSZj5 .framer-1kt2794, .framer-gSZj5 .framer-1a5heh6, .framer-gSZj5 .framer-qv8bjs { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.07); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 24px; justify-content: center; overflow: hidden; padding: 0px 6px 1px 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-gSZj5 .framer-1u1qds7, .framer-gSZj5 .framer-a44utq, .framer-gSZj5 .framer-1m02y29 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-gSZj5 .framer-12mu59l { 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: 100%; }\",\".framer-gSZj5 .framer-zeixcm-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-gSZj5 .framer-19nh85b-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gSZj5 .framer-kwklo1-container { bottom: 0px; flex: none; height: 100px; position: absolute; right: 0px; width: 200px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,\"@media (min-width: 1024px) and (max-width: 1199px) { .framer-gSZj5.framer-1p1lmhf { width: 1024px; }}\",\"@media (min-width: 810px) and (max-width: 1023px) { .framer-gSZj5.framer-1p1lmhf { width: 810px; } .framer-gSZj5 .framer-1hd3uok { padding: 0px 20px 0px 20px; }}\",\"@media (max-width: 809px) { .framer-gSZj5.framer-1p1lmhf { width: 428px; } .framer-gSZj5 .framer-7occls { height: 300px; } .framer-gSZj5 .framer-qwt07i { padding: 32px 0px 32px 0px; } .framer-gSZj5 .framer-1hd3uok { flex: 1 0 0px; gap: 24px; padding: 0px 20px 0px 20px; width: 1px; } .framer-gSZj5 .framer-g29iag { padding: 0px; } .framer-gSZj5 .framer-gocwq4 { white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-gSZj5 .framer-20s8f6 { height: 256px; overflow: hidden; will-change: var(--framer-will-change-override, transform); } .framer-gSZj5 .framer-1xhuypb-container { height: 200px; order: 0; } .framer-gSZj5 .framer-1adfn9t { order: 1; } .framer-gSZj5 .framer-ngt9p1 { order: 2; } .framer-gSZj5 .framer-dsxqpj { order: 3; } .framer-gSZj5 .framer-gi79qj-container { height: 372px; order: 4; } .framer-gSZj5 .framer-14twn68 { order: 5; } .framer-gSZj5 .framer-he7sup { order: 6; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5096.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"glG0OUDKh\":{\"layout\":[\"fixed\",\"auto\"]},\"PzIpkAz0W\":{\"layout\":[\"fixed\",\"auto\"]},\"KzwVEdZLX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"IvthlKfG6\":{\"pattern\":\":IvthlKfG6\",\"name\":\"video\"}}\n * @framerResponsiveScreen\n */const FramerANA7p7NvP=withCSS(Component,css,\"framer-gSZj5\");export default FramerANA7p7NvP;FramerANA7p7NvP.displayName=\"Page\";FramerANA7p7NvP.defaultProps={height:5096.5,width:1200};addFonts(FramerANA7p7NvP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"TWK Everett Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/xtgJycQRrMLJgbUYup59h5ly6YA.otf\"}]},...NavNavBarFonts,...ButtonsPrimaryFonts,...BlogYiRVideoFonts,...CarouselFonts,...ProductFonts,...FooterFonts,...IntercomFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...componentPresets.fonts?.[\"jqitrwWCj\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"jqitrwWCj\"]):[],...componentPresets.fonts?.[\"rfRKbQg5g\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"rfRKbQg5g\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerANA7p7NvP\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"IvthlKfG6\\\":{\\\"pattern\\\":\\\":IvthlKfG6\\\",\\\"name\\\":\\\"video\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5096.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"glG0OUDKh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PzIpkAz0W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KzwVEdZLX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}