{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/FAfJyzDyuCEGyEIVlf9j/AxYlXZdjfqfvjoEZMuTx/Dy996kWTg.js", "ssg:https://framerusercontent.com/modules/hkWibq4fuVysqtWsKuux/Zs1ch6bQKV2uCDrdDlSB/oaHUsDcTv.js", "ssg:https://framerusercontent.com/modules/ton9QxbqahHuPV0XEqVs/b6CMVRmt5j3LS4BN8HDl/r25Vep6fr.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (24d49ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"KkdMP6et5\",\"C0FIreWJw\"];const serializationHash=\"framer-XhJiP\";const variantClassNames={C0FIreWJw:\"framer-v-cztaaz\",KkdMP6et5:\"framer-v-1p3v028\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"KkdMP6et5\",\"Variant 2\":\"C0FIreWJw\"};const getProps=({background,height,id,link,showReadMore,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,gMBePXQhy:(_ref=background!==null&&background!==void 0?background:props.gMBePXQhy)!==null&&_ref!==void 0?_ref:\"var(--token-578c500e-4b55-4424-b32d-8e80632174d3, rgb(255, 191, 0))\",huKQlqxfG:(_ref1=title!==null&&title!==void 0?title:props.huKQlqxfG)!==null&&_ref1!==void 0?_ref1:\"Read More\",mzNCF_7mK:(_ref2=showReadMore!==null&&showReadMore!==void 0?showReadMore:props.mzNCF_7mK)!==null&&_ref2!==void 0?_ref2:true,Q314MJfCv:(_ref3=text!==null&&text!==void 0?text:props.Q314MJfCv)!==null&&_ref3!==void 0?_ref3:\"ROSTR is out of BETA\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"KkdMP6et5\",WHlRZQpvJ:link!==null&&link!==void 0?link:props.WHlRZQpvJ};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Q314MJfCv,huKQlqxfG,WHlRZQpvJ,gMBePXQhy,mzNCF_7mK,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KkdMP6et5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:WHlRZQpvJ,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1p3v028\",className,classNames)} framer-1g0vkm3`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"KkdMP6et5\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:gMBePXQhy,borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{C0FIreWJw:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-578c500e-4b55-4424-b32d-8e80632174d3, rgb(255, 191, 0))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({C0FIreWJw:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, rgb(255, 255, 255)))\"},children:\"Announcing our next round of funding.\"})}),className:\"framer-i5ndn5\",\"data-framer-name\":\"Announcing our next round of funding.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TqLBWsDW2\",style:{\"--extracted-r6o4lv\":\"var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, rgb(255, 255, 255))\"},text:Q314MJfCv,variants:{C0FIreWJw:{\"--extracted-r6o4lv\":\"var(--token-4801c346-781b-444c-845e-4b5973f9d068, rgb(1, 21, 41))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({C0FIreWJw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4801c346-781b-444c-845e-4b5973f9d068, rgb(1, 21, 41)))\"},children:\"ROSTR is out of BETA\"})})}},baseVariant,gestureVariant)}),mzNCF_7mK&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-od19un\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"vI9S8MDK0\",children:mzNCF_7mK&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.28px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, rgb(255, 255, 255)))\"},children:\"Read More\"})}),className:\"framer-10xjbwr\",\"data-framer-name\":\"Read More\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"xJ4mTf2tM\",style:{\"--extracted-r6o4lv\":\"var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, rgb(255, 255, 255))\"},text:huKQlqxfG,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19tvj7v\",layoutDependency:layoutDependency,layoutId:\"gGHbvqV_9\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19xcnsd\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"RoaNUUXaQ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16k3lpn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"Z6UlepmpE\",svg:'<svg width=\"13\" height=\"12\" viewBox=\"0 0 13 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.636 0.855986C7.57437 0.791391 7.50039 0.739834 7.41845 0.704374C7.33651 0.668914 7.24829 0.650273 7.15901 0.649558C7.06973 0.648842 6.98122 0.666066 6.89873 0.700208C6.81623 0.73435 6.74143 0.784715 6.67877 0.848313C6.61611 0.911911 6.56687 0.987448 6.53395 1.07044C6.50104 1.15343 6.48513 1.24219 6.48717 1.33145C6.48922 1.42071 6.50917 1.50865 6.54584 1.59005C6.58251 1.67145 6.63516 1.74465 6.70067 1.80532L10.28 5.33332H1.16667C0.989856 5.33332 0.820286 5.40356 0.695262 5.52858C0.570238 5.65361 0.5 5.82317 0.5 5.99999C0.5 6.1768 0.570238 6.34637 0.695262 6.47139C0.820286 6.59642 0.989856 6.66665 1.16667 6.66665H10.2767L6.7 10.19C6.5804 10.3153 6.5143 10.4823 6.51569 10.6555C6.51708 10.8288 6.58585 10.9947 6.70744 11.1181C6.82903 11.2415 6.99389 11.3127 7.16709 11.3167C7.34029 11.3207 7.50823 11.257 7.63533 11.1393L12.252 6.59132C12.3306 6.51379 12.393 6.42142 12.4356 6.31956C12.4782 6.2177 12.5002 6.10839 12.5002 5.99799C12.5002 5.88758 12.4782 5.77827 12.4356 5.67641C12.393 5.57455 12.3306 5.48218 12.252 5.40465L7.63533 0.855986H7.636Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XhJiP.framer-1g0vkm3, .framer-XhJiP .framer-1g0vkm3 { display: block; }\",\".framer-XhJiP.framer-1p3v028 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 28px; justify-content: flex-start; overflow: hidden; padding: 4px 12px 4px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-XhJiP .framer-i5ndn5, .framer-XhJiP .framer-10xjbwr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XhJiP .framer-od19un { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-XhJiP .framer-19tvj7v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 17px; }\",\".framer-XhJiP .framer-19xcnsd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XhJiP .framer-16k3lpn { flex: none; height: 10px; position: relative; width: 11px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XhJiP.framer-1p3v028, .framer-XhJiP .framer-od19un, .framer-XhJiP .framer-19tvj7v, .framer-XhJiP .framer-19xcnsd { gap: 0px; } .framer-XhJiP.framer-1p3v028 > *, .framer-XhJiP .framer-od19un > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XhJiP.framer-1p3v028 > :first-child, .framer-XhJiP .framer-od19un > :first-child, .framer-XhJiP .framer-19tvj7v > :first-child, .framer-XhJiP .framer-19xcnsd > :first-child { margin-left: 0px; } .framer-XhJiP.framer-1p3v028 > :last-child, .framer-XhJiP .framer-od19un > :last-child, .framer-XhJiP .framer-19tvj7v > :last-child, .framer-XhJiP .framer-19xcnsd > :last-child { margin-right: 0px; } .framer-XhJiP .framer-19tvj7v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XhJiP .framer-19xcnsd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",'.framer-XhJiP[data-border=\"true\"]::after, .framer-XhJiP [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 259\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"C0FIreWJw\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"Q314MJfCv\":\"text\",\"huKQlqxfG\":\"title\",\"WHlRZQpvJ\":\"link\",\"gMBePXQhy\":\"background\",\"mzNCF_7mK\":\"showReadMore\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDy996kWTg=withCSS(Component,css,\"framer-XhJiP\");export default FramerDy996kWTg;FramerDy996kWTg.displayName=\"Cards/Announcement Copy\";FramerDy996kWTg.defaultProps={height:28,width:259};addPropertyControls(FramerDy996kWTg,{variant:{options:[\"KkdMP6et5\",\"C0FIreWJw\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},Q314MJfCv:{defaultValue:\"ROSTR is out of BETA\",displayTextArea:false,title:\"Text\",type:ControlType.String},huKQlqxfG:{defaultValue:\"Read More\",displayTextArea:false,title:\"Title\",type:ControlType.String},WHlRZQpvJ:{title:\"Link\",type:ControlType.Link},gMBePXQhy:{defaultValue:'var(--token-578c500e-4b55-4424-b32d-8e80632174d3, rgb(255, 191, 0)) /* {\"name\":\"Yellow\"} */',title:\"Background\",type:ControlType.Color},mzNCF_7mK:{defaultValue:true,title:\"Show read more\",type:ControlType.Boolean}});addFonts(FramerDy996kWTg,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.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://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDy996kWTg\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"28\",\"framerVariables\":\"{\\\"Q314MJfCv\\\":\\\"text\\\",\\\"huKQlqxfG\\\":\\\"title\\\",\\\"WHlRZQpvJ\\\":\\\"link\\\",\\\"gMBePXQhy\\\":\\\"background\\\",\\\"mzNCF_7mK\\\":\\\"showReadMore\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"C0FIreWJw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"259\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dy996kWTg.map", "// Generated by Framer (7aa0232)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"OVvkQTUrN\"];const variantClassNames={OVvkQTUrN:\"framer-v-12tbwf7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,image,width,...props})=>{var ref;return{...props,walL1euqR:(ref=image!==null&&image!==void 0?image:props.walL1euqR)!==null&&ref!==void 0?ref:{src:new URL(\"assets/512/hipNWvfI5vn3PlWNovK1gBGZfIA.jpg\",\"https://framerusercontent.com/modules/hkWibq4fuVysqtWsKuux/Zs1ch6bQKV2uCDrdDlSB/oaHUsDcTv.js\").href,srcSet:`${new URL(\"assets/512/hipNWvfI5vn3PlWNovK1gBGZfIA.jpg\",\"https://framerusercontent.com/modules/hkWibq4fuVysqtWsKuux/Zs1ch6bQKV2uCDrdDlSB/oaHUsDcTv.js\").href} 409w, ${new URL(\"assets/1024/hipNWvfI5vn3PlWNovK1gBGZfIA.jpg\",\"https://framerusercontent.com/modules/hkWibq4fuVysqtWsKuux/Zs1ch6bQKV2uCDrdDlSB/oaHUsDcTv.js\").href} 819w, ${new URL(\"assets/hipNWvfI5vn3PlWNovK1gBGZfIA.jpg\",\"https://framerusercontent.com/modules/hkWibq4fuVysqtWsKuux/Zs1ch6bQKV2uCDrdDlSB/oaHUsDcTv.js\").href} 1440w`}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,walL1euqR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"OVvkQTUrN\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-15TUY\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(Image,{...restProps,background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:720,pixelHeight:1800,pixelWidth:1440,sizes:\"min(150px, 100vw)\",...toResponsiveImage(walL1euqR)},className:cx(\"framer-12tbwf7\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"OVvkQTUrN\",ref:ref,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 22px 24px 0px rgba(0, 0, 0, 0.1)\",...style}})})})});});const css=['.framer-15TUY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-15TUY .framer-1790oj3 { display: block; }\",\".framer-15TUY .framer-12tbwf7 { height: 188px; overflow: visible; position: relative; width: 150px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 187.5\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"walL1euqR\":\"image\"}\n */ const FrameroaHUsDcTv=withCSS(Component,css,\"framer-15TUY\");export default FrameroaHUsDcTv;FrameroaHUsDcTv.displayName=\"Team Info/Data Asset\";FrameroaHUsDcTv.defaultProps={height:187.5,width:150};addPropertyControls(FrameroaHUsDcTv,{walL1euqR:{__defaultAssetReference:\"data:framer/asset-reference,hipNWvfI5vn3PlWNovK1gBGZfIA.jpg?originalFilename=82148232_187174132394331_319957234883148002_n.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FrameroaHUsDcTv,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroaHUsDcTv\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"150\",\"framerVariables\":\"{\\\"walL1euqR\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"187.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oaHUsDcTv.map", "// Generated by Framer (66c1c8d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/LPTFCIP00KeG4YaFsoNu/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import HeaderNavigation from\"#framer/local/canvasComponent/aJeZuTaMj/aJeZuTaMj.js\";import H2FeedPost from\"#framer/local/canvasComponent/b5gyElRjY/b5gyElRjY.js\";import ButtonsMain from\"#framer/local/canvasComponent/c9_WEV8sU/c9_WEV8sU.js\";import BlockCaption from\"#framer/local/canvasComponent/C9LUYhJNu/C9LUYhJNu.js\";import FeaturesNMCard from\"#framer/local/canvasComponent/dKOMC8J08/dKOMC8J08.js\";import CardsAnnouncementCopy from\"#framer/local/canvasComponent/Dy996kWTg/Dy996kWTg.js\";import CardsTestimonial from\"#framer/local/canvasComponent/eMXT7ppyB/eMXT7ppyB.js\";import FeaturesDiscoBarBlock from\"#framer/local/canvasComponent/I3Qc5wPHH/I3Qc5wPHH.js\";import FeaturesTeamInfo from\"#framer/local/canvasComponent/k5dtjCVMs/k5dtjCVMs.js\";import TeamInfoPopUp from\"#framer/local/canvasComponent/npAEOsIuJ/npAEOsIuJ.js\";import TeamInfoDataAsset from\"#framer/local/canvasComponent/oaHUsDcTv/oaHUsDcTv.js\";import UseCasesFeatureHeader from\"#framer/local/canvasComponent/OrOpMO_l9/OrOpMO_l9.js\";import FeaturesRoster from\"#framer/local/canvasComponent/rmHQNXicV/rmHQNXicV.js\";import FeaturesDiscover from\"#framer/local/canvasComponent/ro5DKdOHT/ro5DKdOHT.js\";import FeaturesSectionHeader from\"#framer/local/canvasComponent/T1HP1LwfZ/T1HP1LwfZ.js\";import BlockFooter from\"#framer/local/canvasComponent/vjSwed9F8/vjSwed9F8.js\";import FeaturesDiscoverCompanies from\"#framer/local/canvasComponent/vP2BSHnRi/vP2BSHnRi.js\";import FeaturesIconText from\"#framer/local/canvasComponent/xoo2YIBgq/xoo2YIBgq.js\";import Feed from\"#framer/local/collection/Xlfeo__72/Xlfeo__72.js\";import*as sharedStyle1 from\"#framer/local/css/hDlPrJs9C/hDlPrJs9C.js\";import*as sharedStyle2 from\"#framer/local/css/oEQ4QcUCX/oEQ4QcUCX.js\";import*as sharedStyle3 from\"#framer/local/css/Wfgi1JpQG/Wfgi1JpQG.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/r25Vep6fr/r25Vep6fr.js\";const HeaderNavigationFonts=getFonts(HeaderNavigation);const ParticlesFonts=getFonts(Particles);const CardsAnnouncementCopyFonts=getFonts(CardsAnnouncementCopy);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonsMainFonts=getFonts(ButtonsMain);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const FeaturesSectionHeaderFonts=getFonts(FeaturesSectionHeader);const ContainerWithFX=withFX(Container);const CardsTestimonialFonts=getFonts(CardsTestimonial);const FeaturesIconTextFonts=getFonts(FeaturesIconText);const FeaturesTeamInfoFonts=getFonts(FeaturesTeamInfo);const MotionDivWithFX=withFX(motion.div);const TeamInfoPopUpFonts=getFonts(TeamInfoPopUp);const FeaturesRosterFonts=getFonts(FeaturesRoster);const FeaturesDiscoverFonts=getFonts(FeaturesDiscover);const FeaturesDiscoverCompaniesFonts=getFonts(FeaturesDiscoverCompanies);const H2FeedPostFonts=getFonts(H2FeedPost);const FeaturesNMCardFonts=getFonts(FeaturesNMCard);const FeaturesDiscoBarBlockFonts=getFonts(FeaturesDiscoBarBlock);const UseCasesFeatureHeaderFonts=getFonts(UseCasesFeatureHeader);const ImageWithFX=withFX(Image);const EmbedFonts=getFonts(Embed);const YouTubeFonts=getFonts(YouTube);const TeamInfoDataAssetFonts=getFonts(TeamInfoDataAsset);const BlockCaptionFonts=getFonts(BlockCaption);const BlockFooterFonts=getFonts(BlockFooter);const breakpoints={D2mEDQipv:\"(min-width: 1200px)\",fVkRNHvtQ:\"(max-width: 767px)\",ITR_cxQOB:\"(min-width: 768px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fcUdC\";const variantClassNames={D2mEDQipv:\"framer-v-31z8w5\",fVkRNHvtQ:\"framer-v-hsocl6\",ITR_cxQOB:\"framer-v-f0zuci\"};const transition1={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation2={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:40,delay:.075,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation2,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={damping:30,delay:1.5,mass:1,stiffness:71,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={delay:2.5,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition5={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:-150,y:0};const animation8={opacity:0,rotate:0,rotateX:10,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition6={damping:30,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition7={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:-150,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"vK4z6eTYH\":return\"ukarn2VVz\";case\"TA9m0HrZG\":return\"i7cPbBWti\";case\"gx2RrV36_\":return\"ezYpsOj_3\";case\"cxQk4gDpo\":return\"iffJlaEuR\";case\"mO6m9hIRy\":return\"jskWIdAcG\";case\"GGXP_hpEv\":return\"Ej85AP97H\";default:return\"ezYpsOj_3\";}};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"r238U67yf\";}else{return\"wEbFjkbL8\";}};const convertFromBoolean1=(value,activeLocale)=>{if(value){return\"ucb96czER\";}else{return\"x6X_pmIBI\";}};const convertFromBoolean2=(value,activeLocale)=>{if(value){return\"San9eoNUY\";}else{return\"xuxJpSmSL\";}};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"q8HL4TAMt\":return\"HUrNwDeku\";case\"tB_OCNreW\":return\"WAPp803jv\";case\"cuGKhHsEZ\":return\"igEE10IKS\";case\"TG_J6xXBz\":return\"nHurHO1YV\";case\"NiGnakrPd\":return\"jYA8NCqJR\";default:return\"WAPp803jv\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition8={damping:30,delay:0,mass:1,stiffness:80,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:30,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"D2mEDQipv\",Phone:\"fVkRNHvtQ\",Tablet:\"ITR_cxQOB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"D2mEDQipv\"};};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,lliPjmSM5uPucEHaes,RNADz6iaJuPucEHaes,ZLZw4Yt2iuPucEHaes,vdN5fu8omuPucEHaes,mpV86c0EFuPucEHaes,X8XhKXStIuPucEHaes,HhKq8tlB_uPucEHaes,nNxm1XeVRuPucEHaes,wHW9yqwAGuPucEHaes,Lzsy4vSF0uPucEHaes,S0xyrQVtKuPucEHaes,oUW4gFqvtuPucEHaes,nfuqEt_e4uPucEHaes,IjR0r2bC8uPucEHaes,QJJIuFY2duPucEHaes,A3w7EpiJ0uPucEHaes,p8djPFn9auPucEHaes,s8DgLV8nUuPucEHaes,dHJEHoGRZuPucEHaes,bmT7qMABbuPucEHaes,Tc5fcRB_vuPucEHaes,imFBNfn_SuPucEHaes,FNvXgU6BKuPucEHaes,JV4HvhehGuPucEHaes,wSN7AiAd4uPucEHaes,obc7Zl24YuPucEHaes,zkKqGf5WRuPucEHaes,QJBuD99KouPucEHaes,RreGDs82EuPucEHaes,AsAmSLprluPucEHaes,KmUCqfdTouPucEHaes,TOYj5P30JuPucEHaes,e9vF7jZwpuPucEHaes,TpwqwcMoJuPucEHaes,IRD4hQcoBuPucEHaes,Dq0IBG9DouPucEHaes,S5gtB9yhYuPucEHaes,vXT9qOR0UuPucEHaes,C6VyAD7IuuPucEHaes,h_uo5P32GuPucEHaes,S7uUBYcIhuPucEHaes,G0OFlOf1ruPucEHaes,iduPucEHaes,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"fVkRNHvtQ\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"oPgZ_05e6\");const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"ITR_cxQOB\",\"fVkRNHvtQ\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"vYkA1rCtM\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"iYuhfJMvX\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"kGAmnL88v\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"Z70w_K9ju\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"Zi2sQrFo9\");const ref6=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ITR_cxQOB\")return true;return false;};const elementId6=useRouteElementId(\"SZbfBdUc3\");const ref7=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"ITR_cxQOB\")return false;return true;};const elementId7=useRouteElementId(\"JX7bogYvm\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"SYauYN7qT\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"PFuQzbQ9a\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"Ud3ftJqUi\");const ref11=React.useRef(null);const elementId11=useRouteElementId(\"mEMdlqymo\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"Sg63F6GGP\");const ref13=React.useRef(null);const elementId13=useRouteElementId(\"sZIS2LEvX\");const ref14=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"D2mEDQipv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:'html body { background: radial-gradient(50% 5.3% at 50% 0%, var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, rgb(255, 255, 255)) /* {\"name\":\"White\"} */ 0%, hsl(0, 0%, 100%) 100%); }'}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-31z8w5\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.95)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-s02i0o-container\",\"data-framer-name\":\"Navigation\",name:\"Navigation\",nodeId:\"BahEworIh\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"eCfIbCdGP\"}},children:/*#__PURE__*/_jsx(HeaderNavigation,{G4SjlGlzk:\"Post a job for free\",height:\"100%\",id:\"BahEworIh\",layoutId:\"BahEworIh\",n9QJe0HMI:\"View Jobs\",name:\"Navigation\",style:{width:\"100%\"},URw6scVrK:\"var(--token-4801c346-781b-444c-845e-4b5973f9d068, rgb(1, 21, 41))\",variant:\"je2sB4Q4s\",width:\"100%\",XVxeWRFCn:\"zlNU0FgUc\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y20yr5-container hidden-hsocl6\",\"data-framer-name\":\"Galaxy\",isAuthoredByUser:true,isModuleExternal:true,name:\"Galaxy\",nodeId:\"I2gD4nPb2\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:true,clickModes:\"push\"},color:\"rgb(255, 255, 255)\",colors:[\"rgb(0, 153, 255)\",\"rgb(255, 191, 0)\",\"rgb(4, 200, 184)\",\"rgb(96, 53, 253)\",\"rgb(209, 21, 127)\"],densityOptions:{densityArea:1440,densityEnable:false,densityFactor:50},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:20,hoverModes:\"connect\",hoverParallax:false,hoverSmooth:10},id:\"I2gD4nPb2\",layoutId:\"I2gD4nPb2\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:0},moveOptions:{moveAttractDistance:100,moveAttractEnabled:true,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"out\",moveRandom:false,moveSpeed:.5,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:5,moveTrailEnabled:false,moveVibrate:false},name:\"Galaxy\",number:50,opacityOptions:{opacity:.7,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"home-1\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:2,sizeMax:4,sizeMin:1,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p9mpic\",\"data-framer-name\":\"1\uFE0F\u20E3 Site Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6wgrr6\",\"data-framer-name\":\"2\uFE0F\u20E3 Headlines\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p9nnz3\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{OR7O3GpNb:\"introducing-the-rostr-app-for-iphone\"},unresolvedPathSlugs:{OR7O3GpNb:{collectionId:\"LD7Kl8rMH\",collectionItemId:\"BDdV_IXYp\"}},webPageId:\"pLkkP3lrL\"},implicitPathVariables:undefined},{href:{pathVariables:{OR7O3GpNb:\"introducing-the-rostr-app-for-iphone\"},unresolvedPathSlugs:{OR7O3GpNb:{collectionId:\"LD7Kl8rMH\",collectionItemId:\"BDdV_IXYp\"}},webPageId:\"pLkkP3lrL\"},implicitPathVariables:undefined},{href:{pathVariables:{OR7O3GpNb:\"introducing-the-rostr-app-for-iphone\"},unresolvedPathSlugs:{OR7O3GpNb:{collectionId:\"LD7Kl8rMH\",collectionItemId:\"BDdV_IXYp\"}},webPageId:\"pLkkP3lrL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-o92qyl-container\",\"data-framer-appear-id\":\"o92qyl\",initial:animation1,nodeId:\"R1ecFXeCT\",optimized:true,rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{huKQlqxfG:\"Details\",WHlRZQpvJ:resolvedLinks[2]},ITR_cxQOB:{WHlRZQpvJ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(CardsAnnouncementCopy,{gMBePXQhy:\"rgba(0, 0, 0, 0.85)\",height:\"100%\",huKQlqxfG:\"Read More\",id:\"R1ecFXeCT\",layoutId:\"R1ecFXeCT\",mzNCF_7mK:false,Q314MJfCv:\"\uD83D\uDCF2  Introducing ROSTR for iPhone\",variant:\"KkdMP6et5\",WHlRZQpvJ:resolvedLinks[0],width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{OR7O3GpNb:\"say-hi-to-radar-powerful-people-search-for-the-music-industry\"},unresolvedPathSlugs:{OR7O3GpNb:{collectionId:\"LD7Kl8rMH\",collectionItemId:\"LbOS6gpoK\"}},webPageId:\"pLkkP3lrL\"},implicitPathVariables:undefined},{href:{pathVariables:{OR7O3GpNb:\"say-hi-to-radar-powerful-people-search-for-the-music-industry\"},unresolvedPathSlugs:{OR7O3GpNb:{collectionId:\"LD7Kl8rMH\",collectionItemId:\"LbOS6gpoK\"}},webPageId:\"pLkkP3lrL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1dsr7yd-container hidden-hsocl6\",\"data-framer-appear-id\":\"1dsr7yd\",initial:animation1,nodeId:\"lRQeR7B88\",optimized:true,rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{WHlRZQpvJ:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(CardsAnnouncementCopy,{gMBePXQhy:\"var(--token-722e3869-59b2-4501-83cf-83a8c6bb76eb, rgb(98, 54, 255))\",height:\"100%\",huKQlqxfG:\"Read More\",id:\"lRQeR7B88\",layoutId:\"lRQeR7B88\",mzNCF_7mK:false,Q314MJfCv:\"\uD83D\uDCE1  Introducing Radar\",variant:\"KkdMP6et5\",WHlRZQpvJ:resolvedLinks1[0],width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Music industry directory, \",/*#__PURE__*/_jsx(\"br\",{}),\"contacts, data & jobs\"]})}),className:\"framer-1rpb0sm\",\"data-framer-name\":\"Headline\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ao8eaa\",\"data-styles-preset\":\"hDlPrJs9C\",style:{\"--framer-text-alignment\":\"left\"},children:\"ROSTR makes life easier for tens of thousands of music industry professionals. Artist contacts, audience insights, company rosters, signings, tours, festivals, jobs and much more.\"})}),className:\"framer-1agiuz5\",\"data-framer-appear-id\":\"1agiuz5\",\"data-framer-name\":\"Subhead\",fonts:[\"Inter\"],initial:animation4,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1fqe6o8\",\"data-framer-appear-id\":\"1fqe6o8\",initial:animation4,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1azohv4-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"jfJHieWjt\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"RTmYdjGpZ\"}},children:/*#__PURE__*/_jsx(ButtonsMain,{bj7l6Hqmg:\"Get Started (for free)\",DnSxRkGP7:\"House\",dW__DtE4y:\"Button Text\",fUpw1w_ci:\"https://www.rostr.cc/sign-in/new-user?utm_source=hq&utm_medium=web&utm_content=home-site-title\",height:\"100%\",id:\"jfJHieWjt\",layoutId:\"jfJHieWjt\",name:\"Button\",oifzywNPJ:false,SxwdMNPnc:\"var(--token-b312da7b-2e93-4e67-8d68-019dabc28250, rgb(227, 20, 137))\",variant:\"lyF_YrwOT\",Vj8LH_oZu:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:1},VlaKGWrcK:\"rgb(102, 102, 255)\",VytNoqGAV:\"var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, rgb(255, 255, 255))\",width:\"100%\",ZsU8LuEoL:false})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11n32t0\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":oPgZ_05e6\",webPageId:\"r25Vep6fr\"},implicitPathVariables:undefined},{href:{hash:\":oPgZ_05e6\",webPageId:\"r25Vep6fr\"},implicitPathVariables:undefined},{href:{hash:\":oPgZ_05e6\",webPageId:\"r25Vep6fr\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oe86q9-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"Rhx5fqzF2\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{fUpw1w_ci:resolvedLinks2[2]},ITR_cxQOB:{fUpw1w_ci:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonsMain,{bj7l6Hqmg:\"Learn More\",DnSxRkGP7:\"House\",dW__DtE4y:\"Button Text\",fUpw1w_ci:resolvedLinks2[0],height:\"100%\",id:\"Rhx5fqzF2\",layoutId:\"Rhx5fqzF2\",name:\"Button\",oifzywNPJ:false,SxwdMNPnc:\"rgba(255, 255, 255, 0.7)\",variant:\"SYRFTscfA\",Vj8LH_oZu:{borderColor:\"rgba(0, 0, 0, 0.1)\",borderStyle:\"solid\",borderWidth:1},VlaKGWrcK:\"rgb(102, 102, 255)\",VytNoqGAV:\"var(--token-4801c346-781b-444c-845e-4b5973f9d068, rgb(1, 21, 41))\",width:\"100%\",ZsU8LuEoL:false})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M4bk5g9Qr\"},implicitPathVariables:undefined},{href:{webPageId:\"M4bk5g9Qr\"},implicitPathVariables:undefined},{href:{webPageId:\"M4bk5g9Qr\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sowm20-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"k8ZIHutH2\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{fUpw1w_ci:resolvedLinks3[2]},ITR_cxQOB:{fUpw1w_ci:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonsMain,{bj7l6Hqmg:\"See what others are saying\",DnSxRkGP7:\"House\",dW__DtE4y:\"Button Text\",fUpw1w_ci:resolvedLinks3[0],height:\"100%\",id:\"k8ZIHutH2\",layoutId:\"k8ZIHutH2\",name:\"Button\",oifzywNPJ:false,SxwdMNPnc:\"rgba(255, 255, 255, 0.7)\",variant:\"SYRFTscfA\",Vj8LH_oZu:{borderColor:\"rgba(0, 0, 0, 0.1)\",borderStyle:\"solid\",borderWidth:1},VlaKGWrcK:\"rgb(102, 102, 255)\",VytNoqGAV:\"var(--token-4801c346-781b-444c-845e-4b5973f9d068, rgb(1, 21, 41))\",width:\"100%\",ZsU8LuEoL:false})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ybiv8f-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"vWQAZvHcc\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(ButtonsMain,{bj7l6Hqmg:\"Looking for our job board?\",DnSxRkGP7:\"House\",dW__DtE4y:\"Button Text\",fUpw1w_ci:\"https://jobs.rostr.cc\",height:\"100%\",id:\"vWQAZvHcc\",layoutId:\"vWQAZvHcc\",name:\"Button\",oifzywNPJ:false,SxwdMNPnc:\"rgba(255, 255, 255, 0.7)\",variant:\"SYRFTscfA\",Vj8LH_oZu:{borderColor:\"rgba(0, 0, 0, 0.1)\",borderStyle:\"solid\",borderWidth:1},VlaKGWrcK:\"rgb(102, 102, 255)\",VytNoqGAV:\"var(--token-4801c346-781b-444c-845e-4b5973f9d068, rgb(1, 21, 41))\",width:\"100%\",ZsU8LuEoL:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e0dxqf-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"tOVWHdgub\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(ButtonsMain,{bj7l6Hqmg:\"\uD83C\uDFC5 Who Booked Coachella?\",DnSxRkGP7:\"House\",dW__DtE4y:\"Button Text\",fUpw1w_ci:\"https://www.newindustryfriday.com/p/who-booked-coachella-2025-the-deep-dive\",height:\"100%\",id:\"tOVWHdgub\",layoutId:\"tOVWHdgub\",name:\"Button\",oifzywNPJ:false,SxwdMNPnc:\"rgba(255, 255, 255, 0.3)\",variant:\"SYRFTscfA\",Vj8LH_oZu:{borderColor:\"rgba(0, 0, 0, 0.1)\",borderStyle:\"solid\",borderWidth:1},VlaKGWrcK:\"rgb(102, 102, 255)\",VytNoqGAV:\"var(--token-4801c346-781b-444c-845e-4b5973f9d068, rgb(1, 21, 41))\",width:\"100%\",ZsU8LuEoL:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bq3lfl-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"vNGAz5F86\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(ButtonsMain,{bj7l6Hqmg:\"\uD83C\uDFC6 Behind The GRAMMYs 2025 \u2197\",DnSxRkGP7:\"House\",dW__DtE4y:\"Button Text\",fUpw1w_ci:\"https://go.rostr.cc/grammys-home-page\",height:\"100%\",id:\"vNGAz5F86\",layoutId:\"vNGAz5F86\",name:\"Button\",oifzywNPJ:false,SxwdMNPnc:\"rgba(255, 255, 255, 0.3)\",variant:\"SYRFTscfA\",Vj8LH_oZu:{borderColor:\"rgba(0, 0, 0, 0.1)\",borderStyle:\"solid\",borderWidth:1},VlaKGWrcK:\"rgb(102, 102, 255)\",VytNoqGAV:\"var(--token-4801c346-781b-444c-845e-4b5973f9d068, rgb(1, 21, 41))\",width:\"100%\",ZsU8LuEoL:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-45xluk-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"zZUVN3gLH\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(ButtonsMain,{bj7l6Hqmg:\"Check out Stack by ROSTR\",DnSxRkGP7:\"House\",dW__DtE4y:\"Button Text\",fUpw1w_ci:\"https://stack.rostr.cc\",height:\"100%\",id:\"zZUVN3gLH\",layoutId:\"zZUVN3gLH\",name:\"Button\",oifzywNPJ:false,SxwdMNPnc:\"rgba(255, 255, 255, 0.7)\",variant:\"SYRFTscfA\",Vj8LH_oZu:{borderColor:\"rgba(0, 0, 0, 0.1)\",borderStyle:\"solid\",borderWidth:1},VlaKGWrcK:\"rgb(102, 102, 255)\",VytNoqGAV:\"var(--token-4801c346-781b-444c-845e-4b5973f9d068, rgb(1, 21, 41))\",width:\"100%\",ZsU8LuEoL:false})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qtx416\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-db6occ-container\",\"data-framer-appear-id\":\"db6occ\",initial:animation4,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ttvCdBlp2\",optimized:true,rendersWithMotion:true,scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ttvCdBlp2\",layoutId:\"ttvCdBlp2\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1053,intrinsicWidth:1893,pixelHeight:2106,pixelWidth:3786,sizes:\"350px\",src:\"https://framerusercontent.com/images/JJcW99CGZWstpwo4cuFzfhcD3rU.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/JJcW99CGZWstpwo4cuFzfhcD3rU.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/JJcW99CGZWstpwo4cuFzfhcD3rU.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/JJcW99CGZWstpwo4cuFzfhcD3rU.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/JJcW99CGZWstpwo4cuFzfhcD3rU.png?lossless=1 3786w\"},className:\"framer-10p43ie\",\"data-framer-name\":\"Sab\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1052,intrinsicWidth:1895,pixelHeight:2104,pixelWidth:3790,sizes:\"350px\",src:\"https://framerusercontent.com/images/FSD9j8yvj71Ix2J3d1EgFpDM.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/FSD9j8yvj71Ix2J3d1EgFpDM.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/FSD9j8yvj71Ix2J3d1EgFpDM.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/FSD9j8yvj71Ix2J3d1EgFpDM.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/FSD9j8yvj71Ix2J3d1EgFpDM.png?lossless=1 3786w\"},className:\"framer-1xc59aw\",\"data-framer-name\":\"RL\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1053,intrinsicWidth:1893,pixelHeight:2106,pixelWidth:3786,sizes:\"350px\",src:\"https://framerusercontent.com/images/NpC4r3lJIJq0mrtLSUtt9DscyC4.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/NpC4r3lJIJq0mrtLSUtt9DscyC4.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/NpC4r3lJIJq0mrtLSUtt9DscyC4.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/NpC4r3lJIJq0mrtLSUtt9DscyC4.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/NpC4r3lJIJq0mrtLSUtt9DscyC4.png?lossless=1 3786w\"},className:\"framer-1akaujd\",\"data-framer-name\":\"Discover\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1053,intrinsicWidth:1893,pixelHeight:2104,pixelWidth:3790,sizes:\"350px\",src:\"https://framerusercontent.com/images/84ihbUza6RgST9VQWkPKRnW5pE.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/84ihbUza6RgST9VQWkPKRnW5pE.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/84ihbUza6RgST9VQWkPKRnW5pE.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/84ihbUza6RgST9VQWkPKRnW5pE.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/84ihbUza6RgST9VQWkPKRnW5pE.png?lossless=1 3790w\"},className:\"framer-mmedfx\",\"data-framer-name\":\"Insights\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1053,intrinsicWidth:1893,pixelHeight:2106,pixelWidth:3786,sizes:\"350px\",src:\"https://framerusercontent.com/images/mPxTrL4foND7i3a0DcXB0kOyc.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/mPxTrL4foND7i3a0DcXB0kOyc.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/mPxTrL4foND7i3a0DcXB0kOyc.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/mPxTrL4foND7i3a0DcXB0kOyc.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/mPxTrL4foND7i3a0DcXB0kOyc.png?lossless=1 3786w\"},className:\"framer-dfz7mt\",\"data-framer-name\":\"CAA\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1053,intrinsicWidth:1893,pixelHeight:2104,pixelWidth:3790,sizes:\"350px\",src:\"https://framerusercontent.com/images/sy3txyR950dcFGNMVEvCkwklYTU.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/sy3txyR950dcFGNMVEvCkwklYTU.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/sy3txyR950dcFGNMVEvCkwklYTU.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/sy3txyR950dcFGNMVEvCkwklYTU.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/sy3txyR950dcFGNMVEvCkwklYTU.png?lossless=1 3790w\"},className:\"framer-1cjxfxc\",\"data-framer-name\":\"live\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1052,intrinsicWidth:1895,pixelHeight:2106,pixelWidth:3786,sizes:\"350px\",src:\"https://framerusercontent.com/images/BjCFYERxcRUYiVfvYqez1J1GY.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/BjCFYERxcRUYiVfvYqez1J1GY.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/BjCFYERxcRUYiVfvYqez1J1GY.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/BjCFYERxcRUYiVfvYqez1J1GY.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/BjCFYERxcRUYiVfvYqez1J1GY.png?lossless=1 3786w\"},className:\"framer-1jgybo3\",\"data-framer-name\":\"HF\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1052,intrinsicWidth:1895,pixelHeight:2104,pixelWidth:3790,sizes:\"350px\",src:\"https://framerusercontent.com/images/4CKi7psvCVmeJfnIeJgfbkC2dY.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/4CKi7psvCVmeJfnIeJgfbkC2dY.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/4CKi7psvCVmeJfnIeJgfbkC2dY.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/4CKi7psvCVmeJfnIeJgfbkC2dY.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/4CKi7psvCVmeJfnIeJgfbkC2dY.png?lossless=1 3790w\"},className:\"framer-1749oco\",\"data-framer-name\":\"DR\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1052,intrinsicWidth:1895,pixelHeight:2104,pixelWidth:3790,sizes:\"350px\",src:\"https://framerusercontent.com/images/ls5gZk47PlnntsqSqhucWg0.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/ls5gZk47PlnntsqSqhucWg0.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/ls5gZk47PlnntsqSqhucWg0.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/ls5gZk47PlnntsqSqhucWg0.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/ls5gZk47PlnntsqSqhucWg0.png?lossless=1 3790w\"},className:\"framer-vro09b\",\"data-framer-name\":\"BL\"})],speed:65,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fnwyvs\",\"data-framer-name\":\"1\uFE0F\u20E3 Main Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wuf51x\",\"data-framer-name\":\"2\uFE0F\u20E3 Introduction\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n6rg8f\",\"data-framer-name\":\"3\uFE0F\u20E3 Title\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`max(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.45, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bvpkao-container\",nodeId:\"nPpMqKzYP\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"ZP3GxnpyC\"},ITR_cxQOB:{variant:\"MS10ew5V0\"}},children:/*#__PURE__*/_jsx(FeaturesSectionHeader,{c5S02mpD4:\"INTRODUCTION\",cxlnFLUAi:\"rgb(0, 0, 0)\",ePwTX9WeP:\"If you work with the music industry, ROSTR is an essential tool to save you time & help you do your job. \\n\\nIt's like having an assistant that tracks the industry for you: artist team info, contact details, insights, tours, festivals, news, new companies & more.\\n\\nSign up for a free account or keep scrolling to find out more...\",FndfRE5SJ:\"var(--token-578c500e-4b55-4424-b32d-8e80632174d3, rgb(255, 191, 0))\",GIeNzStKq:\"rgb(0, 0, 0)\",height:\"100%\",hxSTCgJsZ:\"https://www.rostr.cc/sign-in/new-user?utm_source=hq&utm_medium=web&utm_content=home-introduction\",id:\"nPpMqKzYP\",iuIoSfIq7:\"ROSTR organizes the music industry for you\",layoutId:\"nPpMqKzYP\",NvEQpLFmD:\"rgb(0, 0, 0)\",style:{width:\"100%\"},UrG4mwp16:\"HandWaving\",variant:\"yKZEPoaRf\",wD8DWcDHt:true,width:\"100%\",wRG2MnqgR:true,XK_FnqcQx:true,YU0Kge5mf:\"Sign up for free\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifu8dv\",\"data-framer-name\":\"3\uFE0F\u20E3 Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l11gjk hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ltzbpd-container\",\"data-framer-name\":\"Thundertack\",name:\"Thundertack\",nodeId:\"paf9WRgmq\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonial,{adqNHq9iS:\"https://www.rostr.cc/profile/thundertrack/management/roster\",dPpj1BTJS:\"Founder/CEO & Artist Manager\",FEBLX7FLF:\"https://www.rostr.cc/profile/terenzecoleman/manager/roster\",height:\"100%\",id:\"paf9WRgmq\",layoutId:\"paf9WRgmq\",name:\"Thundertack\",og0ojKPkP:addImageAlt({src:\"https://framerusercontent.com/images/XtYwtMEnnLWgfW0NOL0L7tMjw.png\",srcSet:\"https://framerusercontent.com/images/XtYwtMEnnLWgfW0NOL0L7tMjw.png?scale-down-to=512 512w,https://framerusercontent.com/images/XtYwtMEnnLWgfW0NOL0L7tMjw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XtYwtMEnnLWgfW0NOL0L7tMjw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XtYwtMEnnLWgfW0NOL0L7tMjw.png 3330w\"},\"\"),style:{width:\"100%\"},t7BIMbbHZ:\"ThunderTrack\",tD_WGbOF0:'\"I use ROSTR daily, and it\\'s like having a personal assistant that never sleeps.\"',variant:\"VsIKr5fNY\",width:\"100%\",ZOMLI0GPB:\"Terenze Coleman\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qjjpm8-container\",\"data-framer-name\":\"Carly\",name:\"Carly\",nodeId:\"y6eU2T8as\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonial,{adqNHq9iS:\"spotify.com\",dPpj1BTJS:\"Creator Research Operations & Programs\",FEBLX7FLF:\"https://www.linkedin.com/in/carlyeiseman/\",height:\"100%\",id:\"y6eU2T8as\",Inl6VenV4:addImageAlt({src:\"https://framerusercontent.com/images/0pbdaWrk4bBDijnYaBATVp9cbuU.png\"},\"\"),layoutId:\"y6eU2T8as\",name:\"Carly\",og0ojKPkP:addImageAlt({src:\"https://framerusercontent.com/images/0MM9qpacqHWJyhDipZcao9oGyk.png\"},\"\"),style:{width:\"100%\"},t7BIMbbHZ:\"Spotify\",tD_WGbOF0:'\"My source of truth for who\u2019s who and what\u2019s what in real time.\"',variant:\"oXjh7u9ic\",width:\"100%\",ZOMLI0GPB:\"Carly Eiseman \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ui0xl-container\",\"data-framer-name\":\"Agency\",name:\"Agency\",nodeId:\"UAaeWfFo5\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"SEmxDaWgH\"}},children:/*#__PURE__*/_jsx(CardsTestimonial,{dPpj1BTJS:\"Head of A&R & Business Development\",height:\"100%\",id:\"UAaeWfFo5\",Inl6VenV4:addImageAlt({src:\"https://framerusercontent.com/images/n1OQswKCpAsoOGBwJljEsYaYhY.png\"},\"\"),layoutId:\"UAaeWfFo5\",name:\"Agency\",og0ojKPkP:addImageAlt({src:\"https://framerusercontent.com/images/8a2gH0wAlEqQS31j48vUdMSlJ4E.png\",srcSet:\"https://framerusercontent.com/images/8a2gH0wAlEqQS31j48vUdMSlJ4E.png?scale-down-to=512 512w,https://framerusercontent.com/images/8a2gH0wAlEqQS31j48vUdMSlJ4E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8a2gH0wAlEqQS31j48vUdMSlJ4E.png 1548w\"},\"\"),style:{width:\"100%\"},t7BIMbbHZ:\"Wasserman Music\",tD_WGbOF0:'\"Being able to find the responsible agent, agency, manager and their email address is simple and incredibly useful and yet there is no other place where you can easily access this information.\u201D',variant:\"oXjh7u9ic\",width:\"100%\",ZOMLI0GPB:\"Tom Windish\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ou0sdb-container\",nodeId:\"vE0qeDUVN\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonial,{adqNHq9iS:\"youtube.com\",dPpj1BTJS:\"US & Canada Creative Program Manager\",FEBLX7FLF:\"https://www.linkedin.com/in/teddy-shrader-creative/\",height:\"100%\",id:\"vE0qeDUVN\",Inl6VenV4:addImageAlt({src:\"https://framerusercontent.com/images/jHMw0nSOuSPZzpVZIh5W5zauFuA.png\",srcSet:\"https://framerusercontent.com/images/jHMw0nSOuSPZzpVZIh5W5zauFuA.png?scale-down-to=512 512w,https://framerusercontent.com/images/jHMw0nSOuSPZzpVZIh5W5zauFuA.png 900w\"},\"\"),layoutId:\"vE0qeDUVN\",og0ojKPkP:addImageAlt({src:\"https://framerusercontent.com/images/a6ScS0yS2UUPLp3d3qYIuTUiZU.png\"},\"\"),style:{width:\"100%\"},t7BIMbbHZ:\"YouTube Music\",tD_WGbOF0:'\"ROSTR has consolidated so many resources that it\\'s on my list right after checking my emails. ROSTR makes it so easy!\"',variant:\"oXjh7u9ic\",width:\"100%\",ZOMLI0GPB:\"Teddy Shrader\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16qh9or-container\",nodeId:\"wTc8FAvs4\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonial,{dPpj1BTJS:\"Chairman and CEO\",FEBLX7FLF:\"https://www.linkedin.com/in/marc-geiger-b7595159/\",height:\"100%\",id:\"wTc8FAvs4\",Inl6VenV4:addImageAlt({src:\"https://framerusercontent.com/images/BDbgsHRgjZwXvRPG2dLn7QOyxc.png\",srcSet:\"https://framerusercontent.com/images/BDbgsHRgjZwXvRPG2dLn7QOyxc.png 640w\"},\"\"),layoutId:\"wTc8FAvs4\",og0ojKPkP:addImageAlt({src:\"https://framerusercontent.com/images/xNbq4VSsic98Qtw2MhwRNF2RYd4.png\",srcSet:\"https://framerusercontent.com/images/xNbq4VSsic98Qtw2MhwRNF2RYd4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xNbq4VSsic98Qtw2MhwRNF2RYd4.png 800w\"},\"\"),style:{width:\"100%\"},t7BIMbbHZ:\"SAVELIVE\",tD_WGbOF0:'\"We use ROSTR constantly.  It\u2019s the best resource in the music business.\"',variant:\"oXjh7u9ic\",width:\"100%\",ZOMLI0GPB:\"Marc Geiger\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4sobmm hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i4fohk\",\"data-framer-name\":\"2\uFE0F\u20E3 Team Info\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-unj1ii\",\"data-framer-name\":\"3\uFE0F\u20E3 Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`max(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.45, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-754ca9-container\",nodeId:\"gH0fuYiDT\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"ZP3GxnpyC\"},ITR_cxQOB:{variant:\"MS10ew5V0\"}},children:/*#__PURE__*/_jsx(FeaturesSectionHeader,{c5S02mpD4:\"ARTIST TEAM INFO\",cxlnFLUAi:\"rgb(0, 0, 0)\",ePwTX9WeP:\"ROSTR is the world's fastest, largest & most up-to-date music industry directory.\\n\\nWe track hundreds of thousands of relationships between artists, record labels, music publishers, booking agents & artist managers.\\n\\nWrapped in a modern, clean & super-fast interface, ROSTR is the best place for quickly finding out who works with who. \",FndfRE5SJ:\"var(--token-722e3869-59b2-4501-83cf-83a8c6bb76eb, rgb(98, 54, 255))\",GIeNzStKq:\"rgb(0, 0, 0)\",height:\"100%\",hxSTCgJsZ:\"https://www.rostr.cc/sign-in/new-user?utm_source=hq&utm_medium=web&utm_content=home-team-info\",id:\"gH0fuYiDT\",iuIoSfIq7:\"Know who works with who\",layoutId:\"gH0fuYiDT\",NvEQpLFmD:\"rgb(0, 0, 0)\",style:{width:\"100%\"},UrG4mwp16:\"ShareNetwork\",variant:\"yKZEPoaRf\",wD8DWcDHt:true,width:\"100%\",wRG2MnqgR:true,XK_FnqcQx:true,YU0Kge5mf:\"Sign up for free\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15f1ect\",\"data-framer-name\":\"3\uFE0F\u20E3 Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10devrs hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-96s0j7\",\"data-framer-name\":\"4\uFE0F\u20E3 Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jdo92h-container\",nodeId:\"mV_z2xNdq\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesIconText,{height:\"100%\",id:\"mV_z2xNdq\",layoutId:\"mV_z2xNdq\",mieVOZYDx:\"Lightning fast search to quickly look up artists & who they work with.\",style:{width:\"100%\"},variant:\"Ve2rPhhhH\",width:\"100%\",wzPbzJTqu:\"var(--token-07c07fbb-08c8-4f66-8e84-bfac2b513caf, rgb(0, 122, 255))\",xpoWz5DTe:\"MagnifyingGlass\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{background:{alt:\"An image showing how easy it is to search for artists & artist team info on ROSTR's music industry directory\",fit:\"fill\",intrinsicHeight:671,intrinsicWidth:542,pixelHeight:1342,pixelWidth:1084,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`,src:\"https://framerusercontent.com/images/LndupvDWoYKfR9miAqG2uL0vyks.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LndupvDWoYKfR9miAqG2uL0vyks.png?scale-down-to=1024 827w,https://framerusercontent.com/images/LndupvDWoYKfR9miAqG2uL0vyks.png 1084w\"}},ITR_cxQOB:{background:{alt:\"An image showing how easy it is to search for artists & artist team info on ROSTR's music industry directory\",fit:\"fill\",intrinsicHeight:671,intrinsicWidth:542,pixelHeight:1342,pixelWidth:1084,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`,src:\"https://framerusercontent.com/images/LndupvDWoYKfR9miAqG2uL0vyks.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LndupvDWoYKfR9miAqG2uL0vyks.png?scale-down-to=1024 827w,https://framerusercontent.com/images/LndupvDWoYKfR9miAqG2uL0vyks.png 1084w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"An image showing how easy it is to search for artists & artist team info on ROSTR's music industry directory\",fit:\"fill\",intrinsicHeight:671,intrinsicWidth:542,pixelHeight:1342,pixelWidth:1084,sizes:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,src:\"https://framerusercontent.com/images/LndupvDWoYKfR9miAqG2uL0vyks.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LndupvDWoYKfR9miAqG2uL0vyks.png?scale-down-to=1024 827w,https://framerusercontent.com/images/LndupvDWoYKfR9miAqG2uL0vyks.png 1084w\"},className:\"framer-1mbapy5\",\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__threshold:.5}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dy9kg9\",\"data-framer-name\":\"4\uFE0F\u20E3 Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ikn3z3-container\",nodeId:\"eNQ2IvTjv\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesIconText,{height:\"100%\",id:\"eNQ2IvTjv\",layoutId:\"eNQ2IvTjv\",mieVOZYDx:\"With ~7,000 management company rosters, ROSTR is the definitive place to find management company & artist manager info for artists.\",style:{width:\"100%\"},variant:\"Ve2rPhhhH\",width:\"100%\",wzPbzJTqu:\"var(--token-07c07fbb-08c8-4f66-8e84-bfac2b513caf, rgb(0, 122, 255))\",xpoWz5DTe:\"CheckCircle\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:\"351px\"},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hy8qhr-container\",nodeId:\"zFsFQR58y\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesTeamInfo,{cSlUDScaN:false,d9L27qjwA:true,DAuqmvKm3:false,dNTY_38D8:\"https://rostr.cc/profile/threesixzero/management\",DpmjJDuuY:\"TERRITORIES\",DY9Lw3wQO:\"Rolando Romero\",EAsPaYEF8:\"Three Six Zero\",eZN5K0nTq:\"https://rostr.cc/profile/onefiinixlive/agency\",fqJuOIdwU:\"https://www.rostr.cc/profile/willow/artist/overview\",FqWIxMyzL:false,fzBW4kqmP:false,gNy7jjQNk:false,height:\"100%\",hmLWfNoW4:false,hzAgP2FzK:false,id:\"zFsFQR58y\",k7ZpDjRzI:false,layoutId:\"zFsFQR58y\",MH149q2zc:\"MANAGER\",mNhM0iEwT:\"Person Name\",NdEr9Lzmq:\"Person Name\",pm31Jl4Bb:addImageAlt({src:\"https://framerusercontent.com/images/hQRWkkm44qTQfNBitTmdw9n8A.png\"},\"\"),PPc0lQVnp:false,roAhQWglu:\"NORTH AMERICA\",S_Gg3dfPa:\"SLbhyftPk\",style:{width:\"100%\"},T99kTUYue:addImageAlt({src:\"https://framerusercontent.com/images/xJUJ7TPliyAafqSywJlLZG6ZUg.png\",srcSet:\"https://framerusercontent.com/images/xJUJ7TPliyAafqSywJlLZG6ZUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/xJUJ7TPliyAafqSywJlLZG6ZUg.png 640w\"},\"\"),uxwsPlMmU:\"One Fiinix Live\",UZYYu2D2n:true,V2YHO3Bej:\"TERRITORIES\",variant:\"LyPwM9awh\",vgTvc5u0H:\"TERRITORIES\",vjcknJbat:\"Three Six Zero\",vqI4rZLCd:\"Three Six Zero\",wgrCzI9UQ:addImageAlt({src:\"https://framerusercontent.com/images/92rZf6vfZ77i4upepS5KJmzm5zc.png\",srcSet:\"https://framerusercontent.com/images/92rZf6vfZ77i4upepS5KJmzm5zc.png?scale-down-to=512 512w,https://framerusercontent.com/images/92rZf6vfZ77i4upepS5KJmzm5zc.png 909w\"},\"\"),width:\"100%\",xwtLiHLCA:true,Y8iJmtSG7:\"World Wide (ex-North America)\",zfX3zJBYr:false,ZWmJtmTPO:\"Person Name\",ZxXt43qMw:\"https://rostr.cc/profile/rolandoromero/manager\"})})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mul6xg\",\"data-framer-name\":\"4\uFE0F\u20E3 Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ma5yo-container\",nodeId:\"uWdY7f7A2\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesIconText,{height:\"100%\",id:\"uWdY7f7A2\",layoutId:\"uWdY7f7A2\",mieVOZYDx:\"Get booking agent info for tens of thousands of artists including agency, responsible agents, & the territories they represent.\",style:{width:\"100%\"},variant:\"Ve2rPhhhH\",width:\"100%\",wzPbzJTqu:\"var(--token-b312da7b-2e93-4e67-8d68-019dabc28250, rgb(227, 20, 137))\",xpoWz5DTe:\"CheckCircle\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ztwvgb-container\",nodeId:\"zzVydmuK6\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesTeamInfo,{cSlUDScaN:false,d9L27qjwA:true,DAuqmvKm3:false,dNTY_38D8:\"https://rostr.cc/profile/wassermanmusic/agency\",DpmjJDuuY:\"TERRITORIES\",DY9Lw3wQO:\"Person Name\",EAsPaYEF8:\"Three Six Zero\",eZN5K0nTq:\"https://rostr.cc/profile/onefiinixlive/agency\",fqJuOIdwU:\"https://www.rostr.cc/profile/calumscott/artist/overview\",FqWIxMyzL:false,fzBW4kqmP:false,gNy7jjQNk:false,height:\"100%\",hmLWfNoW4:true,hzAgP2FzK:false,id:\"zzVydmuK6\",k7ZpDjRzI:false,layoutId:\"zzVydmuK6\",MH149q2zc:\"AGENT\",mNhM0iEwT:\"Person Name\",NdEr9Lzmq:\"Person Name\",pm31Jl4Bb:addImageAlt({src:\"https://framerusercontent.com/images/vYUl3EdOJN7TF1Ybc9djoKN2kdM.png\"},\"\"),PPc0lQVnp:true,roAhQWglu:\"NORTH AMERICA\",S_Gg3dfPa:\"w7WXFNBMb\",style:{width:\"100%\"},T99kTUYue:addImageAlt({src:\"https://framerusercontent.com/images/7jZVeRy7aWZQhnRjLdoh9BIo.png\"},\"\"),uxwsPlMmU:\"One Fiinix Live\",UZYYu2D2n:true,V2YHO3Bej:\"TERRITORIES\",variant:\"CkD3MW90z\",vgTvc5u0H:\"TERRITORIES\",vjcknJbat:\"Wasserman Music\",vqI4rZLCd:\"Three Six Zero\",wgrCzI9UQ:addImageAlt({src:\"https://framerusercontent.com/images/92rZf6vfZ77i4upepS5KJmzm5zc.png\",srcSet:\"https://framerusercontent.com/images/92rZf6vfZ77i4upepS5KJmzm5zc.png?scale-down-to=512 512w,https://framerusercontent.com/images/92rZf6vfZ77i4upepS5KJmzm5zc.png 909w\"},\"\"),width:\"100%\",xwtLiHLCA:false,Y8iJmtSG7:\"World Wide (ex-North America)\",zfX3zJBYr:false,ZWmJtmTPO:\"Person Name\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jvomgz\",\"data-framer-name\":\"4\uFE0F\u20E3 Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pvagql-container\",nodeId:\"CvR7Ma6Ct\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesIconText,{height:\"100%\",id:\"CvR7Ma6Ct\",layoutId:\"CvR7Ma6Ct\",mieVOZYDx:\"Quickly see which record labels an artist works with + one click access to see their whole roster.\",style:{width:\"100%\"},variant:\"Ve2rPhhhH\",width:\"100%\",wzPbzJTqu:\"var(--token-a9cea1b7-af75-468c-9dd3-ef39ef25324d, rgb(0, 204, 188))\",xpoWz5DTe:\"CheckCircle\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zt7zfj-container\",nodeId:\"BafpWejHs\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesTeamInfo,{cSlUDScaN:false,d9L27qjwA:false,DAuqmvKm3:false,dNTY_38D8:\"https://rostr.cc/profile/interscoperecords/label\",DpmjJDuuY:\"TERRITORIES\",DY9Lw3wQO:\"Person Name\",EAsPaYEF8:\"Polydor Records\",eZN5K0nTq:\"https://rostr.cc/profile/thedarkroom/label\",fqJuOIdwU:\"https://www.rostr.cc/profile/billieeilish/artist/overview\",FqWIxMyzL:false,fzBW4kqmP:false,gNy7jjQNk:false,height:\"100%\",hmLWfNoW4:true,hzAgP2FzK:true,id:\"BafpWejHs\",k7ZpDjRzI:false,layoutId:\"BafpWejHs\",MH149q2zc:\"AGENT\",mNhM0iEwT:\"Person Name\",NdEr9Lzmq:\"Person Name\",pm31Jl4Bb:addImageAlt({src:\"https://framerusercontent.com/images/OYuIyMBrOXajxnsWEJs5Lvte8.png\"},\"\"),PPc0lQVnp:true,QEr3kV83W:addImageAlt({src:\"https://framerusercontent.com/images/JzNbitvrvRH2Pt9Jq2wVlKWI.png\"},\"\"),roAhQWglu:\"NORTH AMERICA\",S_Gg3dfPa:\"lZoY2f5TK\",SIHO7r6Si:\"https://rostr.cc/profile/polydorrecords/label\",style:{width:\"100%\"},T99kTUYue:addImageAlt({src:\"https://framerusercontent.com/images/f5Ro8bxymVlC7s2OrGpk3MBSQo.png\",srcSet:\"https://framerusercontent.com/images/f5Ro8bxymVlC7s2OrGpk3MBSQo.png?scale-down-to=512 512w,https://framerusercontent.com/images/f5Ro8bxymVlC7s2OrGpk3MBSQo.png 640w\"},\"\"),uxwsPlMmU:\"The Darkroom\",UZYYu2D2n:false,V2YHO3Bej:\"TERRITORIES\",variant:\"CkD3MW90z\",vgTvc5u0H:\"TERRITORIES\",vjcknJbat:\"Interscope Records\",vqI4rZLCd:\"Three Six Zero\",wgrCzI9UQ:addImageAlt({src:\"https://framerusercontent.com/images/awkLWAXVdumWJCzBCuSrcu4WBA.png\",srcSet:\"https://framerusercontent.com/images/awkLWAXVdumWJCzBCuSrcu4WBA.png?scale-down-to=512 512w,https://framerusercontent.com/images/awkLWAXVdumWJCzBCuSrcu4WBA.png 800w\"},\"\"),width:\"100%\",xwtLiHLCA:false,Y8iJmtSG7:\"World Wide (ex-North America)\",zfX3zJBYr:false,ZWmJtmTPO:\"Person Name\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1939epi\",\"data-framer-name\":\"4\uFE0F\u20E3 Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bfeqbs-container\",nodeId:\"CjRWVkN2e\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesIconText,{height:\"100%\",id:\"CjRWVkN2e\",layoutId:\"CjRWVkN2e\",mieVOZYDx:\"... and find out who publishes an artist around the world.\",style:{width:\"100%\"},variant:\"Ve2rPhhhH\",width:\"100%\",wzPbzJTqu:\"var(--token-578c500e-4b55-4424-b32d-8e80632174d3, rgb(255, 191, 0))\",xpoWz5DTe:\"CheckCircle\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9g0stm-container\",nodeId:\"DXdsqCYRE\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesTeamInfo,{cSlUDScaN:false,d9L27qjwA:false,DAuqmvKm3:false,dNTY_38D8:\"https://rostr.cc/profile/stellarsongs/publisher\",DpmjJDuuY:\"TERRITORIES\",DY9Lw3wQO:\"Person Name\",EAsPaYEF8:\"Sony Music Publishing\",eZN5K0nTq:\"https://rostr.cc/profile/2toneentertainment/publisher\",fqJuOIdwU:\"https://www.rostr.cc/profile/charlixcx/artist/overview\",FqWIxMyzL:false,fzBW4kqmP:false,gNy7jjQNk:false,height:\"100%\",hmLWfNoW4:true,hzAgP2FzK:true,id:\"DXdsqCYRE\",k7ZpDjRzI:false,layoutId:\"DXdsqCYRE\",MH149q2zc:\"AGENT\",mNhM0iEwT:\"Person Name\",NdEr9Lzmq:\"Person Name\",pm31Jl4Bb:addImageAlt({src:\"https://framerusercontent.com/images/HIogH7JFOBKfLaI9Wc5zzDsDJ8I.png\"},\"\"),PPc0lQVnp:true,QEr3kV83W:addImageAlt({src:\"https://framerusercontent.com/images/d3RnVbheOfE4z2900tOg19JwLk.png\",srcSet:\"https://framerusercontent.com/images/d3RnVbheOfE4z2900tOg19JwLk.png?scale-down-to=512 512w,https://framerusercontent.com/images/d3RnVbheOfE4z2900tOg19JwLk.png 960w\"},\"\"),roAhQWglu:\"NORTH AMERICA\",S_Gg3dfPa:\"O2F9hpyae\",SIHO7r6Si:\"https://rostr.cc/profile/sonymusicpublishing/publisher\",style:{width:\"100%\"},T99kTUYue:addImageAlt({src:\"https://framerusercontent.com/images/ox3BGMukGKdHl98tH6BDhJE9hC0.png\",srcSet:\"https://framerusercontent.com/images/ox3BGMukGKdHl98tH6BDhJE9hC0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ox3BGMukGKdHl98tH6BDhJE9hC0.png 640w\"},\"\"),uxwsPlMmU:\"2 Tone Entertainment\",UZYYu2D2n:false,V2YHO3Bej:\"TERRITORIES\",variant:\"CkD3MW90z\",vgTvc5u0H:\"TERRITORIES\",vjcknJbat:\"Stellar Songs\",vqI4rZLCd:\"\",wgrCzI9UQ:addImageAlt({src:\"https://framerusercontent.com/images/ggxunCuCscPNqmbyk0JUTHAD90.png\"},\"\"),width:\"100%\",xwtLiHLCA:false,Y8iJmtSG7:\"World Wide (ex-North America)\",zfX3zJBYr:false,ZWmJtmTPO:\"Person Name\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-189rhu2\",\"data-framer-name\":\"2\uFE0F\u20E3 Contact Info\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13y18v\",\"data-framer-name\":\"3\uFE0F\u20E3 Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`max(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.45, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11hbdxb-container\",nodeId:\"H9p3dbb5W\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"ZP3GxnpyC\"},ITR_cxQOB:{variant:\"MS10ew5V0\"}},children:/*#__PURE__*/_jsx(FeaturesSectionHeader,{c5S02mpD4:\"CONTACT INFO\",cxlnFLUAi:\"rgb(0, 0, 0)\",ePwTX9WeP:\"Once you find who you're looking for, getting contact info for booking agents & artist managers is just a click away. \\n\\nPlus, if you're on ROSTR Pro & we don't have info listed, just ask & we'll find it for you.\",FndfRE5SJ:\"var(--token-07c07fbb-08c8-4f66-8e84-bfac2b513caf, rgb(0, 122, 255))\",GIeNzStKq:\"rgb(0, 0, 0)\",height:\"100%\",hxSTCgJsZ:\"https://www.rostr.cc/sign-in/new-user?utm_source=hq&utm_medium=web&utm_content=home-contact-info\",id:\"H9p3dbb5W\",iuIoSfIq7:\"Get contact info for artist managers & booking agents\",layoutId:\"H9p3dbb5W\",NvEQpLFmD:\"rgb(0, 0, 0)\",style:{width:\"100%\"},UrG4mwp16:\"AddressBook\",variant:\"yKZEPoaRf\",wD8DWcDHt:true,width:\"100%\",wRG2MnqgR:true,XK_FnqcQx:true,YU0Kge5mf:\"Sign up for free\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ascq2o\",\"data-framer-name\":\"3\uFE0F\u20E3 Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k3l957 hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15t1g1y\",\"data-framer-name\":\"4\uFE0F\u20E3 Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:286,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16rivc3-container\",nodeId:\"RcRKFz3Vz\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TeamInfoPopUp,{height:\"100%\",id:\"RcRKFz3Vz\",layoutId:\"RcRKFz3Vz\",rzj3PBZJb:\"Chief Executive Officer at Three Six Zero\",sF2k2m48G:true,style:{width:\"100%\"},variant:\"K0bqpltJx\",width:\"100%\",WllWgDniC:\"https://www.rostr.cc/profile/markgillespie/manager/roster\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:286,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k6r1h2-container\",nodeId:\"LkZAuLuLA\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TeamInfoPopUp,{height:\"100%\",id:\"LkZAuLuLA\",layoutId:\"LkZAuLuLA\",rzj3PBZJb:\"Head of A&R and Business Development at Wasserman Music\",sF2k2m48G:true,style:{width:\"100%\"},variant:\"K0bqpltJx\",width:\"100%\",WllWgDniC:\"https://www.rostr.cc/profile/tomwindish/agent/roster\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:286,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x9tpqk-container\",nodeId:\"FIS1SFRFh\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TeamInfoPopUp,{height:\"100%\",id:\"FIS1SFRFh\",layoutId:\"FIS1SFRFh\",rzj3PBZJb:\" Manager at Lionfish\",sF2k2m48G:false,style:{width:\"100%\"},variant:\"K0bqpltJx\",width:\"100%\",WllWgDniC:\"https://www.rostr.cc/profile/rebecaleon/manager/roster\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g7bg88\",\"data-framer-name\":\"2\uFE0F\u20E3 Artitst Rosters\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dtyex9\",\"data-framer-name\":\"3\uFE0F\u20E3 Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`max(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.45, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e1l27l-container\",nodeId:\"cWJp98Rlb\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{ePwTX9WeP:\"Every record label, publisher, booking agency, booking agent, management company & manager on ROSTR have their own profile.\\n\\nCompany profiles list artists, staff, offices, the genres they work with, external links & company data. \\n\\nAnd, everything on ROSTR is linked, so getting to a staff member, or one of their artists, is just a click away.\",variant:\"ZP3GxnpyC\"},ITR_cxQOB:{variant:\"MS10ew5V0\"}},children:/*#__PURE__*/_jsx(FeaturesSectionHeader,{c5S02mpD4:\"ARTIST ROSTERS\",cxlnFLUAi:\"rgb(0, 0, 0)\",ePwTX9WeP:\"Every management company, booking agency, record label, & publisher on ROSTR has their own profile.\\n\\nCompany profiles list artists, staff, offices, the genres they work with, external links & company data. \\n\\nAnd, everything on ROSTR is linked, so getting to a staff member or an artist is just a click away.\",FndfRE5SJ:\"var(--token-a9cea1b7-af75-468c-9dd3-ef39ef25324d, rgb(0, 204, 188))\",GIeNzStKq:\"rgb(0, 0, 0)\",height:\"100%\",hxSTCgJsZ:\"https://www.rostr.cc/sign-in/new-user?utm_source=hq&utm_medium=web&utm_content=home-rosters\",id:\"cWJp98Rlb\",iuIoSfIq7:\"Tens of thousands of artist rosters in one place\",layoutId:\"cWJp98Rlb\",NvEQpLFmD:\"rgb(0, 0, 0)\",style:{width:\"100%\"},UrG4mwp16:\"ListChecks\",variant:\"yKZEPoaRf\",wD8DWcDHt:true,width:\"100%\",wRG2MnqgR:true,XK_FnqcQx:true,YU0Kge5mf:\"Sign up for free\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-119cw5f\",\"data-framer-name\":\"3\uFE0F\u20E3 Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fgu6cy hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__animate:{transition:transition7},__framer__enter:animation10,__framer__exit:animation11},ITR_cxQOB:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1atjgre-container\",nodeId:\"Bd8JaIEsr\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{style:{width:\"100%\"},variant:\"ewJPRLhhg\"},ITR_cxQOB:{style:{height:\"100%\"},variant:\"zogL23Lej\"}},children:/*#__PURE__*/_jsx(FeaturesRoster,{desktopRoster:addImageAlt({src:\"https://framerusercontent.com/images/4N0KNuzDlqLp6evoHO3uknWUy8c.png\"},\"an image of artist management company Tap Music's artist roster\"),height:\"100%\",id:\"Bd8JaIEsr\",layoutId:\"Bd8JaIEsr\",link:\"https://www.rostr.cc/profile/tapmusic/management/roster\",mobileRoster:addImageAlt({src:\"https://framerusercontent.com/images/ou4EoCQD2atdocErhnaw2xFg5SI.png\",srcSet:\"https://framerusercontent.com/images/ou4EoCQD2atdocErhnaw2xFg5SI.png 528w\"},\"an image of artist management company Tap Music's artist roster\"),side:addImageAlt({src:\"https://framerusercontent.com/images/xpn5jiCumiMs6msMv2MvKizyAb0.png\"},\"an image of artist management company Tap Music's information and data\"),style:{height:\"100%\",width:\"100%\"},variant:\"nI0LXvumq\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ysocaz-container\",nodeId:\"XCNgIHKTO\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{mobileRoster:addImageAlt({src:\"https://framerusercontent.com/images/bRSoGt1umkAxD85LAf0nVZJGQo.png\",srcSet:\"https://framerusercontent.com/images/bRSoGt1umkAxD85LAf0nVZJGQo.png?scale-down-to=4096 604w,https://framerusercontent.com/images/bRSoGt1umkAxD85LAf0nVZJGQo.png 1082w\"},\"\"),variant:\"ewJPRLhhg\"},ITR_cxQOB:{style:{height:\"100%\"},variant:\"zogL23Lej\"}},children:/*#__PURE__*/_jsx(FeaturesRoster,{desktopRoster:addImageAlt({src:\"https://framerusercontent.com/images/8nqu2pd9Z3zApewbNDQK64jSdQ.png\"},\"booking agency WME's artist roster\"),height:\"100%\",id:\"XCNgIHKTO\",layoutId:\"XCNgIHKTO\",link:\"https://www.rostr.cc/profile/wme/agency/roster\",mobileRoster:addImageAlt({src:\"https://framerusercontent.com/images/cvFfr009ysyTKXZJA3npqCF9N0.png\",srcSet:\"https://framerusercontent.com/images/cvFfr009ysyTKXZJA3npqCF9N0.png?scale-down-to=4096 604w,https://framerusercontent.com/images/cvFfr009ysyTKXZJA3npqCF9N0.png 1082w\"},\"booking agency WME's artist roster\"),side:addImageAlt({src:\"https://framerusercontent.com/images/YDvLaArkHCm3lliTKJ5hqW61Pc.png\"},\"booking agency WME's info and data\"),style:{height:\"100%\",width:\"100%\"},variant:\"nI0LXvumq\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oj7yv4-container\",nodeId:\"icVHfeXm8\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{mobileRoster:addImageAlt({src:\"https://framerusercontent.com/images/b4UJhmdLZBizitw2keOM9pgMk.png\",srcSet:\"https://framerusercontent.com/images/b4UJhmdLZBizitw2keOM9pgMk.png?scale-down-to=4096 529w,https://framerusercontent.com/images/b4UJhmdLZBizitw2keOM9pgMk.png 1061w\"},\"\"),variant:\"ewJPRLhhg\"},ITR_cxQOB:{style:{height:\"100%\"},variant:\"zogL23Lej\"}},children:/*#__PURE__*/_jsx(FeaturesRoster,{desktopRoster:addImageAlt({src:\"https://framerusercontent.com/images/OeUTr59LeoPiKWelshfUooaqUQ.png\"},\"record label Republic Records artist roster\"),height:\"100%\",id:\"icVHfeXm8\",layoutId:\"icVHfeXm8\",link:\"https://www.rostr.cc/profile/republicrecords/label/roster\",mobileRoster:addImageAlt({src:\"https://framerusercontent.com/images/xLiXyhsmq2knROsJaR7qyMlTad0.png\",srcSet:\"https://framerusercontent.com/images/xLiXyhsmq2knROsJaR7qyMlTad0.png?scale-down-to=4096 520w,https://framerusercontent.com/images/xLiXyhsmq2knROsJaR7qyMlTad0.png 1071w\"},\"record label Republic Records artist roster\"),side:addImageAlt({src:\"https://framerusercontent.com/images/Vh3tBPtRZKC0q4qsZPeigliXf14.png\"},\"record label Republic Records info and data\"),style:{height:\"100%\",width:\"100%\"},variant:\"nI0LXvumq\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mnegxz hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gxbff\",\"data-framer-name\":\"2\uFE0F\u20E3 Discover Artists\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m9epkv\",\"data-framer-name\":\"3\uFE0F\u20E3 Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1fkvnqe-container\",nodeId:\"YIJLyApDF\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"ZP3GxnpyC\"},ITR_cxQOB:{variant:\"MS10ew5V0\"}},children:/*#__PURE__*/_jsx(FeaturesSectionHeader,{c5S02mpD4:\"DISCOVER ARTISTS\",cxlnFLUAi:\"rgb(0, 0, 0)\",ePwTX9WeP:\"Search for artists by genre, gender, age, releases, audience + if they're signed.\",FndfRE5SJ:\"var(--token-b312da7b-2e93-4e67-8d68-019dabc28250, rgb(227, 20, 137))\",GIeNzStKq:\"rgb(0, 0, 0)\",height:\"100%\",id:\"YIJLyApDF\",iuIoSfIq7:\"Discover the perfect artist to work with\",layoutId:\"YIJLyApDF\",NvEQpLFmD:\"rgb(0, 0, 0)\",style:{maxWidth:\"100%\",width:\"100%\"},UrG4mwp16:\"ListMagnifyingGlass\",variant:\"VWpZ5okqm\",wD8DWcDHt:true,width:\"100%\",wRG2MnqgR:true,XK_FnqcQx:true,YU0Kge5mf:\"Sign up for free\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-trci3m\",\"data-framer-name\":\"3\uFE0F\u20E3 Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12qbstl-container\",nodeId:\"tFwT7otTi\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"aB4F70_bB\"},ITR_cxQOB:{variant:\"oTFVMI4ig\"}},children:/*#__PURE__*/_jsx(FeaturesDiscover,{desktop:addImageAlt({src:\"https://framerusercontent.com/images/YoINZJEM2CQKLCRnHtu0M8FsJQw.png\"},\"an image of ROSTR's powerful artist search to discover artists\"),height:\"100%\",id:\"tFwT7otTi\",layoutId:\"tFwT7otTi\",sidebar:addImageAlt({src:\"https://framerusercontent.com/images/Ahqwm5zOwl3qzGiTIGrw82VWQ.png\"},\"\"),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ohQ80Ne0L\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-x0o9gn hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k4nzms\",\"data-framer-name\":\"2\uFE0F\u20E3 Discover Companies\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3myomf\",\"data-framer-name\":\"3\uFE0F\u20E3 Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-ji2bjl-container\",nodeId:\"f74w57cU7\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"ZP3GxnpyC\"},ITR_cxQOB:{variant:\"MS10ew5V0\"}},children:/*#__PURE__*/_jsx(FeaturesSectionHeader,{c5S02mpD4:\"DISCOVER COMPANIES\",cxlnFLUAi:\"rgb(0, 0, 0)\",ePwTX9WeP:\"Slice & dice the world's largest database of booking agencies, record label, publishers, & artist management companies.\",FndfRE5SJ:\"rgb(255, 160, 10)\",GIeNzStKq:\"rgb(0, 0, 0)\",height:\"100%\",id:\"f74w57cU7\",iuIoSfIq7:\"Find great companies to partner with\",layoutId:\"f74w57cU7\",NvEQpLFmD:\"rgb(0, 0, 0)\",style:{maxWidth:\"100%\",width:\"100%\"},UrG4mwp16:\"ListMagnifyingGlass\",variant:\"VWpZ5okqm\",wD8DWcDHt:true,width:\"100%\",wRG2MnqgR:true,XK_FnqcQx:true,YU0Kge5mf:\"Sign up for free\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qv3uat\",\"data-framer-name\":\"3\uFE0F\u20E3 Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px) * 1.1, 1100px)`},ITR_cxQOB:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px) * 1.1, 1100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1524,width:`min(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 1.1, 1100px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fin281-container\",nodeId:\"aHZHCPy5N\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"PByiHU6Uy\"},ITR_cxQOB:{variant:\"TrUpFFg2d\"}},children:/*#__PURE__*/_jsx(FeaturesDiscoverCompanies,{height:\"100%\",id:\"aHZHCPy5N\",layoutId:\"aHZHCPy5N\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"nkM0JMsER\",width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ksxekz hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ml1gm\",\"data-framer-name\":\"2\uFE0F\u20E3 Feed\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-utslb8\",\"data-framer-name\":\"3\uFE0F\u20E3 Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-17z2v0y-container\",nodeId:\"iA81_bW4g\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"ZP3GxnpyC\"},ITR_cxQOB:{variant:\"MS10ew5V0\"}},children:/*#__PURE__*/_jsx(FeaturesSectionHeader,{c5S02mpD4:\"News Feed\",cxlnFLUAi:\"rgb(0, 0, 0)\",ePwTX9WeP:\"The music industry is constantly changing. Stay in the loop with ROSTR.\",FndfRE5SJ:\"var(--token-b7b11072-c098-4c4d-a20c-9cc2f4065f76, rgb(24, 211, 255))\",GIeNzStKq:\"rgb(0, 0, 0)\",height:\"100%\",id:\"iA81_bW4g\",iuIoSfIq7:\"Welcome to your new music industry homepage\",layoutId:\"iA81_bW4g\",NvEQpLFmD:\"rgb(0, 0, 0)\",style:{maxWidth:\"100%\",width:\"100%\"},UrG4mwp16:\"NewspaperClipping\",variant:\"VWpZ5okqm\",wD8DWcDHt:true,width:\"100%\",wRG2MnqgR:true,XK_FnqcQx:true,YU0Kge5mf:\"Sign up for free\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-190r0ni\",\"data-framer-name\":\"Feed Section\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"uPucEHaes\",data:Feed,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},select:[{collection:\"uPucEHaes\",name:\"lliPjmSM5\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"RNADz6iaJ\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"ZLZw4Yt2i\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"vdN5fu8om\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"mpV86c0EF\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"X8XhKXStI\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"HhKq8tlB_\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"nNxm1XeVR\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"wHW9yqwAG\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"Lzsy4vSF0\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"S0xyrQVtK\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"oUW4gFqvt\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"nfuqEt_e4\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"IjR0r2bC8\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"QJJIuFY2d\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"A3w7EpiJ0\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"p8djPFn9a\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"s8DgLV8nU\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"dHJEHoGRZ\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"bmT7qMABb\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"Tc5fcRB_v\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"imFBNfn_S\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"FNvXgU6BK\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"JV4HvhehG\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"wSN7AiAd4\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"obc7Zl24Y\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"zkKqGf5WR\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"QJBuD99Ko\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"RreGDs82E\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"AsAmSLprl\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"KmUCqfdTo\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"TOYj5P30J\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"e9vF7jZwp\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"TpwqwcMoJ\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"IRD4hQcoB\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"Dq0IBG9Do\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"S5gtB9yhY\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"vXT9qOR0U\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"C6VyAD7Iu\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"h_uo5P32G\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"S7uUBYcIh\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"G0OFlOf1r\",type:\"Identifier\"},{collection:\"uPucEHaes\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"uPucEHaes\",name:\"RNADz6iaJ\",type:\"Identifier\"}},operator:\"and\",right:{collection:\"uPucEHaes\",name:\"EGqyRzVYB\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({A3w7EpiJ0:A3w7EpiJ0uPucEHaes,AsAmSLprl:AsAmSLprluPucEHaes,bmT7qMABb:bmT7qMABbuPucEHaes,C6VyAD7Iu:C6VyAD7IuuPucEHaes,dHJEHoGRZ:dHJEHoGRZuPucEHaes,Dq0IBG9Do:Dq0IBG9DouPucEHaes,e9vF7jZwp:e9vF7jZwpuPucEHaes,FNvXgU6BK:FNvXgU6BKuPucEHaes,G0OFlOf1r:G0OFlOf1ruPucEHaes,h_uo5P32G:h_uo5P32GuPucEHaes,HhKq8tlB_:HhKq8tlB_uPucEHaes,id:iduPucEHaes,IjR0r2bC8:IjR0r2bC8uPucEHaes,imFBNfn_S:imFBNfn_SuPucEHaes,IRD4hQcoB:IRD4hQcoBuPucEHaes,JV4HvhehG:JV4HvhehGuPucEHaes,KmUCqfdTo:KmUCqfdTouPucEHaes,lliPjmSM5:lliPjmSM5uPucEHaes,Lzsy4vSF0:Lzsy4vSF0uPucEHaes,mpV86c0EF:mpV86c0EFuPucEHaes,nfuqEt_e4:nfuqEt_e4uPucEHaes,nNxm1XeVR:nNxm1XeVRuPucEHaes,obc7Zl24Y:obc7Zl24YuPucEHaes,oUW4gFqvt:oUW4gFqvtuPucEHaes,p8djPFn9a:p8djPFn9auPucEHaes,QJBuD99Ko:QJBuD99KouPucEHaes,QJJIuFY2d:QJJIuFY2duPucEHaes,RNADz6iaJ:RNADz6iaJuPucEHaes,RreGDs82E:RreGDs82EuPucEHaes,S0xyrQVtK:S0xyrQVtKuPucEHaes,S5gtB9yhY:S5gtB9yhYuPucEHaes,S7uUBYcIh:S7uUBYcIhuPucEHaes,s8DgLV8nU:s8DgLV8nUuPucEHaes,Tc5fcRB_v:Tc5fcRB_vuPucEHaes,TOYj5P30J:TOYj5P30JuPucEHaes,TpwqwcMoJ:TpwqwcMoJuPucEHaes,vdN5fu8om:vdN5fu8omuPucEHaes,vXT9qOR0U:vXT9qOR0UuPucEHaes,wHW9yqwAG:wHW9yqwAGuPucEHaes,wSN7AiAd4:wSN7AiAd4uPucEHaes,X8XhKXStI:X8XhKXStIuPucEHaes,zkKqGf5WR:zkKqGf5WRuPucEHaes,ZLZw4Yt2i:ZLZw4Yt2iuPucEHaes},index)=>{lliPjmSM5uPucEHaes??=\"\";RNADz6iaJuPucEHaes??=true;mpV86c0EFuPucEHaes??=\"\";nNxm1XeVRuPucEHaes??=\"\";wHW9yqwAGuPucEHaes??=\"\";Lzsy4vSF0uPucEHaes??=\"\";oUW4gFqvtuPucEHaes??=\"\";nfuqEt_e4uPucEHaes??=\"\";IjR0r2bC8uPucEHaes??=true;QJJIuFY2duPucEHaes??=true;A3w7EpiJ0uPucEHaes??=\"\";p8djPFn9auPucEHaes??=\"\";s8DgLV8nUuPucEHaes??=true;dHJEHoGRZuPucEHaes??=\"\";bmT7qMABbuPucEHaes??=\"\";KmUCqfdTouPucEHaes??=\"\";TOYj5P30JuPucEHaes??=\"\";e9vF7jZwpuPucEHaes??=\"\";TpwqwcMoJuPucEHaes??=\"\";IRD4hQcoBuPucEHaes??=\"\";Dq0IBG9DouPucEHaes??=\"\";S5gtB9yhYuPucEHaes??=\"\";vXT9qOR0UuPucEHaes??=\"\";C6VyAD7IuuPucEHaes??=\"\";h_uo5P32GuPucEHaes??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`uPucEHaes-${iduPucEHaes}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{nfuqEt_e4:nfuqEt_e4uPucEHaes},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vrj43s\",\"data-framer-name\":\"Feed\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:oUW4gFqvtuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:A3w7EpiJ0uPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:p8djPFn9auPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:KmUCqfdTouPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:TOYj5P30JuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:e9vF7jZwpuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:TpwqwcMoJuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:IRD4hQcoBuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:Dq0IBG9DouPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:S5gtB9yhYuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:vXT9qOR0UuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:C6VyAD7IuuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:h_uo5P32GuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:oUW4gFqvtuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:A3w7EpiJ0uPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:p8djPFn9auPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:KmUCqfdTouPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:TOYj5P30JuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:e9vF7jZwpuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:TpwqwcMoJuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:IRD4hQcoBuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:Dq0IBG9DouPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:S5gtB9yhYuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:vXT9qOR0UuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:C6VyAD7IuuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:h_uo5P32GuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:oUW4gFqvtuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:A3w7EpiJ0uPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:p8djPFn9auPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:KmUCqfdTouPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:TOYj5P30JuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:e9vF7jZwpuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:TpwqwcMoJuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:IRD4hQcoBuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:Dq0IBG9DouPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:S5gtB9yhYuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:vXT9qOR0UuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:C6VyAD7IuuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}},{href:h_uo5P32GuPucEHaes,implicitPathVariables:{nfuqEt_e4:nfuqEt_e4uPucEHaes}}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d9iw4s-container\",\"data-framer-name\":\"Item\",name:\"Item\",nodeId:\"lAjjMFuvN\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{C9vaGkcHL:resolvedLinks4[37],cq4karOYr:resolvedLinks4[32],GfgEOHRBy:resolvedLinks4[26],h1fw16Ks2:resolvedLinks4[38],HnRlnsVCa:resolvedLinks4[35],jDRhy8rEY:resolvedLinks4[27],QgdXht068:resolvedLinks4[28],T57YUNzlQ:resolvedLinks4[36],u2Ke0B7Lq:resolvedLinks4[29],u6U08mPDp:resolvedLinks4[31],variant:\"DyZxOsv9i\",vPsmtqxiB:resolvedLinks4[33],XKa7kNuNK:resolvedLinks4[34],y99Jmrl6Y:resolvedLinks4[30]},ITR_cxQOB:{C9vaGkcHL:resolvedLinks4[24],cq4karOYr:resolvedLinks4[19],GfgEOHRBy:resolvedLinks4[13],h1fw16Ks2:resolvedLinks4[25],HnRlnsVCa:resolvedLinks4[22],jDRhy8rEY:resolvedLinks4[14],QgdXht068:resolvedLinks4[15],T57YUNzlQ:resolvedLinks4[23],u2Ke0B7Lq:resolvedLinks4[16],u6U08mPDp:resolvedLinks4[18],variant:\"DyZxOsv9i\",vPsmtqxiB:resolvedLinks4[20],XKa7kNuNK:resolvedLinks4[21],y99Jmrl6Y:resolvedLinks4[17]}},children:/*#__PURE__*/_jsx(H2FeedPost,{abwZAKMAR:true,ALirXcLFa:convertFromBoolean2(QJJIuFY2duPucEHaes,activeLocale),apBZRj7YF:isSet(A3w7EpiJ0uPucEHaes),b0BJugYSL:\"var(--token-578c500e-4b55-4424-b32d-8e80632174d3, rgb(255, 191, 0))\",B8d7uPslM:toResponsiveImage(QJBuD99KouPucEHaes),bJCAZpnEE:toResponsiveImage(obc7Zl24YuPucEHaes),C9vaGkcHL:resolvedLinks4[11],cHDeJlF6C:isSet(p8djPFn9auPucEHaes),cq4karOYr:resolvedLinks4[6],d1CIzlhqN:lliPjmSM5uPucEHaes,dbBgWe_QQ:toResponsiveImage(RreGDs82EuPucEHaes),dWjVEBNrm:RNADz6iaJuPucEHaes,E3mTWbCNH:Lzsy4vSF0uPucEHaes,F6pMHu_Vu:isSet(vdN5fu8omuPucEHaes),fj120ghP4:nNxm1XeVRuPucEHaes,GfgEOHRBy:resolvedLinks4[0],GjTqTYddA:convertFromBoolean1(QJJIuFY2duPucEHaes,activeLocale),h1fw16Ks2:resolvedLinks4[12],Hdbr_MYki:toResponsiveImage(HhKq8tlB_uPucEHaes),height:\"100%\",HnRlnsVCa:resolvedLinks4[9],hyZo7U7_7:toResponsiveImage(FNvXgU6BKuPucEHaes),i4nzSuGEo:wHW9yqwAGuPucEHaes,iCwktoXDc:toResponsiveImage(ZLZw4Yt2iuPucEHaes),id:\"lAjjMFuvN\",jDRhy8rEY:resolvedLinks4[1],layoutId:\"lAjjMFuvN\",LHnywxlDx:toResponsiveImage(AsAmSLprluPucEHaes),LloLaqLPM:convertFromEnum(X8XhKXStIuPucEHaes,activeLocale),m0VfnfOu_:negate(equals(X8XhKXStIuPucEHaes,\"gx2RrV36_\")),mAqXwMeMR:toResponsiveImage(imFBNfn_SuPucEHaes),mhmp378xL:bmT7qMABbuPucEHaes,N9ygnhxex:dHJEHoGRZuPucEHaes,name:\"Item\",ODaM3hozS:toResponsiveImage(vdN5fu8omuPucEHaes),pKyIX4WrE:G0OFlOf1ruPucEHaes,q9H3bLnYO:isSet(bmT7qMABbuPucEHaes),QgdXht068:resolvedLinks4[2],qVKgTCznu:toResponsiveImage(zkKqGf5WRuPucEHaes),style:{width:\"100%\"},T57YUNzlQ:resolvedLinks4[10],TdHdjVKh9:toResponsiveImage(wSN7AiAd4uPucEHaes),tJmBeNjfp:convertFromBoolean(QJJIuFY2duPucEHaes,activeLocale),u2Ke0B7Lq:resolvedLinks4[3],u6U08mPDp:resolvedLinks4[5],uGYIXzvfF:s8DgLV8nUuPucEHaes,variant:\"qHzzt1y_t\",vPsmtqxiB:resolvedLinks4[7],wg7JZDqs5:mpV86c0EFuPucEHaes,width:\"100%\",wx51jPkpF:toResponsiveImage(Tc5fcRB_vuPucEHaes),XKa7kNuNK:resolvedLinks4[8],xon6GYJkW:toResponsiveImage(JV4HvhehGuPucEHaes),XSjSVQVTT:IjR0r2bC8uPucEHaes,y99Jmrl6Y:resolvedLinks4[4],yt8ng7NWt:convertFromEnum1(S7uUBYcIhuPucEHaes,activeLocale),zf9r2UtED:toResponsiveImage(S0xyrQVtKuPucEHaes)})})})})})})})})},iduPucEHaes);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u6qba4 hidden-31z8w5 hidden-hsocl6\",\"data-framer-name\":\"News Feed\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lri0ij\",\"data-framer-name\":\"Feed\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{width:`max(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1100px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:136,width:\"742px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d0qm8u-container\",nodeId:\"sDJxhcpFS\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeaturesNMCard,{FI3uZoH39:\"Artist name\",height:\"100%\",id:\"sDJxhcpFS\",layoutId:\"sDJxhcpFS\",lxC20pIOb:\"The Mar\\xedas sign with Mick Management\",PGQogHUN5:\"Artist name\",PmMDzifD6:addImageAlt({src:\"https://framerusercontent.com/images/Yq9SYd8691nWQYwwzTEEowrlPPI.png\",srcSet:\"https://framerusercontent.com/images/Yq9SYd8691nWQYwwzTEEowrlPPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Yq9SYd8691nWQYwwzTEEowrlPPI.png 534w\"},\"\"),S6Ic37D7I:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"sDJxhcpFS\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The Mar\\xedas\"})}),\" signed with \",/*#__PURE__*/_jsx(Link,{href:\"https://rostr.cc/profile/jonathaneshak\",motionChild:true,nodeId:\"sDJxhcpFS\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Jonathan Eshak\"})}),\" of \",/*#__PURE__*/_jsx(Link,{href:\"https://rostr.cc/profile/mickmanagement\",motionChild:true,nodeId:\"sDJxhcpFS\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Mick Management\"})}),\".\\xa0\"]})}),style:{width:\"100%\"},variant:\"uZTPUYt_f\",width:\"100%\",WSbjaDW6I:\"Artist name\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{width:`max(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1100px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:136,width:\"742px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k11a4n-container\",nodeId:\"iKQ6Be_8C\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeaturesNMCard,{FI3uZoH39:\"Artist name\",height:\"100%\",id:\"iKQ6Be_8C\",layoutId:\"iKQ6Be_8C\",lxC20pIOb:\"Kim Petras signs with CAA\",PGQogHUN5:\"Artist name\",PmMDzifD6:addImageAlt({src:\"https://framerusercontent.com/images/OXzhlCCZfEFWwN5zO5ehdVF3wUE.png\",srcSet:\"https://framerusercontent.com/images/OXzhlCCZfEFWwN5zO5ehdVF3wUE.png?scale-down-to=512 512w,https://framerusercontent.com/images/OXzhlCCZfEFWwN5zO5ehdVF3wUE.png 640w\"},\"\"),S6Ic37D7I:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://rostr.cc/profile/kimpetras\",motionChild:true,nodeId:\"iKQ6Be_8C\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Kim Petras\"})}),\" signed with \",/*#__PURE__*/_jsx(Link,{href:\"https://rostr.cc/profile/chrisibbs\",motionChild:true,nodeId:\"iKQ6Be_8C\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Chris Ibbs\"})}),\" & \",/*#__PURE__*/_jsx(Link,{href:\"https://rostr.cc/profile/christiancarino\",motionChild:true,nodeId:\"iKQ6Be_8C\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Christian Carino\"})}),\" of \",/*#__PURE__*/_jsx(Link,{href:\"https://rostr.cc/profile/caa\",motionChild:true,nodeId:\"iKQ6Be_8C\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"CAA\"})}),\" for touring.\"]})}),style:{width:\"100%\"},variant:\"uZTPUYt_f\",width:\"100%\",WSbjaDW6I:\"Artist name\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{width:`max(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1100px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:136,width:\"742px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rm7hlc-container\",nodeId:\"mcz2MDRRD\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeaturesNMCard,{c81kDd9ni:addImageAlt({src:\"https://framerusercontent.com/images/aPPHgHrJcV0uD6sBYm8zJTbB4.png\",srcSet:\"https://framerusercontent.com/images/aPPHgHrJcV0uD6sBYm8zJTbB4.png?scale-down-to=512 512w,https://framerusercontent.com/images/aPPHgHrJcV0uD6sBYm8zJTbB4.png 640w\"},\"\"),FI3uZoH39:\"Troye Sivan\",fSTAORWO6:addImageAlt({src:\"https://framerusercontent.com/images/jUB5bggL2sy4KglRJ36LQPsr2o.png\",srcSet:\"https://framerusercontent.com/images/jUB5bggL2sy4KglRJ36LQPsr2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/jUB5bggL2sy4KglRJ36LQPsr2o.png 640w\"},\"\"),height:\"100%\",id:\"mcz2MDRRD\",layoutId:\"mcz2MDRRD\",lxC20pIOb:\"New Company: Good World Management\",PGQogHUN5:\"Mark Ronson\",PmMDzifD6:addImageAlt({src:\"https://framerusercontent.com/images/KRXs0Q0kSGZ3tl3pGJiuBxOCENs.png\"},\"\"),S6Ic37D7I:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"artist manager \",/*#__PURE__*/_jsx(Link,{href:\"https://www.rostr.cc/profile/brandoncreed/manager/roster\",motionChild:true,nodeId:\"mcz2MDRRD\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Brandon Creed\"})}),\" will exit \",/*#__PURE__*/_jsx(Link,{href:\"https://www.rostr.cc/profile/fullstopmanagement/management/roster\",motionChild:true,nodeId:\"mcz2MDRRD\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Full Stop Management\"})}),\" to launch his new company Good World Management on August 1st.\\xa0\"]})}),style:{width:\"100%\"},variant:\"BwaEs32c2\",width:\"100%\",WSbjaDW6I:\"Charlie XCX\",Xkidu9wht:\"https://www.rostr.cc/profile/troyesivan/artist/overview\",Y4zQLQVG8:addImageAlt({src:\"https://framerusercontent.com/images/gU9oFzcu9Jvr2JpflMhVgenT0Q.png\",srcSet:\"https://framerusercontent.com/images/gU9oFzcu9Jvr2JpflMhVgenT0Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/gU9oFzcu9Jvr2JpflMhVgenT0Q.png 640w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{width:`max(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1100px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:136,width:\"742px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1flvzoj-container\",nodeId:\"N4wSUIKpi\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeaturesNMCard,{c81kDd9ni:addImageAlt({src:\"https://framerusercontent.com/images/EryY3kMYmGSzOZvT1fthzKEjlpw.png\",srcSet:\"https://framerusercontent.com/images/EryY3kMYmGSzOZvT1fthzKEjlpw.png?scale-down-to=512 512w,https://framerusercontent.com/images/EryY3kMYmGSzOZvT1fthzKEjlpw.png 640w\"},\"\"),FI3uZoH39:\"The Front Bottoms\",fSTAORWO6:addImageAlt({src:\"https://framerusercontent.com/images/F6C2SLYVvCNLWRyje2gPgio51dA.png\",srcSet:\"https://framerusercontent.com/images/F6C2SLYVvCNLWRyje2gPgio51dA.png 531w\"},\"\"),height:\"100%\",id:\"N4wSUIKpi\",layoutId:\"N4wSUIKpi\",lxC20pIOb:\"John Lashnits joins Sound Talent Group\",PGQogHUN5:\"Destroy Boys\",PmMDzifD6:addImageAlt({src:\"https://framerusercontent.com/images/iJAy8uAXuXBSgLqED4vHugfv4s.png\"},\"\"),S6Ic37D7I:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Former APA agent \",/*#__PURE__*/_jsx(Link,{href:\"https://www.rostr.cc/profile/johnlashnits/agent/roster\",motionChild:true,nodeId:\"N4wSUIKpi\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"John Lashnits\"})}),\" has joined the team at \",/*#__PURE__*/_jsx(Link,{href:\"https://www.rostr.cc/profile/soundtalentgroupstg/agency/roster\",motionChild:true,nodeId:\"N4wSUIKpi\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Sound Talent Group (STG\"})}),\").\\xa0\"]})}),style:{width:\"100%\"},variant:\"BwaEs32c2\",width:\"100%\",WSbjaDW6I:\"The Wrecks\",Y4zQLQVG8:addImageAlt({src:\"https://framerusercontent.com/images/okCoAqkYrvLUv90VMIl44ASeE.png\",srcSet:\"https://framerusercontent.com/images/okCoAqkYrvLUv90VMIl44ASeE.png?scale-down-to=512 512w,https://framerusercontent.com/images/okCoAqkYrvLUv90VMIl44ASeE.png 640w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{width:`max(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1100px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:136,width:\"742px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jf4klh-container\",nodeId:\"EpvXtVmfR\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeaturesNMCard,{FI3uZoH39:\"Artist name\",height:\"100%\",id:\"EpvXtVmfR\",layoutId:\"EpvXtVmfR\",lxC20pIOb:\"AFROJACK signs with The Shalizi Group\",PGQogHUN5:\"Artist name\",PmMDzifD6:addImageAlt({src:\"https://framerusercontent.com/images/KIXFlOOL1QKXJ2L4Mi64yzrT8aA.png\",srcSet:\"https://framerusercontent.com/images/KIXFlOOL1QKXJ2L4Mi64yzrT8aA.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIXFlOOL1QKXJ2L4Mi64yzrT8aA.png 960w\"},\"\"),S6Ic37D7I:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://rostr.cc/profile/afrojack\",motionChild:true,nodeId:\"EpvXtVmfR\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"AFROJACK\"})}),\" signed with \",/*#__PURE__*/_jsx(Link,{href:\"https://rostr.cc/profile/moeshalizi\",motionChild:true,nodeId:\"EpvXtVmfR\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Moe Shalizi\"})}),\" of \",/*#__PURE__*/_jsx(Link,{href:\"https://rostr.cc/profile/theshalizigroup\",motionChild:true,nodeId:\"EpvXtVmfR\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"The Shalizi Group\"})}),\" for management.\"]})}),style:{width:\"100%\"},variant:\"uZTPUYt_f\",width:\"100%\",WSbjaDW6I:\"Artist name\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{width:`max(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1100px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:136,width:\"742px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qzzzia-container\",nodeId:\"nvzT0RG2n\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeaturesNMCard,{FI3uZoH39:\"Artist name\",height:\"100%\",id:\"nvzT0RG2n\",layoutId:\"nvzT0RG2n\",lxC20pIOb:\"World's Leading Artist Management Co's: Top 100\",PGQogHUN5:\"Artist name\",PmMDzifD6:addImageAlt({src:\"https://framerusercontent.com/images/0zzcmPB4Lkv7tM31XXxfIaimjGs.png\",srcSet:\"https://framerusercontent.com/images/0zzcmPB4Lkv7tM31XXxfIaimjGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/0zzcmPB4Lkv7tM31XXxfIaimjGs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0zzcmPB4Lkv7tM31XXxfIaimjGs.png 1470w\"},\"\"),S6Ic37D7I:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We ranked every management company on ROSTR by how popular their rosters are.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:\"https://top100.rostr.cc/\",motionChild:true,nodeId:\"nvzT0RG2n\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(\"strong\",{children:\"These are the Top 100 in the world right now\"})})})})]}),style:{width:\"100%\"},variant:\"uZTPUYt_f\",width:\"100%\",WSbjaDW6I:\"Artist name\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{width:`max(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1100px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:136,width:\"742px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jq0d7o-container\",nodeId:\"vHzFPpOnP\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeaturesNMCard,{c81kDd9ni:addImageAlt({src:\"https://framerusercontent.com/images/rgRdaqU73C7T6OKd9F2QFyJi8Y.png\",srcSet:\"https://framerusercontent.com/images/rgRdaqU73C7T6OKd9F2QFyJi8Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/rgRdaqU73C7T6OKd9F2QFyJi8Y.png 640w\"},\"\"),FI3uZoH39:\"RIZ LA VIEW\",fSTAORWO6:addImageAlt({src:\"https://framerusercontent.com/images/jsTwpSgWUfPGtaF2hC7209Bi0pw.png\",srcSet:\"https://framerusercontent.com/images/jsTwpSgWUfPGtaF2hC7209Bi0pw.png 535w\"},\"\"),height:\"100%\",id:\"vHzFPpOnP\",layoutId:\"vHzFPpOnP\",lxC20pIOb:\"Matt Aiello & Albert Qiu join Raw Material\",PGQogHUN5:\"Lil West\",PmMDzifD6:addImageAlt({src:\"https://framerusercontent.com/images/Haki6u6bepE5RgPee2xVm6GhWmY.png\",srcSet:\"https://framerusercontent.com/images/Haki6u6bepE5RgPee2xVm6GhWmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Haki6u6bepE5RgPee2xVm6GhWmY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Haki6u6bepE5RgPee2xVm6GhWmY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Haki6u6bepE5RgPee2xVm6GhWmY.png 3600w\"},\"\"),S6Ic37D7I:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Artist managers \",/*#__PURE__*/_jsx(Link,{href:\"https://www.rostr.cc/profile/mattaiello/manager/roster\",motionChild:true,nodeId:\"vHzFPpOnP\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Matt Aiello\"})}),\" & \",/*#__PURE__*/_jsx(Link,{href:\"https://www.rostr.cc/profile/albertqiu2/manager/roster\",motionChild:true,nodeId:\"vHzFPpOnP\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Albert Qiu\"})}),\" have joined LA-based \",/*#__PURE__*/_jsx(Link,{href:\"https://www.rostr.cc/profile/rawmaterial/management/roster\",motionChild:true,nodeId:\"vHzFPpOnP\",openInNewTab:false,scopeId:\"r25Vep6fr\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Raw Material\"})}),\" alongside their rosters.\"]})}),style:{width:\"100%\"},variant:\"BwaEs32c2\",width:\"100%\",WSbjaDW6I:\"27CLUB\",Y4zQLQVG8:addImageAlt({src:\"https://framerusercontent.com/images/MmyY27M7kkDoGUvsYRiuue63eP0.png\",srcSet:\"https://framerusercontent.com/images/MmyY27M7kkDoGUvsYRiuue63eP0.png 448w\"},\"\")})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iud5cp hidden-f0zuci\",\"data-framer-name\":\"Sidebar\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:427,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xewvgo-container\",nodeId:\"TCEY5YU4L\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesDiscoBarBlock,{a4HDj7AaP:\"veggi \uD83D\uDC49\",aKKrBRa9k:addImageAlt({src:\"https://framerusercontent.com/images/VXbcxOwsaMowN2LbdBfcDBS0M94.png\",srcSet:\"https://framerusercontent.com/images/VXbcxOwsaMowN2LbdBfcDBS0M94.png 532w\"},\"\"),CkO6ZdgDn:\"https://www.rostr.cc/profile/jhart\",cSIeedu_G:\"https://www.rostr.cc/profile/caa\",d37ug6HBH:\"https://www.rostr.cc/profile/amiraelfeky\",dKDIOvbRa:\"Anemoia\",e7v9JQnqc:addImageAlt({src:\"https://framerusercontent.com/images/rYDenOOzI5GXEdruKQ8q0NFq0.png\"},\"\"),EKzcOpPIO:\"Sierra Hull \uD83D\uDC49\",FA0M4iDJt:\"https://www.rostr.cc/profile/harmony0\",FFX07kxFw:\"https://www.rostr.cc/profile/veggi\",FgOARb3UX:\"Pure\",FSL9SdA9E:addImageAlt({src:\"https://framerusercontent.com/images/zLivAHfQui0k9rQ2UGgVNdV44c.png\",srcSet:\"https://framerusercontent.com/images/zLivAHfQui0k9rQ2UGgVNdV44c.png?scale-down-to=512 512w,https://framerusercontent.com/images/zLivAHfQui0k9rQ2UGgVNdV44c.png 640w\"},\"\"),gj1jyTwlg:addImageAlt({src:\"https://framerusercontent.com/images/f8Y6uQCvvnBq9sJcUfblC0uJY.png\"},\"\"),gOVchrX2m:addImageAlt({src:\"https://framerusercontent.com/images/lOS7s3OBqmnujYSVVxGafYUwmQY.png\",srcSet:\"https://framerusercontent.com/images/lOS7s3OBqmnujYSVVxGafYUwmQY.png 535w\"},\"\"),Gp6GLMVPN:\"UnitedMasters\",height:\"100%\",HKP7dfBZE:\"https://www.rostr.cc/profile/ghostlyinternational\",iaqGkdtf8:\"Amira Elfeky \uD83D\uDC49\",id:\"TCEY5YU4L\",im0TRmNpY:addImageAlt({src:\"https://framerusercontent.com/images/qBOKrYXxR5v0fK49mAdVPwkYlj0.png\"},\"\"),Iu9WQePka:\"https://www.rostr.cc/profile/tbaagency\",JsKrfMIhg:\"Harmony \uD83D\uDC49\",kjz79uP7V:\"Ghostly Intl.\",layoutId:\"TCEY5YU4L\",LEgFbBVIW:\"https://www.rostr.cc/profile/unitedmasters0\",lIxxLq4rF:addImageAlt({src:\"https://framerusercontent.com/images/CCrS8Fo6YzcPg6VOiHLqEWay72c.png\"},\"\"),mYqSSCdAN:\"https://www.rostr.cc/profile/anemoia\",OOFgq0Vp0:\"Signing Spotlight\",oU8NBlHxJ:\"SUCHI \uD83D\uDC49\",QEdVy4vH1:\"jake minch \uD83D\uDC49\",qs2VkZlOD:\"CAA\",QuMuDiT_7:addImageAlt({src:\"https://framerusercontent.com/images/REC5V2s0V3MKvZ93sETXxng26qk.png\",srcSet:\"https://framerusercontent.com/images/REC5V2s0V3MKvZ93sETXxng26qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/REC5V2s0V3MKvZ93sETXxng26qk.png 640w\"},\"\"),rhhxdqz7M:\"Plain White T's \uD83D\uDC49\",rW72tuhkj:addImageAlt({src:\"https://framerusercontent.com/images/onFePS2gVASg1tSCfYRAe9asNYM.png\",srcSet:\"https://framerusercontent.com/images/onFePS2gVASg1tSCfYRAe9asNYM.png?scale-down-to=512 512w,https://framerusercontent.com/images/onFePS2gVASg1tSCfYRAe9asNYM.png 640w\"},\"\"),rxXXZyueS:\"https://www.rostr.cc/profile/sierrahull\",SCu88lGaH:\"https://www.rostr.cc/profile/pure\",style:{width:\"100%\"},t99ZsvjOH:addImageAlt({src:\"https://framerusercontent.com/images/XMGO7dhJWqkxensKJPlWyBcNu7U.png\"},\"\"),TJjM8gOF7:\"Wasserman Music\",U_2pa2H7O:addImageAlt({src:\"https://framerusercontent.com/images/d9MCkXncBjSIyXukPa6xX9nFU.png\"},\"\"),U4FpiEGK7:\"tmwrk\",variant:\"zimpXQfjq\",vHXOtlGcl:\"JHart \uD83D\uDC49\",VmtoSfyjI:\"https://www.rostr.cc/profile/jakeminch\",VqlAoKUYu:addImageAlt({src:\"https://framerusercontent.com/images/aTAcoSZJugVTgOInkQQ4ytpuxI.png\",srcSet:\"https://framerusercontent.com/images/aTAcoSZJugVTgOInkQQ4ytpuxI.png?scale-down-to=512 512w,https://framerusercontent.com/images/aTAcoSZJugVTgOInkQQ4ytpuxI.png 640w\"},\"\"),width:\"100%\",x6229DjZd:\"https://www.rostr.cc/profile/wassermanmusic\",xKrr2lXyJ:addImageAlt({src:\"https://framerusercontent.com/images/2cQYjlryqR4YsttEGRQwzVfzlHc.png\",srcSet:\"https://framerusercontent.com/images/2cQYjlryqR4YsttEGRQwzVfzlHc.png?scale-down-to=512 512w,https://framerusercontent.com/images/2cQYjlryqR4YsttEGRQwzVfzlHc.png 640w\"},\"\"),xRFa17ohM:\"TBA Agency\",XyBrTZi5X:\"https://www.rostr.cc/profile/suchi\",YBbIA_zdw:addImageAlt({src:\"https://framerusercontent.com/images/Sqxg0BuXg9HWQSeYzPiqL8D4ONs.png\"},\"\"),YjtjH73Ni:addImageAlt({src:\"https://framerusercontent.com/images/UqUjYfQtP6mjJDuHRHnYeyx1Qk.png\"},\"\"),ySXAPgdz9:\"https://www.rostr.cc/profile/tmwrk\",Z9POP76mK:addImageAlt({src:\"https://framerusercontent.com/images/97YcFkg8ft8jeyUTWcMkq7YD07s.png\",srcSet:\"https://framerusercontent.com/images/97YcFkg8ft8jeyUTWcMkq7YD07s.png 639w\"},\"\"),ZaT2FrYUp:\"https://www.rostr.cc/profile/plainwhitets\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:427,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mapo6f-container\",nodeId:\"CU1VanLDP\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesDiscoBarBlock,{a4HDj7AaP:\"Kita Alexander\",CkO6ZdgDn:\"https://rostr.cc/profile/kacyhill\",cSIeedu_G:\"https://rostr.cc/profile/kaliii0\",dKDIOvbRa:\"Artist name\",EKzcOpPIO:\"Alice Glass\",FFX07kxFw:\"https://rostr.cc/profile/kitaalexander\",FgOARb3UX:\"Florry\",gj1jyTwlg:addImageAlt({src:\"https://framerusercontent.com/images/C6dtrjJ1iWnZBJ3QsryuAp5Lg.png\",srcSet:\"https://framerusercontent.com/images/C6dtrjJ1iWnZBJ3QsryuAp5Lg.png?scale-down-to=512 512w,https://framerusercontent.com/images/C6dtrjJ1iWnZBJ3QsryuAp5Lg.png 640w\"},\"\"),Gp6GLMVPN:\"Armani White\",height:\"100%\",iaqGkdtf8:\"Artist name\",id:\"CU1VanLDP\",JsKrfMIhg:\"Artist name\",kjz79uP7V:\"Artist name\",layoutId:\"CU1VanLDP\",LEgFbBVIW:\"https://rostr.cc/profile/armaniwhite\",lIxxLq4rF:addImageAlt({src:\"https://framerusercontent.com/images/qgg889abO2NtRghvvdGeV0EqcQ.png\",srcSet:\"https://framerusercontent.com/images/qgg889abO2NtRghvvdGeV0EqcQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/qgg889abO2NtRghvvdGeV0EqcQ.png 640w\"},\"\"),OOFgq0Vp0:\"Trending Artists\",oU8NBlHxJ:\"Artist name\",QEdVy4vH1:\"\u2020\u2020\u2020 (Crosses)\",qs2VkZlOD:\"Kaliii\",QuMuDiT_7:addImageAlt({src:\"https://framerusercontent.com/images/woPTARbkBYHsE4DTS1ux3QMTosk.png\",srcSet:\"https://framerusercontent.com/images/woPTARbkBYHsE4DTS1ux3QMTosk.png?scale-down-to=512 512w,https://framerusercontent.com/images/woPTARbkBYHsE4DTS1ux3QMTosk.png 640w\"},\"\"),rhhxdqz7M:\"Winona Fighter\",rW72tuhkj:addImageAlt({src:\"https://framerusercontent.com/images/WbrWLc7D6gfhDs1BLbLT1DBwQbA.png\",srcSet:\"https://framerusercontent.com/images/WbrWLc7D6gfhDs1BLbLT1DBwQbA.png?scale-down-to=512 512w,https://framerusercontent.com/images/WbrWLc7D6gfhDs1BLbLT1DBwQbA.png 640w\"},\"\"),rxXXZyueS:\"https://rostr.cc/profile/aliceglass\",SCu88lGaH:\"https://rostr.cc/profile/florry\",style:{width:\"100%\"},t99ZsvjOH:addImageAlt({src:\"https://framerusercontent.com/images/bXBvIycxfWZTI4XWYX19DiR9y2E.png\",srcSet:\"https://framerusercontent.com/images/bXBvIycxfWZTI4XWYX19DiR9y2E.png?scale-down-to=512 512w,https://framerusercontent.com/images/bXBvIycxfWZTI4XWYX19DiR9y2E.png 640w\"},\"\"),TJjM8gOF7:\"Yellow Days\",U4FpiEGK7:\"Girl Ray\",variant:\"YFS3T_FDn\",vHXOtlGcl:\"Kacy Hill\",VmtoSfyjI:\"https://rostr.cc/profile/crosses\",VqlAoKUYu:addImageAlt({src:\"https://framerusercontent.com/images/F2pheMPFJ3X5rOsHIGbdm0zgu8.png\",srcSet:\"https://framerusercontent.com/images/F2pheMPFJ3X5rOsHIGbdm0zgu8.png?scale-down-to=512 512w,https://framerusercontent.com/images/F2pheMPFJ3X5rOsHIGbdm0zgu8.png 640w\"},\"\"),width:\"100%\",x6229DjZd:\"https://rostr.cc/profile/yellowdays\",xKrr2lXyJ:addImageAlt({src:\"https://framerusercontent.com/images/6ffF91mnsEGrXZhsv7n7vNVYyR4.png\",srcSet:\"https://framerusercontent.com/images/6ffF91mnsEGrXZhsv7n7vNVYyR4.png?scale-down-to=512 512w,https://framerusercontent.com/images/6ffF91mnsEGrXZhsv7n7vNVYyR4.png 640w\"},\"\"),xRFa17ohM:\"Artist name\",YBbIA_zdw:addImageAlt({src:\"https://framerusercontent.com/images/jqRGudy4KtnQSh53uJGnUhJz0.png\",srcSet:\"https://framerusercontent.com/images/jqRGudy4KtnQSh53uJGnUhJz0.png?scale-down-to=512 512w,https://framerusercontent.com/images/jqRGudy4KtnQSh53uJGnUhJz0.png 640w\"},\"\"),YjtjH73Ni:addImageAlt({src:\"https://framerusercontent.com/images/HcYRv9iYACEt0kQDrUK1olSU5M.png\",srcSet:\"https://framerusercontent.com/images/HcYRv9iYACEt0kQDrUK1olSU5M.png?scale-down-to=512 512w,https://framerusercontent.com/images/HcYRv9iYACEt0kQDrUK1olSU5M.png 640w\"},\"\"),ySXAPgdz9:\"https://rostr.cc/profile/girlray\",Z9POP76mK:addImageAlt({src:\"https://framerusercontent.com/images/AD9qilNBlUaNd10t26kQkTXn6XU.png\",srcSet:\"https://framerusercontent.com/images/AD9qilNBlUaNd10t26kQkTXn6XU.png?scale-down-to=512 512w,https://framerusercontent.com/images/AD9qilNBlUaNd10t26kQkTXn6XU.png 640w\"},\"\"),ZaT2FrYUp:\"https://rostr.cc/profile/winonafighter\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:427,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cl1yhn-container\",nodeId:\"Gqn5YRiv8\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesDiscoBarBlock,{a4HDj7AaP:\"Fort William\",CkO6ZdgDn:\"https://rostr.cc/profile/hillsartists\",cSIeedu_G:\"https://rostr.cc/profile/terrapinstationentertainment\",dKDIOvbRa:\"Artist name\",EKzcOpPIO:\"Memory Music\",FFX07kxFw:\"https://rostr.cc/profile/fortwilliamartistmanagement\",FgOARb3UX:\"Start To Pretend\",gj1jyTwlg:addImageAlt({src:\"https://framerusercontent.com/images/wO9y5EkG481g04kpg93hgbfuOqA.png\"},\"\"),Gp6GLMVPN:\"Look Out Kid\",height:\"100%\",iaqGkdtf8:\"Artist name\",id:\"Gqn5YRiv8\",JsKrfMIhg:\"Artist name\",kjz79uP7V:\"Artist name\",layoutId:\"Gqn5YRiv8\",LEgFbBVIW:\"https://rostr.cc/profile/lookoutkid\",lIxxLq4rF:addImageAlt({src:\"https://framerusercontent.com/images/H5tzRBfMMbMIj0Z5xVKe8XW0nXw.png\",srcSet:\"https://framerusercontent.com/images/H5tzRBfMMbMIj0Z5xVKe8XW0nXw.png?scale-down-to=512 512w,https://framerusercontent.com/images/H5tzRBfMMbMIj0Z5xVKe8XW0nXw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H5tzRBfMMbMIj0Z5xVKe8XW0nXw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/H5tzRBfMMbMIj0Z5xVKe8XW0nXw.png 2724w\"},\"\"),OOFgq0Vp0:\"Trending Companies\",oU8NBlHxJ:\"Artist name\",QEdVy4vH1:\"Songs You Like\",qs2VkZlOD:\" Terrapin Station Ent.\",QuMuDiT_7:addImageAlt({src:\"https://framerusercontent.com/images/X6ytm8nC4WYW3RHitcRPc5t0aA.png\"},\"\"),rhhxdqz7M:\"Triple A Talent\",rW72tuhkj:addImageAlt({src:\"https://framerusercontent.com/images/oyg1g56aYRKgevtdGW69UehEiZg.png\"},\"\"),rxXXZyueS:\"https://beta.rostr.cc/charts#:~:text=%2B500%25-,Memory%20Music,-9\",SCu88lGaH:\"https://rostr.cc/profile/starttopretendmanagement\",style:{width:\"100%\"},t99ZsvjOH:addImageAlt({src:\"https://framerusercontent.com/images/zAiIlRfgo0dUQMaxX9ifBs4zhVI.png\"},\"\"),TJjM8gOF7:\"Dirty Hit\",U4FpiEGK7:\"TBA Agency\",variant:\"YFS3T_FDn\",vHXOtlGcl:\"Hills\",VmtoSfyjI:\"https://rostr.cc/profile/songsyoulike\",VqlAoKUYu:addImageAlt({src:\"https://framerusercontent.com/images/ivjYyc9FVGJxRdrEkwa8u6nT0hk.png\"},\"\"),width:\"100%\",x6229DjZd:\"https://rostr.cc/profile/dirtyhit\",xKrr2lXyJ:addImageAlt({src:\"https://framerusercontent.com/images/xeTBqJwcwIGuFLnhCYZL4Mb4pQ.png\",srcSet:\"https://framerusercontent.com/images/xeTBqJwcwIGuFLnhCYZL4Mb4pQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xeTBqJwcwIGuFLnhCYZL4Mb4pQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xeTBqJwcwIGuFLnhCYZL4Mb4pQ.png 1200w\"},\"\"),xRFa17ohM:\"Artist name\",YBbIA_zdw:addImageAlt({src:\"https://framerusercontent.com/images/d9MCkXncBjSIyXukPa6xX9nFU.png\"},\"\"),YjtjH73Ni:addImageAlt({src:\"https://framerusercontent.com/images/AqWDrThQKYjOXqUmMKVAY40BE.png\",srcSet:\"https://framerusercontent.com/images/AqWDrThQKYjOXqUmMKVAY40BE.png?scale-down-to=512 512w,https://framerusercontent.com/images/AqWDrThQKYjOXqUmMKVAY40BE.png 600w\"},\"\"),ySXAPgdz9:\"https://rostr.cc/profile/tbaagency\",Z9POP76mK:addImageAlt({src:\"https://framerusercontent.com/images/XZSJu1If6yxaq9Nj3A7uOY3eWWA.png\",srcSet:\"https://framerusercontent.com/images/XZSJu1If6yxaq9Nj3A7uOY3eWWA.png?scale-down-to=512 512w,https://framerusercontent.com/images/XZSJu1If6yxaq9Nj3A7uOY3eWWA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XZSJu1If6yxaq9Nj3A7uOY3eWWA.png 1272w\"},\"\"),ZaT2FrYUp:\"https://rostr.cc/profile/tripleatalentagency\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbrj84\",\"data-framer-name\":\"2\uFE0F\u20E3 Directories\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ea1yfh\",\"data-framer-name\":\"3\uFE0F\u20E3 Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`max(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.45, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ig80ww-container\",nodeId:\"VsBTe3cDK\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"ZP3GxnpyC\"},ITR_cxQOB:{variant:\"MS10ew5V0\"}},children:/*#__PURE__*/_jsx(FeaturesSectionHeader,{c5S02mpD4:\"TOUR & FESTIVAL DIRECTORIES\",cxlnFLUAi:\"rgb(0, 0, 0)\",ePwTX9WeP:\"ROSTR is one of the most used tools in the live music industry. That's not surprising as we not only track booking agent info but also tours & festivals.\\n\\nROSTR's tour & festival directories give you tools to search for & find who's playing, when & where. All with one click access to then find their manager or agent info.\",FndfRE5SJ:\"var(--token-578c500e-4b55-4424-b32d-8e80632174d3, rgb(255, 191, 0))\",GIeNzStKq:\"rgb(0, 0, 0)\",height:\"100%\",hxSTCgJsZ:\"https://www.rostr.cc/sign-in/new-user?utm_source=hq&utm_medium=web&utm_content=home-tours-festivals\",id:\"VsBTe3cDK\",iuIoSfIq7:\"Keep on top of tours & festivals\",layoutId:\"VsBTe3cDK\",NvEQpLFmD:\"rgb(0, 0, 0)\",style:{width:\"100%\"},UrG4mwp16:\"Compass\",variant:\"yKZEPoaRf\",wD8DWcDHt:true,width:\"100%\",wRG2MnqgR:true,XK_FnqcQx:true,YU0Kge5mf:\"Sign up for free\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g86lfv\",\"data-framer-name\":\"3\uFE0F\u20E3 Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14gepzz hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18eiop3\",\"data-framer-name\":\"4\uFE0F\u20E3 Tour Directory\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hyue1a-container\",\"data-framer-name\":\"Header\",name:\"Header\",nodeId:\"qlJVacVGr\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{variant:\"FUrf68cXx\"}},children:/*#__PURE__*/_jsx(UseCasesFeatureHeader,{height:\"100%\",iconColor:\"var(--token-578c500e-4b55-4424-b32d-8e80632174d3, rgb(255, 191, 0))\",iconType:\"ListMagnifyingGlass\",id:\"qlJVacVGr\",layoutId:\"qlJVacVGr\",name:\"Header\",style:{width:\"100%\"},text:\"Find opportunities in the Tour Directory. Filter tours by state, country, genre, artist size, & more.\",variant:\"g6gAmiq4z\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"ROSTRs tour directory listing tours around the world\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,src:\"https://framerusercontent.com/images/TuVbq2IeByyD2IOBtJMEX6oOCI.png\"},className:\"framer-1wfwvi2\",\"data-framer-name\":\"image\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"ROSTR's interactive tour maps showing tour routes for artists around the world\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,src:\"https://framerusercontent.com/images/50V5JCZfWK4u4ZRpzFowYk7sEs.png\"},className:\"framer-dicp5v\",\"data-framer-name\":\"image\",style:{transformPerspective:1200}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hdz0z8\",\"data-framer-name\":\"4\uFE0F\u20E3 Festival Directory\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n7q8fw-container\",\"data-framer-name\":\"Header\",name:\"Header\",nodeId:\"KqNT51V85\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITR_cxQOB:{variant:\"FUrf68cXx\"}},children:/*#__PURE__*/_jsx(UseCasesFeatureHeader,{height:\"100%\",iconColor:\"var(--token-578c500e-4b55-4424-b32d-8e80632174d3, rgb(255, 191, 0))\",iconType:\"ListMagnifyingGlass\",id:\"KqNT51V85\",layoutId:\"KqNT51V85\",name:\"Header\",style:{width:\"100%\"},text:\"Search or browse the Festival Directory to get info on past & future festivals as well as analyze their lineups.\",variant:\"g6gAmiq4z\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"ROSTR's unique festival directory showing festivals and their lineups around the world\",fit:\"fill\",intrinsicHeight:1002,intrinsicWidth:1e3,pixelHeight:1002,pixelWidth:1e3,src:\"https://framerusercontent.com/images/6mPjaYn0KiSOvfIlDz0IxlYMuA.png\"},className:\"framer-1res5rb\",\"data-framer-name\":\"image\",style:{transformPerspective:1200}})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-adjnvy\",\"data-framer-name\":\"2\uFE0F\u20E3 Other Features\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6bgcfv\",\"data-framer-name\":\"3\uFE0F\u20E3 Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`max(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.45, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f07jz8-container\",nodeId:\"p_H5svYpR\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"ZP3GxnpyC\"},ITR_cxQOB:{variant:\"MS10ew5V0\"}},children:/*#__PURE__*/_jsx(FeaturesSectionHeader,{c5S02mpD4:\"OTHER FEATURES\",cxlnFLUAi:\"rgb(0, 0, 0)\",ePwTX9WeP:\"There's more too...\\n\\nFeatures on ROSTR as well as news & analysis we publish give you unique tools to be a more knowledgeable music industry professional.\",FndfRE5SJ:\"var(--token-722e3869-59b2-4501-83cf-83a8c6bb76eb, rgb(98, 54, 255))\",GIeNzStKq:\"rgb(0, 0, 0)\",height:\"100%\",hxSTCgJsZ:\"https://www.rostr.cc/sign-in/new-user?utm_source=hq&utm_medium=web&utm_content=home-other\",id:\"p_H5svYpR\",iuIoSfIq7:\"Signings, Insights, Charts,  Analysis & \u2728AI\",layoutId:\"p_H5svYpR\",NvEQpLFmD:\"rgb(0, 0, 0)\",style:{width:\"100%\"},UrG4mwp16:\"AddressBook\",variant:\"yKZEPoaRf\",wD8DWcDHt:true,width:\"100%\",wRG2MnqgR:true,XK_FnqcQx:true,YU0Kge5mf:\"Sign up for free\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17nf3i9\",\"data-framer-name\":\"3\uFE0F\u20E3 Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-chkh8b hidden-f0zuci hidden-hsocl6\",\"data-framer-name\":\"\u2015 Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6wir3k\",\"data-framer-name\":\"4\uFE0F\u20E3 Signings\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gtiexk-container\",id:elementId9,nodeId:\"PFuQzbQ9a\",ref:ref10,rendersWithMotion:true,scopeId:\"r25Vep6fr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeaturesIconText,{height:\"100%\",id:\"PFuQzbQ9a\",layoutId:\"PFuQzbQ9a\",mieVOZYDx:\"ROSTR tracks more signings than anyone else. If someone's getting signed, it's probably on ROSTR. Use the signings tracker to keep on top of moves (+ the competition).\",style:{width:\"100%\"},variant:\"Ve2rPhhhH\",width:\"100%\",wzPbzJTqu:\"var(--token-722e3869-59b2-4501-83cf-83a8c6bb76eb, rgb(98, 54, 255))\",xpoWz5DTe:\"Signature\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l6o6tp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lt8TmwCge\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"lt8TmwCge\",layoutId:\"lt8TmwCge\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://widget-df27eecde5bd414db293bbe9752b6ce1.elfsig.ht\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y2ltll\",\"data-framer-name\":\"4\uFE0F\u20E3 Insights\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aytyr-container\",id:elementId10,nodeId:\"Ud3ftJqUi\",ref:ref11,scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesIconText,{height:\"100%\",id:\"Ud3ftJqUi\",layoutId:\"Ud3ftJqUi\",mieVOZYDx:\"Get insights on artists from YouTube, Instagram & TikTok + their top 50 cities on Spotify. All right next to team, touring & other info.\",style:{width:\"100%\"},variant:\"Ve2rPhhhH\",width:\"100%\",wzPbzJTqu:\"var(--token-722e3869-59b2-4501-83cf-83a8c6bb76eb, rgb(98, 54, 255))\",xpoWz5DTe:\"ChartBar\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{background:{alt:\"an image showing ROSTR's artists insights across YouTube, Spotify, Instagram and TikTok\",fit:\"fill\",intrinsicHeight:890,intrinsicWidth:1022,pixelHeight:1780,pixelWidth:2044,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px) * 0.9)`,src:\"https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png 2044w\"}},ITR_cxQOB:{background:{alt:\"an image showing ROSTR's artists insights across YouTube, Spotify, Instagram and TikTok\",fit:\"fill\",intrinsicHeight:890,intrinsicWidth:1022,pixelHeight:1780,pixelWidth:2044,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px) * 0.8)`,src:\"https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png 2044w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"an image showing ROSTR's artists insights across YouTube, Spotify, Instagram and TikTok\",fit:\"fill\",intrinsicHeight:890,intrinsicWidth:1022,pixelHeight:1780,pixelWidth:2044,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px) * 0.9)`,src:\"https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUKpvQuMx6TsTDl0NBb4LIpE1g.png 2044w\"},className:\"framer-1gjk3fw\",\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qshvpu\",\"data-framer-name\":\"4\uFE0F\u20E3 \u2728ROADIE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iufo3n-container\",id:elementId11,nodeId:\"mEMdlqymo\",ref:ref12,scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesIconText,{height:\"100%\",id:\"mEMdlqymo\",layoutId:\"mEMdlqymo\",mieVOZYDx:\"Your AI sidekick for the music industry - \u2728ROADIE. Get bios, similar artist recommendations, tour history, audience analysis & more. \u2728ROADIE is our first step towards using AI to help organize the music industry. Check out the video below.\",style:{width:\"100%\"},variant:\"Ve2rPhhhH\",width:\"100%\",wzPbzJTqu:\"var(--token-722e3869-59b2-4501-83cf-83a8c6bb76eb, rgb(98, 54, 255))\",xpoWz5DTe:\"Sparkle\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d2wrw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r6vdbc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OqVEB5Kyt\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"OqVEB5Kyt\",isMixedBorderRadius:false,isRed:true,layoutId:\"OqVEB5Kyt\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://youtube.com/embed/rMaZfY2Fdys?\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dh9fv9\",\"data-framer-name\":\"4\uFE0F\u20E3 Data\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`},ITR_cxQOB:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.95, 1000px) * 0.55 - 100px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17i6xuq-container\",id:elementId12,nodeId:\"Sg63F6GGP\",ref:ref13,scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(FeaturesIconText,{height:\"100%\",id:\"Sg63F6GGP\",layoutId:\"Sg63F6GGP\",mieVOZYDx:\"Our map of the music industry means we have a unique set of data to do unprecedented behind-the-scenes music industry analysis.\",style:{width:\"100%\"},variant:\"Ve2rPhhhH\",width:\"100%\",wzPbzJTqu:\"var(--token-722e3869-59b2-4501-83cf-83a8c6bb76eb, rgb(98, 54, 255))\",xpoWz5DTe:\"ChartPieSlice\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bzfqi1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y65msf-container\",nodeId:\"ucSgX95Hc\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(TeamInfoDataAsset,{height:\"100%\",id:\"ucSgX95Hc\",image:addImageAlt({src:\"https://framerusercontent.com/images/wU5lPrZVL823JYpcjbqWsB44Rk.jpg\",srcSet:\"https://framerusercontent.com/images/wU5lPrZVL823JYpcjbqWsB44Rk.jpg?scale-down-to=1024 875w,https://framerusercontent.com/images/wU5lPrZVL823JYpcjbqWsB44Rk.jpg 1440w\"},\"\"),layoutId:\"ucSgX95Hc\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13809mc-container\",nodeId:\"wG7iedQ0f\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(TeamInfoDataAsset,{height:\"100%\",id:\"wG7iedQ0f\",image:addImageAlt({src:\"https://framerusercontent.com/images/mO1mhZqk7qokOdZ5r2dqHRxUSfE.jpg\",srcSet:\"https://framerusercontent.com/images/mO1mhZqk7qokOdZ5r2dqHRxUSfE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mO1mhZqk7qokOdZ5r2dqHRxUSfE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mO1mhZqk7qokOdZ5r2dqHRxUSfE.jpg 1440w\"},\"\"),layoutId:\"wG7iedQ0f\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__adjustPosition:true,__framer__offset:100,__framer__parallaxTransformEnabled:true,__framer__speed:99,__perspectiveFX:false,__targetOpacity:1},ITR_cxQOB:{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-15e427n-container\",nodeId:\"kN_bFS3qt\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(TeamInfoDataAsset,{height:\"100%\",id:\"kN_bFS3qt\",image:addImageAlt({src:\"https://framerusercontent.com/images/blIj1FlpI4L6MtkFPYNDmKnvSA.jpg\",srcSet:\"https://framerusercontent.com/images/blIj1FlpI4L6MtkFPYNDmKnvSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/blIj1FlpI4L6MtkFPYNDmKnvSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/blIj1FlpI4L6MtkFPYNDmKnvSA.jpg 1080w\"},\"\"),layoutId:\"kN_bFS3qt\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ay7rzp-container\",nodeId:\"tyeHrN4xb\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(TeamInfoDataAsset,{height:\"100%\",id:\"tyeHrN4xb\",image:addImageAlt({src:\"https://framerusercontent.com/images/FQQxk36YYF215mGHnJ5PywiGkmo.jpg\",srcSet:\"https://framerusercontent.com/images/FQQxk36YYF215mGHnJ5PywiGkmo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FQQxk36YYF215mGHnJ5PywiGkmo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FQQxk36YYF215mGHnJ5PywiGkmo.jpg 1440w\"},\"\"),layoutId:\"tyeHrN4xb\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-klzd73-container\",nodeId:\"cjmO0_DTk\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(TeamInfoDataAsset,{height:\"100%\",id:\"cjmO0_DTk\",image:addImageAlt({src:\"https://framerusercontent.com/images/BYttjtcnW3nRH7ZrpyecbkHAYoo.jpg\",srcSet:\"https://framerusercontent.com/images/BYttjtcnW3nRH7ZrpyecbkHAYoo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BYttjtcnW3nRH7ZrpyecbkHAYoo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BYttjtcnW3nRH7ZrpyecbkHAYoo.jpg 1080w\"},\"\"),layoutId:\"cjmO0_DTk\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1},ITR_cxQOB:{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1cfbdkd-container\",nodeId:\"voZH41R3h\",rendersWithMotion:true,scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(TeamInfoDataAsset,{height:\"100%\",id:\"voZH41R3h\",layoutId:\"voZH41R3h\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1baxai9-container\",nodeId:\"okrw1A6yd\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(TeamInfoDataAsset,{height:\"100%\",id:\"okrw1A6yd\",image:addImageAlt({src:\"https://framerusercontent.com/images/OG8amiufeYlfJN9trUoOMaxA.jpg\",srcSet:\"https://framerusercontent.com/images/OG8amiufeYlfJN9trUoOMaxA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OG8amiufeYlfJN9trUoOMaxA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OG8amiufeYlfJN9trUoOMaxA.jpg 1080w\"},\"\"),layoutId:\"okrw1A6yd\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2q0ma0-container\",nodeId:\"yB3ye_dMM\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(TeamInfoDataAsset,{height:\"100%\",id:\"yB3ye_dMM\",image:addImageAlt({src:\"https://framerusercontent.com/images/kHqo6HX7jFh8a4SlwQrvATkXBg.jpg\",srcSet:\"https://framerusercontent.com/images/kHqo6HX7jFh8a4SlwQrvATkXBg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kHqo6HX7jFh8a4SlwQrvATkXBg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kHqo6HX7jFh8a4SlwQrvATkXBg.jpg 1440w\"},\"\"),layoutId:\"yB3ye_dMM\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kcldro-container hidden-f0zuci hidden-hsocl6\",nodeId:\"AFeDU7Coo\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(TeamInfoDataAsset,{height:\"100%\",id:\"AFeDU7Coo\",image:addImageAlt({src:\"https://framerusercontent.com/images/0oaq4BuAGI0GbNFF0xuREouZvI.jpg\",srcSet:\"https://framerusercontent.com/images/0oaq4BuAGI0GbNFF0xuREouZvI.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/0oaq4BuAGI0GbNFF0xuREouZvI.jpg 1440w\"},\"\"),layoutId:\"AFeDU7Coo\",style:{width:\"100%\"},width:\"100%\"})})})]})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation13,className:\"framer-1mo8cdu\",\"data-framer-appear-id\":\"1mo8cdu\",\"data-framer-name\":\"Outro\",id:elementId13,initial:animation14,optimized:true,ref:ref14,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:`min(${componentViewport?.width||\"100vw\"} * 0.8, 1100px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y8lhe9-container\",nodeId:\"paJZXRPko\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"EZsceI5qD\"}},children:/*#__PURE__*/_jsx(BlockCaption,{fQXcMhyI8:\"GET STARTED - FREE\",HcUCiFgfJ:\"var(--token-b312da7b-2e93-4e67-8d68-019dabc28250, rgb(227, 20, 137))\",height:\"100%\",id:\"paJZXRPko\",layoutId:\"paJZXRPko\",style:{height:\"100%\",width:\"100%\"},variant:\"QJmwV0eBI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation13,className:\"framer-7876ny\",\"data-framer-appear-id\":\"7876ny\",initial:animation14,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kh809\",\"data-styles-preset\":\"oEQ4QcUCX\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-b312da7b-2e93-4e67-8d68-019dabc28250, rgb(227, 20, 137)) 0%, var(--token-722e3869-59b2-4501-83cf-83a8c6bb76eb, rgb(98, 54, 255)) 100%)\"},children:\"Join thousands of music industry professionals using ROSTR\"})})}),className:\"framer-1yr7nww\",\"data-framer-name\":\"Build sites of any size, solo or with your team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation13,className:\"framer-k5ruut\",\"data-framer-appear-id\":\"k5ruut\",initial:animation14,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tk7jcg\",\"data-styles-preset\":\"Wfgi1JpQG\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgb(0, 0, 0) 100%)\"},children:\"Sign-up today for free to start saving time, building your network & discovering new artists & companies to work with.\"})})}),className:\"framer-spfgtf\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-durcag-container\",nodeId:\"o5akUlEbU\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"RTmYdjGpZ\"}},children:/*#__PURE__*/_jsx(ButtonsMain,{bj7l6Hqmg:\"Create a free account now\",DnSxRkGP7:\"House\",dW__DtE4y:\"Button Text\",fUpw1w_ci:\"https://www.rostr.cc/sign-in/new-user?utm_source=hq&utm_medium=web&utm_content=above-footer\",height:\"100%\",id:\"o5akUlEbU\",layoutId:\"o5akUlEbU\",oifzywNPJ:false,SxwdMNPnc:\"var(--token-b312da7b-2e93-4e67-8d68-019dabc28250, rgb(227, 20, 137))\",variant:\"lyF_YrwOT\",Vj8LH_oZu:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:1},VlaKGWrcK:\"rgb(102, 102, 255)\",VytNoqGAV:\"var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, rgb(255, 255, 255))\",width:\"100%\",ZsU8LuEoL:false})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gi5021-container\",\"data-framer-name\":\"Footer\",name:\"Footer\",nodeId:\"fCIz1bEqB\",scopeId:\"r25Vep6fr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fVkRNHvtQ:{variant:\"gY8nlvS5l\"},ITR_cxQOB:{variant:\"EHMhP3psd\"}},children:/*#__PURE__*/_jsx(BlockFooter,{height:\"100%\",id:\"fCIz1bEqB\",layoutId:\"fCIz1bEqB\",name:\"Footer\",style:{width:\"100%\"},variant:\"EDLmIH4ex\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fcUdC.framer-b4rvpz, .framer-fcUdC .framer-b4rvpz { display: block; }\",'.framer-fcUdC.framer-31z8w5 { align-content: center; align-items: center; background: radial-gradient(50% 5.3% at 50% 0%, var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, #ffffff) /* {\"name\":\"White\"} */ 0%, hsl(0, 0%, 100%) 100%); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }',\".framer-fcUdC .framer-s02i0o-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-fcUdC .framer-1y20yr5-container { flex: none; height: 1971px; left: 0px; position: absolute; right: 0px; top: 80px; z-index: 1; }\",\".framer-fcUdC .framer-p9mpic { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-fcUdC .framer-6wgrr6 { align-content: flex-start; align-items: flex-start; background-color: var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-1p9nnz3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-o92qyl-container, .framer-fcUdC .framer-1dsr7yd-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fcUdC .framer-1rpb0sm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fcUdC .framer-1agiuz5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-fcUdC .framer-1fqe6o8 { 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: visible; padding: 12px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fcUdC .framer-1azohv4-container, .framer-fcUdC .framer-1oe86q9-container, .framer-fcUdC .framer-1sowm20-container, .framer-fcUdC .framer-ybiv8f-container, .framer-fcUdC .framer-e0dxqf-container, .framer-fcUdC .framer-bq3lfl-container, .framer-fcUdC .framer-45xluk-container, .framer-fcUdC .framer-durcag-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-fcUdC .framer-11n32t0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; opacity: 0.75; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-qtx416 { 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: relative; width: 100%; }\",\".framer-fcUdC .framer-db6occ-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fcUdC .framer-10p43ie, .framer-fcUdC .framer-1akaujd, .framer-fcUdC .framer-mmedfx, .framer-fcUdC .framer-dfz7mt, .framer-fcUdC .framer-1cjxfxc { aspect-ratio: 1.7977207977207976 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 195px); overflow: visible; position: relative; width: 350px; }\",\".framer-fcUdC .framer-1xc59aw, .framer-fcUdC .framer-1jgybo3, .framer-fcUdC .framer-1749oco, .framer-fcUdC .framer-vro09b { aspect-ratio: 1.8013307984790874 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 195px); overflow: visible; position: relative; width: 350px; }\",\".framer-fcUdC .framer-fnwyvs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 95%; }\",\".framer-fcUdC .framer-wuf51x, .framer-fcUdC .framer-1i4fohk, .framer-fcUdC .framer-189rhu2, .framer-fcUdC .framer-1g7bg88, .framer-fcUdC .framer-1xbrj84, .framer-fcUdC .framer-adjnvy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-n6rg8f, .framer-fcUdC .framer-unj1ii, .framer-fcUdC .framer-13y18v, .framer-fcUdC .framer-1dtyex9, .framer-fcUdC .framer-1ea1yfh, .framer-fcUdC .framer-6bgcfv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 45%; z-index: 1; }\",\".framer-fcUdC .framer-bvpkao-container, .framer-fcUdC .framer-754ca9-container, .framer-fcUdC .framer-11hbdxb-container, .framer-fcUdC .framer-1e1l27l-container, .framer-fcUdC .framer-1d9iw4s-container, .framer-fcUdC .framer-ig80ww-container, .framer-fcUdC .framer-1f07jz8-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-fcUdC .framer-1ifu8dv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fcUdC .framer-1l11gjk { flex: none; height: 41.05960264900662vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-fcUdC .framer-ltzbpd-container, .framer-fcUdC .framer-qjjpm8-container, .framer-fcUdC .framer-ou0sdb-container, .framer-fcUdC .framer-16qh9or-container, .framer-fcUdC .framer-jdo92h-container, .framer-fcUdC .framer-ikn3z3-container, .framer-fcUdC .framer-13ma5yo-container, .framer-fcUdC .framer-1pvagql-container, .framer-fcUdC .framer-bfeqbs-container, .framer-fcUdC .framer-gtiexk-container, .framer-fcUdC .framer-aytyr-container, .framer-fcUdC .framer-iufo3n-container, .framer-fcUdC .framer-17i6xuq-container, .framer-fcUdC .framer-gi5021-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-fcUdC .framer-ui0xl-container, .framer-fcUdC .framer-1hy8qhr-container, .framer-fcUdC .framer-ztwvgb-container, .framer-fcUdC .framer-zt7zfj-container, .framer-fcUdC .framer-9g0stm-container, .framer-fcUdC .framer-16rivc3-container, .framer-fcUdC .framer-1k6r1h2-container, .framer-fcUdC .framer-1x9tpqk-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-fcUdC .framer-4sobmm, .framer-fcUdC .framer-mnegxz, .framer-fcUdC .framer-ksxekz { flex: none; height: 25vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-fcUdC .framer-15f1ect { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fcUdC .framer-10devrs, .framer-fcUdC .framer-1k3l957, .framer-fcUdC .framer-1fgu6cy { flex: none; height: 50vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-fcUdC .framer-96s0j7, .framer-fcUdC .framer-1dy9kg9, .framer-fcUdC .framer-mul6xg, .framer-fcUdC .framer-jvomgz, .framer-fcUdC .framer-1939epi, .framer-fcUdC .framer-1qshvpu, .framer-fcUdC .framer-1dh9fv9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-1mbapy5 { aspect-ratio: 0.8077496274217586 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 22px 24px 0px rgba(0, 0, 0, 0.1); flex: none; height: var(--framer-aspect-ratio-supported, 557px); overflow: visible; position: relative; width: 100%; }\",\".framer-fcUdC .framer-1ascq2o, .framer-fcUdC .framer-17nf3i9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fcUdC .framer-15t1g1y, .framer-fcUdC .framer-10ml1gm, .framer-fcUdC .framer-6wir3k, .framer-fcUdC .framer-1y2ltll { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-119cw5f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fcUdC .framer-1atjgre-container, .framer-fcUdC .framer-1ysocaz-container, .framer-fcUdC .framer-oj7yv4-container { flex: none; height: 1205px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-16gxbff, .framer-fcUdC .framer-k4nzms { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",'.framer-fcUdC .framer-1m9epkv, .framer-fcUdC .framer-3myomf { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, #ffffff) /* {\"name\":\"White\"} */ 69.01745495495494%, rgba(227, 20, 137, 0) 99.83811936936937%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 75px 0px; position: sticky; top: 50px; width: 100%; z-index: 1; }',\".framer-fcUdC .framer-1fkvnqe-container, .framer-fcUdC .framer-ji2bjl-container, .framer-fcUdC .framer-17z2v0y-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-trci3m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-12qbstl-container { flex: none; height: auto; max-width: 1100px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-x0o9gn { flex: none; height: 53.14569536423841vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-fcUdC .framer-1qv3uat { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-1fin281-container { flex: none; height: auto; max-width: 1100px; position: relative; width: 110%; }\",'.framer-fcUdC .framer-utslb8 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, #ffffff) /* {\"name\":\"White\"} */ 69.01745495495494%, rgba(227, 20, 137, 0) 99.83811936936937%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 150px 0px; position: sticky; top: 50px; width: 100%; z-index: 9; }',\".framer-fcUdC .framer-190r0ni { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-vrj43s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-u6qba4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 110%; z-index: 1; }\",\".framer-fcUdC .framer-1lri0ij { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fcUdC .framer-1d0qm8u-container, .framer-fcUdC .framer-k11a4n-container, .framer-fcUdC .framer-rm7hlc-container, .framer-fcUdC .framer-1flvzoj-container, .framer-fcUdC .framer-jf4klh-container, .framer-fcUdC .framer-qzzzia-container, .framer-fcUdC .framer-1jq0d7o-container { flex: none; height: auto; position: relative; width: 742px; }\",\".framer-fcUdC .framer-iud5cp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 275px; width: min-content; z-index: 1; }\",\".framer-fcUdC .framer-xewvgo-container, .framer-fcUdC .framer-1mapo6f-container, .framer-fcUdC .framer-1cl1yhn-container { flex: none; height: auto; position: sticky; width: 300px; z-index: 1; }\",\".framer-fcUdC .framer-g86lfv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fcUdC .framer-14gepzz { flex: none; height: 29.98624484181568vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-fcUdC .framer-18eiop3, .framer-fcUdC .framer-hdz0z8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-1hyue1a-container, .framer-fcUdC .framer-n7q8fw-container { flex: none; height: auto; position: relative; width: 100%; z-index: 8; }\",\".framer-fcUdC .framer-1wfwvi2, .framer-fcUdC .framer-dicp5v, .framer-fcUdC .framer-1res5rb { aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 22px 24px 0px rgba(0, 0, 0, 0.1); flex: none; height: var(--framer-aspect-ratio-supported, 437px); overflow: visible; position: relative; width: 97%; }\",\".framer-fcUdC .framer-chkh8b { flex: none; height: 40.397350993377486vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-fcUdC .framer-l6o6tp-container { flex: none; height: 123px; position: relative; width: 100%; z-index: 1; }\",\".framer-fcUdC .framer-1gjk3fw { aspect-ratio: 1.148314606741573 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 22px 24px 0px rgba(0, 0, 0, 0.1); flex: none; height: var(--framer-aspect-ratio-supported, 353px); overflow: visible; position: relative; width: 90%; }\",\".framer-fcUdC .framer-1d2wrw { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 22px 24px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fcUdC .framer-r6vdbc-container { flex: none; height: 388px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-1bzfqi1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-y65msf-container { aspect-ratio: 0.8155339805825242 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); position: relative; width: 150px; }\",\".framer-fcUdC .framer-13809mc-container, .framer-fcUdC .framer-15e427n-container, .framer-fcUdC .framer-klzd73-container, .framer-fcUdC .framer-1baxai9-container, .framer-fcUdC .framer-2q0ma0-container, .framer-fcUdC .framer-1kcldro-container { flex: none; height: auto; position: relative; width: 150px; }\",\".framer-fcUdC .framer-1ay7rzp-container { aspect-ratio: 0.8398058252427184 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 179px); position: relative; width: 150px; }\",\".framer-fcUdC .framer-1cfbdkd-container { flex: none; height: 186px; position: relative; width: 150px; }\",\".framer-fcUdC .framer-1mo8cdu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 100vh; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 80%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fcUdC .framer-y8lhe9-container { flex: none; height: 90px; position: relative; width: 100%; }\",\".framer-fcUdC .framer-7876ny { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fcUdC .framer-1yr7nww, .framer-fcUdC .framer-spfgtf { flex: 0.7 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fcUdC .framer-k5ruut { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 80%; will-change: var(--framer-will-change-effect-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fcUdC.framer-31z8w5, .framer-fcUdC .framer-p9mpic, .framer-fcUdC .framer-6wgrr6, .framer-fcUdC .framer-1p9nnz3, .framer-fcUdC .framer-1fqe6o8, .framer-fcUdC .framer-11n32t0, .framer-fcUdC .framer-qtx416, .framer-fcUdC .framer-fnwyvs, .framer-fcUdC .framer-wuf51x, .framer-fcUdC .framer-n6rg8f, .framer-fcUdC .framer-1ifu8dv, .framer-fcUdC .framer-1i4fohk, .framer-fcUdC .framer-unj1ii, .framer-fcUdC .framer-15f1ect, .framer-fcUdC .framer-96s0j7, .framer-fcUdC .framer-1dy9kg9, .framer-fcUdC .framer-mul6xg, .framer-fcUdC .framer-jvomgz, .framer-fcUdC .framer-1939epi, .framer-fcUdC .framer-189rhu2, .framer-fcUdC .framer-13y18v, .framer-fcUdC .framer-1ascq2o, .framer-fcUdC .framer-15t1g1y, .framer-fcUdC .framer-1g7bg88, .framer-fcUdC .framer-1dtyex9, .framer-fcUdC .framer-119cw5f, .framer-fcUdC .framer-16gxbff, .framer-fcUdC .framer-1m9epkv, .framer-fcUdC .framer-trci3m, .framer-fcUdC .framer-k4nzms, .framer-fcUdC .framer-3myomf, .framer-fcUdC .framer-1qv3uat, .framer-fcUdC .framer-10ml1gm, .framer-fcUdC .framer-utslb8, .framer-fcUdC .framer-190r0ni, .framer-fcUdC .framer-vrj43s, .framer-fcUdC .framer-u6qba4, .framer-fcUdC .framer-1lri0ij, .framer-fcUdC .framer-iud5cp, .framer-fcUdC .framer-1xbrj84, .framer-fcUdC .framer-1ea1yfh, .framer-fcUdC .framer-g86lfv, .framer-fcUdC .framer-18eiop3, .framer-fcUdC .framer-hdz0z8, .framer-fcUdC .framer-adjnvy, .framer-fcUdC .framer-6bgcfv, .framer-fcUdC .framer-17nf3i9, .framer-fcUdC .framer-6wir3k, .framer-fcUdC .framer-1y2ltll, .framer-fcUdC .framer-1qshvpu, .framer-fcUdC .framer-1d2wrw, .framer-fcUdC .framer-1dh9fv9, .framer-fcUdC .framer-1bzfqi1, .framer-fcUdC .framer-1mo8cdu, .framer-fcUdC .framer-7876ny, .framer-fcUdC .framer-k5ruut { gap: 0px; } .framer-fcUdC.framer-31z8w5 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-fcUdC.framer-31z8w5 > :first-child, .framer-fcUdC .framer-p9mpic > :first-child, .framer-fcUdC .framer-6wgrr6 > :first-child, .framer-fcUdC .framer-1fqe6o8 > :first-child, .framer-fcUdC .framer-fnwyvs > :first-child, .framer-fcUdC .framer-1ifu8dv > :first-child, .framer-fcUdC .framer-15f1ect > :first-child, .framer-fcUdC .framer-96s0j7 > :first-child, .framer-fcUdC .framer-1dy9kg9 > :first-child, .framer-fcUdC .framer-mul6xg > :first-child, .framer-fcUdC .framer-jvomgz > :first-child, .framer-fcUdC .framer-1939epi > :first-child, .framer-fcUdC .framer-1ascq2o > :first-child, .framer-fcUdC .framer-15t1g1y > :first-child, .framer-fcUdC .framer-119cw5f > :first-child, .framer-fcUdC .framer-16gxbff > :first-child, .framer-fcUdC .framer-1m9epkv > :first-child, .framer-fcUdC .framer-trci3m > :first-child, .framer-fcUdC .framer-k4nzms > :first-child, .framer-fcUdC .framer-3myomf > :first-child, .framer-fcUdC .framer-1qv3uat > :first-child, .framer-fcUdC .framer-10ml1gm > :first-child, .framer-fcUdC .framer-utslb8 > :first-child, .framer-fcUdC .framer-190r0ni > :first-child, .framer-fcUdC .framer-1lri0ij > :first-child, .framer-fcUdC .framer-iud5cp > :first-child, .framer-fcUdC .framer-g86lfv > :first-child, .framer-fcUdC .framer-18eiop3 > :first-child, .framer-fcUdC .framer-hdz0z8 > :first-child, .framer-fcUdC .framer-17nf3i9 > :first-child, .framer-fcUdC .framer-6wir3k > :first-child, .framer-fcUdC .framer-1y2ltll > :first-child, .framer-fcUdC .framer-1qshvpu > :first-child, .framer-fcUdC .framer-1d2wrw > :first-child, .framer-fcUdC .framer-1dh9fv9 > :first-child, .framer-fcUdC .framer-1mo8cdu > :first-child { margin-top: 0px; } .framer-fcUdC.framer-31z8w5 > :last-child, .framer-fcUdC .framer-p9mpic > :last-child, .framer-fcUdC .framer-6wgrr6 > :last-child, .framer-fcUdC .framer-1fqe6o8 > :last-child, .framer-fcUdC .framer-fnwyvs > :last-child, .framer-fcUdC .framer-1ifu8dv > :last-child, .framer-fcUdC .framer-15f1ect > :last-child, .framer-fcUdC .framer-96s0j7 > :last-child, .framer-fcUdC .framer-1dy9kg9 > :last-child, .framer-fcUdC .framer-mul6xg > :last-child, .framer-fcUdC .framer-jvomgz > :last-child, .framer-fcUdC .framer-1939epi > :last-child, .framer-fcUdC .framer-1ascq2o > :last-child, .framer-fcUdC .framer-15t1g1y > :last-child, .framer-fcUdC .framer-119cw5f > :last-child, .framer-fcUdC .framer-16gxbff > :last-child, .framer-fcUdC .framer-1m9epkv > :last-child, .framer-fcUdC .framer-trci3m > :last-child, .framer-fcUdC .framer-k4nzms > :last-child, .framer-fcUdC .framer-3myomf > :last-child, .framer-fcUdC .framer-1qv3uat > :last-child, .framer-fcUdC .framer-10ml1gm > :last-child, .framer-fcUdC .framer-utslb8 > :last-child, .framer-fcUdC .framer-190r0ni > :last-child, .framer-fcUdC .framer-1lri0ij > :last-child, .framer-fcUdC .framer-iud5cp > :last-child, .framer-fcUdC .framer-g86lfv > :last-child, .framer-fcUdC .framer-18eiop3 > :last-child, .framer-fcUdC .framer-hdz0z8 > :last-child, .framer-fcUdC .framer-17nf3i9 > :last-child, .framer-fcUdC .framer-6wir3k > :last-child, .framer-fcUdC .framer-1y2ltll > :last-child, .framer-fcUdC .framer-1qshvpu > :last-child, .framer-fcUdC .framer-1d2wrw > :last-child, .framer-fcUdC .framer-1dh9fv9 > :last-child, .framer-fcUdC .framer-1mo8cdu > :last-child { margin-bottom: 0px; } .framer-fcUdC .framer-p9mpic > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-fcUdC .framer-6wgrr6 > *, .framer-fcUdC .framer-1fqe6o8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-fcUdC .framer-1p9nnz3 > *, .framer-fcUdC .framer-11n32t0 > *, .framer-fcUdC .framer-qtx416 > *, .framer-fcUdC .framer-n6rg8f > *, .framer-fcUdC .framer-unj1ii > *, .framer-fcUdC .framer-13y18v > *, .framer-fcUdC .framer-1dtyex9 > *, .framer-fcUdC .framer-1ea1yfh > *, .framer-fcUdC .framer-6bgcfv > *, .framer-fcUdC .framer-7876ny > *, .framer-fcUdC .framer-k5ruut > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fcUdC .framer-1p9nnz3 > :first-child, .framer-fcUdC .framer-11n32t0 > :first-child, .framer-fcUdC .framer-qtx416 > :first-child, .framer-fcUdC .framer-wuf51x > :first-child, .framer-fcUdC .framer-n6rg8f > :first-child, .framer-fcUdC .framer-1i4fohk > :first-child, .framer-fcUdC .framer-unj1ii > :first-child, .framer-fcUdC .framer-189rhu2 > :first-child, .framer-fcUdC .framer-13y18v > :first-child, .framer-fcUdC .framer-1g7bg88 > :first-child, .framer-fcUdC .framer-1dtyex9 > :first-child, .framer-fcUdC .framer-vrj43s > :first-child, .framer-fcUdC .framer-u6qba4 > :first-child, .framer-fcUdC .framer-1xbrj84 > :first-child, .framer-fcUdC .framer-1ea1yfh > :first-child, .framer-fcUdC .framer-adjnvy > :first-child, .framer-fcUdC .framer-6bgcfv > :first-child, .framer-fcUdC .framer-1bzfqi1 > :first-child, .framer-fcUdC .framer-7876ny > :first-child, .framer-fcUdC .framer-k5ruut > :first-child { margin-left: 0px; } .framer-fcUdC .framer-1p9nnz3 > :last-child, .framer-fcUdC .framer-11n32t0 > :last-child, .framer-fcUdC .framer-qtx416 > :last-child, .framer-fcUdC .framer-wuf51x > :last-child, .framer-fcUdC .framer-n6rg8f > :last-child, .framer-fcUdC .framer-1i4fohk > :last-child, .framer-fcUdC .framer-unj1ii > :last-child, .framer-fcUdC .framer-189rhu2 > :last-child, .framer-fcUdC .framer-13y18v > :last-child, .framer-fcUdC .framer-1g7bg88 > :last-child, .framer-fcUdC .framer-1dtyex9 > :last-child, .framer-fcUdC .framer-vrj43s > :last-child, .framer-fcUdC .framer-u6qba4 > :last-child, .framer-fcUdC .framer-1xbrj84 > :last-child, .framer-fcUdC .framer-1ea1yfh > :last-child, .framer-fcUdC .framer-adjnvy > :last-child, .framer-fcUdC .framer-6bgcfv > :last-child, .framer-fcUdC .framer-1bzfqi1 > :last-child, .framer-fcUdC .framer-7876ny > :last-child, .framer-fcUdC .framer-k5ruut > :last-child { margin-right: 0px; } .framer-fcUdC .framer-fnwyvs > *, .framer-fcUdC .framer-1m9epkv > *, .framer-fcUdC .framer-3myomf > *, .framer-fcUdC .framer-utslb8 > *, .framer-fcUdC .framer-iud5cp > *, .framer-fcUdC .framer-1d2wrw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fcUdC .framer-wuf51x > *, .framer-fcUdC .framer-1i4fohk > *, .framer-fcUdC .framer-189rhu2 > *, .framer-fcUdC .framer-1g7bg88 > *, .framer-fcUdC .framer-1xbrj84 > *, .framer-fcUdC .framer-adjnvy > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-fcUdC .framer-1ifu8dv > *, .framer-fcUdC .framer-18eiop3 > *, .framer-fcUdC .framer-hdz0z8 > *, .framer-fcUdC .framer-1mo8cdu > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-fcUdC .framer-15f1ect > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-fcUdC .framer-96s0j7 > *, .framer-fcUdC .framer-1dy9kg9 > *, .framer-fcUdC .framer-mul6xg > *, .framer-fcUdC .framer-jvomgz > *, .framer-fcUdC .framer-1939epi > *, .framer-fcUdC .framer-1qshvpu > *, .framer-fcUdC .framer-1dh9fv9 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-fcUdC .framer-1ascq2o > *, .framer-fcUdC .framer-15t1g1y > *, .framer-fcUdC .framer-16gxbff > *, .framer-fcUdC .framer-k4nzms > *, .framer-fcUdC .framer-10ml1gm > *, .framer-fcUdC .framer-17nf3i9 > *, .framer-fcUdC .framer-6wir3k > *, .framer-fcUdC .framer-1y2ltll > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-fcUdC .framer-119cw5f > *, .framer-fcUdC .framer-trci3m > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } .framer-fcUdC .framer-1qv3uat > *, .framer-fcUdC .framer-g86lfv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fcUdC .framer-190r0ni > *, .framer-fcUdC .framer-1lri0ij > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-fcUdC .framer-vrj43s > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-fcUdC .framer-u6qba4 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-fcUdC .framer-1bzfqi1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-fcUdC[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-fcUdC [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-fcUdC[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-fcUdC [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-fcUdC[data-hide-scrollbars=\"true\"], .framer-fcUdC [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','@media (min-width: 768px) and (max-width: 1199px) { .framer-fcUdC.framer-31z8w5 { width: 768px; } .framer-fcUdC .framer-s02i0o-container { width: 95%; } .framer-fcUdC .framer-p9mpic, .framer-fcUdC .framer-1hyue1a-container, .framer-fcUdC .framer-n7q8fw-container { width: 90%; } .framer-fcUdC .framer-fnwyvs { gap: 200px; width: 90%; } .framer-fcUdC .framer-wuf51x, .framer-fcUdC .framer-1i4fohk, .framer-fcUdC .framer-189rhu2, .framer-fcUdC .framer-1g7bg88, .framer-fcUdC .framer-1xbrj84, .framer-fcUdC .framer-adjnvy { align-content: center; align-items: center; flex-direction: column; } .framer-fcUdC .framer-n6rg8f, .framer-fcUdC .framer-unj1ii, .framer-fcUdC .framer-1dtyex9, .framer-fcUdC .framer-1ea1yfh, .framer-fcUdC .framer-6bgcfv { height: 50vh; position: relative; top: unset; width: 100%; } .framer-fcUdC .framer-1ifu8dv, .framer-fcUdC .framer-15f1ect, .framer-fcUdC .framer-1ascq2o, .framer-fcUdC .framer-119cw5f, .framer-fcUdC .framer-g86lfv, .framer-fcUdC .framer-17nf3i9 { flex: none; gap: 120px; width: 100%; } .framer-fcUdC .framer-1mbapy5 { height: var(--framer-aspect-ratio-supported, 856px); } .framer-fcUdC .framer-13y18v { background: linear-gradient(180deg, var(--token-18139a7d-87e7-4373-a46b-5018f0a7d4d5, #ffffff) /* {\"name\":\"White\"} */ 69.01745495495494%, rgba(227, 20, 137, 0) 99.83811936936937%); height: 50vh; position: relative; top: unset; width: 100%; } .framer-fcUdC .framer-1atjgre-container, .framer-fcUdC .framer-1ysocaz-container, .framer-fcUdC .framer-oj7yv4-container { width: auto; } .framer-fcUdC .framer-16gxbff, .framer-fcUdC .framer-k4nzms { align-content: center; align-items: center; } .framer-fcUdC .framer-1m9epkv, .framer-fcUdC .framer-3myomf, .framer-fcUdC .framer-utslb8 { height: 50vh; padding: 0px; position: relative; top: unset; } .framer-fcUdC .framer-trci3m, .framer-fcUdC .framer-1qv3uat { gap: 120px; } .framer-fcUdC .framer-u6qba4 { justify-content: center; width: 100%; } .framer-fcUdC .framer-1d0qm8u-container, .framer-fcUdC .framer-k11a4n-container, .framer-fcUdC .framer-rm7hlc-container, .framer-fcUdC .framer-1flvzoj-container, .framer-fcUdC .framer-jf4klh-container, .framer-fcUdC .framer-qzzzia-container, .framer-fcUdC .framer-1jq0d7o-container { width: 100%; } .framer-fcUdC .framer-1wfwvi2, .framer-fcUdC .framer-dicp5v, .framer-fcUdC .framer-1res5rb { height: var(--framer-aspect-ratio-supported, 671px); } .framer-fcUdC .framer-1gjk3fw { height: var(--framer-aspect-ratio-supported, 482px); width: 80%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fcUdC .framer-fnwyvs, .framer-fcUdC .framer-wuf51x, .framer-fcUdC .framer-1ifu8dv, .framer-fcUdC .framer-1i4fohk, .framer-fcUdC .framer-15f1ect, .framer-fcUdC .framer-189rhu2, .framer-fcUdC .framer-1ascq2o, .framer-fcUdC .framer-1g7bg88, .framer-fcUdC .framer-119cw5f, .framer-fcUdC .framer-trci3m, .framer-fcUdC .framer-1qv3uat, .framer-fcUdC .framer-1xbrj84, .framer-fcUdC .framer-g86lfv, .framer-fcUdC .framer-adjnvy, .framer-fcUdC .framer-17nf3i9 { gap: 0px; } .framer-fcUdC .framer-fnwyvs > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } .framer-fcUdC .framer-fnwyvs > :first-child, .framer-fcUdC .framer-wuf51x > :first-child, .framer-fcUdC .framer-1ifu8dv > :first-child, .framer-fcUdC .framer-1i4fohk > :first-child, .framer-fcUdC .framer-15f1ect > :first-child, .framer-fcUdC .framer-189rhu2 > :first-child, .framer-fcUdC .framer-1ascq2o > :first-child, .framer-fcUdC .framer-1g7bg88 > :first-child, .framer-fcUdC .framer-119cw5f > :first-child, .framer-fcUdC .framer-trci3m > :first-child, .framer-fcUdC .framer-1qv3uat > :first-child, .framer-fcUdC .framer-1xbrj84 > :first-child, .framer-fcUdC .framer-g86lfv > :first-child, .framer-fcUdC .framer-adjnvy > :first-child, .framer-fcUdC .framer-17nf3i9 > :first-child { margin-top: 0px; } .framer-fcUdC .framer-fnwyvs > :last-child, .framer-fcUdC .framer-wuf51x > :last-child, .framer-fcUdC .framer-1ifu8dv > :last-child, .framer-fcUdC .framer-1i4fohk > :last-child, .framer-fcUdC .framer-15f1ect > :last-child, .framer-fcUdC .framer-189rhu2 > :last-child, .framer-fcUdC .framer-1ascq2o > :last-child, .framer-fcUdC .framer-1g7bg88 > :last-child, .framer-fcUdC .framer-119cw5f > :last-child, .framer-fcUdC .framer-trci3m > :last-child, .framer-fcUdC .framer-1qv3uat > :last-child, .framer-fcUdC .framer-1xbrj84 > :last-child, .framer-fcUdC .framer-g86lfv > :last-child, .framer-fcUdC .framer-adjnvy > :last-child, .framer-fcUdC .framer-17nf3i9 > :last-child { margin-bottom: 0px; } .framer-fcUdC .framer-wuf51x > *, .framer-fcUdC .framer-1i4fohk > *, .framer-fcUdC .framer-189rhu2 > *, .framer-fcUdC .framer-1g7bg88 > *, .framer-fcUdC .framer-1xbrj84 > *, .framer-fcUdC .framer-adjnvy > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-fcUdC .framer-1ifu8dv > *, .framer-fcUdC .framer-15f1ect > *, .framer-fcUdC .framer-1ascq2o > *, .framer-fcUdC .framer-119cw5f > *, .framer-fcUdC .framer-trci3m > *, .framer-fcUdC .framer-1qv3uat > *, .framer-fcUdC .framer-g86lfv > *, .framer-fcUdC .framer-17nf3i9 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } }}',\"@media (max-width: 767px) { .framer-fcUdC.framer-31z8w5 { gap: 50px; width: 390px; } .framer-fcUdC .framer-p9mpic { gap: 32px; width: 90%; } .framer-fcUdC .framer-1fqe6o8 { gap: 10px; } .framer-fcUdC .framer-1oe86q9-container { order: 0; } .framer-fcUdC .framer-1sowm20-container { order: 1; } .framer-fcUdC .framer-ybiv8f-container { order: 3; } .framer-fcUdC .framer-e0dxqf-container { order: 4; } .framer-fcUdC .framer-bq3lfl-container { order: 2; } .framer-fcUdC .framer-45xluk-container { order: 5; } .framer-fcUdC .framer-db6occ-container { height: 207px; } .framer-fcUdC .framer-fnwyvs { gap: 250px; width: 90%; } .framer-fcUdC .framer-wuf51x, .framer-fcUdC .framer-1i4fohk, .framer-fcUdC .framer-189rhu2, .framer-fcUdC .framer-1g7bg88, .framer-fcUdC .framer-1xbrj84, .framer-fcUdC .framer-adjnvy { align-content: center; align-items: center; flex-direction: column; } .framer-fcUdC .framer-n6rg8f, .framer-fcUdC .framer-unj1ii, .framer-fcUdC .framer-13y18v, .framer-fcUdC .framer-1dtyex9, .framer-fcUdC .framer-1ea1yfh, .framer-fcUdC .framer-6bgcfv { flex-direction: column; height: 75vh; justify-content: center; position: relative; top: unset; width: 100%; } .framer-fcUdC .framer-bvpkao-container, .framer-fcUdC .framer-754ca9-container, .framer-fcUdC .framer-11hbdxb-container, .framer-fcUdC .framer-1e1l27l-container, .framer-fcUdC .framer-ig80ww-container, .framer-fcUdC .framer-1f07jz8-container { flex: none; width: 100%; z-index: 1; } .framer-fcUdC .framer-1ifu8dv, .framer-fcUdC .framer-1ascq2o, .framer-fcUdC .framer-17nf3i9 { flex: none; width: 100%; } .framer-fcUdC .framer-15f1ect, .framer-fcUdC .framer-119cw5f, .framer-fcUdC .framer-g86lfv { flex: none; gap: 100px; width: 100%; } .framer-fcUdC .framer-1mbapy5 { height: var(--framer-aspect-ratio-supported, 435px); } .framer-fcUdC .framer-1hy8qhr-container { width: 351px; } .framer-fcUdC .framer-1atjgre-container { height: auto; } .framer-fcUdC .framer-1ysocaz-container { height: 1587px; } .framer-fcUdC .framer-oj7yv4-container { height: 1846px; } .framer-fcUdC .framer-16gxbff, .framer-fcUdC .framer-k4nzms { align-content: center; align-items: center; } .framer-fcUdC .framer-1m9epkv, .framer-fcUdC .framer-3myomf, .framer-fcUdC .framer-utslb8 { height: 75vh; justify-content: center; padding: 0px; position: relative; top: unset; } .framer-fcUdC .framer-1fkvnqe-container, .framer-fcUdC .framer-ji2bjl-container, .framer-fcUdC .framer-17z2v0y-container { z-index: 1; } .framer-fcUdC .framer-trci3m, .framer-fcUdC .framer-1qv3uat, .framer-fcUdC .framer-1qshvpu, .framer-fcUdC .framer-1dh9fv9 { gap: 100px; } .framer-fcUdC .framer-1fin281-container { height: 1524px; } .framer-fcUdC .framer-1wfwvi2, .framer-fcUdC .framer-1res5rb { height: var(--framer-aspect-ratio-supported, 316px); width: 90%; } .framer-fcUdC .framer-dicp5v { height: var(--framer-aspect-ratio-supported, 341px); } .framer-fcUdC .framer-l6o6tp-container { height: 88px; } .framer-fcUdC .framer-1gjk3fw { height: var(--framer-aspect-ratio-supported, 275px); } .framer-fcUdC .framer-1yr7nww, .framer-fcUdC .framer-spfgtf { flex: 1 0 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fcUdC.framer-31z8w5, .framer-fcUdC .framer-p9mpic, .framer-fcUdC .framer-1fqe6o8, .framer-fcUdC .framer-fnwyvs, .framer-fcUdC .framer-wuf51x, .framer-fcUdC .framer-n6rg8f, .framer-fcUdC .framer-1i4fohk, .framer-fcUdC .framer-unj1ii, .framer-fcUdC .framer-15f1ect, .framer-fcUdC .framer-189rhu2, .framer-fcUdC .framer-13y18v, .framer-fcUdC .framer-1g7bg88, .framer-fcUdC .framer-1dtyex9, .framer-fcUdC .framer-119cw5f, .framer-fcUdC .framer-trci3m, .framer-fcUdC .framer-1qv3uat, .framer-fcUdC .framer-1xbrj84, .framer-fcUdC .framer-1ea1yfh, .framer-fcUdC .framer-g86lfv, .framer-fcUdC .framer-adjnvy, .framer-fcUdC .framer-6bgcfv, .framer-fcUdC .framer-1qshvpu, .framer-fcUdC .framer-1dh9fv9 { gap: 0px; } .framer-fcUdC.framer-31z8w5 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-fcUdC.framer-31z8w5 > :first-child, .framer-fcUdC .framer-p9mpic > :first-child, .framer-fcUdC .framer-1fqe6o8 > :first-child, .framer-fcUdC .framer-fnwyvs > :first-child, .framer-fcUdC .framer-wuf51x > :first-child, .framer-fcUdC .framer-n6rg8f > :first-child, .framer-fcUdC .framer-1i4fohk > :first-child, .framer-fcUdC .framer-unj1ii > :first-child, .framer-fcUdC .framer-15f1ect > :first-child, .framer-fcUdC .framer-189rhu2 > :first-child, .framer-fcUdC .framer-13y18v > :first-child, .framer-fcUdC .framer-1g7bg88 > :first-child, .framer-fcUdC .framer-1dtyex9 > :first-child, .framer-fcUdC .framer-119cw5f > :first-child, .framer-fcUdC .framer-trci3m > :first-child, .framer-fcUdC .framer-1qv3uat > :first-child, .framer-fcUdC .framer-1xbrj84 > :first-child, .framer-fcUdC .framer-1ea1yfh > :first-child, .framer-fcUdC .framer-g86lfv > :first-child, .framer-fcUdC .framer-adjnvy > :first-child, .framer-fcUdC .framer-6bgcfv > :first-child, .framer-fcUdC .framer-1qshvpu > :first-child, .framer-fcUdC .framer-1dh9fv9 > :first-child { margin-top: 0px; } .framer-fcUdC.framer-31z8w5 > :last-child, .framer-fcUdC .framer-p9mpic > :last-child, .framer-fcUdC .framer-1fqe6o8 > :last-child, .framer-fcUdC .framer-fnwyvs > :last-child, .framer-fcUdC .framer-wuf51x > :last-child, .framer-fcUdC .framer-n6rg8f > :last-child, .framer-fcUdC .framer-1i4fohk > :last-child, .framer-fcUdC .framer-unj1ii > :last-child, .framer-fcUdC .framer-15f1ect > :last-child, .framer-fcUdC .framer-189rhu2 > :last-child, .framer-fcUdC .framer-13y18v > :last-child, .framer-fcUdC .framer-1g7bg88 > :last-child, .framer-fcUdC .framer-1dtyex9 > :last-child, .framer-fcUdC .framer-119cw5f > :last-child, .framer-fcUdC .framer-trci3m > :last-child, .framer-fcUdC .framer-1qv3uat > :last-child, .framer-fcUdC .framer-1xbrj84 > :last-child, .framer-fcUdC .framer-1ea1yfh > :last-child, .framer-fcUdC .framer-g86lfv > :last-child, .framer-fcUdC .framer-adjnvy > :last-child, .framer-fcUdC .framer-6bgcfv > :last-child, .framer-fcUdC .framer-1qshvpu > :last-child, .framer-fcUdC .framer-1dh9fv9 > :last-child { margin-bottom: 0px; } .framer-fcUdC .framer-p9mpic > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-fcUdC .framer-1fqe6o8 > *, .framer-fcUdC .framer-n6rg8f > *, .framer-fcUdC .framer-unj1ii > *, .framer-fcUdC .framer-13y18v > *, .framer-fcUdC .framer-1dtyex9 > *, .framer-fcUdC .framer-1ea1yfh > *, .framer-fcUdC .framer-6bgcfv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fcUdC .framer-fnwyvs > * { margin: 0px; margin-bottom: calc(250px / 2); margin-top: calc(250px / 2); } .framer-fcUdC .framer-wuf51x > *, .framer-fcUdC .framer-1i4fohk > *, .framer-fcUdC .framer-15f1ect > *, .framer-fcUdC .framer-189rhu2 > *, .framer-fcUdC .framer-1g7bg88 > *, .framer-fcUdC .framer-119cw5f > *, .framer-fcUdC .framer-trci3m > *, .framer-fcUdC .framer-1qv3uat > *, .framer-fcUdC .framer-1xbrj84 > *, .framer-fcUdC .framer-g86lfv > *, .framer-fcUdC .framer-adjnvy > *, .framer-fcUdC .framer-1qshvpu > *, .framer-fcUdC .framer-1dh9fv9 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26357.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ITR_cxQOB\":{\"layout\":[\"fixed\",\"auto\"]},\"fVkRNHvtQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"oPgZ_05e6\":{\"pattern\":\":oPgZ_05e6\",\"name\":\"introduction\"},\"vYkA1rCtM\":{\"pattern\":\":vYkA1rCtM\",\"name\":\"team-info\"},\"iYuhfJMvX\":{\"pattern\":\":iYuhfJMvX\",\"name\":\"contact-info\"},\"kGAmnL88v\":{\"pattern\":\":kGAmnL88v\",\"name\":\"artist-rosters\"},\"Z70w_K9ju\":{\"pattern\":\":Z70w_K9ju\",\"name\":\"discover-artists\"},\"Zi2sQrFo9\":{\"pattern\":\":Zi2sQrFo9\",\"name\":\"discover-companies\"},\"SZbfBdUc3\":{\"pattern\":\":SZbfBdUc3\",\"name\":\"news-feed\"},\"JX7bogYvm\":{\"pattern\":\":JX7bogYvm\",\"name\":\"directories\"},\"SYauYN7qT\":{\"pattern\":\":SYauYN7qT\",\"name\":\"other-features\"},\"PFuQzbQ9a\":{\"pattern\":\":PFuQzbQ9a\",\"name\":\"start-scroll\"},\"Ud3ftJqUi\":{\"pattern\":\":Ud3ftJqUi\",\"name\":\"start-scroll\"},\"mEMdlqymo\":{\"pattern\":\":mEMdlqymo\",\"name\":\"start-scroll\"},\"Sg63F6GGP\":{\"pattern\":\":Sg63F6GGP\",\"name\":\"start-scroll\"},\"sZIS2LEvX\":{\"pattern\":\":sZIS2LEvX\",\"name\":\"outro\"}}\n * @framerResponsiveScreen\n */const Framerr25Vep6fr=withCSS(Component,css,\"framer-fcUdC\");export default Framerr25Vep6fr;Framerr25Vep6fr.displayName=\"Home\";Framerr25Vep6fr.defaultProps={height:26357.5,width:1200};addFonts(Framerr25Vep6fr,[{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\"}]},...HeaderNavigationFonts,...ParticlesFonts,...CardsAnnouncementCopyFonts,...ButtonsMainFonts,...TickerFonts,...FeaturesSectionHeaderFonts,...CardsTestimonialFonts,...FeaturesIconTextFonts,...FeaturesTeamInfoFonts,...TeamInfoPopUpFonts,...FeaturesRosterFonts,...FeaturesDiscoverFonts,...FeaturesDiscoverCompaniesFonts,...H2FeedPostFonts,...FeaturesNMCardFonts,...FeaturesDiscoBarBlockFonts,...UseCasesFeatureHeaderFonts,...EmbedFonts,...YouTubeFonts,...TeamInfoDataAssetFonts,...BlockCaptionFonts,...BlockFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr25Vep6fr\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ITR_cxQOB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fVkRNHvtQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"oPgZ_05e6\\\":{\\\"pattern\\\":\\\":oPgZ_05e6\\\",\\\"name\\\":\\\"introduction\\\"},\\\"vYkA1rCtM\\\":{\\\"pattern\\\":\\\":vYkA1rCtM\\\",\\\"name\\\":\\\"team-info\\\"},\\\"iYuhfJMvX\\\":{\\\"pattern\\\":\\\":iYuhfJMvX\\\",\\\"name\\\":\\\"contact-info\\\"},\\\"kGAmnL88v\\\":{\\\"pattern\\\":\\\":kGAmnL88v\\\",\\\"name\\\":\\\"artist-rosters\\\"},\\\"Z70w_K9ju\\\":{\\\"pattern\\\":\\\":Z70w_K9ju\\\",\\\"name\\\":\\\"discover-artists\\\"},\\\"Zi2sQrFo9\\\":{\\\"pattern\\\":\\\":Zi2sQrFo9\\\",\\\"name\\\":\\\"discover-companies\\\"},\\\"SZbfBdUc3\\\":{\\\"pattern\\\":\\\":SZbfBdUc3\\\",\\\"name\\\":\\\"news-feed\\\"},\\\"JX7bogYvm\\\":{\\\"pattern\\\":\\\":JX7bogYvm\\\",\\\"name\\\":\\\"directories\\\"},\\\"SYauYN7qT\\\":{\\\"pattern\\\":\\\":SYauYN7qT\\\",\\\"name\\\":\\\"other-features\\\"},\\\"PFuQzbQ9a\\\":{\\\"pattern\\\":\\\":PFuQzbQ9a\\\",\\\"name\\\":\\\"start-scroll\\\"},\\\"Ud3ftJqUi\\\":{\\\"pattern\\\":\\\":Ud3ftJqUi\\\",\\\"name\\\":\\\"start-scroll\\\"},\\\"mEMdlqymo\\\":{\\\"pattern\\\":\\\":mEMdlqymo\\\",\\\"name\\\":\\\"start-scroll\\\"},\\\"Sg63F6GGP\\\":{\\\"pattern\\\":\\\":Sg63F6GGP\\\",\\\"name\\\":\\\"start-scroll\\\"},\\\"sZIS2LEvX\\\":{\\\"pattern\\\":\\\":sZIS2LEvX\\\",\\\"name\\\":\\\"outro\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"26357.5\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KA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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "link", "showReadMore", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Q314MJfCv", "huKQlqxfG", "WHlRZQpvJ", "gMBePXQhy", "mzNCF_7mK", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "SVG", "css", "FramerDy996kWTg", "withCSS", "Dy996kWTg_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "image", "width", "props", "ref", "createLayoutDependency", "variants", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "walL1euqR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Image2", "css", "FrameroaHUsDcTv", "withCSS", "oaHUsDcTv_default", "addPropertyControls", "ControlType", "addFonts", "HeaderNavigationFonts", "getFonts", "aJeZuTaMj_default", "ParticlesFonts", "ParticleWrapper", "CardsAnnouncementCopyFonts", "Dy996kWTg_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonsMainFonts", "c9_WEV8sU_default", "MotionDivWithOptimizedAppearEffect", "motion", "TickerFonts", "Ticker", "FeaturesSectionHeaderFonts", "T1HP1LwfZ_default", "ContainerWithFX", "withFX", "CardsTestimonialFonts", "eMXT7ppyB_default", "FeaturesIconTextFonts", "xoo2YIBgq_default", "FeaturesTeamInfoFonts", "k5dtjCVMs_default", "MotionDivWithFX", "TeamInfoPopUpFonts", "npAEOsIuJ_default", "FeaturesRosterFonts", "rmHQNXicV_default", "FeaturesDiscoverFonts", "ro5DKdOHT_default", "FeaturesDiscoverCompaniesFonts", "vP2BSHnRi_default", "H2FeedPostFonts", "b5gyElRjY_default", "FeaturesNMCardFonts", "dKOMC8J08_default", "FeaturesDiscoBarBlockFonts", "I3Qc5wPHH_default", "UseCasesFeatureHeaderFonts", "OrOpMO_l9_default", "ImageWithFX", "Image2", "EmbedFonts", "Embed", "YouTubeFonts", "Youtube", "TeamInfoDataAssetFonts", "oaHUsDcTv_default", "BlockCaptionFonts", "C9LUYhJNu_default", "BlockFooterFonts", "vjSwed9F8_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "textEffect", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "addImageAlt", "image", "alt", "animation10", "transition7", "animation11", "animation12", "toResponsiveImage", "value", "convertFromEnum", "activeLocale", "equals", "a", "b", "negate", "isSet", "convertFromBoolean", "convertFromBoolean1", "convertFromBoolean2", "convertFromEnum1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition8", "animation13", "animation14", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "lliPjmSM5uPucEHaes", "RNADz6iaJuPucEHaes", "ZLZw4Yt2iuPucEHaes", "vdN5fu8omuPucEHaes", "mpV86c0EFuPucEHaes", "X8XhKXStIuPucEHaes", "HhKq8tlB_uPucEHaes", "nNxm1XeVRuPucEHaes", "wHW9yqwAGuPucEHaes", "Lzsy4vSF0uPucEHaes", "S0xyrQVtKuPucEHaes", "oUW4gFqvtuPucEHaes", "nfuqEt_e4uPucEHaes", "IjR0r2bC8uPucEHaes", "QJJIuFY2duPucEHaes", "A3w7EpiJ0uPucEHaes", "p8djPFn9auPucEHaes", "s8DgLV8nUuPucEHaes", "dHJEHoGRZuPucEHaes", "bmT7qMABbuPucEHaes", "Tc5fcRB_vuPucEHaes", "imFBNfn_SuPucEHaes", "FNvXgU6BKuPucEHaes", "JV4HvhehGuPucEHaes", "wSN7AiAd4uPucEHaes", "obc7Zl24YuPucEHaes", "zkKqGf5WRuPucEHaes", "QJBuD99KouPucEHaes", "RreGDs82EuPucEHaes", "AsAmSLprluPucEHaes", "KmUCqfdTouPucEHaes", "TOYj5P30JuPucEHaes", "e9vF7jZwpuPucEHaes", "TpwqwcMoJuPucEHaes", "IRD4hQcoBuPucEHaes", "Dq0IBG9DouPucEHaes", "S5gtB9yhYuPucEHaes", "vXT9qOR0UuPucEHaes", "C6VyAD7IuuPucEHaes", "h_uo5P32GuPucEHaes", "S7uUBYcIhuPucEHaes", "G0OFlOf1ruPucEHaes", "iduPucEHaes", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "isDisplayed1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "isDisplayed2", "elementId6", "ref7", "isDisplayed3", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "elementId11", "ref12", "elementId12", "ref13", "elementId13", "ref14", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "x", "resolvedLinks2", "resolvedLinks3", "ChildrenCanSuspend", "Xlfeo_72_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks4", "Link", "css", "Framerr25Vep6fr", "withCSS", "r25Vep6fr_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
