{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/p54otNp4PbzLVow5tzpi/T68ettJ0avB2DkRus9DN/GWwuDqzky.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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// 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\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// 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[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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;startTransition(()=>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)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker2 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import{EnableRotation}from\"https://framerusercontent.com/modules/oZ9rvXMXmkDCj3c8mPIJ/kOi0zNYyp7waZBTSfAO4/LogoRotate.js\";import Navbar from\"https://framerusercontent.com/modules/4UW7nqfyn12D5GoIp5Th/kGVse81t7dvs1F4al9Mn/ABkPEzAMx.js\";const MotionAEnableRotationxr459q=withCodeBoundaryForOverrides(motion.a,{nodeId:\"X1Mc34x8n\",override:EnableRotation,scopeId:\"GWwuDqzky\"});const MotionAEnableRotation3pq6ad=withCodeBoundaryForOverrides(motion.a,{nodeId:\"DtgIYHMLl\",override:EnableRotation,scopeId:\"GWwuDqzky\"});const TickerFonts=getFonts(Ticker);const Ticker1Fonts=getFonts(Ticker1);const Ticker2Fonts=getFonts(Ticker2);const NavbarFonts=getFonts(Navbar);const cycleOrder=[\"ohjmDaWou\",\"Zx78v8MAD\",\"ODT5WFMl0\",\"EdqFPgFED\",\"GbD6O84sO\"];const serializationHash=\"framer-yROnE\";const variantClassNames={EdqFPgFED:\"framer-v-ywz3xi\",GbD6O84sO:\"framer-v-1ey2ljq\",ODT5WFMl0:\"framer-v-x65f22\",ohjmDaWou:\"framer-v-1pdowpk\",Zx78v8MAD:\"framer-v-1fp116j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"EdqFPgFED\",\"Variant 5\":\"GbD6O84sO\",Mobile:\"ODT5WFMl0\",Primary:\"ohjmDaWou\",Tablet:\"Zx78v8MAD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ohjmDaWou\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ohjmDaWou\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"EdqFPgFED\",\"GbD6O84sO\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"EdqFPgFED\",\"GbD6O84sO\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"ODT5WFMl0\",\"GbD6O84sO\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"EdqFPgFED\")return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"EdqFPgFED\")return true;return false;};const isDisplayed5=()=>{if([\"ODT5WFMl0\",\"GbD6O84sO\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"ODT5WFMl0\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"ODT5WFMl0\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pdowpk\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"ohjmDaWou\",ref:refBinding,style:{...style},...addPropertyOverrides({EdqFPgFED:{\"data-framer-name\":\"Variant 4\"},GbD6O84sO:{\"data-framer-name\":\"Variant 5\"},ODT5WFMl0:{\"data-framer-name\":\"Mobile\"},Zx78v8MAD:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m7droo\",layoutDependency:layoutDependency,layoutId:\"u4tU4omzY\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"X1Mc34x8n\",scopeId:\"GWwuDqzky\",children:/*#__PURE__*/_jsx(MotionAEnableRotationxr459q,{\"aria-label\":\"Spinning logo container\",background:{alt:\"\",fit:\"fill\"},className:\"framer-xr459q framer-oo1l0u\",\"data-framer-name\":\"Spinning Logo Container\",layoutDependency:layoutDependency,layoutId:\"X1Mc34x8n\",style:{filter:\"invert(0)\",WebkitFilter:\"invert(0)\"},children:/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1d5yluw\",\"data-framer-name\":\"Logo\",description:\"A vector logo of the Artfolio website in black color with four rounded lines to form a square.\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"s03nA9wW7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 118 118\"><path d=\"M 109.937 59 C 109.976 58.961 72.334 21.122 72.334 21.122 C 71.429 20.217 71.705 18.723 72.845 18.172 C 80.319 14.514 89.523 15.576 95.816 21.594 C 99.985 25.606 102.07 30.995 102.031 36.344 C 102.031 37.327 102.424 38.271 103.132 38.979 L 112.965 48.813 C 113.909 49.757 115.561 49.403 115.994 48.144 C 120.399 35.439 117.567 20.729 107.419 10.581 C 94.203 -2.635 73.199 -3.461 59 8.063 C 58.961 8.024 21.122 45.666 21.122 45.666 C 20.217 46.571 18.723 46.295 18.172 45.155 C 14.514 37.681 15.576 28.477 21.594 22.184 C 25.606 18.015 30.995 15.93 36.344 15.969 C 37.327 15.969 38.271 15.576 38.979 14.868 L 48.813 5.035 C 49.757 4.091 49.403 2.439 48.144 2.006 C 35.439 -2.399 20.729 0.433 10.581 10.581 C -2.635 23.797 -3.461 44.801 8.063 59 C 8.024 59.039 45.666 96.878 45.666 96.878 C 46.571 97.783 46.295 99.277 45.155 99.828 C 37.681 103.486 28.477 102.424 22.184 96.406 C 18.015 92.394 15.93 87.005 15.969 81.656 C 15.969 80.673 15.576 79.729 14.868 79.021 L 5.035 69.187 C 4.091 68.243 2.439 68.597 2.006 69.856 C -2.399 82.561 0.433 97.271 10.581 107.419 C 23.797 120.635 44.801 121.461 59 109.937 C 59.039 109.976 96.878 72.334 96.878 72.334 C 97.783 71.429 99.277 71.705 99.828 72.845 C 103.486 80.319 102.424 89.523 96.406 95.816 C 92.394 99.985 87.005 102.07 81.656 102.031 C 80.673 102.031 79.729 102.424 79.021 103.132 L 69.187 112.965 C 68.243 113.909 68.597 115.561 69.856 115.994 C 82.561 120.399 97.271 117.567 107.419 107.419 C 120.635 94.203 121.461 73.199 109.937 59 Z M 92.905 66.198 C 87.359 64.349 80.948 65.608 76.543 70.053 L 53.257 93.338 C 52.746 93.849 51.881 93.338 52.117 92.63 C 53.769 87.163 52.431 80.987 48.144 76.661 C 48.144 76.661 31.27 59.787 24.426 52.903 C 23.915 52.392 24.465 51.527 25.134 51.763 C 30.68 53.611 37.091 52.353 41.497 47.908 C 41.497 47.908 58.174 31.231 65.372 24.072 C 65.883 23.561 66.788 24.111 66.513 24.78 C 64.467 30.444 65.687 37.013 70.249 41.575 C 70.249 41.575 86.848 58.174 93.653 65.018 C 94.164 65.569 93.613 66.434 92.905 66.198 Z\" fill=\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:8927832987,title:\"Artfolio logo\",withExternalLayout:true,...addPropertyOverrides({ODT5WFMl0:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 44.72 24 C 44.736 23.984 29.424 8.592 29.424 8.592 C 29.056 8.224 29.168 7.616 29.632 7.392 C 32.672 5.904 36.416 6.336 38.976 8.784 C 40.672 10.416 41.52 12.608 41.504 14.784 C 41.504 15.184 41.664 15.568 41.952 15.856 L 45.952 19.856 C 46.336 20.24 47.008 20.096 47.184 19.584 C 48.976 14.416 47.824 8.432 43.696 4.304 C 38.32 -1.072 29.776 -1.408 24 3.28 C 23.984 3.264 8.592 18.576 8.592 18.576 C 8.224 18.944 7.616 18.832 7.392 18.368 C 5.904 15.328 6.336 11.584 8.784 9.024 C 10.416 7.328 12.608 6.48 14.784 6.496 C 15.184 6.496 15.568 6.336 15.856 6.048 L 19.856 2.048 C 20.24 1.664 20.096 0.992 19.584 0.816 C 14.416 -0.976 8.432 0.176 4.304 4.304 C -1.072 9.68 -1.408 18.224 3.28 24 C 3.264 24.016 18.576 39.408 18.576 39.408 C 18.944 39.776 18.832 40.384 18.368 40.608 C 15.328 42.096 11.584 41.664 9.024 39.216 C 7.328 37.584 6.48 35.392 6.496 33.216 C 6.496 32.816 6.336 32.432 6.048 32.144 L 2.048 28.144 C 1.664 27.76 0.992 27.904 0.816 28.416 C -0.976 33.584 0.176 39.568 4.304 43.696 C 9.68 49.072 18.224 49.408 24 44.72 C 24.016 44.736 39.408 29.424 39.408 29.424 C 39.776 29.056 40.384 29.168 40.608 29.632 C 42.096 32.672 41.664 36.416 39.216 38.976 C 37.584 40.672 35.392 41.52 33.216 41.504 C 32.816 41.504 32.432 41.664 32.144 41.952 L 28.144 45.952 C 27.76 46.336 27.904 47.008 28.416 47.184 C 33.584 48.976 39.568 47.824 43.696 43.696 C 49.072 38.32 49.408 29.776 44.72 24 Z M 37.792 26.928 C 35.536 26.176 32.928 26.688 31.136 28.496 L 21.664 37.968 C 21.456 38.176 21.104 37.968 21.2 37.68 C 21.872 35.456 21.328 32.944 19.584 31.184 C 19.584 31.184 12.72 24.32 9.936 21.52 C 9.728 21.312 9.952 20.96 10.224 21.056 C 12.48 21.808 15.088 21.296 16.88 19.488 C 16.88 19.488 23.664 12.704 26.592 9.792 C 26.8 9.584 27.168 9.808 27.056 10.08 C 26.224 12.384 26.72 15.056 28.576 16.912 C 28.576 16.912 35.328 23.664 38.096 26.448 C 38.304 26.672 38.08 27.024 37.792 26.928 Z\" fill=\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:10319086337}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"DtgIYHMLl\",scopeId:\"GWwuDqzky\",children:/*#__PURE__*/_jsx(MotionAEnableRotation3pq6ad,{\"aria-label\":\"Spinning logo container\",background:{alt:\"\",fit:\"fill\"},className:\"framer-3pq6ad framer-oo1l0u\",\"data-framer-name\":\"Spinning Logo Container\",layoutDependency:layoutDependency,layoutId:\"DtgIYHMLl\",style:{filter:\"invert(0)\",WebkitFilter:\"invert(0)\"},children:/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\"},className:\"framer-68gkc4\",\"data-framer-name\":\"Logo\",description:\"A vector logo of the Artfolio website in black color with four rounded lines to form a square.\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"aBzmUcg_u\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 118 118\"><path d=\"M 109.937 59 C 109.976 58.961 72.334 21.122 72.334 21.122 C 71.429 20.217 71.705 18.723 72.845 18.172 C 80.319 14.514 89.523 15.576 95.816 21.594 C 99.985 25.606 102.07 30.995 102.031 36.344 C 102.031 37.327 102.424 38.271 103.132 38.979 L 112.965 48.813 C 113.909 49.757 115.561 49.403 115.994 48.144 C 120.399 35.439 117.567 20.729 107.419 10.581 C 94.203 -2.635 73.199 -3.461 59 8.063 C 58.961 8.024 21.122 45.666 21.122 45.666 C 20.217 46.571 18.723 46.295 18.172 45.155 C 14.514 37.681 15.576 28.477 21.594 22.184 C 25.606 18.015 30.995 15.93 36.344 15.969 C 37.327 15.969 38.271 15.576 38.979 14.868 L 48.813 5.035 C 49.757 4.091 49.403 2.439 48.144 2.006 C 35.439 -2.399 20.729 0.433 10.581 10.581 C -2.635 23.797 -3.461 44.801 8.063 59 C 8.024 59.039 45.666 96.878 45.666 96.878 C 46.571 97.783 46.295 99.277 45.155 99.828 C 37.681 103.486 28.477 102.424 22.184 96.406 C 18.015 92.394 15.93 87.005 15.969 81.656 C 15.969 80.673 15.576 79.729 14.868 79.021 L 5.035 69.187 C 4.091 68.243 2.439 68.597 2.006 69.856 C -2.399 82.561 0.433 97.271 10.581 107.419 C 23.797 120.635 44.801 121.461 59 109.937 C 59.039 109.976 96.878 72.334 96.878 72.334 C 97.783 71.429 99.277 71.705 99.828 72.845 C 103.486 80.319 102.424 89.523 96.406 95.816 C 92.394 99.985 87.005 102.07 81.656 102.031 C 80.673 102.031 79.729 102.424 79.021 103.132 L 69.187 112.965 C 68.243 113.909 68.597 115.561 69.856 115.994 C 82.561 120.399 97.271 117.567 107.419 107.419 C 120.635 94.203 121.461 73.199 109.937 59 Z M 92.905 66.198 C 87.359 64.349 80.948 65.608 76.543 70.053 L 53.257 93.338 C 52.746 93.849 51.881 93.338 52.117 92.63 C 53.769 87.163 52.431 80.987 48.144 76.661 C 48.144 76.661 31.27 59.787 24.426 52.903 C 23.915 52.392 24.465 51.527 25.134 51.763 C 30.68 53.611 37.091 52.353 41.497 47.908 C 41.497 47.908 58.174 31.231 65.372 24.072 C 65.883 23.561 66.788 24.111 66.513 24.78 C 64.467 30.444 65.687 37.013 70.249 41.575 C 70.249 41.575 86.848 58.174 93.653 65.018 C 94.164 65.569 93.613 66.434 92.905 66.198 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11385163018,title:\"Artfolio logo\",withExternalLayout:true,...addPropertyOverrides({GbD6O84sO:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 50 50\"><path d=\"M 46.583 25 C 46.6 24.983 30.65 8.95 30.65 8.95 C 30.267 8.567 30.383 7.933 30.867 7.7 C 34.033 6.15 37.933 6.6 40.6 9.15 C 42.367 10.85 43.25 13.133 43.233 15.4 C 43.233 15.817 43.4 16.217 43.7 16.517 L 47.867 20.683 C 48.267 21.083 48.967 20.933 49.15 20.4 C 51.017 15.017 49.817 8.783 45.517 4.483 C 39.917 -1.117 31.017 -1.467 25 3.417 C 24.983 3.4 8.95 19.35 8.95 19.35 C 8.567 19.733 7.933 19.617 7.7 19.133 C 6.15 15.967 6.6 12.067 9.15 9.4 C 10.85 7.633 13.133 6.75 15.4 6.767 C 15.817 6.767 16.217 6.6 16.517 6.3 L 20.683 2.133 C 21.083 1.733 20.933 1.033 20.4 0.85 C 15.017 -1.017 8.783 0.183 4.483 4.483 C -1.117 10.083 -1.467 18.983 3.417 25 C 3.4 25.017 19.35 41.05 19.35 41.05 C 19.733 41.433 19.617 42.067 19.133 42.3 C 15.967 43.85 12.067 43.4 9.4 40.85 C 7.633 39.15 6.75 36.867 6.767 34.6 C 6.767 34.183 6.6 33.783 6.3 33.483 L 2.133 29.317 C 1.733 28.917 1.033 29.067 0.85 29.6 C -1.017 34.983 0.183 41.217 4.483 45.517 C 10.083 51.117 18.983 51.467 25 46.583 C 25.017 46.6 41.05 30.65 41.05 30.65 C 41.433 30.267 42.067 30.383 42.3 30.867 C 43.85 34.033 43.4 37.933 40.85 40.6 C 39.15 42.367 36.867 43.25 34.6 43.233 C 34.183 43.233 33.783 43.4 33.483 43.7 L 29.317 47.867 C 28.917 48.267 29.067 48.967 29.6 49.15 C 34.983 51.017 41.217 49.817 45.517 45.517 C 51.117 39.917 51.467 31.017 46.583 25 Z M 39.367 28.05 C 37.017 27.267 34.3 27.8 32.433 29.683 L 22.567 39.55 C 22.35 39.767 21.983 39.55 22.083 39.25 C 22.783 36.933 22.217 34.317 20.4 32.483 C 20.4 32.483 13.25 25.333 10.35 22.417 C 10.133 22.2 10.367 21.833 10.65 21.933 C 13 22.717 15.717 22.183 17.583 20.3 C 17.583 20.3 24.65 13.233 27.7 10.2 C 27.917 9.983 28.3 10.217 28.183 10.5 C 27.317 12.9 27.833 15.683 29.767 17.617 C 29.767 17.617 36.8 24.65 39.683 27.55 C 39.9 27.783 39.667 28.15 39.367 28.05 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11835725714}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s990d1\",layoutDependency:layoutDependency,layoutId:\"ZZO22uxF7\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u7m7qt-container\",\"data-framer-name\":\"Heading Ticker\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EkxXLXgRW-container\",name:\"Heading Ticker\",nodeId:\"EkxXLXgRW\",rendersWithMotion:true,scopeId:\"GWwuDqzky\",style:{filter:\"invert(0)\",WebkitFilter:\"invert(0)\"},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:96,height:\"100%\",hoverFactor:.5,id:\"EkxXLXgRW\",layoutId:\"EkxXLXgRW\",name:\"Heading Ticker\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pxv38g\",\"data-framer-name\":\"Page Heading -- Ticker\",layoutDependency:layoutDependency,layoutId:\"tRxwMfBK9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7QW50aWMgRGlkb25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Antic Didone\", \"Antic Didone Placeholder\", serif',\"--framer-font-size\":\"148px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32)))\"},children:\"SAM NOTO\"})}),className:\"framer-12qv0ru\",fonts:[\"GF;Antic Didone-regular\"],layoutDependency:layoutDependency,layoutId:\"c1yaa3hN2\",style:{\"--extracted-gdpscs\":\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],speed:33,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lgvakk-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AxQHXCAYI-container\",nodeId:\"AxQHXCAYI\",rendersWithMotion:true,scopeId:\"GWwuDqzky\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:96,height:\"100%\",hoverFactor:1,id:\"AxQHXCAYI\",layoutId:\"AxQHXCAYI\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gi85hd\",\"data-framer-name\":\"Page Heading -- Ticker\",layoutDependency:layoutDependency,layoutId:\"Ibs4D62r_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7QW50aWMgRGlkb25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Antic Didone\", \"Antic Didone Placeholder\", serif',\"--framer-font-size\":\"148px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"SAM NOTO\"})}),className:\"framer-1q1nvlq\",fonts:[\"GF;Antic Didone-regular\"],layoutDependency:layoutDependency,layoutId:\"s33uILoNM\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],speed:33,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jtq6de\",layoutDependency:layoutDependency,layoutId:\"AIArVBZmT\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bl800z-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZgET01pDZ-container\",nodeId:\"ZgET01pDZ\",rendersWithMotion:true,scopeId:\"GWwuDqzky\",children:/*#__PURE__*/_jsx(Ticker2,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"ZgET01pDZ\",layoutId:\"ZgET01pDZ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1muwhdq\",\"data-framer-name\":\"Page Heading -- Ticker\",layoutDependency:layoutDependency,layoutId:\"q5Md1rQEl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7QW50aWMgRGlkb25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Antic Didone\", \"Antic Didone Placeholder\", serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32)))\"},children:\"SAM NOTO\"})}),className:\"framer-1ph310\",fonts:[\"GF;Antic Didone-regular\"],layoutDependency:layoutDependency,layoutId:\"XT_KwTHhD\",style:{\"--extracted-gdpscs\":\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1muwhdq\",\"data-framer-name\":\"Page Heading -- Ticker\",layoutDependency:layoutDependency,layoutId:\"q5Md1rQEl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7QW50aWMgRGlkb25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Antic Didone\", \"Antic Didone Placeholder\", serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32)))\"},children:\"SAM NOTO\"})}),className:\"framer-1ph310\",fonts:[\"GF;Antic Didone-regular\"],layoutDependency:layoutDependency,layoutId:\"XT_KwTHhD\",style:{\"--extracted-gdpscs\":\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],speed:33,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xcdjvd-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PpYQyvkM9-container\",nodeId:\"PpYQyvkM9\",rendersWithMotion:true,scopeId:\"GWwuDqzky\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"PpYQyvkM9\",layoutId:\"PpYQyvkM9\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10wqxxg\",\"data-framer-name\":\"Page Heading -- Ticker\",layoutDependency:layoutDependency,layoutId:\"s6FxIouw_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7QW50aWMgRGlkb25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Antic Didone\", \"Antic Didone Placeholder\", serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"SAM NOTO\"})}),className:\"framer-sjlfwj\",fonts:[\"GF;Antic Didone-regular\"],layoutDependency:layoutDependency,layoutId:\"cRh8UD8Fh\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({GbD6O84sO:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},speed:33}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,y:(componentViewport?.y||0)+10+(((componentViewport?.height||187)-10-177)/2+149+8),...addPropertyOverrides({EdqFPgFED:{height:25,y:(componentViewport?.y||0)+10+(((componentViewport?.height||175)-10-166)/2+133+8)},GbD6O84sO:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+10+(((componentViewport?.height||96)-10-86)/2+50+16)},ODT5WFMl0:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+10+(((componentViewport?.height||96)-10-86)/2+50+16)},Zx78v8MAD:{y:(componentViewport?.y||0)+10+(((componentViewport?.height||176)-10-166)/2+138+8)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4x7y6q-container\",layoutDependency:layoutDependency,layoutId:\"Gnm9vKTdj-container\",nodeId:\"Gnm9vKTdj\",rendersWithMotion:true,scopeId:\"GWwuDqzky\",children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"Gnm9vKTdj\",layoutId:\"Gnm9vKTdj\",style:{width:\"100%\"},variant:\"Kbd44bjjS\",width:\"100%\",...addPropertyOverrides({EdqFPgFED:{style:{height:\"100%\",width:\"100%\"},variant:\"FrN2LhIWa\"},GbD6O84sO:{variant:\"Dim7O635F\"},ODT5WFMl0:{variant:\"EDukPnzTB\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yROnE.framer-oo1l0u, .framer-yROnE .framer-oo1l0u { display: block; }\",\".framer-yROnE.framer-1pdowpk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 100px 0px 100px; position: relative; width: 1200px; }\",\".framer-yROnE .framer-m7droo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yROnE .framer-xr459q, .framer-yROnE .framer-3pq6ad { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 133px); overflow: hidden; position: relative; text-decoration: none; width: 133px; }\",\".framer-yROnE .framer-1d5yluw, .framer-yROnE .framer-68gkc4 { flex: none; height: 118px; left: calc(49.62406015037596% - 118px / 2); position: absolute; top: calc(49.62406015037596% - 118px / 2); width: 118px; }\",\".framer-yROnE .framer-s990d1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-yROnE .framer-1u7m7qt-container { flex: none; height: 129px; position: relative; width: 740px; }\",\".framer-yROnE .framer-pxv38g, .framer-yROnE .framer-gi85hd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-yROnE .framer-12qv0ru, .framer-yROnE .framer-1q1nvlq, .framer-yROnE .framer-1ph310, .framer-yROnE .framer-sjlfwj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yROnE .framer-1lgvakk-container { flex: 1 0 0px; height: 118px; position: relative; width: 1px; }\",\".framer-yROnE .framer-1jtq6de { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-yROnE .framer-bl800z-container { flex: 1 0 0px; height: 50px; position: relative; width: 1px; }\",\".framer-yROnE .framer-1muwhdq, .framer-yROnE .framer-10wqxxg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-yROnE .framer-xcdjvd-container { flex: none; height: 101px; position: relative; width: 400px; }\",\".framer-yROnE .framer-4x7y6q-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yROnE.framer-1pdowpk, .framer-yROnE .framer-m7droo, .framer-yROnE .framer-s990d1, .framer-yROnE .framer-pxv38g, .framer-yROnE .framer-gi85hd, .framer-yROnE .framer-1jtq6de, .framer-yROnE .framer-1muwhdq, .framer-yROnE .framer-10wqxxg { gap: 0px; } .framer-yROnE.framer-1pdowpk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-yROnE.framer-1pdowpk > :first-child { margin-top: 0px; } .framer-yROnE.framer-1pdowpk > :last-child { margin-bottom: 0px; } .framer-yROnE .framer-m7droo > *, .framer-yROnE .framer-1muwhdq > *, .framer-yROnE .framer-10wqxxg > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-yROnE .framer-m7droo > :first-child, .framer-yROnE .framer-s990d1 > :first-child, .framer-yROnE .framer-pxv38g > :first-child, .framer-yROnE .framer-gi85hd > :first-child, .framer-yROnE .framer-1jtq6de > :first-child, .framer-yROnE .framer-1muwhdq > :first-child, .framer-yROnE .framer-10wqxxg > :first-child { margin-left: 0px; } .framer-yROnE .framer-m7droo > :last-child, .framer-yROnE .framer-s990d1 > :last-child, .framer-yROnE .framer-pxv38g > :last-child, .framer-yROnE .framer-gi85hd > :last-child, .framer-yROnE .framer-1jtq6de > :last-child, .framer-yROnE .framer-1muwhdq > :last-child, .framer-yROnE .framer-10wqxxg > :last-child { margin-right: 0px; } .framer-yROnE .framer-s990d1 > *, .framer-yROnE .framer-1jtq6de > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yROnE .framer-pxv38g > *, .framer-yROnE .framer-gi85hd > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } }\",\".framer-yROnE.framer-v-1fp116j .framer-1u7m7qt-container { height: 118px; }\",\".framer-yROnE.framer-v-x65f22.framer-1pdowpk, .framer-yROnE.framer-v-1ey2ljq.framer-1pdowpk { gap: 16px; padding: 10px 20px 0px 20px; width: 450px; }\",\".framer-yROnE.framer-v-x65f22 .framer-m7droo, .framer-yROnE.framer-v-1ey2ljq .framer-m7droo { height: 50px; }\",\".framer-yROnE.framer-v-x65f22 .framer-xr459q { height: 100%; width: var(--framer-aspect-ratio-supported, 50px); }\",\".framer-yROnE.framer-v-x65f22 .framer-1d5yluw { height: 48px; left: calc(48.00000000000002% - 48px / 2); top: calc(48.00000000000002% - 48px / 2); width: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yROnE.framer-v-x65f22.framer-1pdowpk { gap: 0px; } .framer-yROnE.framer-v-x65f22.framer-1pdowpk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-yROnE.framer-v-x65f22.framer-1pdowpk > :first-child { margin-top: 0px; } .framer-yROnE.framer-v-x65f22.framer-1pdowpk > :last-child { margin-bottom: 0px; } }\",\".framer-yROnE.framer-v-ywz3xi.framer-1pdowpk { height: 175px; }\",\".framer-yROnE.framer-v-ywz3xi .framer-s990d1 { flex: 1 0 0px; padding: 0px; width: 1px; }\",\".framer-yROnE.framer-v-ywz3xi .framer-4x7y6q-container { height: 25px; }\",\".framer-yROnE.framer-v-1ey2ljq .framer-3pq6ad { height: 51px; width: var(--framer-aspect-ratio-supported, 51px); }\",\".framer-yROnE.framer-v-1ey2ljq .framer-68gkc4 { height: 50px; left: calc(49.01960784313727% - 50px / 2); top: calc(49.01960784313727% - 50px / 2); width: 50px; }\",\".framer-yROnE.framer-v-1ey2ljq .framer-1jtq6de { padding: 0px; }\",\".framer-yROnE.framer-v-1ey2ljq .framer-xcdjvd-container { align-self: stretch; flex: 1 0 0px; height: auto; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yROnE.framer-v-1ey2ljq.framer-1pdowpk { gap: 0px; } .framer-yROnE.framer-v-1ey2ljq.framer-1pdowpk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-yROnE.framer-v-1ey2ljq.framer-1pdowpk > :first-child { margin-top: 0px; } .framer-yROnE.framer-v-1ey2ljq.framer-1pdowpk > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 187\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Zx78v8MAD\":{\"layout\":[\"fixed\",\"auto\"]},\"ODT5WFMl0\":{\"layout\":[\"fixed\",\"auto\"]},\"EdqFPgFED\":{\"layout\":[\"fixed\",\"fixed\"]},\"GbD6O84sO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGWwuDqzky=withCSS(Component,css,\"framer-yROnE\");export default FramerGWwuDqzky;FramerGWwuDqzky.displayName=\"Page Heading + Nav\";FramerGWwuDqzky.defaultProps={height:187,width:1200};addPropertyControls(FramerGWwuDqzky,{variant:{options:[\"ohjmDaWou\",\"Zx78v8MAD\",\"ODT5WFMl0\",\"EdqFPgFED\",\"GbD6O84sO\"],optionTitles:[\"Primary\",\"Tablet\",\"Mobile\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerGWwuDqzky,[{explicitInter:true,fonts:[{family:\"Antic Didone\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDirIsGBGBzCw.woff2\",weight:\"400\"}]},...TickerFonts,...Ticker1Fonts,...Ticker2Fonts,...NavbarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGWwuDqzky\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"187\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zx78v8MAD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ODT5WFMl0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EdqFPgFED\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GbD6O84sO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__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", "currentTarget", "RenderTarget", "isCanvas", "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", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionAEnableRotationxr459q", "withCodeBoundaryForOverrides", "motion", "EnableRotation", "MotionAEnableRotation3pq6ad", "TickerFonts", "getFonts", "Ticker", "Ticker1Fonts", "Ticker2Fonts", "NavbarFonts", "ABkPEzAMx_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "LayoutGroup", "u", "Link", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerGWwuDqzky", "withCSS", "GWwuDqzky_default", "addPropertyControls", "ControlType", "addFonts"]
}
