{"version":3,"file":"MTtlGDCDj.BxdoFBLn.mjs","names":["size","fonts","css","className","FormSpark","fonts","css","className","fonts","css","className","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","FormSpark","CTACTAImageTicker","className","css","fonts","css","className"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js","https:/framerusercontent.com/modules/7Puscj5p72vW8Nc8xHgu/1Mx2Bll7PC98IBCV0grU/K7GeI6ylD.js","https:/framerusercontent.com/modules/MYLmFEdDyDqIWqe3ALdQ/Jrm8rxcS8j7kcpTjZTSu/FormSpark_1_1.js","https:/framerusercontent.com/modules/7TCHy5XeRFYNwpDgDEFF/JzrHLNYcsAPjuC9lwWKQ/oMo7K0n9o.js","https:/framerusercontent.com/modules/xM0s84A9CZMs97aHyX7k/OuTaRJIczhVPAxWYFQaE/rXH7XzLdi.js","https:/framerusercontent.com/modules/66YgC966H4Lzoacg4yUU/cpcZ7NGBmVB95FRDZjlr/d89aOn72i.js","https:/framerusercontent.com/modules/bmdSdZ7wZc0ek855nOGz/0pzaaUkIAy4QfzSgoK08/lqcS1agg6.js","https:/framerusercontent.com/modules/5WVB9VoSnpAATCX1amVx/nVIzvWUiu0DnkkAkRTMw/MTtlGDCDj.js"],"sourcesContent":["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:\"✨\"}),/*#__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 (99f3353)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-regular\",\"FS;Poppins-bold\",\"FS;Poppins-bold italic\",\"FS;Poppins-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7LLTLAW3NRWOADG4II2JGKZC6OSEMBQC/EYFXWX77PEMPU645EAWOTG22E375GULW/SSNNTU67MMJH4CSWT443B4KJ7OB4WFHF.woff2\",weight:\"400\"}]}];export const css=['.framer-jR9Qz .framer-styles-preset-eetc9t:not(.rich-text-wrapper), .framer-jR9Qz .framer-styles-preset-eetc9t.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-643a2369-dac6-4be9-82cf-39207b0b0dc2, #d6d6d6); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-jR9Qz\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name?.value);const[emailValue,setEmail]=useState(email?.value);const[messageValue,setMessage]=useState(message?.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://submit-form.com/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/_jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/_jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/_jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/_jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/_jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\"]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more…](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerIntrinsicWidth\":\"550\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark_1_1.map","// Generated by Framer (0623976)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-cNQvr .framer-styles-preset-7hqf23:not(.rich-text-wrapper), .framer-cNQvr .framer-styles-preset-7hqf23.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-693fc939-a440-460a-816c-523f2e77f254, #666666); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-cNQvr\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (b4533c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-bold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HBNTRIISA5MEXGL5WPYI7CV2HIWTDV3Q/YDPDINVT673XLXNSTMLG4JNCZZMVVNPN/Y7SCNZJOT2MW5ADSGOFLDGH4TNL4JCQY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-F8Pdw .framer-styles-preset-1xpyooz:not(.rich-text-wrapper), .framer-F8Pdw .framer-styles-preset-1xpyooz.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-693fc939-a440-460a-816c-523f2e77f254, #666666); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-F8Pdw\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (99efa6a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"mlqrVKDvr\",\"y95dgt_3D\"];const serializationHash=\"framer-jl4WK\";const variantClassNames={mlqrVKDvr:\"framer-v-vumhoq\",y95dgt_3D:\"framer-v-1fkpsvq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:150,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={Desktop:\"mlqrVKDvr\",Tablet:\"y95dgt_3D\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mlqrVKDvr\"};};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:\"mlqrVKDvr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"y95dgt_3D\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"y95dgt_3D\")return true;return false;};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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-vumhoq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"mlqrVKDvr\",ref:refBinding,style:{...style},...addPropertyOverrides({y95dgt_3D:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1to7wve-container\",\"data-framer-name\":\"Ticker Dektop Top\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RRFxDsiJJ-container\",name:\"Ticker Dektop Top\",nodeId:\"RRFxDsiJJ\",rendersWithMotion:true,scopeId:\"d89aOn72i\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"RRFxDsiJJ\",layoutId:\"RRFxDsiJJ\",name:\"Ticker Dektop Top\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"163px\",src:\"https://framerusercontent.com/images/QHniMHeIRsAFK7JJ656CD1vzFs.png\",srcSet:\"https://framerusercontent.com/images/QHniMHeIRsAFK7JJ656CD1vzFs.png?scale-down-to=512 512w,https://framerusercontent.com/images/QHniMHeIRsAFK7JJ656CD1vzFs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QHniMHeIRsAFK7JJ656CD1vzFs.png 1920w\"},className:\"framer-1gvblfg\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"GOmQCcXuR\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"163px\",src:\"https://framerusercontent.com/images/VQAkGbFHd8at15qjK6L08hDucLE.png\",srcSet:\"https://framerusercontent.com/images/VQAkGbFHd8at15qjK6L08hDucLE.png?scale-down-to=512 512w,https://framerusercontent.com/images/VQAkGbFHd8at15qjK6L08hDucLE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VQAkGbFHd8at15qjK6L08hDucLE.png 1920w\"},className:\"framer-1svovwz\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"AJ8LqhLlS\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"163px\",src:\"https://framerusercontent.com/images/VjgwYFlEUPRVgoWpVwJiAQgJl4.png\",srcSet:\"https://framerusercontent.com/images/VjgwYFlEUPRVgoWpVwJiAQgJl4.png?scale-down-to=512 512w,https://framerusercontent.com/images/VjgwYFlEUPRVgoWpVwJiAQgJl4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VjgwYFlEUPRVgoWpVwJiAQgJl4.png 1920w\"},className:\"framer-8pkxh0\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"KnKdkQSHB\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"163px\",src:\"https://framerusercontent.com/images/bTIDWItn3hwES4xIOhCkZB6AtU.png\",srcSet:\"https://framerusercontent.com/images/bTIDWItn3hwES4xIOhCkZB6AtU.png?scale-down-to=512 512w,https://framerusercontent.com/images/bTIDWItn3hwES4xIOhCkZB6AtU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bTIDWItn3hwES4xIOhCkZB6AtU.png 1920w\"},className:\"framer-1dtr2h4\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"I7e3gC8XE\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:611,pixelWidth:1200,sizes:\"163px\",src:\"https://framerusercontent.com/images/Z2Nzmfn2iFuFH4lL6AwizgHl0w.webp\",srcSet:\"https://framerusercontent.com/images/Z2Nzmfn2iFuFH4lL6AwizgHl0w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Z2Nzmfn2iFuFH4lL6AwizgHl0w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z2Nzmfn2iFuFH4lL6AwizgHl0w.webp 1200w\"},className:\"framer-16amxaa\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"kQFR8Cbue\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:608,pixelWidth:1080,positionX:\"right\",positionY:\"center\",sizes:\"163px\",src:\"https://framerusercontent.com/images/D45gMRJLZQcYN2UNZ1ERx6ey7ZE.jpg\",srcSet:\"https://framerusercontent.com/images/D45gMRJLZQcYN2UNZ1ERx6ey7ZE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/D45gMRJLZQcYN2UNZ1ERx6ey7ZE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/D45gMRJLZQcYN2UNZ1ERx6ey7ZE.jpg 1080w\"},className:\"framer-1h7mahh\",\"data-framer-name\":\"Single Ticker Image3\",layoutDependency:layoutDependency,layoutId:\"RvM0mA6bc\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-130ezed-container\",\"data-framer-name\":\"Ticker Dektop Bottom\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UKKwmhdn8-container\",name:\"Ticker Dektop Bottom\",nodeId:\"UKKwmhdn8\",rendersWithMotion:true,scopeId:\"d89aOn72i\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"UKKwmhdn8\",layoutId:\"UKKwmhdn8\",name:\"Ticker Dektop Bottom\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:2668,pixelWidth:2016,positionX:\"center\",positionY:\"top\",sizes:\"163px\",src:\"https://framerusercontent.com/images/j9J5Yz09c3AmyAoL1YiSL1JgsDU.jpg\",srcSet:\"https://framerusercontent.com/images/j9J5Yz09c3AmyAoL1YiSL1JgsDU.jpg?scale-down-to=1024 773w,https://framerusercontent.com/images/j9J5Yz09c3AmyAoL1YiSL1JgsDU.jpg?scale-down-to=2048 1547w,https://framerusercontent.com/images/j9J5Yz09c3AmyAoL1YiSL1JgsDU.jpg 2016w\"},className:\"framer-1ua3u7s\",\"data-framer-name\":\"Single Ticker Image1\",layoutDependency:layoutDependency,layoutId:\"sUOfP8Bgm\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:168,pixelWidth:300,src:\"https://framerusercontent.com/images/2mfBf0htYUtusmh5SqyMhkt7s.jpeg\"},className:\"framer-xki9zt\",\"data-framer-name\":\"Single Ticker Image2\",layoutDependency:layoutDependency,layoutId:\"gIZ0y1esd\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:608,pixelWidth:1080,positionX:\"right\",positionY:\"center\",sizes:\"163px\",src:\"https://framerusercontent.com/images/D45gMRJLZQcYN2UNZ1ERx6ey7ZE.jpg\",srcSet:\"https://framerusercontent.com/images/D45gMRJLZQcYN2UNZ1ERx6ey7ZE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/D45gMRJLZQcYN2UNZ1ERx6ey7ZE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/D45gMRJLZQcYN2UNZ1ERx6ey7ZE.jpg 1080w\"},className:\"framer-1h7mahh\",\"data-framer-name\":\"Single Ticker Image3\",layoutDependency:layoutDependency,layoutId:\"RvM0mA6bc\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"163px\",src:\"https://framerusercontent.com/images/H4LIg4G1Ll75XM0iOmMhx21CEQ.jpg\",srcSet:\"https://framerusercontent.com/images/H4LIg4G1Ll75XM0iOmMhx21CEQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H4LIg4G1Ll75XM0iOmMhx21CEQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/H4LIg4G1Ll75XM0iOmMhx21CEQ.jpg 1280w\"},className:\"framer-nk47yk\",\"data-framer-name\":\"Single Ticker Image5\",layoutDependency:layoutDependency,layoutId:\"lY5Gs1ZMr\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:675,pixelWidth:1200,sizes:\"163px\",src:\"https://framerusercontent.com/images/6g7O3VJEqGQAeKtU5eDLzLdAynQ.jpg\",srcSet:\"https://framerusercontent.com/images/6g7O3VJEqGQAeKtU5eDLzLdAynQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6g7O3VJEqGQAeKtU5eDLzLdAynQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6g7O3VJEqGQAeKtU5eDLzLdAynQ.jpg 1200w\"},className:\"framer-61nx98\",\"data-framer-name\":\"Single Ticker Image4\",layoutDependency:layoutDependency,layoutId:\"fSGXD29YX\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:675,pixelWidth:1200,sizes:\"163px\",src:\"https://framerusercontent.com/images/KPpcGSxmimtYKCxBFFHewiuxWE.jpg\",srcSet:\"https://framerusercontent.com/images/KPpcGSxmimtYKCxBFFHewiuxWE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KPpcGSxmimtYKCxBFFHewiuxWE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KPpcGSxmimtYKCxBFFHewiuxWE.jpg 1200w\"},className:\"framer-1oxlh23\",\"data-framer-name\":\"Single Ticker Image6\",layoutDependency:layoutDependency,layoutId:\"kdcrxkHTB\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12k93xl-container\",\"data-framer-name\":\"Ticker Tablet Top\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QHfPRfNkq-container\",name:\"Ticker Tablet Top\",nodeId:\"QHfPRfNkq\",rendersWithMotion:true,scopeId:\"d89aOn72i\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"QHfPRfNkq\",layoutId:\"QHfPRfNkq\",name:\"Ticker Tablet Top\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:783,pixelWidth:783,sizes:\"120px\",src:\"https://framerusercontent.com/images/PACK1tbktTjWUcdiRlo34voimc8.png\",srcSet:\"https://framerusercontent.com/images/PACK1tbktTjWUcdiRlo34voimc8.png?scale-down-to=512 512w,https://framerusercontent.com/images/PACK1tbktTjWUcdiRlo34voimc8.png 783w\"},className:\"framer-1hr78vb\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"dZjOPUh2r\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:784,pixelWidth:767,sizes:\"120px\",src:\"https://framerusercontent.com/images/DYrvTcU3BwCznhrlpRuHxo5OOCo.png\",srcSet:\"https://framerusercontent.com/images/DYrvTcU3BwCznhrlpRuHxo5OOCo.png 767w\"},className:\"framer-ag2s1p\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"jB8mfa2eq\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:784,pixelWidth:784,sizes:\"120px\",src:\"https://framerusercontent.com/images/PSfCOtfEBB9wWRaFuOD1wsCbXXI.png\",srcSet:\"https://framerusercontent.com/images/PSfCOtfEBB9wWRaFuOD1wsCbXXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/PSfCOtfEBB9wWRaFuOD1wsCbXXI.png 784w\"},className:\"framer-97qeu5\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"bAb86D04z\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:784,pixelWidth:784,sizes:\"120px\",src:\"https://framerusercontent.com/images/kbEVvyuDhdGSzetgzzrnLiD9LPk.png\",srcSet:\"https://framerusercontent.com/images/kbEVvyuDhdGSzetgzzrnLiD9LPk.png?scale-down-to=512 512w,https://framerusercontent.com/images/kbEVvyuDhdGSzetgzzrnLiD9LPk.png 784w\"},className:\"framer-uyahyy\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"RUu9Lvw1v\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:784,pixelWidth:783,sizes:\"120px\",src:\"https://framerusercontent.com/images/XZZV48L0LrhXv7YJmqwEnZePYI.png\",srcSet:\"https://framerusercontent.com/images/XZZV48L0LrhXv7YJmqwEnZePYI.png 783w\"},className:\"framer-1q8bhfq\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"eP2B75ePD\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:849,pixelWidth:1146,sizes:\"120px\",src:\"https://framerusercontent.com/images/e3LyNSZbIWNnJXJPeAGTCifAiQ.png\",srcSet:\"https://framerusercontent.com/images/e3LyNSZbIWNnJXJPeAGTCifAiQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/e3LyNSZbIWNnJXJPeAGTCifAiQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e3LyNSZbIWNnJXJPeAGTCifAiQ.png 1146w\"},className:\"framer-p1b4mb\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"CRGYUNGF6\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ob83he-container\",\"data-framer-name\":\"Ticker Tablet Bottom\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Bv0iJeIsP-container\",name:\"Ticker Tablet Bottom\",nodeId:\"Bv0iJeIsP\",rendersWithMotion:true,scopeId:\"d89aOn72i\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"Bv0iJeIsP\",layoutId:\"Bv0iJeIsP\",name:\"Ticker Tablet Bottom\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:783,pixelWidth:783,sizes:\"120px\",src:\"https://framerusercontent.com/images/PACK1tbktTjWUcdiRlo34voimc8.png\",srcSet:\"https://framerusercontent.com/images/PACK1tbktTjWUcdiRlo34voimc8.png?scale-down-to=512 512w,https://framerusercontent.com/images/PACK1tbktTjWUcdiRlo34voimc8.png 783w\"},className:\"framer-1hr78vb\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"dZjOPUh2r\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:784,pixelWidth:767,sizes:\"120px\",src:\"https://framerusercontent.com/images/DYrvTcU3BwCznhrlpRuHxo5OOCo.png\",srcSet:\"https://framerusercontent.com/images/DYrvTcU3BwCznhrlpRuHxo5OOCo.png 767w\"},className:\"framer-ag2s1p\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"jB8mfa2eq\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:784,pixelWidth:784,sizes:\"120px\",src:\"https://framerusercontent.com/images/PSfCOtfEBB9wWRaFuOD1wsCbXXI.png\",srcSet:\"https://framerusercontent.com/images/PSfCOtfEBB9wWRaFuOD1wsCbXXI.png?scale-down-to=512 512w,https://framerusercontent.com/images/PSfCOtfEBB9wWRaFuOD1wsCbXXI.png 784w\"},className:\"framer-97qeu5\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"bAb86D04z\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:784,pixelWidth:784,sizes:\"120px\",src:\"https://framerusercontent.com/images/kbEVvyuDhdGSzetgzzrnLiD9LPk.png\",srcSet:\"https://framerusercontent.com/images/kbEVvyuDhdGSzetgzzrnLiD9LPk.png?scale-down-to=512 512w,https://framerusercontent.com/images/kbEVvyuDhdGSzetgzzrnLiD9LPk.png 784w\"},className:\"framer-uyahyy\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"RUu9Lvw1v\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:784,pixelWidth:783,sizes:\"120px\",src:\"https://framerusercontent.com/images/XZZV48L0LrhXv7YJmqwEnZePYI.png\",srcSet:\"https://framerusercontent.com/images/XZZV48L0LrhXv7YJmqwEnZePYI.png 783w\"},className:\"framer-1q8bhfq\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"eP2B75ePD\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ticker Image\",fit:\"fill\",pixelHeight:849,pixelWidth:1146,sizes:\"120px\",src:\"https://framerusercontent.com/images/e3LyNSZbIWNnJXJPeAGTCifAiQ.png\",srcSet:\"https://framerusercontent.com/images/e3LyNSZbIWNnJXJPeAGTCifAiQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/e3LyNSZbIWNnJXJPeAGTCifAiQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e3LyNSZbIWNnJXJPeAGTCifAiQ.png 1146w\"},className:\"framer-p1b4mb\",\"data-framer-name\":\"Single Ticker Image\",layoutDependency:layoutDependency,layoutId:\"CRGYUNGF6\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jl4WK.framer-apbaao, .framer-jl4WK .framer-apbaao { display: block; }\",\".framer-jl4WK.framer-vumhoq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 342px; }\",\".framer-jl4WK .framer-1to7wve-container, .framer-jl4WK .framer-130ezed-container { flex: none; height: 700px; position: relative; width: 163px; }\",\".framer-jl4WK .framer-1gvblfg, .framer-jl4WK .framer-1svovwz, .framer-jl4WK .framer-8pkxh0, .framer-jl4WK .framer-1dtr2h4, .framer-jl4WK .framer-16amxaa, .framer-jl4WK .framer-1h7mahh, .framer-jl4WK .framer-1ua3u7s, .framer-jl4WK .framer-xki9zt, .framer-jl4WK .framer-nk47yk, .framer-jl4WK .framer-61nx98, .framer-jl4WK .framer-1oxlh23 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 163px); position: relative; width: 163px; }\",\".framer-jl4WK .framer-12k93xl-container, .framer-jl4WK .framer-1ob83he-container { flex: none; height: 600px; position: relative; width: 120px; }\",\".framer-jl4WK .framer-1hr78vb, .framer-jl4WK .framer-ag2s1p, .framer-jl4WK .framer-97qeu5, .framer-jl4WK .framer-uyahyy, .framer-jl4WK .framer-1q8bhfq, .framer-jl4WK .framer-p1b4mb { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 120px); position: relative; width: 120px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jl4WK.framer-vumhoq { gap: 0px; } .framer-jl4WK.framer-vumhoq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-jl4WK.framer-vumhoq > :first-child { margin-left: 0px; } .framer-jl4WK.framer-vumhoq > :last-child { margin-right: 0px; } }\",\".framer-jl4WK.framer-v-1fkpsvq.framer-vumhoq { gap: 10px; width: 256px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jl4WK.framer-v-1fkpsvq.framer-vumhoq { gap: 0px; } .framer-jl4WK.framer-v-1fkpsvq.framer-vumhoq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jl4WK.framer-v-1fkpsvq.framer-vumhoq > :first-child { margin-left: 0px; } .framer-jl4WK.framer-v-1fkpsvq.framer-vumhoq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 700\n * @framerIntrinsicWidth 342\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"y95dgt_3D\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerd89aOn72i=withCSS(Component,css,\"framer-jl4WK\");export default Framerd89aOn72i;Framerd89aOn72i.displayName=\"CTA/CTA Image Ticker\";Framerd89aOn72i.defaultProps={height:700,width:342};addPropertyControls(Framerd89aOn72i,{variant:{options:[\"mlqrVKDvr\",\"y95dgt_3D\"],optionTitles:[\"Desktop\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerd89aOn72i,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerd89aOn72i\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"700\",\"framerIntrinsicWidth\":\"342\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y95dgt_3D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./d89aOn72i.map","// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FormSpark from\"https://framerusercontent.com/modules/MYLmFEdDyDqIWqe3ALdQ/Jrm8rxcS8j7kcpTjZTSu/FormSpark_1_1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7Mdx6aNemTGekv6lp2bJ/Da1pwvhRJK8hHlDqt2Kg/d3PpwmUbc.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/7Puscj5p72vW8Nc8xHgu/1Mx2Bll7PC98IBCV0grU/K7GeI6ylD.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/7TCHy5XeRFYNwpDgDEFF/JzrHLNYcsAPjuC9lwWKQ/oMo7K0n9o.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/xM0s84A9CZMs97aHyX7k/OuTaRJIczhVPAxWYFQaE/rXH7XzLdi.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/uieDpzDJH0EqDF3OSIUU/X2wGmLTfUHEEsDks5vYN/WIIvlmARV.js\";import CTACTAImageTicker from\"https://framerusercontent.com/modules/66YgC966H4Lzoacg4yUU/cpcZ7NGBmVB95FRDZjlr/d89aOn72i.js\";const RichTextWithFX=withFX(RichText);const FormSparkFonts=getFonts(FormSpark);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const CTACTAImageTickerFonts=getFonts(CTACTAImageTicker);const cycleOrder=[\"Z2P9zHLab\",\"Qx4N2UIuE\",\"npOxoqfhM\"];const serializationHash=\"framer-JdGNF\";const variantClassNames={npOxoqfhM:\"framer-v-19lll9l\",Qx4N2UIuE:\"framer-v-lu98yv\",Z2P9zHLab:\"framer-v-yonf6j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition2={damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"};const transition3={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition4={damping:40,delay:.2,mass:1,stiffness:160,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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={Desktop:\"Z2P9zHLab\",Phone:\"npOxoqfhM\",Tablet:\"Qx4N2UIuE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Z2P9zHLab\"};};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:\"Z2P9zHLab\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-yonf6j\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Z2P9zHLab\",ref:refBinding,style:{...style},...addPropertyOverrides({npOxoqfhM:{\"data-framer-name\":\"Phone\"},Qx4N2UIuE:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lgwcpr\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"j9wMe6dwp\",style:{background:\"linear-gradient(115deg, var(--token-82a3dd80-2d8f-4025-ac03-86f3653656e2, rgb(24, 24, 29)) 0%, var(--token-2dd6e37a-a7a8-455b-b48f-86c8b693b8f9, rgb(168, 82, 255)) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-visnps\",\"data-framer-name\":\"Content Left\",layoutDependency:layoutDependency,layoutId:\"M3SCl3Kw3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-we3r2e\",\"data-framer-name\":\"Title Wrapper\",layoutDependency:layoutDependency,layoutId:\"cMzSAOyJ_\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dbgio2\",\"data-styles-preset\":\"d3PpwmUbc\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Join our Newsletter \"})})}),className:\"framer-ol1d11\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"WlpgekhZo\",style:{\"--extracted-a0htzi\":\"var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1vhdlwo\",\"data-styles-preset\":\"WIIvlmARV\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:[\"Join the StreaMix newsletter and get the best of Connected TV – straight to your inbox.\",/*#__PURE__*/_jsx(motion.br,{}),\"New channels, exclusive content, and streaming tips tailored just for you.\"]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vhdlwo\",\"data-styles-preset\":\"WIIvlmARV\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:\"No spam. Just great stuff to watch.\"}),/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1xpyooz\",\"data-styles-preset\":\"rXH7XzLdi\",children:[/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1auwcjk, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Sign up now and start streaming smarter.\"})})]})]}),className:\"framer-343axj\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"x3Z0v_2iR\",style:{\"--extracted-1auwcjk\":\"var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255))\",\"--extracted-2gxw0f\":\"var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{npOxoqfhM:{\"--extracted-1w3ko1f\":\"var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255))\",\"--extracted-c9yw3e\":\"var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255))\"},Qx4N2UIuE:{\"--extracted-1w3ko1f\":\"var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255))\",\"--extracted-c9yw3e\":\"var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({npOxoqfhM:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-eetc9t\",\"data-styles-preset\":\"K7GeI6ylD\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:\"Join the StreaMix newsletter and get the best of Connected TV – straight to your inbox.\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:\"New channels, exclusive content, and streaming tips tailored just for you.\"})]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eetc9t\",\"data-styles-preset\":\"K7GeI6ylD\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:\"No spam. Just great stuff to watch.\"}),/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-eetc9t\",\"data-styles-preset\":\"K7GeI6ylD\",children:[/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1auwcjk, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Sign up now and start streaming smarter.\"})})]})]})},Qx4N2UIuE:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-7hqf23\",\"data-styles-preset\":\"oMo7K0n9o\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:\"Join the StreaMix newsletter and get the best of Connected TV – straight to your inbox.\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:\"New channels, exclusive content, and streaming tips tailored just for you.\"})]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7hqf23\",\"data-styles-preset\":\"oMo7K0n9o\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:\"No spam. Just great stuff to watch.\"}),/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-7hqf23\",\"data-styles-preset\":\"oMo7K0n9o\",children:[/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1auwcjk, var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Sign up now and start streaming smarter.\"})})]})]})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1g2vns5-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"bVtsfaaXY-container\",nodeId:\"bVtsfaaXY\",rendersWithMotion:true,scopeId:\"lqcS1agg6\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,button:{color:\"var(--token-2dd6e37a-a7a8-455b-b48f-86c8b693b8f9, rgb(130, 84, 255))\",fill:\"var(--token-fe3cc41d-b9a5-4999-8ba2-569c2eb69072, rgb(255, 255, 255))\",fontWeight:600,label:\"Submit\"},email:{placeholder:\"Email\",value:\"\"},font:true,fontFamily:\"ubunto\",fontSize:16,fontWeight:400,formId:\"31AOZ35GG\",gap:15,height:\"100%\",id:\"bVtsfaaXY\",inputs:{color:\"rgb(255, 255, 255)\",error:\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(238, 68, 68))\",fill:\"var(--token-5c5d4a57-d997-4dca-adaf-80eb01c68912, rgba(255, 255, 255, 0.16))\",placeholderColor:\"rgb(255, 255, 255)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"bVtsfaaXY\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,width:\"100%\",withEmail:true,withMessage:false,withName:false})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1942beq\",\"data-framer-name\":\"Ticker Wrapper\",layoutDependency:layoutDependency,layoutId:\"LE7BWp3jI\",transformTemplate:transformTemplate1,...addPropertyOverrides({npOxoqfhM:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"342px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||492.5)-0-717.4)/2+0+0)+7.848+0,...addPropertyOverrides({npOxoqfhM:{width:undefined,y:(componentViewport?.y||0)+0+(((componentViewport?.height||915)-0-1009.4)/2+0+0)+0+609.4+-150},Qx4N2UIuE:{width:undefined,y:(componentViewport?.y||0)+0+(((componentViewport?.height||542)-0-654.4)/2+0+0)+-24.4779+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sf0akt-container\",layoutDependency:layoutDependency,layoutId:\"y9ZK91Z56-container\",nodeId:\"y9ZK91Z56\",rendersWithMotion:true,scopeId:\"lqcS1agg6\",style:{rotate:-23},children:/*#__PURE__*/_jsx(CTACTAImageTicker,{height:\"100%\",id:\"y9ZK91Z56\",layoutId:\"y9ZK91Z56\",style:{width:\"100%\"},variant:\"mlqrVKDvr\",width:\"100%\",...addPropertyOverrides({Qx4N2UIuE:{variant:\"y95dgt_3D\"}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JdGNF.framer-1bhdi5n, .framer-JdGNF .framer-1bhdi5n { display: block; }\",\".framer-JdGNF.framer-yonf6j { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1440px; }\",\".framer-JdGNF .framer-1lgwcpr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdGNF .framer-visnps { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 56px 0px 56px 100px; position: relative; width: 1400px; }\",\".framer-JdGNF .framer-we3r2e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JdGNF .framer-ol1d11 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JdGNF .framer-343axj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 610px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdGNF .framer-1g2vns5-container { flex: none; height: 60px; max-width: 600px; position: relative; width: 470px; }\",\".framer-JdGNF .framer-1942beq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 50px; top: 50%; width: min-content; z-index: 1; }\",\".framer-JdGNF .framer-1sf0akt-container { flex: none; height: auto; position: relative; width: 342px; z-index: 1; }\",\".framer-JdGNF.framer-v-lu98yv.framer-yonf6j { width: 768px; }\",\".framer-JdGNF.framer-v-lu98yv .framer-1lgwcpr { gap: 48px; }\",\".framer-JdGNF.framer-v-lu98yv .framer-visnps { gap: 24px; padding: 50px 0px 50px 40px; width: 385px; }\",\".framer-JdGNF.framer-v-lu98yv .framer-we3r2e, .framer-JdGNF.framer-v-19lll9l .framer-we3r2e { gap: 16px; }\",\".framer-JdGNF.framer-v-lu98yv .framer-343axj, .framer-JdGNF.framer-v-19lll9l .framer-343axj { width: 100%; }\",\".framer-JdGNF.framer-v-lu98yv .framer-1g2vns5-container { width: 350px; }\",\".framer-JdGNF.framer-v-lu98yv .framer-1942beq { right: 0px; top: 50%; }\",\".framer-JdGNF.framer-v-lu98yv .framer-1sf0akt-container, .framer-JdGNF.framer-v-19lll9l .framer-1sf0akt-container { width: auto; }\",\".framer-JdGNF.framer-v-19lll9l.framer-yonf6j { padding: 0px 20px 0px 20px; width: 390px; }\",\".framer-JdGNF.framer-v-19lll9l .framer-1lgwcpr { flex-direction: column; gap: 0px; }\",\".framer-JdGNF.framer-v-19lll9l .framer-visnps { gap: 24px; padding: 60px 20px 40px 20px; width: 100%; }\",\".framer-JdGNF.framer-v-19lll9l .framer-1g2vns5-container { width: 300px; }\",\".framer-JdGNF.framer-v-19lll9l .framer-1942beq { height: 400px; overflow: hidden; position: relative; right: unset; top: unset; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 492.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Qx4N2UIuE\":{\"layout\":[\"fixed\",\"auto\"]},\"npOxoqfhM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerlqcS1agg6=withCSS(Component,css,\"framer-JdGNF\");export default FramerlqcS1agg6;FramerlqcS1agg6.displayName=\"CTA/CTA Section\";FramerlqcS1agg6.defaultProps={height:492.5,width:1440};addPropertyControls(FramerlqcS1agg6,{variant:{options:[\"Z2P9zHLab\",\"Qx4N2UIuE\",\"npOxoqfhM\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlqcS1agg6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...FormSparkFonts,...CTACTAImageTickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlqcS1agg6\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Qx4N2UIuE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"npOxoqfhM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"492.5\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (400c93f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Ubuntu-700\",\"GF;Ubuntu-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Ubuntu\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTsmaMH4V_gg.woff2\",weight:\"700\"},{family:\"Ubuntu\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyNPYBvgpUI.woff2\",weight:\"700\"}]}];export const css=[\".framer-CkzVC .framer-styles-preset-1loulfx:not(.rich-text-wrapper), .framer-CkzVC .framer-styles-preset-1loulfx.rich-text-wrapper h1 { --framer-font-family: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-9e4e34d1-0902-463f-b1c9-1d54c78b8c5c, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 810px) { .framer-CkzVC .framer-styles-preset-1loulfx:not(.rich-text-wrapper), .framer-CkzVC .framer-styles-preset-1loulfx.rich-text-wrapper h1 { --framer-font-family: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-9e4e34d1-0902-463f-b1c9-1d54c78b8c5c, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 0px) { .framer-CkzVC .framer-styles-preset-1loulfx:not(.rich-text-wrapper), .framer-CkzVC .framer-styles-preset-1loulfx.rich-text-wrapper h1 { --framer-font-family: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-9e4e34d1-0902-463f-b1c9-1d54c78b8c5c, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-CkzVC\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}