{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/MbTazS2w3BNhEDI0HOMS/AiI2GZvyYFFX6ftF9TVH/CFza2ozA7.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import NavigationNavbar from\"#framer/local/canvasComponent/IWfaABb1f/IWfaABb1f.js\";import metadataProvider from\"#framer/local/webPageMetadata/CFza2ozA7/CFza2ozA7.js\";const TickerFonts=getFonts(Ticker);const NavigationNavbarFonts=getFonts(NavigationNavbar);const breakpoints={b5ck4glZl:\"(min-width: 1440px)\",fhJUfNllp:\"(min-width: 810px) and (max-width: 1439px)\",OfCvLKoU7:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-j2agx\";const variantClassNames={b5ck4glZl:\"framer-v-sqjznd\",fhJUfNllp:\"framer-v-plaq5s\",OfCvLKoU7:\"framer-v-g6acwo\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"b5ck4glZl\",Phone:\"OfCvLKoU7\",Tablet:\"fhJUfNllp\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"b5ck4glZl\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"OfCvLKoU7\")return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"b5ck4glZl\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(13, 13, 13); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-sqjznd\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-tytenb\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12uatcr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1euutzc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OfCvLKoU7:{direction:\"bottom\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"RzqOtmZLi\",layoutId:\"RzqOtmZLi\",padding:10,paddingBottom:10,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fs8vf1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1738,pixelWidth:1350,sizes:\"300px\",src:\"https://framerusercontent.com/images/9rvI4cEuqO7pFM8wZWsnuhjHYI.png\",srcSet:\"https://framerusercontent.com/images/9rvI4cEuqO7pFM8wZWsnuhjHYI.png?scale-down-to=1024 795w,https://framerusercontent.com/images/9rvI4cEuqO7pFM8wZWsnuhjHYI.png 1350w\"},className:\"framer-1o800c\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fabric Example Photo\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/CkD4QMQIU7DA2jJyXEuN6D30Oc.jpeg\",srcSet:\"https://framerusercontent.com/images/CkD4QMQIU7DA2jJyXEuN6D30Oc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/CkD4QMQIU7DA2jJyXEuN6D30Oc.jpeg 1024w\"},className:\"framer-1gaosi5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fabric Example Photo\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/UiDbXZ78ykaBGFhBmuaVSsgBxwQ.png\",srcSet:\"https://framerusercontent.com/images/UiDbXZ78ykaBGFhBmuaVSsgBxwQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/UiDbXZ78ykaBGFhBmuaVSsgBxwQ.png 1024w\"},className:\"framer-7sn62w\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fabric Example Photo\",fit:\"fill\",pixelHeight:1784,pixelWidth:1408,sizes:\"300px\",src:\"https://framerusercontent.com/images/AtkOupN9Tc62Itq6XTbKJF7vn8.png\",srcSet:\"https://framerusercontent.com/images/AtkOupN9Tc62Itq6XTbKJF7vn8.png?scale-down-to=1024 808w,https://framerusercontent.com/images/AtkOupN9Tc62Itq6XTbKJF7vn8.png 1408w\"},className:\"framer-1q6zmz5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/mTc9GRMpDNtMM2zdIn5yCxVOI.png\",srcSet:\"https://framerusercontent.com/images/mTc9GRMpDNtMM2zdIn5yCxVOI.png?scale-down-to=512 512w,https://framerusercontent.com/images/mTc9GRMpDNtMM2zdIn5yCxVOI.png 1024w\"},className:\"framer-tqc97o\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fabric Example\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/gCZv5NJIdKnURYqJOPfX8OYgDnM.jpeg\",srcSet:\"https://framerusercontent.com/images/gCZv5NJIdKnURYqJOPfX8OYgDnM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/gCZv5NJIdKnURYqJOPfX8OYgDnM.jpeg 1024w\"},className:\"framer-1hjuo5j\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/buBZoyfWIHmN2saaFpNcwFA2nFk.png\",srcSet:\"https://framerusercontent.com/images/buBZoyfWIHmN2saaFpNcwFA2nFk.png?scale-down-to=512 512w,https://framerusercontent.com/images/buBZoyfWIHmN2saaFpNcwFA2nFk.png 1024w\"},className:\"framer-13mb30m\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/RQ5p4XK5mJIppsTbq0eulVzwo.jpeg\",srcSet:\"https://framerusercontent.com/images/RQ5p4XK5mJIppsTbq0eulVzwo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/RQ5p4XK5mJIppsTbq0eulVzwo.jpeg 1024w\"},className:\"framer-14wwzjl\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/EKDUpj5UcrQtE7IbtRqCQJpsGCU.png\",srcSet:\"https://framerusercontent.com/images/EKDUpj5UcrQtE7IbtRqCQJpsGCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/EKDUpj5UcrQtE7IbtRqCQJpsGCU.png 1024w\"},className:\"framer-piwv2z\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/vDtAgP9hEYZ6Jc4txbZ805bOc.jpeg\",srcSet:\"https://framerusercontent.com/images/vDtAgP9hEYZ6Jc4txbZ805bOc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/vDtAgP9hEYZ6Jc4txbZ805bOc.jpeg 1024w\"},className:\"framer-5cp2wj\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/d1kWmeRHenHPDBo9u0AFkcGwuM.png\",srcSet:\"https://framerusercontent.com/images/d1kWmeRHenHPDBo9u0AFkcGwuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/d1kWmeRHenHPDBo9u0AFkcGwuM.png 1024w\"},className:\"framer-g4emkp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/xmh9zvXyZZdJZHeqhAuIctKEPBk.jpeg\",srcSet:\"https://framerusercontent.com/images/xmh9zvXyZZdJZHeqhAuIctKEPBk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/xmh9zvXyZZdJZHeqhAuIctKEPBk.jpeg 1024w\"},className:\"framer-1m4pn6s\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/vFFgOIhiQ7Odaggmtp5sq2t8gBY.png\",srcSet:\"https://framerusercontent.com/images/vFFgOIhiQ7Odaggmtp5sq2t8gBY.png?scale-down-to=512 512w,https://framerusercontent.com/images/vFFgOIhiQ7Odaggmtp5sq2t8gBY.png 1024w\"},className:\"framer-30duu4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/FNpeU2tcT9tDJ2Ly56hQUOJUsA.jpeg\",srcSet:\"https://framerusercontent.com/images/FNpeU2tcT9tDJ2Ly56hQUOJUsA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/FNpeU2tcT9tDJ2Ly56hQUOJUsA.jpeg 1024w\"},className:\"framer-1lzunjc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/k0TAiOzO5FYLcmg4ilSUXcWvW4s.png\",srcSet:\"https://framerusercontent.com/images/k0TAiOzO5FYLcmg4ilSUXcWvW4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/k0TAiOzO5FYLcmg4ilSUXcWvW4s.png 1024w\"},className:\"framer-17mipx8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/3ql86zZw4CCDcWm69MDwgHH3O4.jpeg\",srcSet:\"https://framerusercontent.com/images/3ql86zZw4CCDcWm69MDwgHH3O4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3ql86zZw4CCDcWm69MDwgHH3O4.jpeg 1024w\"},className:\"framer-1du3mmz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fabric Example\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/orpl3N616C7ZvP5PlL4UswEIQ.png\",srcSet:\"https://framerusercontent.com/images/orpl3N616C7ZvP5PlL4UswEIQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/orpl3N616C7ZvP5PlL4UswEIQ.png 1024w\"},className:\"framer-1dsc74k\"})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bm5umf-container hidden-g6acwo\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:6,height:\"100%\",hoverFactor:.5,id:\"UGFHRKR9S\",layoutId:\"UGFHRKR9S\",padding:6,paddingBottom:10,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-obg8jb\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1734,pixelWidth:1154,sizes:\"300px\",src:\"https://framerusercontent.com/images/NCTz3Trsac9LKO4VaFJddJU1kc.png\",srcSet:\"https://framerusercontent.com/images/NCTz3Trsac9LKO4VaFJddJU1kc.png?scale-down-to=1024 681w,https://framerusercontent.com/images/NCTz3Trsac9LKO4VaFJddJU1kc.png 1154w\"},className:\"framer-1pt0h1t\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fabric Example Photo\",fit:\"fill\",pixelHeight:1740,pixelWidth:1152,sizes:\"300px\",src:\"https://framerusercontent.com/images/DIBKB0twgwbeZvy90FeW5YjqYQ.png\",srcSet:\"https://framerusercontent.com/images/DIBKB0twgwbeZvy90FeW5YjqYQ.png?scale-down-to=1024 677w,https://framerusercontent.com/images/DIBKB0twgwbeZvy90FeW5YjqYQ.png 1152w\"},className:\"framer-1v1awdm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1738,pixelWidth:1150,sizes:\"300px\",src:\"https://framerusercontent.com/images/O1r49Kb4ou2Rufo0g5ektMYHo68.png\",srcSet:\"https://framerusercontent.com/images/O1r49Kb4ou2Rufo0g5ektMYHo68.png?scale-down-to=1024 677w,https://framerusercontent.com/images/O1r49Kb4ou2Rufo0g5ektMYHo68.png 1150w\"},className:\"framer-14jdvq6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1738,pixelWidth:1152,sizes:\"300px\",src:\"https://framerusercontent.com/images/uPGnB6MuRkzWo3vZLusvwO05ak.png\",srcSet:\"https://framerusercontent.com/images/uPGnB6MuRkzWo3vZLusvwO05ak.png?scale-down-to=1024 678w,https://framerusercontent.com/images/uPGnB6MuRkzWo3vZLusvwO05ak.png 1152w\"},className:\"framer-1rbps2o\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1732,pixelWidth:1348,sizes:\"300px\",src:\"https://framerusercontent.com/images/4VCuPLTcndBQutYEERzsPYOaA9o.png\",srcSet:\"https://framerusercontent.com/images/4VCuPLTcndBQutYEERzsPYOaA9o.png?scale-down-to=1024 796w,https://framerusercontent.com/images/4VCuPLTcndBQutYEERzsPYOaA9o.png 1348w\"},className:\"framer-1afiq48\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1738,pixelWidth:1158,sizes:\"300px\",src:\"https://framerusercontent.com/images/htCbi604BYeVty9g4nuDse48r2E.png\",srcSet:\"https://framerusercontent.com/images/htCbi604BYeVty9g4nuDse48r2E.png?scale-down-to=1024 682w,https://framerusercontent.com/images/htCbi604BYeVty9g4nuDse48r2E.png 1158w\"},className:\"framer-8ga189\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1742,pixelWidth:1158,sizes:\"300px\",src:\"https://framerusercontent.com/images/KqAsABHDbSX0xpHGx8xqlU3M8o.png\",srcSet:\"https://framerusercontent.com/images/KqAsABHDbSX0xpHGx8xqlU3M8o.png?scale-down-to=1024 680w,https://framerusercontent.com/images/KqAsABHDbSX0xpHGx8xqlU3M8o.png 1158w\"},className:\"framer-1a2cxtv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1734,pixelWidth:1160,sizes:\"300px\",src:\"https://framerusercontent.com/images/LSQF1fzEYtbDzIOrfCMwv28C4.png\",srcSet:\"https://framerusercontent.com/images/LSQF1fzEYtbDzIOrfCMwv28C4.png?scale-down-to=1024 685w,https://framerusercontent.com/images/LSQF1fzEYtbDzIOrfCMwv28C4.png 1160w\"},className:\"framer-98s5th\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1736,pixelWidth:1150,sizes:\"300px\",src:\"https://framerusercontent.com/images/T3jFwQkOMszcNeHG3vuGYUmx2aQ.png\",srcSet:\"https://framerusercontent.com/images/T3jFwQkOMszcNeHG3vuGYUmx2aQ.png?scale-down-to=1024 678w,https://framerusercontent.com/images/T3jFwQkOMszcNeHG3vuGYUmx2aQ.png 1150w\"},className:\"framer-45huwp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1730,pixelWidth:1150,sizes:\"300px\",src:\"https://framerusercontent.com/images/mvuTtoAipdfIj8fV4rdhHSXAXw.png\",srcSet:\"https://framerusercontent.com/images/mvuTtoAipdfIj8fV4rdhHSXAXw.png?scale-down-to=1024 680w,https://framerusercontent.com/images/mvuTtoAipdfIj8fV4rdhHSXAXw.png 1150w\"},className:\"framer-1f3u0vd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1726,pixelWidth:1154,sizes:\"300px\",src:\"https://framerusercontent.com/images/oLwMVydJmq8gFQ2zRaUTT6DgQo.png\",srcSet:\"https://framerusercontent.com/images/oLwMVydJmq8gFQ2zRaUTT6DgQo.png?scale-down-to=1024 684w,https://framerusercontent.com/images/oLwMVydJmq8gFQ2zRaUTT6DgQo.png 1154w\"},className:\"framer-1ive8yh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1738,pixelWidth:1398,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/e4v3KCeeSbCbPlKX5LNLlZP9Y.png\",srcSet:\"https://framerusercontent.com/images/e4v3KCeeSbCbPlKX5LNLlZP9Y.png?scale-down-to=1024 823w,https://framerusercontent.com/images/e4v3KCeeSbCbPlKX5LNLlZP9Y.png 1398w\"},className:\"framer-1ek6n9u\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1732,pixelWidth:1152,sizes:\"300px\",src:\"https://framerusercontent.com/images/tH6QIfRk3iix6Opjsnfc9hmBSo.png\",srcSet:\"https://framerusercontent.com/images/tH6QIfRk3iix6Opjsnfc9hmBSo.png?scale-down-to=1024 681w,https://framerusercontent.com/images/tH6QIfRk3iix6Opjsnfc9hmBSo.png 1152w\"},className:\"framer-1qj1t9w\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1742,pixelWidth:1304,sizes:\"300px\",src:\"https://framerusercontent.com/images/aFcVOYhG4Tn66LEpLtGubLq6Lso.png\",srcSet:\"https://framerusercontent.com/images/aFcVOYhG4Tn66LEpLtGubLq6Lso.png?scale-down-to=1024 766w,https://framerusercontent.com/images/aFcVOYhG4Tn66LEpLtGubLq6Lso.png 1304w\"},className:\"framer-2359d3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1746,pixelWidth:1298,sizes:\"300px\",src:\"https://framerusercontent.com/images/nauvouA1eVpFLdBtFfVDOEmfU.png\",srcSet:\"https://framerusercontent.com/images/nauvouA1eVpFLdBtFfVDOEmfU.png?scale-down-to=1024 761w,https://framerusercontent.com/images/nauvouA1eVpFLdBtFfVDOEmfU.png 1298w\"},className:\"framer-14ygys0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1730,pixelWidth:1308,sizes:\"300px\",src:\"https://framerusercontent.com/images/Gt1BDLe7leFXuvJsKa9darPLw9M.png\",srcSet:\"https://framerusercontent.com/images/Gt1BDLe7leFXuvJsKa9darPLw9M.png?scale-down-to=1024 774w,https://framerusercontent.com/images/Gt1BDLe7leFXuvJsKa9darPLw9M.png 1308w\"},className:\"framer-1xako1y\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1722,pixelWidth:1286,sizes:\"300px\",src:\"https://framerusercontent.com/images/okzvs0139DCD81ciHYGCnVd7Q.png\",srcSet:\"https://framerusercontent.com/images/okzvs0139DCD81ciHYGCnVd7Q.png?scale-down-to=1024 764w,https://framerusercontent.com/images/okzvs0139DCD81ciHYGCnVd7Q.png 1286w\"},className:\"framer-1sx9bjv\"})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ugzbb-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"MrzJaJXH1\",layoutId:\"MrzJaJXH1\",padding:10,paddingBottom:10,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14m0ybx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1728,pixelWidth:1158,sizes:\"300px\",src:\"https://framerusercontent.com/images/2aJhDQuwKVDniWHAQZLiVUf3kbU.png\",srcSet:\"https://framerusercontent.com/images/2aJhDQuwKVDniWHAQZLiVUf3kbU.png?scale-down-to=1024 686w,https://framerusercontent.com/images/2aJhDQuwKVDniWHAQZLiVUf3kbU.png 1158w\"},className:\"framer-184zquk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1738,pixelWidth:1356,sizes:\"300px\",src:\"https://framerusercontent.com/images/VqTd5q694LWeynPOyM1lRxry2w.png\",srcSet:\"https://framerusercontent.com/images/VqTd5q694LWeynPOyM1lRxry2w.png?scale-down-to=1024 798w,https://framerusercontent.com/images/VqTd5q694LWeynPOyM1lRxry2w.png 1356w\"},className:\"framer-pqerlh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fabric Example\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/TCBQZ6JtHWCdcAnj7QniyQy1fY.png\",srcSet:\"https://framerusercontent.com/images/TCBQZ6JtHWCdcAnj7QniyQy1fY.png?scale-down-to=512 512w,https://framerusercontent.com/images/TCBQZ6JtHWCdcAnj7QniyQy1fY.png 1024w\"},className:\"framer-1o9182e\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fabric Example Photo\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/76M7YYcqXDAIEiPfvYK294DpQ.jpeg\",srcSet:\"https://framerusercontent.com/images/76M7YYcqXDAIEiPfvYK294DpQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/76M7YYcqXDAIEiPfvYK294DpQ.jpeg 1024w\"},className:\"framer-188q5vk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/HDS1SEPj2DJeKVs2I547frnSs.png\",srcSet:\"https://framerusercontent.com/images/HDS1SEPj2DJeKVs2I547frnSs.png?scale-down-to=512 512w,https://framerusercontent.com/images/HDS1SEPj2DJeKVs2I547frnSs.png 1024w\"},className:\"framer-1ywvuej\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/RznyqABcE36HUbbdCcKNl73xLH0.jpeg\",srcSet:\"https://framerusercontent.com/images/RznyqABcE36HUbbdCcKNl73xLH0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/RznyqABcE36HUbbdCcKNl73xLH0.jpeg 1024w\"},className:\"framer-1su3ci3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/AHH8BwBJJNZvTILFjuCXUZdnQl4.png\",srcSet:\"https://framerusercontent.com/images/AHH8BwBJJNZvTILFjuCXUZdnQl4.png?scale-down-to=512 512w,https://framerusercontent.com/images/AHH8BwBJJNZvTILFjuCXUZdnQl4.png 1024w\"},className:\"framer-dh8pff\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/r0IdX6HvaSaioHgTYwZrebw4tpc.jpeg\",srcSet:\"https://framerusercontent.com/images/r0IdX6HvaSaioHgTYwZrebw4tpc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/r0IdX6HvaSaioHgTYwZrebw4tpc.jpeg 1024w\"},className:\"framer-1lhwifi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/E8nMupsoaWX7bOgAPDmJozhzQ.png\",srcSet:\"https://framerusercontent.com/images/E8nMupsoaWX7bOgAPDmJozhzQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/E8nMupsoaWX7bOgAPDmJozhzQ.png 1024w\"},className:\"framer-p69kpu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/5h0NQc2ybIwzIBrkIU5ynFDXx3Y.jpeg\",srcSet:\"https://framerusercontent.com/images/5h0NQc2ybIwzIBrkIU5ynFDXx3Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5h0NQc2ybIwzIBrkIU5ynFDXx3Y.jpeg 1024w\"},className:\"framer-1x7jl12\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/7KdwQTevAkRnu266P41XY97I.png\",srcSet:\"https://framerusercontent.com/images/7KdwQTevAkRnu266P41XY97I.png?scale-down-to=512 512w,https://framerusercontent.com/images/7KdwQTevAkRnu266P41XY97I.png 1024w\"},className:\"framer-b6f52a\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/8C1sZHQoo08dcJvXBl33pmdQHyI.jpeg\",srcSet:\"https://framerusercontent.com/images/8C1sZHQoo08dcJvXBl33pmdQHyI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8C1sZHQoo08dcJvXBl33pmdQHyI.jpeg 1024w\"},className:\"framer-uqovf6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/ZwK6MtO0pcVuZYUiK4pLMcH34vc.png\",srcSet:\"https://framerusercontent.com/images/ZwK6MtO0pcVuZYUiK4pLMcH34vc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZwK6MtO0pcVuZYUiK4pLMcH34vc.png 1024w\"},className:\"framer-doxprd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/f36itOYqaOrpLhlQciwoZ97sdGQ.jpeg\",srcSet:\"https://framerusercontent.com/images/f36itOYqaOrpLhlQciwoZ97sdGQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/f36itOYqaOrpLhlQciwoZ97sdGQ.jpeg 1024w\"},className:\"framer-1l9oodf\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/kKiwRyGBmLC6tZSPLyI74T7Uauc.png\",srcSet:\"https://framerusercontent.com/images/kKiwRyGBmLC6tZSPLyI74T7Uauc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kKiwRyGBmLC6tZSPLyI74T7Uauc.png 1024w\"},className:\"framer-u5g7cu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fabric Example\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"300px\",src:\"https://framerusercontent.com/images/RVSswxITtGRQyDeRtMaSqpuDc.jpeg\",srcSet:\"https://framerusercontent.com/images/RVSswxITtGRQyDeRtMaSqpuDc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/RVSswxITtGRQyDeRtMaSqpuDc.jpeg 1024w\"},className:\"framer-1w9zp6h\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1728,pixelWidth:1154,sizes:\"300px\",src:\"https://framerusercontent.com/images/8Oj6wTMFHJWGEUcR2k57jEgNjs.png\",srcSet:\"https://framerusercontent.com/images/8Oj6wTMFHJWGEUcR2k57jEgNjs.png?scale-down-to=1024 683w,https://framerusercontent.com/images/8Oj6wTMFHJWGEUcR2k57jEgNjs.png 1154w\"},className:\"framer-uo0w9n\"})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iamg35\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fhJUfNllp:{y:716},OfCvLKoU7:{y:716}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:272,y:364.0000000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yp3q8f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fhJUfNllp:{variant:\"diN56yifD\"},OfCvLKoU7:{variant:\"diN56yifD\"}},children:/*#__PURE__*/_jsx(NavigationNavbar,{height:\"100%\",id:\"CQptJzyJp\",layoutId:\"CQptJzyJp\",variant:\"JUPxc3O0M\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-j2agx.framer-np6yaj, .framer-j2agx .framer-np6yaj { display: block; }\",\".framer-j2agx.framer-sqjznd { align-content: center; align-items: center; background-color: #0d0d0d; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1440px; }\",\".framer-j2agx .framer-tytenb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-j2agx .framer-12uatcr { 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: 28px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-j2agx .framer-1euutzc-container, .framer-j2agx .framer-bm5umf-container, .framer-j2agx .framer-16ugzbb-container { flex: none; height: 1625px; position: relative; width: 340px; }\",\".framer-j2agx .framer-1fs8vf1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 7795px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-j2agx .framer-1o800c, .framer-j2agx .framer-1gaosi5, .framer-j2agx .framer-7sn62w, .framer-j2agx .framer-1q6zmz5, .framer-j2agx .framer-tqc97o, .framer-j2agx .framer-1hjuo5j, .framer-j2agx .framer-13mb30m, .framer-j2agx .framer-14wwzjl, .framer-j2agx .framer-piwv2z, .framer-j2agx .framer-5cp2wj, .framer-j2agx .framer-g4emkp, .framer-j2agx .framer-1m4pn6s, .framer-j2agx .framer-30duu4, .framer-j2agx .framer-1lzunjc, .framer-j2agx .framer-17mipx8, .framer-j2agx .framer-1du3mmz, .framer-j2agx .framer-1dsc74k, .framer-j2agx .framer-1pt0h1t, .framer-j2agx .framer-1v1awdm, .framer-j2agx .framer-14jdvq6, .framer-j2agx .framer-1rbps2o, .framer-j2agx .framer-1afiq48, .framer-j2agx .framer-8ga189, .framer-j2agx .framer-1a2cxtv, .framer-j2agx .framer-98s5th, .framer-j2agx .framer-45huwp, .framer-j2agx .framer-1f3u0vd, .framer-j2agx .framer-1ive8yh, .framer-j2agx .framer-1ek6n9u, .framer-j2agx .framer-1qj1t9w, .framer-j2agx .framer-2359d3, .framer-j2agx .framer-14ygys0, .framer-j2agx .framer-1xako1y, .framer-j2agx .framer-1sx9bjv, .framer-j2agx .framer-184zquk, .framer-j2agx .framer-pqerlh, .framer-j2agx .framer-1o9182e, .framer-j2agx .framer-188q5vk, .framer-j2agx .framer-1ywvuej, .framer-j2agx .framer-1su3ci3, .framer-j2agx .framer-dh8pff, .framer-j2agx .framer-1lhwifi, .framer-j2agx .framer-p69kpu, .framer-j2agx .framer-1x7jl12, .framer-j2agx .framer-b6f52a, .framer-j2agx .framer-uqovf6, .framer-j2agx .framer-doxprd, .framer-j2agx .framer-1l9oodf, .framer-j2agx .framer-u5g7cu, .framer-j2agx .framer-1w9zp6h, .framer-j2agx .framer-uo0w9n { flex: none; height: 430px; position: relative; width: 300px; }\",\".framer-j2agx .framer-obg8jb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 7801px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-j2agx .framer-14m0ybx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 7796px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-j2agx .framer-1iamg35 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 100vh; justify-content: center; left: 0px; overflow: visible; padding: 12px; position: fixed; top: 50%; transform: translateY(-50%); width: min-content; z-index: 1; }\",\".framer-j2agx .framer-1yp3q8f-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-j2agx.framer-sqjznd, .framer-j2agx .framer-tytenb, .framer-j2agx .framer-12uatcr, .framer-j2agx .framer-1fs8vf1, .framer-j2agx .framer-obg8jb, .framer-j2agx .framer-14m0ybx, .framer-j2agx .framer-1iamg35 { gap: 0px; } .framer-j2agx.framer-sqjznd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-j2agx.framer-sqjznd > :first-child, .framer-j2agx .framer-tytenb > :first-child, .framer-j2agx .framer-1fs8vf1 > :first-child, .framer-j2agx .framer-obg8jb > :first-child, .framer-j2agx .framer-14m0ybx > :first-child, .framer-j2agx .framer-1iamg35 > :first-child { margin-top: 0px; } .framer-j2agx.framer-sqjznd > :last-child, .framer-j2agx .framer-tytenb > :last-child, .framer-j2agx .framer-1fs8vf1 > :last-child, .framer-j2agx .framer-obg8jb > :last-child, .framer-j2agx .framer-14m0ybx > :last-child, .framer-j2agx .framer-1iamg35 > :last-child { margin-bottom: 0px; } .framer-j2agx .framer-tytenb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-j2agx .framer-12uatcr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-j2agx .framer-12uatcr > :first-child { margin-left: 0px; } .framer-j2agx .framer-12uatcr > :last-child { margin-right: 0px; } .framer-j2agx .framer-1fs8vf1 > *, .framer-j2agx .framer-obg8jb > *, .framer-j2agx .framer-14m0ybx > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-j2agx .framer-1iamg35 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1439px) { .framer-j2agx.framer-sqjznd { height: 1665px; width: 810px; } .framer-j2agx .framer-tytenb { padding: 120px 0px 120px 0px; } .framer-j2agx .framer-1iamg35 { bottom: 0px; height: min-content; left: 50%; top: unset; transform: translateX(-50%); width: 100%; }}\",\"@media (max-width: 809px) { .framer-j2agx.framer-sqjznd { height: 1150px; width: 390px; } .framer-j2agx .framer-tytenb { padding: 80px 0px 80px 0px; } .framer-j2agx .framer-1euutzc-container { order: 0; width: 144px; } .framer-j2agx .framer-16ugzbb-container { order: 2; width: 151px; } .framer-j2agx .framer-1iamg35 { bottom: 0px; height: min-content; left: 50%; top: unset; transform: translateX(-50%); width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1893\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fhJUfNllp\":{\"layout\":[\"fixed\",\"fixed\"]},\"OfCvLKoU7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerCFza2ozA7=withCSS(Component,css,\"framer-j2agx\");export default FramerCFza2ozA7;FramerCFza2ozA7.displayName=\"Blog\";FramerCFza2ozA7.defaultProps={height:1893,width:1440};addFonts(FramerCFza2ozA7,[{explicitInter:true,fonts:[]},...TickerFonts,...NavigationNavbarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCFza2ozA7\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fhJUfNllp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OfCvLKoU7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1893\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "NavigationNavbarFonts", "IWfaABb1f_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Image2", "css", "FramerCFza2ozA7", "withCSS", "CFza2ozA7_default", "addFonts", "__FramerMetadata__"]
}
