{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/Kk2kVe2O5dzKLVTq1m01/5dp3bwLEko1zW7qeEOgm/vLSq8o0qw.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}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/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/s8KoqWSd7OOFVFWjfSWd/SmoothScroll_Prod.js\";import FooterFooterComponent from\"#framer/local/canvasComponent/OjfkMUT0X/OjfkMUT0X.js\";import NavbarNavbarComponent from\"#framer/local/canvasComponent/QXsgQf2ii/QXsgQf2ii.js\";import ButtonWide from\"#framer/local/canvasComponent/YQKexJEk4/YQKexJEk4.js\";import WorkItem2 from\"#framer/local/canvasComponent/z0bIM2STb/z0bIM2STb.js\";import*as sharedStyle3 from\"#framer/local/css/D9GfhrOk_/D9GfhrOk_.js\";import*as sharedStyle from\"#framer/local/css/TEBJS9o7F/TEBJS9o7F.js\";import*as sharedStyle2 from\"#framer/local/css/TGRRrfBjC/TGRRrfBjC.js\";import*as sharedStyle1 from\"#framer/local/css/U0MmTVoIp/U0MmTVoIp.js\";import metadataProvider from\"#framer/local/webPageMetadata/vLSq8o0qw/vLSq8o0qw.js\";const NavbarNavbarComponentFonts=getFonts(NavbarNavbarComponent);const NavbarNavbarComponentWithVariantAppearEffect=withVariantAppearEffect(NavbarNavbarComponent);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const SmoothScrollFonts=getFonts(SmoothScroll);const WorkItem2Fonts=getFonts(WorkItem2);const TickerFonts=getFonts(Ticker);const ButtonWideFonts=getFonts(ButtonWide);const FooterFooterComponentFonts=getFonts(FooterFooterComponent);const breakpoints={GRKEAPTAd:\"(min-width: 1200px)\",qilLVfSWO:\"(max-width: 809px)\",yR_pZFArP:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-FxyMF\";const variantClassNames={GRKEAPTAd:\"framer-v-11u4x4i\",qilLVfSWO:\"framer-v-1rodlgc\",yR_pZFArP:\"framer-v-1xki5nt\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:.1,mass:1,stiffness:139,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:180};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"GRKEAPTAd\",Phone:\"qilLVfSWO\",Tablet:\"yR_pZFArP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GRKEAPTAd\"};};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,VrscGOSsfNThH1gSIz,...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 ref1=React.useRef(null);const elementId=useRouteElementId(\"fHW1dQnIz\");const activeLocaleCode=useLocaleCode();const textContent=toDateString(VrscGOSsfNThH1gSIz,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const isDisplayed=()=>{if(!isBrowser())return true;if([\"yR_pZFArP\",\"qilLVfSWO\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"CEg04w_JF\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"c81wGgbtH\");const ref3=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GRKEAPTAd\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-76c6d1b1-5fc7-42aa-9874-dbfda4135fa2, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-11u4x4i\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:\"min(100vw, 1920px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nudw9d-container\",id:\"1nudw9d\",layoutScroll:true,nodeId:\"Fk0QZvnYd\",rendersWithMotion:true,scopeId:\"vLSq8o0qw\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{__framer__variantAppearEffectEnabled:undefined,variant:\"KFrzXyYML\"},yR_pZFArP:{__framer__variantAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(NavbarNavbarComponentWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"tIc2kHhLk\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Fk0QZvnYd\",layoutId:\"Fk0QZvnYd\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"e_WVIDgWZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wp0bj\"}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-1kbe2zw\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsx(MotionSectionWithOptimizedAppearEffect,{animate:animation,className:\"framer-d38w0x\",\"data-framer-appear-id\":\"d38w0x\",\"data-framer-name\":\"Section - Hero\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q47dzb\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5tahu9\",\"data-styles-preset\":\"TEBJS9o7F\",style:{\"--framer-text-color\":\"var(--token-434cce6a-f877-480c-a9e2-6178c2acd08c, rgb(128, 128, 128))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"EQMhrfXTN\",openInNewTab:false,scopeId:\"vLSq8o0qw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ep3d44\",\"data-styles-preset\":\"U0MmTVoIp\",children:\"Back to Home\"})})})}),className:\"framer-1io6jqw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h1ic79\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nit4cr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q8bd9k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5tahu9\",\"data-styles-preset\":\"TEBJS9o7F\",style:{\"--framer-text-color\":\"var(--token-434cce6a-f877-480c-a9e2-6178c2acd08c, rgb(128, 128, 128))\"},children:\"Content\"})}),className:\"framer-100ejz5\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-18qxhxb\",\"data-styles-preset\":\"TGRRrfBjC\",children:\"Soundtrack Your Brand Partner\"})}),className:\"framer-1fr8cht\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jco6rl\",\"data-styles-preset\":\"D9GfhrOk_\",style:{\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(13, 13, 13))\"},children:[\"We\u2019ve partnered with \",/*#__PURE__*/_jsx(\"strong\",{children:\"Soundtrack Your Brand\"}),\", a world-class platform built for brands that care about what they sound like. Whether you\u2019re running a retail store, caf\\xe9, co-working space, or global franchise, the platform gives you full control of your background music. It streams fully licensed music, curated by real experts, designed to match your brand\u2019s mood, energy, and tone.\"]})}),className:\"framer-scdej1\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3egy21-container hidden-1xki5nt hidden-1rodlgc\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UFPNhqzP_\",scopeId:\"vLSq8o0qw\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"UFPNhqzP_\",intensity:8,layoutId:\"UFPNhqzP_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10k3hp3\",\"data-framer-name\":\"Get Template Button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1la0wc0\",\"data-framer-name\":\"Button Wrapper\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1068),pixelHeight:3706,pixelWidth:4920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg\",srcSet:\"https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg 4920w\"}},yR_pZFArP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+602.8),pixelHeight:3706,pixelWidth:4920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg\",srcSet:\"https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg 4920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+802.8),pixelHeight:3706,pixelWidth:4920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg\",srcSet:\"https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/br8qbv5XVSSteG6MBovxkS1fFsY.jpg 4920w\"},className:\"framer-6khua9\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ut1tm\",\"data-framer-name\":\"About - Info\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2la873\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(13, 13, 13))\"},children:\"But more than just a background music tool, it opens up a new canvas for creative audio experiences. From custom environments to adaptive soundscapes powered by real-time data, Soundtrack Your Brand becomes a tool for not just setting the tone, but for shaping how people feel, move, and connect inside your space.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(13, 13, 13))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(13, 13, 13))\"},children:\"Now officially available through Soundela, this platform becomes part of our broader service offering, helping brands manage their music with intention while unlocking new layers of storytelling, immersion, and strategy through sound.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(13, 13, 13))\"},children:\"But more than just a background music tool, it opens up a new canvas for creative audio experiences. From custom environments to adaptive soundscapes powered by real-time data, Soundtrack Your Brand becomes a tool for not just setting the tone, but for shaping how people feel, move, and connect inside your space.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(13, 13, 13))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(13, 13, 13))\"},children:\"Now officially available through Soundela, this platform becomes part of our broader service offering, helping brands manage their music with intention while unlocking new layers of storytelling, immersion, and strategy through sound.\"})]}),className:\"framer-c5nq14\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hb9p8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yzl9lr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgVzFHIEJvbGQ=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic W1G Bold\", \"ITC Avant Garde Gothic W1G Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--token-76c6d1b1-5fc7-42aa-9874-dbfda4135fa2, rgb(255, 255, 255))\"},children:\"Services\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgVzFHIEJvbGQ=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic W1G Bold\", \"ITC Avant Garde Gothic W1G Bold Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--token-76c6d1b1-5fc7-42aa-9874-dbfda4135fa2, rgb(255, 255, 255))\"},children:\"Services\"})}),className:\"framer-m8cxcn\",fonts:[\"CUSTOM;ITC Avant Garde Gothic W1G Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i92uxt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fasz8e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{width:`max(${componentViewport?.width||\"100vw\"} - 70px, 50px)`,y:(componentViewport?.y||0)+0+1634+30+93.2+0+0+0+0},yR_pZFArP:{y:(componentViewport?.y||0)+0+1644.8+30+95.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:422,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1844.8+30+95.6+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1456gir-container\",nodeId:\"KmoUFN0Yu\",scopeId:\"vLSq8o0qw\",children:/*#__PURE__*/_jsx(WorkItem2,{dwOJy93Zs:\"Music as part of your spatial identity. We design music strategies that adapt across locations, floors, moods, or customer flows, helping shape how people feel, move, and connect in your space.\\nIt\u2019s not about always sounding \u201Con brand\u201D it\u2019s about creating the right atmosphere for your customers in the moments that matter.\\nWe also develop music guidelines and frameworks for in-house teams, so your sound stays thoughtful, consistent, and easy to manage across every touchpoint.\",dWQ6XxJby:\"Project Title\",fkawQNse9:false,gPaWOG60A:\"Service 2\",height:\"100%\",id:\"KmoUFN0Yu\",KZXq_Pq9H:\"var(--token-e9a342af-a3d5-4aca-92c6-23a058f1ffc5, rgb(191, 191, 191))\",layoutId:\"KmoUFN0Yu\",MtaVR7c3L:false,qcC9AKJ5r:\"Service 1\",RtpfOmo8P:\"Environments\",SM8E93fxk:true,style:{width:\"100%\"},variant:\"y0nQH9rBo\",width:\"100%\",WXquuA4iW:addImageAlt({pixelHeight:609,pixelWidth:609,src:\"https://framerusercontent.com/images/lTECv25oZKT9Ylx9IvTyhzIqDg.jpeg\",srcSet:\"https://framerusercontent.com/images/lTECv25oZKT9Ylx9IvTyhzIqDg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/lTECv25oZKT9Ylx9IvTyhzIqDg.jpeg 609w\"},\"\"),xDJF3VhBl:\"Service 3\",yNA05jZd1:\"var(--token-76c6d1b1-5fc7-42aa-9874-dbfda4135fa2, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{width:`max(${componentViewport?.width||\"100vw\"} - 70px, 50px)`,y:(componentViewport?.y||0)+0+1634+30+93.2+0+0+0+432},yR_pZFArP:{y:(componentViewport?.y||0)+0+1644.8+30+95.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:422,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1844.8+30+95.6+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lii160-container\",nodeId:\"SpOcXxJWT\",scopeId:\"vLSq8o0qw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yR_pZFArP:{dwOJy93Zs:\"As BFSI brands explore new ways to engage customers, interactive experiences and emerging technologies are becoming essential tools for connection. Sound brings these innovations to life, making them more immersive, intuitive, and impactful.\\n\\nFrom branded environments and immersive financial education tools to AR/VR applications for fintech engagement, we craft soundscapes and interactive audio experiences that reinforce brand values while keeping customers informed and engaged. Whether enhancing an innovation lab, a premium banking lounge, or a digital-first financial platform, our approach ensures that sound serves as a bridge between tradition and transformation.\"}},children:/*#__PURE__*/_jsx(WorkItem2,{dwOJy93Zs:\"This is where the creative side of Soundela thrives. Using Soundtrack Your Brand\u2019s API, we craft experiential audio concepts that are dynamic and responsive,  shifting with time of day, weather, campaign moments, or physical triggers and more.\",dWQ6XxJby:\"Project Title\",fkawQNse9:false,gPaWOG60A:\"Service 2\",height:\"100%\",id:\"SpOcXxJWT\",KZXq_Pq9H:\"var(--token-e9a342af-a3d5-4aca-92c6-23a058f1ffc5, rgb(191, 191, 191))\",layoutId:\"SpOcXxJWT\",MtaVR7c3L:false,qcC9AKJ5r:\"Service 1\",RtpfOmo8P:\"Experiences\",SM8E93fxk:true,style:{width:\"100%\"},variant:\"y0nQH9rBo\",width:\"100%\",WXquuA4iW:addImageAlt({pixelHeight:728,pixelWidth:1365,src:\"https://framerusercontent.com/images/AiEcuf4BvOyGGYTgYAlUJRteCHQ.png\",srcSet:\"https://framerusercontent.com/images/AiEcuf4BvOyGGYTgYAlUJRteCHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/AiEcuf4BvOyGGYTgYAlUJRteCHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AiEcuf4BvOyGGYTgYAlUJRteCHQ.png 1365w\"},\"\"),xDJF3VhBl:\"Service 3\",yNA05jZd1:\"var(--token-76c6d1b1-5fc7-42aa-9874-dbfda4135fa2, rgb(255, 255, 255))\"})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-miww7d\",\"data-framer-name\":\"About - Info\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-123xdkg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(0, 0, 0))\"},children:[\"Already using Soundtrack Your Brand? We can work with your setup to design audio experiences that go beyond just playing music.\",/*#__PURE__*/_jsx(\"br\",{}),\"Thinking of switching platforms? We\u2019ll help you onboard smoothly and bring your sound strategy to life with curation, guidelines, and immersive ideas built around your identity.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(0, 0, 0))\"},children:\"Whether you want to set a vibe or design a full audio journey, we\u2019re here to help you sound amazing.\"})]})},yR_pZFArP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(0, 0, 0))\"},children:[\"Already using Soundtrack Your Brand? We can work with your setup to design audio experiences that go beyond just playing music.\",/*#__PURE__*/_jsx(\"br\",{}),\"Thinking of switching platforms? We\u2019ll help you onboard smoothly and bring your sound strategy to life with curation, guidelines, and immersive ideas built around your identity.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(0, 0, 0))\"},children:\"Whether you want to set a vibe or design a full audio journey, we\u2019re here to help you sound amazing.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(0, 0, 0))\"},children:[\"Already using Soundtrack Your Brand? We can work with your setup to design audio experiences that go beyond just playing music.\",/*#__PURE__*/_jsx(\"br\",{}),\"Thinking of switching platforms? We\u2019ll help you onboard smoothly and bring your sound strategy to life with curation, guidelines, and immersive ideas built around your identity.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf9e1c-f7a1-4aa9-bc3e-5e4aedc67046, rgb(0, 0, 0))\"},children:\"Whether you want to set a vibe or design a full audio journey, we\u2019re here to help you sound amazing.\"})]}),className:\"framer-35112r\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ivt1ut-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YQTk3ITkH\",scopeId:\"vLSq8o0qw\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:18,overflow:true},gap:10,height:\"100%\",hoverFactor:1,id:\"YQTk3ITkH\",layoutId:\"YQTk3ITkH\",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:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"500px\",src:\"https://framerusercontent.com/images/WdPPuwTT5NC4UdN4I7KGseLHf8.png\",srcSet:\"https://framerusercontent.com/images/WdPPuwTT5NC4UdN4I7KGseLHf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WdPPuwTT5NC4UdN4I7KGseLHf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WdPPuwTT5NC4UdN4I7KGseLHf8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WdPPuwTT5NC4UdN4I7KGseLHf8.png 2160w\"},className:\"framer-lqvpw5\",\"data-framer-name\":\"SoMe \\xe2\\x80\\x93 Square format-salons\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"500px\",src:\"https://framerusercontent.com/images/4ey8jTWbIPu5Fdp2Nnnn0GrI6I.png\",srcSet:\"https://framerusercontent.com/images/4ey8jTWbIPu5Fdp2Nnnn0GrI6I.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ey8jTWbIPu5Fdp2Nnnn0GrI6I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ey8jTWbIPu5Fdp2Nnnn0GrI6I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4ey8jTWbIPu5Fdp2Nnnn0GrI6I.png 2160w\"},className:\"framer-17s2acj\",\"data-framer-name\":\"SoMe \\xe2\\x80\\x93 Square format-restaurants\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"500px\",src:\"https://framerusercontent.com/images/1c02g6HwhFrF3bCD23EOpqAHc.png\",srcSet:\"https://framerusercontent.com/images/1c02g6HwhFrF3bCD23EOpqAHc.png?scale-down-to=512 512w,https://framerusercontent.com/images/1c02g6HwhFrF3bCD23EOpqAHc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1c02g6HwhFrF3bCD23EOpqAHc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1c02g6HwhFrF3bCD23EOpqAHc.png 2160w\"},className:\"framer-fxjx7z\",\"data-framer-name\":\"SoMe \\xe2\\x80\\x93 Square format-shops\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"500px\",src:\"https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png\",srcSet:\"https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png?scale-down-to=512 512w,https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png 2160w\"},className:\"framer-ffk8uz\",\"data-framer-name\":\"SoMe \\xe2\\x80\\x93 Square format-hotels\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"500px\",src:\"https://framerusercontent.com/images/hLGHS2DGAvhVxysBOcyWwdEqg.png\",srcSet:\"https://framerusercontent.com/images/hLGHS2DGAvhVxysBOcyWwdEqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/hLGHS2DGAvhVxysBOcyWwdEqg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hLGHS2DGAvhVxysBOcyWwdEqg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hLGHS2DGAvhVxysBOcyWwdEqg.png 2160w\"},className:\"framer-8cb0he\",\"data-framer-name\":\"SoMe \\xe2\\x80\\x93 Square format-gyms\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"500px\",src:\"https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png\",srcSet:\"https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png?scale-down-to=512 512w,https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png 2160w\"},className:\"framer-1a9j298\",\"data-framer-name\":\"SoMe \\xe2\\x80\\x93 Square format-cafes\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"500px\",src:\"https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png\",srcSet:\"https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png?scale-down-to=512 512w,https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dorJGZIIqSKM4DLP2Vf5AHr8cI.png 2160w\"},className:\"framer-1a9j298\",\"data-framer-name\":\"SoMe \\xe2\\x80\\x93 Square format-cafes\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"500px\",src:\"https://framerusercontent.com/images/sslrbqvJVo1o1CRuylaiqmj2D0c.png\",srcSet:\"https://framerusercontent.com/images/sslrbqvJVo1o1CRuylaiqmj2D0c.png?scale-down-to=512 512w,https://framerusercontent.com/images/sslrbqvJVo1o1CRuylaiqmj2D0c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sslrbqvJVo1o1CRuylaiqmj2D0c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sslrbqvJVo1o1CRuylaiqmj2D0c.png 2160w\"},className:\"framer-1dr8zqj\",\"data-framer-name\":\"SoMe \\xe2\\x80\\x93 Square format-offices\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"500px\",src:\"https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png\",srcSet:\"https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png?scale-down-to=512 512w,https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RK1oqCzK1AZasDdzRszOGxLs.png 2160w\"},className:\"framer-ffk8uz\",\"data-framer-name\":\"SoMe \\xe2\\x80\\x93 Square format-hotels\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lxr6qg\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IpZNyuqtp\"},implicitPathVariables:undefined},{href:{webPageId:\"IpZNyuqtp\"},implicitPathVariables:undefined},{href:{webPageId:\"IpZNyuqtp\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{y:(componentViewport?.y||0)+0+3591.2+15+19},yR_pZFArP:{y:(componentViewport?.y||0)+0+3091.4+24.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"204px\",y:(componentViewport?.y||0)+0+3291.4+24.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yl5qh9-container\",nodeId:\"oKbZhzJZA\",scopeId:\"vLSq8o0qw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{UoM3VjbH_:resolvedLinks[2]},yR_pZFArP:{UoM3VjbH_:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonWide,{height:\"100%\",id:\"oKbZhzJZA\",layoutId:\"oKbZhzJZA\",P8BkGK9K8:\"Get In Touch\",style:{height:\"100%\",width:\"100%\"},UoM3VjbH_:resolvedLinks[0],variant:\"zPqOlrKYP\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1920px)`,y:(componentViewport?.y||0)+0+3680.2},yR_pZFArP:{y:(componentViewport?.y||0)+0+3180.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1920px)`,y:(componentViewport?.y||0)+0+3380.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ttkd8j-container\",nodeId:\"C0VEjEe84\",scopeId:\"vLSq8o0qw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qilLVfSWO:{variant:\"XKIAPsMuu\"}},children:/*#__PURE__*/_jsx(FooterFooterComponent,{fXhBIGYf4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\\xa9 Soundela Agency\"})}),height:\"100%\",id:\"C0VEjEe84\",layoutId:\"C0VEjEe84\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"A79HAHaYU\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FxyMF.framer-1qk9i6v, .framer-FxyMF .framer-1qk9i6v { display: block; }\",\".framer-FxyMF.framer-11u4x4i { align-content: center; align-items: center; background-color: var(--token-76c6d1b1-5fc7-42aa-9874-dbfda4135fa2, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1200px; }\",\".framer-FxyMF .framer-1nudw9d-container { flex: none; height: auto; left: 50%; max-width: 1920px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 9; }\",\".framer-FxyMF .framer-wp0bj { background-color: #99eeff; flex: none; height: 12px; overflow: hidden; position: relative; width: 180px; }\",\".framer-FxyMF .framer-1kbe2zw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1920px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-d38w0x { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 280px 0px 24px 0px; position: relative; width: 1120px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-FxyMF .framer-1q47dzb { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FxyMF .framer-1io6jqw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FxyMF .framer-h1ic79 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 65%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FxyMF .framer-1nit4cr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-q8bd9k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-100ejz5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FxyMF .framer-1fr8cht { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-FxyMF .framer-scdej1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 680px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-3egy21-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FxyMF .framer-10k3hp3 { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 0px; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: fixed; width: 100%; z-index: 10; }\",\".framer-FxyMF .framer-1la0wc0 { align-content: center; align-items: center; bottom: 66px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 36px; min-width: 142px; overflow: visible; padding: 0px; position: absolute; right: 20px; width: min-content; z-index: 1; }\",\".framer-FxyMF .framer-6khua9 { flex: none; height: 566px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-2ut1tm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 24px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-2la873 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FxyMF .framer-c5nq14, .framer-FxyMF .framer-35112r { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-FxyMF .framer-hb9p8 { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 15px 30px 15px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-1yzl9lr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 10px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-m8cxcn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-FxyMF .framer-1i92uxt { align-content: center; align-items: center; 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%; }\",\".framer-FxyMF .framer-fasz8e { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-1456gir-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-FxyMF .framer-1lii160-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-FxyMF .framer-miww7d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-123xdkg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: 191px; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FxyMF .framer-1ivt1ut-container { flex: none; height: 600px; position: relative; width: 93%; }\",\".framer-FxyMF .framer-lqvpw5, .framer-FxyMF .framer-17s2acj, .framer-FxyMF .framer-fxjx7z, .framer-FxyMF .framer-ffk8uz, .framer-FxyMF .framer-8cb0he, .framer-FxyMF .framer-1a9j298, .framer-FxyMF .framer-1dr8zqj { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 500px); overflow: visible; position: relative; width: 500px; }\",\".framer-FxyMF .framer-lxr6qg { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 89px; justify-content: flex-end; overflow: hidden; padding: 15px; position: relative; width: 100%; }\",\".framer-FxyMF .framer-1yl5qh9-container { flex: none; height: 40px; position: relative; width: 204px; }\",\".framer-FxyMF .framer-ttkd8j-container { flex: none; height: auto; max-width: 1920px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FxyMF.framer-11u4x4i, .framer-FxyMF .framer-1kbe2zw, .framer-FxyMF .framer-d38w0x, .framer-FxyMF .framer-h1ic79, .framer-FxyMF .framer-1nit4cr, .framer-FxyMF .framer-q8bd9k, .framer-FxyMF .framer-10k3hp3, .framer-FxyMF .framer-1la0wc0, .framer-FxyMF .framer-2la873, .framer-FxyMF .framer-hb9p8, .framer-FxyMF .framer-1i92uxt, .framer-FxyMF .framer-123xdkg, .framer-FxyMF .framer-lxr6qg { gap: 0px; } .framer-FxyMF.framer-11u4x4i > *, .framer-FxyMF .framer-1kbe2zw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FxyMF.framer-11u4x4i > :first-child, .framer-FxyMF .framer-1kbe2zw > :first-child, .framer-FxyMF .framer-h1ic79 > :first-child, .framer-FxyMF .framer-1nit4cr > :first-child, .framer-FxyMF .framer-2la873 > :first-child, .framer-FxyMF .framer-hb9p8 > :first-child, .framer-FxyMF .framer-1i92uxt > :first-child, .framer-FxyMF .framer-123xdkg > :first-child { margin-top: 0px; } .framer-FxyMF.framer-11u4x4i > :last-child, .framer-FxyMF .framer-1kbe2zw > :last-child, .framer-FxyMF .framer-h1ic79 > :last-child, .framer-FxyMF .framer-1nit4cr > :last-child, .framer-FxyMF .framer-2la873 > :last-child, .framer-FxyMF .framer-hb9p8 > :last-child, .framer-FxyMF .framer-1i92uxt > :last-child, .framer-FxyMF .framer-123xdkg > :last-child { margin-bottom: 0px; } .framer-FxyMF .framer-d38w0x > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-FxyMF .framer-d38w0x > :first-child, .framer-FxyMF .framer-q8bd9k > :first-child, .framer-FxyMF .framer-10k3hp3 > :first-child, .framer-FxyMF .framer-1la0wc0 > :first-child, .framer-FxyMF .framer-lxr6qg > :first-child { margin-left: 0px; } .framer-FxyMF .framer-d38w0x > :last-child, .framer-FxyMF .framer-q8bd9k > :last-child, .framer-FxyMF .framer-10k3hp3 > :last-child, .framer-FxyMF .framer-1la0wc0 > :last-child, .framer-FxyMF .framer-lxr6qg > :last-child { margin-right: 0px; } .framer-FxyMF .framer-h1ic79 > *, .framer-FxyMF .framer-2la873 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-FxyMF .framer-1nit4cr > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-FxyMF .framer-q8bd9k > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-FxyMF .framer-10k3hp3 > *, .framer-FxyMF .framer-1la0wc0 > *, .framer-FxyMF .framer-lxr6qg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FxyMF .framer-hb9p8 > *, .framer-FxyMF .framer-1i92uxt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FxyMF .framer-123xdkg > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-FxyMF.framer-11u4x4i { width: 810px; } .framer-FxyMF .framer-d38w0x { width: 100%; } .framer-FxyMF .framer-1io6jqw { opacity: 0; }}\",\"@media (max-width: 809px) { .framer-FxyMF.framer-11u4x4i { padding: 0px 20px 0px 20px; width: 390px; } .framer-FxyMF .framer-1nudw9d-container { order: 0; } .framer-FxyMF .framer-wp0bj { order: 1; } .framer-FxyMF .framer-1kbe2zw { order: 2; } .framer-FxyMF .framer-d38w0x, .framer-FxyMF .framer-c5nq14, .framer-FxyMF .framer-35112r { width: 100%; } .framer-FxyMF .framer-1q47dzb { flex-direction: column; } .framer-FxyMF .framer-h1ic79 { flex: none; gap: 28px; max-width: 101%; width: 100%; } .framer-FxyMF .framer-10k3hp3 { flex-direction: column; order: 8; } .framer-FxyMF .framer-1la0wc0 { bottom: 62px; } .framer-FxyMF .framer-6khua9 { order: 4; } .framer-FxyMF .framer-2ut1tm { flex-direction: column; gap: 10px; justify-content: flex-start; order: 3; padding: 15px 0px 15px 0px; } .framer-FxyMF .framer-2la873 { flex: none; gap: 0px; max-width: 90%; padding: 10px 0px 0px 0px; width: 100%; } .framer-FxyMF .framer-hb9p8 { order: 5; } .framer-FxyMF .framer-fasz8e { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-FxyMF .framer-miww7d { flex-direction: column; gap: 10px; justify-content: flex-start; order: 6; padding: 15px 0px 15px 0px; } .framer-FxyMF .framer-123xdkg { flex: none; gap: 0px; height: min-content; max-width: 90%; padding: 10px 0px 0px 0px; width: 100%; } .framer-FxyMF .framer-1ivt1ut-container { order: 9; } .framer-FxyMF .framer-lxr6qg { flex-direction: column; order: 11; } .framer-FxyMF .framer-ttkd8j-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FxyMF .framer-1q47dzb, .framer-FxyMF .framer-h1ic79, .framer-FxyMF .framer-10k3hp3, .framer-FxyMF .framer-2ut1tm, .framer-FxyMF .framer-2la873, .framer-FxyMF .framer-miww7d, .framer-FxyMF .framer-123xdkg, .framer-FxyMF .framer-lxr6qg { gap: 0px; } .framer-FxyMF .framer-1q47dzb > *, .framer-FxyMF .framer-1q47dzb > :first-child, .framer-FxyMF .framer-1q47dzb > :last-child { margin: 0px; } .framer-FxyMF .framer-h1ic79 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-FxyMF .framer-h1ic79 > :first-child, .framer-FxyMF .framer-10k3hp3 > :first-child, .framer-FxyMF .framer-2ut1tm > :first-child, .framer-FxyMF .framer-2la873 > :first-child, .framer-FxyMF .framer-miww7d > :first-child, .framer-FxyMF .framer-123xdkg > :first-child, .framer-FxyMF .framer-lxr6qg > :first-child { margin-top: 0px; } .framer-FxyMF .framer-h1ic79 > :last-child, .framer-FxyMF .framer-10k3hp3 > :last-child, .framer-FxyMF .framer-2ut1tm > :last-child, .framer-FxyMF .framer-2la873 > :last-child, .framer-FxyMF .framer-miww7d > :last-child, .framer-FxyMF .framer-123xdkg > :last-child, .framer-FxyMF .framer-lxr6qg > :last-child { margin-bottom: 0px; } .framer-FxyMF .framer-10k3hp3 > *, .framer-FxyMF .framer-2ut1tm > *, .framer-FxyMF .framer-miww7d > *, .framer-FxyMF .framer-lxr6qg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FxyMF .framer-2la873 > *, .framer-FxyMF .framer-123xdkg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3264\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yR_pZFArP\":{\"layout\":[\"fixed\",\"auto\"]},\"qilLVfSWO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"fHW1dQnIz\":{\"pattern\":\":fHW1dQnIz\",\"name\":\"hero\"},\"CEg04w_JF\":{\"pattern\":\":CEg04w_JF\",\"name\":\"info\"},\"c81wGgbtH\":{\"pattern\":\":c81wGgbtH\",\"name\":\"info\"}}\n * @framerResponsiveScreen\n */const FramervLSq8o0qw=withCSS(Component,css,\"framer-FxyMF\");export default FramervLSq8o0qw;FramervLSq8o0qw.displayName=\"Industry / Arts And Culture\";FramervLSq8o0qw.defaultProps={height:3264,width:1200};addFonts(FramervLSq8o0qw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"},{family:\"ITC Avant Garde Gothic W1G Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/XnyRCF6wbw7haKbE1LYjzjUJpFs.woff2\"}]},...NavbarNavbarComponentFonts,...SmoothScrollFonts,...WorkItem2Fonts,...TickerFonts,...ButtonWideFonts,...FooterFooterComponentFonts,...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\":\"FramervLSq8o0qw\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yR_pZFArP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qilLVfSWO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"3264\",\"framerScrollSections\":\"{\\\"fHW1dQnIz\\\":{\\\"pattern\\\":\\\":fHW1dQnIz\\\",\\\"name\\\":\\\"hero\\\"},\\\"CEg04w_JF\\\":{\\\"pattern\\\":\\\":CEg04w_JF\\\",\\\"name\\\":\\\"info\\\"},\\\"c81wGgbtH\\\":{\\\"pattern\\\":\\\":c81wGgbtH\\\",\\\"name\\\":\\\"info\\\"}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavbarNavbarComponentFonts", "getFonts", "QXsgQf2ii_default", "NavbarNavbarComponentWithVariantAppearEffect", "withVariantAppearEffect", "MotionSectionWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "SmoothScrollFonts", "SmoothScroll", "WorkItem2Fonts", "z0bIM2STb_default", "TickerFonts", "Ticker", "ButtonWideFonts", "YQKexJEk4_default", "FooterFooterComponentFonts", "OjfkMUT0X_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "addImageAlt", "image", "alt", "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", "VrscGOSsfNThH1gSIz", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "activeLocaleCode", "useLocaleCode", "textContent", "isDisplayed", "elementId1", "ref2", "elementId2", "ref3", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "Link", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "css", "FramervLSq8o0qw", "withCSS", "vLSq8o0qw_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
