{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/WRO7Ut5jylzekh2b1lxw/VViXdkLRMPxmnTkrlkuF/YneF_jZFt.js", "ssg:https://framerusercontent.com/modules/26OT8Aya2OVWTX3lThTp/8rdNny3VgkclKm2K7Jd7/ByVCYgR6x.js", "ssg:https://framerusercontent.com/modules/IEHUKtykScpMorjLiThr/MDm7NQLdT34opChvSAKG/i5A80y3sW.js", "ssg:https://framerusercontent.com/modules/LtrTwTGfIjJntE1FaykJ/vHTZlCbUOPDDZ2A3tFbZ/hKaageSqZ.js", "ssg:https://framerusercontent.com/modules/qzHHy87lfCX8bWFois0N/hiHrG7BnUbGhWWytXUd2/QIHHgfQBB.js", "ssg:https://framerusercontent.com/modules/TUztTWJ0SGRLuLTqPGgr/USpsnzFUWfqETkLFlrVI/V6jwldEU4.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9e04080)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-HqCWG\";const variantClassNames={oEKT1yFmn:\"framer-v-bnnnr6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,f2ToR3yBf:link??props.f2ToR3yBf};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,f2ToR3yBf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"oEKT1yFmn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:f2ToR3yBf,motionChild:true,nodeId:\"oEKT1yFmn\",scopeId:\"YneF_jZFt\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-bnnnr6\",className,classNames)} framer-uis9yl`,\"data-border\":true,\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"oEKT1yFmn\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56,boxShadow:\"0px 4px 12px 0px rgba(0, 0, 0, 0.05)\",...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNTAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 42, 90))\"},children:\"View Case study \u2192\"})}),className:\"framer-flpwp0\",\"data-framer-name\":\"View Case study \u2192\",fonts:[\"GF;Onest-500\"],layoutDependency:layoutDependency,layoutId:\"IqiBkSCsa\",style:{\"--extracted-r6o4lv\":\"rgb(17, 42, 90)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HqCWG.framer-uis9yl, .framer-HqCWG .framer-uis9yl { display: block; }\",\".framer-HqCWG.framer-bnnnr6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 10px 6px 10px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HqCWG .framer-flpwp0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-HqCWG[data-border=\"true\"]::after, .framer-HqCWG [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 26\n * @framerIntrinsicWidth 123\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"f2ToR3yBf\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerYneF_jZFt=withCSS(Component,css,\"framer-HqCWG\");export default FramerYneF_jZFt;FramerYneF_jZFt.displayName=\"Logo Button\";FramerYneF_jZFt.defaultProps={height:26,width:123};addPropertyControls(FramerYneF_jZFt,{f2ToR3yBf:{title:\"Link\",type:ControlType.Link}});addFonts(FramerYneF_jZFt,[{explicitInter:true,fonts:[{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYneF_jZFt\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"26\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"123\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"f2ToR3yBf\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YneF_jZFt.map", "// Generated by Framer (9e04080)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LogoButton from\"https://framerusercontent.com/modules/WRO7Ut5jylzekh2b1lxw/VViXdkLRMPxmnTkrlkuF/YneF_jZFt.js\";const LogoButtonFonts=getFonts(LogoButton);const enabledGestures={hKUKaOLuE:{hover:true}};const cycleOrder=[\"hKUKaOLuE\",\"clKBsCHTo\"];const serializationHash=\"framer-B3EiO\";const variantClassNames={clKBsCHTo:\"framer-v-hhl4c9\",hKUKaOLuE:\"framer-v-1x1lqwm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1 - Hover\":\"hKUKaOLuE\",\"1\":\"clKBsCHTo\"};const getProps=({height,id,image,link,width,...props})=>{return{...props,LFbwJqaCc:link??props.LFbwJqaCc,variant:humanReadableVariantMap[props.variant]??props.variant??\"hKUKaOLuE\",Y6Bo1pcP7:image??props.Y6Bo1pcP7??{alt:\"\",pixelHeight:148,pixelWidth:538,src:\"https://framerusercontent.com/images/cdOoB8dVX6zSx0kFq2psKGIx1A.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cdOoB8dVX6zSx0kFq2psKGIx1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/cdOoB8dVX6zSx0kFq2psKGIx1A.png 538w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Y6Bo1pcP7,LFbwJqaCc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hKUKaOLuE\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"hKUKaOLuE-hover\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1x1lqwm\",className,classNames),\"data-framer-name\":\"1 - Hover\",layoutDependency:layoutDependency,layoutId:\"hKUKaOLuE\",ref:refBinding,style:{...style},...addPropertyOverrides({\"hKUKaOLuE-hover\":{\"data-framer-name\":undefined},clKBsCHTo:{\"data-framer-name\":\"1\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"hKUKaOLuE-hover\":{height:26,y:(componentViewport?.y||0)+((componentViewport?.height||50)*.5000000000000002-13)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1av9gfy-container\",layoutDependency:layoutDependency,layoutId:\"babfzCrIR-container\",nodeId:\"babfzCrIR\",rendersWithMotion:true,scopeId:\"ByVCYgR6x\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(LogoButton,{f2ToR3yBf:LFbwJqaCc,height:\"100%\",id:\"babfzCrIR\",layoutId:\"babfzCrIR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||50)-0-50)/2)),pixelHeight:148,pixelWidth:538,sizes:\"150px\",...toResponsiveImage(Y6Bo1pcP7),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ysy6o9\",layoutDependency:layoutDependency,layoutId:\"hYKmqYKYr\",style:{filter:\"none\",WebkitFilter:\"none\"},variants:{\"hKUKaOLuE-hover\":{filter:\"blur(2px)\",WebkitFilter:\"blur(2px)\"}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B3EiO.framer-nzovof, .framer-B3EiO .framer-nzovof { display: block; }\",\".framer-B3EiO.framer-1x1lqwm { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 160px; }\",\".framer-B3EiO .framer-1av9gfy-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-B3EiO .framer-ysy6o9 { flex: none; height: 50px; overflow: hidden; position: relative; width: 150px; }\",\".framer-B3EiO.framer-v-hhl4c9.framer-1x1lqwm { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"clKBsCHTo\":{\"layout\":[\"fixed\",\"auto\"]},\"uRC6C7siX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Y6Bo1pcP7\":\"image\",\"LFbwJqaCc\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerByVCYgR6x=withCSS(Component,css,\"framer-B3EiO\");export default FramerByVCYgR6x;FramerByVCYgR6x.displayName=\"Logo Individual\";FramerByVCYgR6x.defaultProps={height:50,width:160};addPropertyControls(FramerByVCYgR6x,{variant:{options:[\"hKUKaOLuE\",\"clKBsCHTo\"],optionTitles:[\"1 - Hover\",\"1\"],title:\"Variant\",type:ControlType.Enum},Y6Bo1pcP7:{__defaultAssetReference:\"data:framer/asset-reference,cdOoB8dVX6zSx0kFq2psKGIx1A.png?originalFilename=motilal_oswal.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,cdOoB8dVX6zSx0kFq2psKGIx1A.png?originalFilename=motilal_oswal.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},LFbwJqaCc:{title:\"Link\",type:ControlType.Link}});addFonts(FramerByVCYgR6x,[{explicitInter:true,fonts:[]},...LogoButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerByVCYgR6x\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"clKBsCHTo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uRC6C7siX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Y6Bo1pcP7\\\":\\\"image\\\",\\\"LFbwJqaCc\\\":\\\"link\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"50\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"160\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ByVCYgR6x.map", "// Generated by Framer (9e04080)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={H7fd4UZgh:{hover:true},w4kwcK63o:{hover:true}};const cycleOrder=[\"w4kwcK63o\",\"H7fd4UZgh\"];const serializationHash=\"framer-bLkyQ\";const variantClassNames={H7fd4UZgh:\"framer-v-pcdndy\",w4kwcK63o:\"framer-v-1563xbz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"w4kwcK63o\",Inactive:\"H7fd4UZgh\"};const getProps=({click,height,id,text,width,...props})=>{return{...props,DPFS3tAvL:click??props.DPFS3tAvL,NWmlNyBKp:text??props.NWmlNyBKp??\"All\",variant:humanReadableVariantMap[props.variant]??props.variant??\"w4kwcK63o\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,NWmlNyBKp,DPFS3tAvL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"w4kwcK63o\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap157xaci=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(DPFS3tAvL){const res=await DPFS3tAvL(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1563xbz\",className,classNames),\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"w4kwcK63o\",onTap:onTap157xaci,ref:refBinding,style:{backgroundColor:\"var(--token-eed5442b-66c0-4986-9c20-5dc808f338aa, rgb(22, 119, 255))\",borderBottomLeftRadius:26,borderBottomRightRadius:26,borderTopLeftRadius:26,borderTopRightRadius:26,opacity:1,...style},variants:{\"H7fd4UZgh-hover\":{backgroundColor:\"rgb(217, 233, 255)\",opacity:1},\"w4kwcK63o-hover\":{opacity:.9},H7fd4UZgh:{backgroundColor:\"var(--token-93dd1c46-9897-436c-ab15-ff8def3989c1, rgb(232, 241, 255))\"}},...addPropertyOverrides({\"H7fd4UZgh-hover\":{\"data-framer-name\":undefined},\"w4kwcK63o-hover\":{\"data-framer-name\":undefined},H7fd4UZgh:{\"data-framer-name\":\"Inactive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNTAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"All\"})}),className:\"framer-bcq5tj\",fonts:[\"GF;Onest-500\"],layoutDependency:layoutDependency,layoutId:\"lQcEhyPQ3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:NWmlNyBKp,variants:{H7fd4UZgh:{\"--extracted-r6o4lv\":\"rgb(17, 42, 90)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({H7fd4UZgh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNTAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 42, 90))\"},children:\"All\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bLkyQ.framer-yikuvt, .framer-bLkyQ .framer-yikuvt { display: block; }\",\".framer-bLkyQ.framer-1563xbz { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-bLkyQ .framer-bcq5tj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 34\n * @framerIntrinsicWidth 56\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"H7fd4UZgh\":{\"layout\":[\"auto\",\"fixed\"]},\"NZmMkNFE7\":{\"layout\":[\"auto\",\"fixed\"]},\"xvfXAn9kb\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"NWmlNyBKp\":\"text\",\"DPFS3tAvL\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Frameri5A80y3sW=withCSS(Component,css,\"framer-bLkyQ\");export default Frameri5A80y3sW;Frameri5A80y3sW.displayName=\"Logo's Tab Pill\";Frameri5A80y3sW.defaultProps={height:34,width:56};addPropertyControls(Frameri5A80y3sW,{variant:{options:[\"w4kwcK63o\",\"H7fd4UZgh\"],optionTitles:[\"Active\",\"Inactive\"],title:\"Variant\",type:ControlType.Enum},NWmlNyBKp:{defaultValue:\"All\",displayTextArea:false,title:\"Text\",type:ControlType.String},DPFS3tAvL:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Frameri5A80y3sW,[{explicitInter:true,fonts:[{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameri5A80y3sW\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"NWmlNyBKp\\\":\\\"text\\\",\\\"DPFS3tAvL\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"H7fd4UZgh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"NZmMkNFE7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"xvfXAn9kb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"34\",\"framerIntrinsicWidth\":\"56\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./i5A80y3sW.map", "// Generated by Framer (9e04080)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import LogoIndividual from\"https://framerusercontent.com/modules/26OT8Aya2OVWTX3lThTp/8rdNny3VgkclKm2K7Jd7/ByVCYgR6x.js\";import LogoSTabPill from\"https://framerusercontent.com/modules/IEHUKtykScpMorjLiThr/MDm7NQLdT34opChvSAKG/i5A80y3sW.js\";const RichTextWithFX=withFX(RichText);const LogoSTabPillFonts=getFonts(LogoSTabPill);const LogoIndividualFonts=getFonts(LogoIndividual);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"nFtIk5s9o\",\"Ll7MstmTV\",\"qKpGyC_Np\",\"B5tp1PM4W\",\"t5WWbvClZ\",\"qDa7P77oL\",\"U9ZmWbMvI\"];const serializationHash=\"framer-jGYUF\";const variantClassNames={B5tp1PM4W:\"framer-v-1q5pd7s\",Ll7MstmTV:\"framer-v-15usmjr\",nFtIk5s9o:\"framer-v-d28be0\",qDa7P77oL:\"framer-v-jz0rcv\",qKpGyC_Np:\"framer-v-11byhvu\",t5WWbvClZ:\"framer-v-3lg8mj\",U9ZmWbMvI:\"framer-v-14s04da\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={bounce:.2,delay:.2,duration:.6,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Information technology (IT)\":\"qKpGyC_Np\",\"Real estate\":\"B5tp1PM4W\",\"Real Estate\":\"U9ZmWbMvI\",All:\"nFtIk5s9o\",Automobile:\"t5WWbvClZ\",FMCG:\"Ll7MstmTV\",Healthcare:\"qDa7P77oL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nFtIk5s9o\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nFtIk5s9o\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const DPFS3tAvL17pmk91=activeVariantCallback(async(...args)=>{setVariant(\"nFtIk5s9o\");});const DPFS3tAvL18q47t2=activeVariantCallback(async(...args)=>{setVariant(\"Ll7MstmTV\");});const DPFS3tAvLkm0slx=activeVariantCallback(async(...args)=>{setVariant(\"qKpGyC_Np\");});const DPFS3tAvL15xaoy4=activeVariantCallback(async(...args)=>{setVariant(\"B5tp1PM4W\");});const DPFS3tAvL140atkp=activeVariantCallback(async(...args)=>{setVariant(\"t5WWbvClZ\");});const DPFS3tAvLbk2qed=activeVariantCallback(async(...args)=>{setVariant(\"qDa7P77oL\");});const DPFS3tAvLmz3bti=activeVariantCallback(async(...args)=>{setVariant(\"U9ZmWbMvI\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Ll7MstmTV\",\"qKpGyC_Np\",\"B5tp1PM4W\",\"t5WWbvClZ\",\"qDa7P77oL\",\"U9ZmWbMvI\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"Ll7MstmTV\",\"qKpGyC_Np\",\"B5tp1PM4W\",\"qDa7P77oL\",\"U9ZmWbMvI\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"Ll7MstmTV\",\"qKpGyC_Np\",\"B5tp1PM4W\",\"t5WWbvClZ\",\"U9ZmWbMvI\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"Ll7MstmTV\",\"qKpGyC_Np\",\"B5tp1PM4W\",\"t5WWbvClZ\",\"qDa7P77oL\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"qKpGyC_Np\",\"B5tp1PM4W\",\"t5WWbvClZ\",\"qDa7P77oL\",\"U9ZmWbMvI\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"Ll7MstmTV\",\"B5tp1PM4W\",\"t5WWbvClZ\",\"qDa7P77oL\",\"U9ZmWbMvI\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"Ll7MstmTV\",\"qKpGyC_Np\",\"t5WWbvClZ\",\"qDa7P77oL\",\"U9ZmWbMvI\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if([\"Ll7MstmTV\",\"qKpGyC_Np\",\"B5tp1PM4W\",\"t5WWbvClZ\",\"qDa7P77oL\",\"U9ZmWbMvI\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-d28be0\",className,classNames),\"data-framer-name\":\"All\",layoutDependency:layoutDependency,layoutId:\"nFtIk5s9o\",ref:refBinding,style:{...style},...addPropertyOverrides({B5tp1PM4W:{\"data-framer-name\":\"Real estate\"},Ll7MstmTV:{\"data-framer-name\":\"FMCG\"},qDa7P77oL:{\"data-framer-name\":\"Healthcare\"},qKpGyC_Np:{\"data-framer-name\":\"Information technology (IT)\"},t5WWbvClZ:{\"data-framer-name\":\"Automobile\"},U9ZmWbMvI:{\"data-framer-name\":\"Real Estate\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNTAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 24, 51))\"},children:[\"Trusted by \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(22, 119, 255))\"},children:\"300+\"}),\" Global Brands From,\"]})}),className:\"framer-rhlrvg\",\"data-framer-name\":\"Trusted by 300+ Global Brands\",fonts:[\"GF;Onest-500\"],layoutDependency:layoutDependency,layoutId:\"eMYjUfpcV\",style:{\"--extracted-1w3ko1f\":\"rgb(22, 119, 255)\",\"--extracted-r6o4lv\":\"rgb(10, 24, 51)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ygis1u\",layoutDependency:layoutDependency,layoutId:\"ZINrb28Cp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ewnlq3-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"iQpDAOi1N-container\",name:\"1\",nodeId:\"iQpDAOi1N\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL17pmk91,height:\"100%\",id:\"iQpDAOi1N\",layoutId:\"iQpDAOi1N\",name:\"1\",NWmlNyBKp:\"All\",style:{height:\"100%\"},variant:\"w4kwcK63o\",width:\"100%\",...addPropertyOverrides({B5tp1PM4W:{variant:\"H7fd4UZgh\"},Ll7MstmTV:{variant:\"H7fd4UZgh\"},qDa7P77oL:{variant:\"H7fd4UZgh\"},qKpGyC_Np:{variant:\"H7fd4UZgh\"},t5WWbvClZ:{variant:\"H7fd4UZgh\"},U9ZmWbMvI:{variant:\"H7fd4UZgh\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18wj3t1-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"ATMaWLcRL-container\",name:\"2\",nodeId:\"ATMaWLcRL\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL18q47t2,height:\"100%\",id:\"ATMaWLcRL\",layoutId:\"ATMaWLcRL\",name:\"2\",NWmlNyBKp:\"FMCG\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({Ll7MstmTV:{NWmlNyBKp:\"Retail\",variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ccwxis-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"HcjwPgtYF-container\",name:\"3\",nodeId:\"HcjwPgtYF\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvLkm0slx,height:\"100%\",id:\"HcjwPgtYF\",layoutId:\"HcjwPgtYF\",name:\"3\",NWmlNyBKp:\"Information technology (IT)\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({Ll7MstmTV:{NWmlNyBKp:\"Automotive\"},qKpGyC_Np:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9r7o1q-container\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"zGY82LITn-container\",name:\"4\",nodeId:\"zGY82LITn\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL15xaoy4,height:\"100%\",id:\"zGY82LITn\",layoutId:\"zGY82LITn\",name:\"4\",NWmlNyBKp:\"Real estate\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({B5tp1PM4W:{variant:\"w4kwcK63o\"},Ll7MstmTV:{NWmlNyBKp:\"Healthcare\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1diqjuo-container\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"WFAhZUfFO-container\",name:\"5\",nodeId:\"WFAhZUfFO\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL140atkp,height:\"100%\",id:\"WFAhZUfFO\",layoutId:\"WFAhZUfFO\",name:\"5\",NWmlNyBKp:\"Automobile\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({Ll7MstmTV:{NWmlNyBKp:\"Finance\"},t5WWbvClZ:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-60bas6-container\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"WDWgHsO4_-container\",name:\"6\",nodeId:\"WDWgHsO4_\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvLbk2qed,height:\"100%\",id:\"WDWgHsO4_\",layoutId:\"WDWgHsO4_\",name:\"6\",NWmlNyBKp:\"Healthcare\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({Ll7MstmTV:{NWmlNyBKp:\"Education\"},qDa7P77oL:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i5kd6b-container\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"t_U0Thh3B-container\",name:\"7\",nodeId:\"t_U0Thh3B\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvLmz3bti,height:\"100%\",id:\"t_U0Thh3B\",layoutId:\"t_U0Thh3B\",name:\"7\",NWmlNyBKp:\"Real Estate\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({U9ZmWbMvI:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-62x72t\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"hKbaKYF2b\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{m_5qgfXbG:\"gen-ai-powered-whatsapp-transformation-at-motilal-oswal\"},unresolvedPathSlugs:{m_5qgfXbG:{collectionId:\"pU6c0lpBi\",collectionItemId:\"Eux1SbDib\"}},webPageId:\"OavPTxokh\"},implicitPathVariables:undefined},{href:{pathVariables:{m_5qgfXbG:\"gen-ai-powered-whatsapp-transformation-at-motilal-oswal\"},unresolvedPathSlugs:{m_5qgfXbG:{collectionId:\"pU6c0lpBi\",collectionItemId:\"Eux1SbDib\"}},webPageId:\"OavPTxokh\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-97s6nm-container\",layoutDependency:layoutDependency,layoutId:\"k5q3R7XSX-container\",nodeId:\"k5q3R7XSX\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"k5q3R7XSX\",layoutId:\"k5q3R7XSX\",LFbwJqaCc:resolvedLinks[0],variant:\"hKUKaOLuE\",width:\"100%\",...addPropertyOverrides({t5WWbvClZ:{LFbwJqaCc:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vrs6w3-container\",layoutDependency:layoutDependency,layoutId:\"wNGoUfzL6-container\",nodeId:\"wNGoUfzL6\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"wNGoUfzL6\",layoutId:\"wNGoUfzL6\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:242,pixelWidth:600,src:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg\",srcSet:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg 600w\"},\"\")})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jpcl73-container\",layoutDependency:layoutDependency,layoutId:\"aeGglc9Z5-container\",nodeId:\"aeGglc9Z5\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"aeGglc9Z5\",layoutId:\"aeGglc9Z5\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:100,pixelWidth:415,src:\"https://framerusercontent.com/images/ppobckYqcBfgVIx1BZrgUeFa90.jpeg\"},\"\")})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yjo4x6-container\",layoutDependency:layoutDependency,layoutId:\"NL6i0lkQp-container\",nodeId:\"NL6i0lkQp\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"NL6i0lkQp\",layoutId:\"NL6i0lkQp\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:274,pixelWidth:773,src:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp\",srcSet:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp?scale-down-to=512 512w,https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp 773w\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qtx79w-container\",layoutDependency:layoutDependency,layoutId:\"dY7Kk3W6Z-container\",nodeId:\"dY7Kk3W6Z\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"dY7Kk3W6Z\",layoutId:\"dY7Kk3W6Z\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:196,pixelWidth:233,src:\"https://framerusercontent.com/images/4Fov1g7wdH6dookgGeJdc2J5kN8.png\"},\"\")})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gtuigl-container\",layoutDependency:layoutDependency,layoutId:\"T16pGB1Ot-container\",nodeId:\"T16pGB1Ot\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"T16pGB1Ot\",layoutId:\"T16pGB1Ot\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:131,pixelWidth:506,src:\"https://framerusercontent.com/images/EVormVJtyQG5II4OZv2HMwQr49U.jpeg\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ff98fx-container\",layoutDependency:layoutDependency,layoutId:\"X8eufcRvz-container\",nodeId:\"X8eufcRvz\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"X8eufcRvz\",layoutId:\"X8eufcRvz\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:337,pixelWidth:337,src:\"https://framerusercontent.com/images/irD0xIbTARCuKECbeMJKhK0A04.png\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-svds2a-container\",layoutDependency:layoutDependency,layoutId:\"vvidEWeFw-container\",nodeId:\"vvidEWeFw\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"vvidEWeFw\",layoutId:\"vvidEWeFw\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:345,pixelWidth:333,src:\"https://framerusercontent.com/images/8sYj5WDN8xuHF8EIYPRa1qemE.png\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n7zvid-container\",layoutDependency:layoutDependency,layoutId:\"gjrJVwZ9J-container\",nodeId:\"gjrJVwZ9J\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"gjrJVwZ9J\",layoutId:\"gjrJVwZ9J\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:476,pixelWidth:1200,src:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png\",srcSet:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=512 512w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png 1200w\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cyx0kr-container\",layoutDependency:layoutDependency,layoutId:\"konE86Nui-container\",nodeId:\"konE86Nui\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"konE86Nui\",layoutId:\"konE86Nui\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:262,pixelWidth:262,src:\"https://framerusercontent.com/images/YJbzIrdKjiAeJa7F0CmOJ0uW3zo.jpeg\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cq5d4o-container\",layoutDependency:layoutDependency,layoutId:\"v5yytlnY3-container\",nodeId:\"v5yytlnY3\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"v5yytlnY3\",layoutId:\"v5yytlnY3\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:127,pixelWidth:800,src:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png\",srcSet:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png 800w\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12p9l1d-container\",layoutDependency:layoutDependency,layoutId:\"cIPxSHo4G-container\",nodeId:\"cIPxSHo4G\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"cIPxSHo4G\",layoutId:\"cIPxSHo4G\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:143,pixelWidth:353,src:\"https://framerusercontent.com/images/B0zjcZhuNNttdG8ZxH8LS8m7vo.png\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-64ydx0-container\",layoutDependency:layoutDependency,layoutId:\"KXrpiVkOO-container\",nodeId:\"KXrpiVkOO\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"KXrpiVkOO\",layoutId:\"KXrpiVkOO\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:155,pixelWidth:448,src:\"https://framerusercontent.com/images/9WLGml1sYbvpTDzqVvQlBLqRpg.png\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"68px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r5sxbw-container\",layoutDependency:layoutDependency,layoutId:\"t911fNr7g-container\",nodeId:\"t911fNr7g\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"t911fNr7g\",layoutId:\"t911fNr7g\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:201,pixelWidth:194,src:\"https://framerusercontent.com/images/y4CQI8P3ULBNuO24uH5Y7r4LA.png\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"66px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15z1lry-container\",layoutDependency:layoutDependency,layoutId:\"IWEVSE8sa-container\",nodeId:\"IWEVSE8sa\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"IWEVSE8sa\",layoutId:\"IWEVSE8sa\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:299,pixelWidth:295,src:\"https://framerusercontent.com/images/pzPPBf84U5AyqlByBRP5EgmZ08.png\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9xlw0k-container\",layoutDependency:layoutDependency,layoutId:\"DQMGpp_jF-container\",nodeId:\"DQMGpp_jF\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"DQMGpp_jF\",layoutId:\"DQMGpp_jF\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:303,pixelWidth:512,src:\"https://framerusercontent.com/images/dxIXepNAXITO79Y7POxzBylIKxg.png\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dhq1zg-container\",layoutDependency:layoutDependency,layoutId:\"lhqpNKPDB-container\",nodeId:\"lhqpNKPDB\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"lhqpNKPDB\",layoutId:\"lhqpNKPDB\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:263,pixelWidth:463,src:\"https://framerusercontent.com/images/8Vl9yDzDa8odnp9v33QNi6V7GVM.jpeg\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"61px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l7z98c-container\",layoutDependency:layoutDependency,layoutId:\"vURjF9lrY-container\",nodeId:\"vURjF9lrY\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"vURjF9lrY\",layoutId:\"vURjF9lrY\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:511,pixelWidth:479,src:\"https://framerusercontent.com/images/hC6gbZJg0lLHNPy2xSbQeBfB4.jpeg\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"62px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uhgm1h-container\",layoutDependency:layoutDependency,layoutId:\"YrOj2CG6p-container\",nodeId:\"YrOj2CG6p\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"YrOj2CG6p\",layoutId:\"YrOj2CG6p\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/jXM32NiwWqj9PosZ3Y1LKkCHeg.jpeg\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"67px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cob6ua-container\",layoutDependency:layoutDependency,layoutId:\"JqP5qDyYZ-container\",nodeId:\"JqP5qDyYZ\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"JqP5qDyYZ\",layoutId:\"JqP5qDyYZ\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:512,pixelWidth:599,src:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg\",srcSet:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg 599w\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qyi6gm-container\",layoutDependency:layoutDependency,layoutId:\"cBEtDLl_K-container\",nodeId:\"cBEtDLl_K\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"cBEtDLl_K\",layoutId:\"cBEtDLl_K\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:279,pixelWidth:417,src:\"https://framerusercontent.com/images/zmyJnF4jkou0mCDXXqW0FDNOPQ.jpeg\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-saec8-container\",layoutDependency:layoutDependency,layoutId:\"yn4j6S7u1-container\",nodeId:\"yn4j6S7u1\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"yn4j6S7u1\",layoutId:\"yn4j6S7u1\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:407,pixelWidth:960,src:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg\",srcSet:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg 960w\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bf81mg-container\",layoutDependency:layoutDependency,layoutId:\"Sb9J_cQx9-container\",nodeId:\"Sb9J_cQx9\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Sb9J_cQx9\",layoutId:\"Sb9J_cQx9\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:146,pixelWidth:452,src:\"https://framerusercontent.com/images/jWMhwDUt8aA2abrn1mi9DLFyHk.png\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"70px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-owz043-container\",layoutDependency:layoutDependency,layoutId:\"lCQ3HHEgW-container\",nodeId:\"lCQ3HHEgW\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"lCQ3HHEgW\",layoutId:\"lCQ3HHEgW\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:735,pixelWidth:610,src:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg\",srcSet:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg 610w\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a8retf-container\",layoutDependency:layoutDependency,layoutId:\"mG3tEpPIZ-container\",nodeId:\"mG3tEpPIZ\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"mG3tEpPIZ\",layoutId:\"mG3tEpPIZ\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:86,pixelWidth:416,src:\"https://framerusercontent.com/images/EE9VaL4BO28N1ZNlpCUCm1erK8.png\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bxx53t-container\",layoutDependency:layoutDependency,layoutId:\"P7yzVBcVl-container\",nodeId:\"P7yzVBcVl\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"P7yzVBcVl\",layoutId:\"P7yzVBcVl\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:149,pixelWidth:554,src:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png\",srcSet:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png 554w\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5up32c-container\",layoutDependency:layoutDependency,layoutId:\"MtyEc1btR-container\",nodeId:\"MtyEc1btR\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"MtyEc1btR\",layoutId:\"MtyEc1btR\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:145,pixelWidth:419,src:\"https://framerusercontent.com/images/OaY2frpLyKdKCGT9WoD4HAFNI.png\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tvqra4-container\",layoutDependency:layoutDependency,layoutId:\"Q64Cv73IV-container\",nodeId:\"Q64Cv73IV\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Q64Cv73IV\",layoutId:\"Q64Cv73IV\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:186,pixelWidth:664,src:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg\",srcSet:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg 664w\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-km162z-container\",layoutDependency:layoutDependency,layoutId:\"PDALPWsgq-container\",nodeId:\"PDALPWsgq\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"PDALPWsgq\",layoutId:\"PDALPWsgq\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:253,pixelWidth:554,src:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg\",srcSet:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg 554w\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xbs9wz-container\",layoutDependency:layoutDependency,layoutId:\"mUU9gF95n-container\",nodeId:\"mUU9gF95n\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"mUU9gF95n\",layoutId:\"mUU9gF95n\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:203,pixelWidth:600,src:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png\",srcSet:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png?scale-down-to=512 512w,https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png 600w\"},\"\")})})})]}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-va7t20-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jJTy3Pjqy-container\",nodeId:\"jJTy3Pjqy\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"jJTy3Pjqy\",layoutId:\"jJTy3Pjqy\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x8l67q\",layoutDependency:layoutDependency,layoutId:\"fZ5FiBTkU\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{m_5qgfXbG:\"gen-ai-powered-whatsapp-transformation-at-motilal-oswal\"},unresolvedPathSlugs:{m_5qgfXbG:{collectionId:\"pU6c0lpBi\",collectionItemId:\"Eux1SbDib\"}},webPageId:\"OavPTxokh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l8s9cz-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"nWpS9M3h9-container\",nodeId:\"nWpS9M3h9\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"nWpS9M3h9\",layoutId:\"nWpS9M3h9\",LFbwJqaCc:resolvedLinks1[0],variant:\"hKUKaOLuE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rvygw6-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"uBOx_o4CH-container\",nodeId:\"uBOx_o4CH\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"uBOx_o4CH\",layoutId:\"uBOx_o4CH\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:242,pixelWidth:600,src:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg\",srcSet:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xf32iw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZPnB6SVyU-container\",nodeId:\"ZPnB6SVyU\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"ZPnB6SVyU\",layoutId:\"ZPnB6SVyU\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:100,pixelWidth:415,src:\"https://framerusercontent.com/images/ppobckYqcBfgVIx1BZrgUeFa90.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h8uj8q-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"WseRF2wmH-container\",nodeId:\"WseRF2wmH\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"WseRF2wmH\",layoutId:\"WseRF2wmH\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:274,pixelWidth:773,src:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp\",srcSet:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp?scale-down-to=512 512w,https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp 773w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d15bw6-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hQ6U5C1tD-container\",nodeId:\"hQ6U5C1tD\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"hQ6U5C1tD\",layoutId:\"hQ6U5C1tD\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:196,pixelWidth:233,src:\"https://framerusercontent.com/images/4Fov1g7wdH6dookgGeJdc2J5kN8.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1267ini-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vONS_sc4o-container\",nodeId:\"vONS_sc4o\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"vONS_sc4o\",layoutId:\"vONS_sc4o\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:131,pixelWidth:506,src:\"https://framerusercontent.com/images/EVormVJtyQG5II4OZv2HMwQr49U.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1utmebl-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cy3PvmQOS-container\",nodeId:\"cy3PvmQOS\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"cy3PvmQOS\",layoutId:\"cy3PvmQOS\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:337,pixelWidth:337,src:\"https://framerusercontent.com/images/irD0xIbTARCuKECbeMJKhK0A04.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8i40up-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zt0W5v9EW-container\",nodeId:\"zt0W5v9EW\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"zt0W5v9EW\",layoutId:\"zt0W5v9EW\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:345,pixelWidth:333,src:\"https://framerusercontent.com/images/8sYj5WDN8xuHF8EIYPRa1qemE.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c504dn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JFWwTKt6l-container\",nodeId:\"JFWwTKt6l\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"JFWwTKt6l\",layoutId:\"JFWwTKt6l\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:476,pixelWidth:1200,src:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png\",srcSet:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=512 512w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png 1200w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4ub942-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"tSnrA1mz_-container\",nodeId:\"tSnrA1mz_\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"tSnrA1mz_\",layoutId:\"tSnrA1mz_\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:262,pixelWidth:262,src:\"https://framerusercontent.com/images/YJbzIrdKjiAeJa7F0CmOJ0uW3zo.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-26ka8y-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"iQvQCNxYY-container\",nodeId:\"iQvQCNxYY\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"iQvQCNxYY\",layoutId:\"iQvQCNxYY\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:127,pixelWidth:800,src:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png\",srcSet:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png 800w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16xwx2i-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"y62sG5dnr-container\",nodeId:\"y62sG5dnr\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"y62sG5dnr\",layoutId:\"y62sG5dnr\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:143,pixelWidth:353,src:\"https://framerusercontent.com/images/B0zjcZhuNNttdG8ZxH8LS8m7vo.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e6aait-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"T7AhTIMhj-container\",nodeId:\"T7AhTIMhj\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"T7AhTIMhj\",layoutId:\"T7AhTIMhj\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:155,pixelWidth:448,src:\"https://framerusercontent.com/images/9WLGml1sYbvpTDzqVvQlBLqRpg.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"68px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hubpl4-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"y4J4T5TPn-container\",nodeId:\"y4J4T5TPn\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"y4J4T5TPn\",layoutId:\"y4J4T5TPn\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:201,pixelWidth:194,src:\"https://framerusercontent.com/images/y4CQI8P3ULBNuO24uH5Y7r4LA.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"66px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i8teyu-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"J124tAH5A-container\",nodeId:\"J124tAH5A\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"J124tAH5A\",layoutId:\"J124tAH5A\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:299,pixelWidth:295,src:\"https://framerusercontent.com/images/pzPPBf84U5AyqlByBRP5EgmZ08.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6v7d0b-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"whX8bIV20-container\",nodeId:\"whX8bIV20\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"whX8bIV20\",layoutId:\"whX8bIV20\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:303,pixelWidth:512,src:\"https://framerusercontent.com/images/dxIXepNAXITO79Y7POxzBylIKxg.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bbelvu-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ECTfBu50m-container\",nodeId:\"ECTfBu50m\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"ECTfBu50m\",layoutId:\"ECTfBu50m\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:263,pixelWidth:463,src:\"https://framerusercontent.com/images/8Vl9yDzDa8odnp9v33QNi6V7GVM.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"61px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x904da-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"W8g0RSliY-container\",nodeId:\"W8g0RSliY\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"W8g0RSliY\",layoutId:\"W8g0RSliY\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:511,pixelWidth:479,src:\"https://framerusercontent.com/images/hC6gbZJg0lLHNPy2xSbQeBfB4.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"62px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u3wpie-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gmMMmIdQf-container\",nodeId:\"gmMMmIdQf\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"gmMMmIdQf\",layoutId:\"gmMMmIdQf\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/jXM32NiwWqj9PosZ3Y1LKkCHeg.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"67px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-147dadj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"aOFxK58yG-container\",nodeId:\"aOFxK58yG\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"aOFxK58yG\",layoutId:\"aOFxK58yG\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:512,pixelWidth:599,src:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg\",srcSet:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg 599w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bu1nzw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zM59Sj1OO-container\",nodeId:\"zM59Sj1OO\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"zM59Sj1OO\",layoutId:\"zM59Sj1OO\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:279,pixelWidth:417,src:\"https://framerusercontent.com/images/zmyJnF4jkou0mCDXXqW0FDNOPQ.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rkspbm-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"SE_3IE2iq-container\",nodeId:\"SE_3IE2iq\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"SE_3IE2iq\",layoutId:\"SE_3IE2iq\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:407,pixelWidth:960,src:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg\",srcSet:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg 960w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jjmjnp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LiyoPMhGV-container\",nodeId:\"LiyoPMhGV\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"LiyoPMhGV\",layoutId:\"LiyoPMhGV\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:146,pixelWidth:452,src:\"https://framerusercontent.com/images/jWMhwDUt8aA2abrn1mi9DLFyHk.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"70px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y7zfet-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Mz_joqsLn-container\",nodeId:\"Mz_joqsLn\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Mz_joqsLn\",layoutId:\"Mz_joqsLn\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:735,pixelWidth:610,src:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg\",srcSet:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg 610w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d9ey8p-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xvMretZB_-container\",nodeId:\"xvMretZB_\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"xvMretZB_\",layoutId:\"xvMretZB_\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:86,pixelWidth:416,src:\"https://framerusercontent.com/images/EE9VaL4BO28N1ZNlpCUCm1erK8.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ioqlek-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"syMiBGQXK-container\",nodeId:\"syMiBGQXK\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"syMiBGQXK\",layoutId:\"syMiBGQXK\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:149,pixelWidth:554,src:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png\",srcSet:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png 554w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9yhdrn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cM7YqNqr8-container\",nodeId:\"cM7YqNqr8\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"cM7YqNqr8\",layoutId:\"cM7YqNqr8\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:145,pixelWidth:419,src:\"https://framerusercontent.com/images/OaY2frpLyKdKCGT9WoD4HAFNI.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ezpbnn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"m75GdNo3o-container\",nodeId:\"m75GdNo3o\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"m75GdNo3o\",layoutId:\"m75GdNo3o\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:186,pixelWidth:664,src:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg\",srcSet:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg 664w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6cd5g8-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gGQF5GqqW-container\",nodeId:\"gGQF5GqqW\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"gGQF5GqqW\",layoutId:\"gGQF5GqqW\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:253,pixelWidth:554,src:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg\",srcSet:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg 554w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l35v0h-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vrhtecejC-container\",nodeId:\"vrhtecejC\",rendersWithMotion:true,scopeId:\"hKaageSqZ\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"vrhtecejC\",layoutId:\"vrhtecejC\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:203,pixelWidth:600,src:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png\",srcSet:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png?scale-down-to=512 512w,https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png 600w\"},\"\")})})})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jGYUF.framer-6byojl, .framer-jGYUF .framer-6byojl { display: block; }\",\".framer-jGYUF.framer-d28be0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 390px; }\",\".framer-jGYUF .framer-rhlrvg { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jGYUF .framer-ygis1u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jGYUF .framer-1ewnlq3-container, .framer-jGYUF .framer-18wj3t1-container, .framer-jGYUF .framer-1ccwxis-container, .framer-jGYUF .framer-9r7o1q-container, .framer-jGYUF .framer-1diqjuo-container, .framer-jGYUF .framer-60bas6-container, .framer-jGYUF .framer-i5kd6b-container { flex: none; height: 34px; position: relative; width: auto; }\",\".framer-jGYUF .framer-62x72t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jGYUF .framer-97s6nm-container, .framer-jGYUF .framer-vrs6w3-container, .framer-jGYUF .framer-jpcl73-container, .framer-jGYUF .framer-yjo4x6-container, .framer-jGYUF .framer-1gtuigl-container, .framer-jGYUF .framer-n7zvid-container, .framer-jGYUF .framer-1cq5d4o-container, .framer-jGYUF .framer-12p9l1d-container, .framer-jGYUF .framer-64ydx0-container, .framer-jGYUF .framer-1bf81mg-container, .framer-jGYUF .framer-a8retf-container, .framer-jGYUF .framer-1bxx53t-container, .framer-jGYUF .framer-5up32c-container, .framer-jGYUF .framer-tvqra4-container, .framer-jGYUF .framer-xbs9wz-container, .framer-jGYUF .framer-1l8s9cz-container, .framer-jGYUF .framer-1rvygw6-container, .framer-jGYUF .framer-1xf32iw-container, .framer-jGYUF .framer-1h8uj8q-container, .framer-jGYUF .framer-1267ini-container, .framer-jGYUF .framer-1c504dn-container, .framer-jGYUF .framer-26ka8y-container, .framer-jGYUF .framer-16xwx2i-container, .framer-jGYUF .framer-1e6aait-container, .framer-jGYUF .framer-jjmjnp-container, .framer-jGYUF .framer-1d9ey8p-container, .framer-jGYUF .framer-ioqlek-container, .framer-jGYUF .framer-9yhdrn-container, .framer-jGYUF .framer-ezpbnn-container, .framer-jGYUF .framer-1l35v0h-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jGYUF .framer-qtx79w-container, .framer-jGYUF .framer-1qyi6gm-container, .framer-jGYUF .framer-d15bw6-container, .framer-jGYUF .framer-bu1nzw-container { flex: none; height: auto; position: relative; width: 80px; }\",\".framer-jGYUF .framer-1ff98fx-container, .framer-jGYUF .framer-svds2a-container, .framer-jGYUF .framer-1cyx0kr-container, .framer-jGYUF .framer-1utmebl-container, .framer-jGYUF .framer-8i40up-container, .framer-jGYUF .framer-4ub942-container { flex: none; height: auto; position: relative; width: 72px; }\",\".framer-jGYUF .framer-r5sxbw-container, .framer-jGYUF .framer-hubpl4-container { flex: none; height: auto; position: relative; width: 68px; }\",\".framer-jGYUF .framer-15z1lry-container, .framer-jGYUF .framer-i8teyu-container { flex: none; height: auto; position: relative; width: 66px; }\",\".framer-jGYUF .framer-9xlw0k-container, .framer-jGYUF .framer-1dhq1zg-container, .framer-jGYUF .framer-6v7d0b-container, .framer-jGYUF .framer-bbelvu-container { flex: none; height: auto; position: relative; width: 100px; }\",\".framer-jGYUF .framer-l7z98c-container, .framer-jGYUF .framer-x904da-container { flex: none; height: auto; position: relative; width: 61px; }\",\".framer-jGYUF .framer-uhgm1h-container, .framer-jGYUF .framer-u3wpie-container { flex: none; height: auto; position: relative; width: 62px; }\",\".framer-jGYUF .framer-1cob6ua-container, .framer-jGYUF .framer-147dadj-container { flex: none; height: auto; position: relative; width: 67px; }\",\".framer-jGYUF .framer-saec8-container, .framer-jGYUF .framer-km162z-container, .framer-jGYUF .framer-1rkspbm-container, .framer-jGYUF .framer-6cd5g8-container { flex: none; height: auto; position: relative; width: 126px; }\",\".framer-jGYUF .framer-owz043-container, .framer-jGYUF .framer-y7zfet-container { flex: none; height: auto; position: relative; width: 70px; }\",\".framer-jGYUF .framer-va7t20-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-jGYUF .framer-x8l67q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jGYUF.framer-v-15usmjr .framer-rhlrvg { order: 0; }\",\".framer-jGYUF.framer-v-15usmjr .framer-ygis1u { order: 1; }\",\".framer-jGYUF.framer-v-15usmjr .framer-62x72t { order: 2; }\",\".framer-jGYUF.framer-v-15usmjr .framer-15z1lry-container { order: 15; }\",\".framer-jGYUF.framer-v-15usmjr .framer-9xlw0k-container { order: 14; }\",\".framer-jGYUF.framer-v-15usmjr .framer-1dhq1zg-container { order: 16; }\",\".framer-jGYUF.framer-v-15usmjr .framer-uhgm1h-container, .framer-jGYUF.framer-v-11byhvu .framer-1cob6ua-container { order: 19; }\",\".framer-jGYUF.framer-v-15usmjr .framer-owz043-container, .framer-jGYUF.framer-v-11byhvu .framer-1qyi6gm-container { order: 18; }\",\".framer-jGYUF.framer-v-11byhvu .framer-l7z98c-container { order: 20; }\",\".framer-jGYUF.framer-v-11byhvu .framer-saec8-container { order: 21; }\",\".framer-jGYUF.framer-v-11byhvu .framer-1bf81mg-container { order: 22; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 298\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ll7MstmTV\":{\"layout\":[\"fixed\",\"auto\"]},\"qKpGyC_Np\":{\"layout\":[\"fixed\",\"auto\"]},\"B5tp1PM4W\":{\"layout\":[\"fixed\",\"auto\"]},\"t5WWbvClZ\":{\"layout\":[\"fixed\",\"auto\"]},\"qDa7P77oL\":{\"layout\":[\"fixed\",\"auto\"]},\"U9ZmWbMvI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhKaageSqZ=withCSS(Component,css,\"framer-jGYUF\");export default FramerhKaageSqZ;FramerhKaageSqZ.displayName=\"Logo Section 3\";FramerhKaageSqZ.defaultProps={height:298,width:390};addPropertyControls(FramerhKaageSqZ,{variant:{options:[\"nFtIk5s9o\",\"Ll7MstmTV\",\"qKpGyC_Np\",\"B5tp1PM4W\",\"t5WWbvClZ\",\"qDa7P77oL\",\"U9ZmWbMvI\"],optionTitles:[\"All\",\"FMCG\",\"Information technology (IT)\",\"Real estate\",\"Automobile\",\"Healthcare\",\"Real Estate\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerhKaageSqZ,[{explicitInter:true,fonts:[{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\",weight:\"500\"}]},...LogoSTabPillFonts,...LogoIndividualFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhKaageSqZ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ll7MstmTV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qKpGyC_Np\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B5tp1PM4W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t5WWbvClZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qDa7P77oL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U9ZmWbMvI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"298\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"390\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hKaageSqZ.map", "// Generated by Framer (9e04080)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import LogoIndividual from\"https://framerusercontent.com/modules/26OT8Aya2OVWTX3lThTp/8rdNny3VgkclKm2K7Jd7/ByVCYgR6x.js\";import LogoSTabPill from\"https://framerusercontent.com/modules/IEHUKtykScpMorjLiThr/MDm7NQLdT34opChvSAKG/i5A80y3sW.js\";const RichTextWithFX=withFX(RichText);const LogoSTabPillFonts=getFonts(LogoSTabPill);const LogoIndividualFonts=getFonts(LogoIndividual);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"rZf0ZgQmV\",\"vV4DVfBl6\",\"BdW5sn7Qa\",\"RGWr61hR_\",\"qYk7pxXKa\",\"HhEtdteIp\",\"w3cGNmTyD\"];const serializationHash=\"framer-vjVni\";const variantClassNames={BdW5sn7Qa:\"framer-v-1g04fsg\",HhEtdteIp:\"framer-v-mhq7qw\",qYk7pxXKa:\"framer-v-1nph5ch\",RGWr61hR_:\"framer-v-1b7ixfr\",rZf0ZgQmV:\"framer-v-1wgm507\",vV4DVfBl6:\"framer-v-vc84ux\",w3cGNmTyD:\"framer-v-1qaie7r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={bounce:.2,delay:.2,duration:.6,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Information technology (IT)\":\"BdW5sn7Qa\",\"Real estate\":\"RGWr61hR_\",\"Real Estate\":\"w3cGNmTyD\",All:\"rZf0ZgQmV\",Automobile:\"qYk7pxXKa\",FMCG:\"vV4DVfBl6\",Healthcare:\"HhEtdteIp\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rZf0ZgQmV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rZf0ZgQmV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const DPFS3tAvLa33bx4=activeVariantCallback(async(...args)=>{setVariant(\"rZf0ZgQmV\");});const DPFS3tAvL15nuqhk=activeVariantCallback(async(...args)=>{setVariant(\"vV4DVfBl6\");});const DPFS3tAvL9pjj2a=activeVariantCallback(async(...args)=>{setVariant(\"BdW5sn7Qa\");});const DPFS3tAvL1sfo2f6=activeVariantCallback(async(...args)=>{setVariant(\"RGWr61hR_\");});const DPFS3tAvL1mh2cr=activeVariantCallback(async(...args)=>{setVariant(\"qYk7pxXKa\");});const DPFS3tAvLfj2nb4=activeVariantCallback(async(...args)=>{setVariant(\"HhEtdteIp\");});const DPFS3tAvLs4yh9l=activeVariantCallback(async(...args)=>{setVariant(\"w3cGNmTyD\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"vV4DVfBl6\",\"BdW5sn7Qa\",\"RGWr61hR_\",\"qYk7pxXKa\",\"HhEtdteIp\",\"w3cGNmTyD\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"vV4DVfBl6\",\"BdW5sn7Qa\",\"RGWr61hR_\",\"HhEtdteIp\",\"w3cGNmTyD\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"vV4DVfBl6\",\"BdW5sn7Qa\",\"RGWr61hR_\",\"qYk7pxXKa\",\"w3cGNmTyD\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"vV4DVfBl6\",\"BdW5sn7Qa\",\"RGWr61hR_\",\"qYk7pxXKa\",\"HhEtdteIp\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"BdW5sn7Qa\",\"RGWr61hR_\",\"qYk7pxXKa\",\"HhEtdteIp\",\"w3cGNmTyD\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"vV4DVfBl6\",\"RGWr61hR_\",\"qYk7pxXKa\",\"HhEtdteIp\",\"w3cGNmTyD\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"vV4DVfBl6\",\"BdW5sn7Qa\",\"qYk7pxXKa\",\"HhEtdteIp\",\"w3cGNmTyD\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if([\"vV4DVfBl6\",\"BdW5sn7Qa\",\"RGWr61hR_\",\"qYk7pxXKa\",\"HhEtdteIp\",\"w3cGNmTyD\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1wgm507\",className,classNames),\"data-framer-name\":\"All\",layoutDependency:layoutDependency,layoutId:\"rZf0ZgQmV\",ref:refBinding,style:{...style},...addPropertyOverrides({BdW5sn7Qa:{\"data-framer-name\":\"Information technology (IT)\"},HhEtdteIp:{\"data-framer-name\":\"Healthcare\"},qYk7pxXKa:{\"data-framer-name\":\"Automobile\"},RGWr61hR_:{\"data-framer-name\":\"Real estate\"},vV4DVfBl6:{\"data-framer-name\":\"FMCG\"},w3cGNmTyD:{\"data-framer-name\":\"Real Estate\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNTAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 24, 51))\"},children:[\"Trusted by \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(22, 119, 255))\"},children:\"300+\"}),\" Global Brands From,\"]})}),className:\"framer-1ytwpvj\",\"data-framer-name\":\"Trusted by 300+ Global Brands\",fonts:[\"GF;Onest-500\"],layoutDependency:layoutDependency,layoutId:\"d0WFPTN5z\",style:{\"--extracted-1w3ko1f\":\"rgb(22, 119, 255)\",\"--extracted-r6o4lv\":\"rgb(10, 24, 51)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l9qjmr\",layoutDependency:layoutDependency,layoutId:\"zdmAA3bNT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-60tedx-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"DceRoqMo3-container\",name:\"1\",nodeId:\"DceRoqMo3\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvLa33bx4,height:\"100%\",id:\"DceRoqMo3\",layoutId:\"DceRoqMo3\",name:\"1\",NWmlNyBKp:\"All\",style:{height:\"100%\"},variant:\"w4kwcK63o\",width:\"100%\",...addPropertyOverrides({BdW5sn7Qa:{variant:\"H7fd4UZgh\"},HhEtdteIp:{variant:\"H7fd4UZgh\"},qYk7pxXKa:{variant:\"H7fd4UZgh\"},RGWr61hR_:{variant:\"H7fd4UZgh\"},vV4DVfBl6:{variant:\"H7fd4UZgh\"},w3cGNmTyD:{variant:\"H7fd4UZgh\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pgsqzf-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"QZZrYbV1U-container\",name:\"2\",nodeId:\"QZZrYbV1U\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL15nuqhk,height:\"100%\",id:\"QZZrYbV1U\",layoutId:\"QZZrYbV1U\",name:\"2\",NWmlNyBKp:\"FMCG\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({vV4DVfBl6:{NWmlNyBKp:\"Retail\",variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-84ulrh-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"UUWrKT_TR-container\",name:\"3\",nodeId:\"UUWrKT_TR\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL9pjj2a,height:\"100%\",id:\"UUWrKT_TR\",layoutId:\"UUWrKT_TR\",name:\"3\",NWmlNyBKp:\"Information technology (IT)\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({BdW5sn7Qa:{variant:\"w4kwcK63o\"},vV4DVfBl6:{NWmlNyBKp:\"Automotive\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h5bbpe-container\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"y3KuebotP-container\",name:\"4\",nodeId:\"y3KuebotP\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL1sfo2f6,height:\"100%\",id:\"y3KuebotP\",layoutId:\"y3KuebotP\",name:\"4\",NWmlNyBKp:\"Real estate\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({RGWr61hR_:{variant:\"w4kwcK63o\"},vV4DVfBl6:{NWmlNyBKp:\"Healthcare\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-putgu4-container\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"HTfmvvp6c-container\",name:\"5\",nodeId:\"HTfmvvp6c\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL1mh2cr,height:\"100%\",id:\"HTfmvvp6c\",layoutId:\"HTfmvvp6c\",name:\"5\",NWmlNyBKp:\"Automobile\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({qYk7pxXKa:{variant:\"w4kwcK63o\"},vV4DVfBl6:{NWmlNyBKp:\"Finance\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2tfg0a-container\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"Rg9_SBcGO-container\",name:\"6\",nodeId:\"Rg9_SBcGO\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvLfj2nb4,height:\"100%\",id:\"Rg9_SBcGO\",layoutId:\"Rg9_SBcGO\",name:\"6\",NWmlNyBKp:\"Healthcare\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({HhEtdteIp:{variant:\"w4kwcK63o\"},vV4DVfBl6:{NWmlNyBKp:\"Education\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xe2d44-container\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"eVAB9jdjZ-container\",name:\"7\",nodeId:\"eVAB9jdjZ\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvLs4yh9l,height:\"100%\",id:\"eVAB9jdjZ\",layoutId:\"eVAB9jdjZ\",name:\"7\",NWmlNyBKp:\"Real Estate\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({w3cGNmTyD:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-otox9t\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"UB5Xs3bYL\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{m_5qgfXbG:\"gen-ai-powered-whatsapp-transformation-at-motilal-oswal\"},unresolvedPathSlugs:{m_5qgfXbG:{collectionId:\"pU6c0lpBi\",collectionItemId:\"Eux1SbDib\"}},webPageId:\"OavPTxokh\"},implicitPathVariables:undefined},{href:{pathVariables:{m_5qgfXbG:\"gen-ai-powered-whatsapp-transformation-at-motilal-oswal\"},unresolvedPathSlugs:{m_5qgfXbG:{collectionId:\"pU6c0lpBi\",collectionItemId:\"Eux1SbDib\"}},webPageId:\"OavPTxokh\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yp443j-container\",layoutDependency:layoutDependency,layoutId:\"ifA3RSfHg-container\",nodeId:\"ifA3RSfHg\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"ifA3RSfHg\",layoutId:\"ifA3RSfHg\",LFbwJqaCc:resolvedLinks[0],variant:\"hKUKaOLuE\",width:\"100%\",...addPropertyOverrides({qYk7pxXKa:{LFbwJqaCc:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gimya7-container\",layoutDependency:layoutDependency,layoutId:\"T32StWjSJ-container\",nodeId:\"T32StWjSJ\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"T32StWjSJ\",layoutId:\"T32StWjSJ\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:242,pixelWidth:600,src:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg\",srcSet:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg 600w\"},\"\")})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17a6h9n-container\",layoutDependency:layoutDependency,layoutId:\"DOHi1omFe-container\",nodeId:\"DOHi1omFe\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"DOHi1omFe\",layoutId:\"DOHi1omFe\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:100,pixelWidth:415,src:\"https://framerusercontent.com/images/ppobckYqcBfgVIx1BZrgUeFa90.jpeg\"},\"\")})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-78yrc9-container\",layoutDependency:layoutDependency,layoutId:\"nHoHcYrmR-container\",nodeId:\"nHoHcYrmR\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"nHoHcYrmR\",layoutId:\"nHoHcYrmR\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:274,pixelWidth:773,src:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp\",srcSet:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp?scale-down-to=512 512w,https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp 773w\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bi4uyp-container\",layoutDependency:layoutDependency,layoutId:\"bZSFhvAIP-container\",nodeId:\"bZSFhvAIP\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"bZSFhvAIP\",layoutId:\"bZSFhvAIP\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:196,pixelWidth:233,src:\"https://framerusercontent.com/images/4Fov1g7wdH6dookgGeJdc2J5kN8.png\"},\"\")})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2etz6g-container\",layoutDependency:layoutDependency,layoutId:\"WTdPfSIHf-container\",nodeId:\"WTdPfSIHf\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"WTdPfSIHf\",layoutId:\"WTdPfSIHf\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:131,pixelWidth:506,src:\"https://framerusercontent.com/images/EVormVJtyQG5II4OZv2HMwQr49U.jpeg\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-121v6nl-container\",layoutDependency:layoutDependency,layoutId:\"weD88Rjes-container\",nodeId:\"weD88Rjes\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"weD88Rjes\",layoutId:\"weD88Rjes\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:337,pixelWidth:337,src:\"https://framerusercontent.com/images/irD0xIbTARCuKECbeMJKhK0A04.png\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i21840-container\",layoutDependency:layoutDependency,layoutId:\"P9wWGp8kZ-container\",nodeId:\"P9wWGp8kZ\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"P9wWGp8kZ\",layoutId:\"P9wWGp8kZ\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:345,pixelWidth:333,src:\"https://framerusercontent.com/images/8sYj5WDN8xuHF8EIYPRa1qemE.png\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f8dkub-container\",layoutDependency:layoutDependency,layoutId:\"r9k06DlsC-container\",nodeId:\"r9k06DlsC\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"r9k06DlsC\",layoutId:\"r9k06DlsC\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:476,pixelWidth:1200,src:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png\",srcSet:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=512 512w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png 1200w\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m368d-container\",layoutDependency:layoutDependency,layoutId:\"aVXPamzSG-container\",nodeId:\"aVXPamzSG\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"aVXPamzSG\",layoutId:\"aVXPamzSG\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:262,pixelWidth:262,src:\"https://framerusercontent.com/images/YJbzIrdKjiAeJa7F0CmOJ0uW3zo.jpeg\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qajsk-container\",layoutDependency:layoutDependency,layoutId:\"ShkYfsjMD-container\",nodeId:\"ShkYfsjMD\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"ShkYfsjMD\",layoutId:\"ShkYfsjMD\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:127,pixelWidth:800,src:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png\",srcSet:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png 800w\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6nu2cr-container\",layoutDependency:layoutDependency,layoutId:\"qv5rrL5kn-container\",nodeId:\"qv5rrL5kn\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"qv5rrL5kn\",layoutId:\"qv5rrL5kn\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:143,pixelWidth:353,src:\"https://framerusercontent.com/images/B0zjcZhuNNttdG8ZxH8LS8m7vo.png\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1011xbt-container\",layoutDependency:layoutDependency,layoutId:\"rxBE2_Mbk-container\",nodeId:\"rxBE2_Mbk\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"rxBE2_Mbk\",layoutId:\"rxBE2_Mbk\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:155,pixelWidth:448,src:\"https://framerusercontent.com/images/9WLGml1sYbvpTDzqVvQlBLqRpg.png\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"68px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-aah7n3-container\",layoutDependency:layoutDependency,layoutId:\"Vbvo7dc4E-container\",nodeId:\"Vbvo7dc4E\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Vbvo7dc4E\",layoutId:\"Vbvo7dc4E\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:201,pixelWidth:194,src:\"https://framerusercontent.com/images/y4CQI8P3ULBNuO24uH5Y7r4LA.png\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"66px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lglw76-container\",layoutDependency:layoutDependency,layoutId:\"R041zUdsi-container\",nodeId:\"R041zUdsi\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"R041zUdsi\",layoutId:\"R041zUdsi\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:299,pixelWidth:295,src:\"https://framerusercontent.com/images/pzPPBf84U5AyqlByBRP5EgmZ08.png\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fqdiys-container\",layoutDependency:layoutDependency,layoutId:\"UG9KYvWzL-container\",nodeId:\"UG9KYvWzL\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"UG9KYvWzL\",layoutId:\"UG9KYvWzL\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:303,pixelWidth:512,src:\"https://framerusercontent.com/images/dxIXepNAXITO79Y7POxzBylIKxg.png\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d9wb1s-container\",layoutDependency:layoutDependency,layoutId:\"IU1yIjgIb-container\",nodeId:\"IU1yIjgIb\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"IU1yIjgIb\",layoutId:\"IU1yIjgIb\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:263,pixelWidth:463,src:\"https://framerusercontent.com/images/8Vl9yDzDa8odnp9v33QNi6V7GVM.jpeg\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"61px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q2o0g6-container\",layoutDependency:layoutDependency,layoutId:\"fsRVk3TIP-container\",nodeId:\"fsRVk3TIP\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"fsRVk3TIP\",layoutId:\"fsRVk3TIP\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:511,pixelWidth:479,src:\"https://framerusercontent.com/images/hC6gbZJg0lLHNPy2xSbQeBfB4.jpeg\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"62px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-64wgxy-container\",layoutDependency:layoutDependency,layoutId:\"GxGlHcUyV-container\",nodeId:\"GxGlHcUyV\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"GxGlHcUyV\",layoutId:\"GxGlHcUyV\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/jXM32NiwWqj9PosZ3Y1LKkCHeg.jpeg\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"67px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1et8cp6-container\",layoutDependency:layoutDependency,layoutId:\"ESz5etmCy-container\",nodeId:\"ESz5etmCy\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"ESz5etmCy\",layoutId:\"ESz5etmCy\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:512,pixelWidth:599,src:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg\",srcSet:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg 599w\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-we916k-container\",layoutDependency:layoutDependency,layoutId:\"wi8hxNq7l-container\",nodeId:\"wi8hxNq7l\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"wi8hxNq7l\",layoutId:\"wi8hxNq7l\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:279,pixelWidth:417,src:\"https://framerusercontent.com/images/zmyJnF4jkou0mCDXXqW0FDNOPQ.jpeg\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113um69-container\",layoutDependency:layoutDependency,layoutId:\"qgaFc4t8G-container\",nodeId:\"qgaFc4t8G\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"qgaFc4t8G\",layoutId:\"qgaFc4t8G\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:407,pixelWidth:960,src:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg\",srcSet:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg 960w\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mt3oa1-container\",layoutDependency:layoutDependency,layoutId:\"Jn8ER8Btl-container\",nodeId:\"Jn8ER8Btl\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Jn8ER8Btl\",layoutId:\"Jn8ER8Btl\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:146,pixelWidth:452,src:\"https://framerusercontent.com/images/jWMhwDUt8aA2abrn1mi9DLFyHk.png\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"70px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-32u6f-container\",layoutDependency:layoutDependency,layoutId:\"J2fx3kg99-container\",nodeId:\"J2fx3kg99\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"J2fx3kg99\",layoutId:\"J2fx3kg99\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:735,pixelWidth:610,src:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg\",srcSet:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg 610w\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f5bcl-container\",layoutDependency:layoutDependency,layoutId:\"LLfp_62mK-container\",nodeId:\"LLfp_62mK\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"LLfp_62mK\",layoutId:\"LLfp_62mK\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:86,pixelWidth:416,src:\"https://framerusercontent.com/images/EE9VaL4BO28N1ZNlpCUCm1erK8.png\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18ujmlg-container\",layoutDependency:layoutDependency,layoutId:\"sM_FA6LCd-container\",nodeId:\"sM_FA6LCd\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"sM_FA6LCd\",layoutId:\"sM_FA6LCd\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:149,pixelWidth:554,src:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png\",srcSet:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png 554w\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18h642b-container\",layoutDependency:layoutDependency,layoutId:\"Uv2B_hlZz-container\",nodeId:\"Uv2B_hlZz\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Uv2B_hlZz\",layoutId:\"Uv2B_hlZz\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:145,pixelWidth:419,src:\"https://framerusercontent.com/images/OaY2frpLyKdKCGT9WoD4HAFNI.png\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lepkll-container\",layoutDependency:layoutDependency,layoutId:\"SuJI2xjNk-container\",nodeId:\"SuJI2xjNk\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"SuJI2xjNk\",layoutId:\"SuJI2xjNk\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:186,pixelWidth:664,src:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg\",srcSet:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg 664w\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qr6bnu-container\",layoutDependency:layoutDependency,layoutId:\"RQlrzF3w3-container\",nodeId:\"RQlrzF3w3\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"RQlrzF3w3\",layoutId:\"RQlrzF3w3\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:253,pixelWidth:554,src:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg\",srcSet:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg 554w\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hq5ddy-container\",layoutDependency:layoutDependency,layoutId:\"WhYE3AXsd-container\",nodeId:\"WhYE3AXsd\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"WhYE3AXsd\",layoutId:\"WhYE3AXsd\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:203,pixelWidth:600,src:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png\",srcSet:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png?scale-down-to=512 512w,https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png 600w\"},\"\")})})})]}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5e0oxw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"O8YehiaSQ-container\",nodeId:\"O8YehiaSQ\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"O8YehiaSQ\",layoutId:\"O8YehiaSQ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12i5hnn\",layoutDependency:layoutDependency,layoutId:\"wuMIHWZM0\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{m_5qgfXbG:\"gen-ai-powered-whatsapp-transformation-at-motilal-oswal\"},unresolvedPathSlugs:{m_5qgfXbG:{collectionId:\"pU6c0lpBi\",collectionItemId:\"Eux1SbDib\"}},webPageId:\"OavPTxokh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tvgdos-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vN0m2QiC3-container\",nodeId:\"vN0m2QiC3\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"vN0m2QiC3\",layoutId:\"vN0m2QiC3\",LFbwJqaCc:resolvedLinks1[0],variant:\"hKUKaOLuE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z3uybr-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"YB3TnuFif-container\",nodeId:\"YB3TnuFif\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"YB3TnuFif\",layoutId:\"YB3TnuFif\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:242,pixelWidth:600,src:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg\",srcSet:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13ey6qq-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qz55y5QKv-container\",nodeId:\"qz55y5QKv\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"qz55y5QKv\",layoutId:\"qz55y5QKv\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:100,pixelWidth:415,src:\"https://framerusercontent.com/images/ppobckYqcBfgVIx1BZrgUeFa90.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-151ql16-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"E4OwnjtmU-container\",nodeId:\"E4OwnjtmU\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"E4OwnjtmU\",layoutId:\"E4OwnjtmU\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:274,pixelWidth:773,src:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp\",srcSet:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp?scale-down-to=512 512w,https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp 773w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3s221p-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Y1zKgjIe_-container\",nodeId:\"Y1zKgjIe_\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Y1zKgjIe_\",layoutId:\"Y1zKgjIe_\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:196,pixelWidth:233,src:\"https://framerusercontent.com/images/4Fov1g7wdH6dookgGeJdc2J5kN8.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yagb8v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"BPC8IQXU7-container\",nodeId:\"BPC8IQXU7\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"BPC8IQXU7\",layoutId:\"BPC8IQXU7\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:131,pixelWidth:506,src:\"https://framerusercontent.com/images/EVormVJtyQG5II4OZv2HMwQr49U.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qa1em7-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"BGvpHCJzq-container\",nodeId:\"BGvpHCJzq\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"BGvpHCJzq\",layoutId:\"BGvpHCJzq\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:337,pixelWidth:337,src:\"https://framerusercontent.com/images/irD0xIbTARCuKECbeMJKhK0A04.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l6nelt-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"IcADFiev_-container\",nodeId:\"IcADFiev_\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"IcADFiev_\",layoutId:\"IcADFiev_\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:345,pixelWidth:333,src:\"https://framerusercontent.com/images/8sYj5WDN8xuHF8EIYPRa1qemE.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-49vd08-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"IbiRcver4-container\",nodeId:\"IbiRcver4\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"IbiRcver4\",layoutId:\"IbiRcver4\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:476,pixelWidth:1200,src:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png\",srcSet:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=512 512w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png 1200w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4ddd45-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"UCSCXMFQR-container\",nodeId:\"UCSCXMFQR\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"UCSCXMFQR\",layoutId:\"UCSCXMFQR\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:262,pixelWidth:262,src:\"https://framerusercontent.com/images/YJbzIrdKjiAeJa7F0CmOJ0uW3zo.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sdgw8v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xOVSG8ZVv-container\",nodeId:\"xOVSG8ZVv\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"xOVSG8ZVv\",layoutId:\"xOVSG8ZVv\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:127,pixelWidth:800,src:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png\",srcSet:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png 800w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9y8o61-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"sTRPzfa8C-container\",nodeId:\"sTRPzfa8C\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"sTRPzfa8C\",layoutId:\"sTRPzfa8C\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:143,pixelWidth:353,src:\"https://framerusercontent.com/images/B0zjcZhuNNttdG8ZxH8LS8m7vo.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kwuvvm-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QPAm13Dwm-container\",nodeId:\"QPAm13Dwm\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"QPAm13Dwm\",layoutId:\"QPAm13Dwm\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:155,pixelWidth:448,src:\"https://framerusercontent.com/images/9WLGml1sYbvpTDzqVvQlBLqRpg.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"68px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1naq9cn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ynNjbXh8V-container\",nodeId:\"ynNjbXh8V\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"ynNjbXh8V\",layoutId:\"ynNjbXh8V\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:201,pixelWidth:194,src:\"https://framerusercontent.com/images/y4CQI8P3ULBNuO24uH5Y7r4LA.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"66px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pqiot1-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"PQNg3tyqA-container\",nodeId:\"PQNg3tyqA\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"PQNg3tyqA\",layoutId:\"PQNg3tyqA\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:299,pixelWidth:295,src:\"https://framerusercontent.com/images/pzPPBf84U5AyqlByBRP5EgmZ08.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-81wq5f-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gDxGwyQeO-container\",nodeId:\"gDxGwyQeO\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"gDxGwyQeO\",layoutId:\"gDxGwyQeO\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:303,pixelWidth:512,src:\"https://framerusercontent.com/images/dxIXepNAXITO79Y7POxzBylIKxg.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-crok2h-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xipmY1TYx-container\",nodeId:\"xipmY1TYx\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"xipmY1TYx\",layoutId:\"xipmY1TYx\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:263,pixelWidth:463,src:\"https://framerusercontent.com/images/8Vl9yDzDa8odnp9v33QNi6V7GVM.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"61px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1apjla5-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kQWXZnmJ9-container\",nodeId:\"kQWXZnmJ9\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"kQWXZnmJ9\",layoutId:\"kQWXZnmJ9\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:511,pixelWidth:479,src:\"https://framerusercontent.com/images/hC6gbZJg0lLHNPy2xSbQeBfB4.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"62px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bp5amt-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"wvvJPnTVl-container\",nodeId:\"wvvJPnTVl\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"wvvJPnTVl\",layoutId:\"wvvJPnTVl\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/jXM32NiwWqj9PosZ3Y1LKkCHeg.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"67px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cm36co-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LXrb5ttpq-container\",nodeId:\"LXrb5ttpq\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"LXrb5ttpq\",layoutId:\"LXrb5ttpq\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:512,pixelWidth:599,src:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg\",srcSet:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg 599w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rp1baf-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"tX1S5Kl7c-container\",nodeId:\"tX1S5Kl7c\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"tX1S5Kl7c\",layoutId:\"tX1S5Kl7c\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:279,pixelWidth:417,src:\"https://framerusercontent.com/images/zmyJnF4jkou0mCDXXqW0FDNOPQ.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mbtxb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"p5ioFiLOp-container\",nodeId:\"p5ioFiLOp\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"p5ioFiLOp\",layoutId:\"p5ioFiLOp\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:407,pixelWidth:960,src:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg\",srcSet:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg 960w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nkzmhx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"b5VaOeUmF-container\",nodeId:\"b5VaOeUmF\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"b5VaOeUmF\",layoutId:\"b5VaOeUmF\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:146,pixelWidth:452,src:\"https://framerusercontent.com/images/jWMhwDUt8aA2abrn1mi9DLFyHk.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"70px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2kr198-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"sl5_NaUWN-container\",nodeId:\"sl5_NaUWN\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"sl5_NaUWN\",layoutId:\"sl5_NaUWN\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:735,pixelWidth:610,src:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg\",srcSet:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg 610w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lcxi43-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"bJH5PfSa3-container\",nodeId:\"bJH5PfSa3\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"bJH5PfSa3\",layoutId:\"bJH5PfSa3\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:86,pixelWidth:416,src:\"https://framerusercontent.com/images/EE9VaL4BO28N1ZNlpCUCm1erK8.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ip8ho0-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"K7YqNRnMj-container\",nodeId:\"K7YqNRnMj\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"K7YqNRnMj\",layoutId:\"K7YqNRnMj\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:149,pixelWidth:554,src:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png\",srcSet:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png 554w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sklj09-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ukjAoBOjY-container\",nodeId:\"ukjAoBOjY\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"ukjAoBOjY\",layoutId:\"ukjAoBOjY\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:145,pixelWidth:419,src:\"https://framerusercontent.com/images/OaY2frpLyKdKCGT9WoD4HAFNI.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b1qe9q-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"psQTL64Qn-container\",nodeId:\"psQTL64Qn\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"psQTL64Qn\",layoutId:\"psQTL64Qn\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:186,pixelWidth:664,src:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg\",srcSet:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg 664w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y4z1j4-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"M_bLl1xXM-container\",nodeId:\"M_bLl1xXM\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"M_bLl1xXM\",layoutId:\"M_bLl1xXM\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:253,pixelWidth:554,src:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg\",srcSet:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg 554w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ewo8a3-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vJo8o53gt-container\",nodeId:\"vJo8o53gt\",rendersWithMotion:true,scopeId:\"QIHHgfQBB\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"vJo8o53gt\",layoutId:\"vJo8o53gt\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:203,pixelWidth:600,src:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png\",srcSet:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png?scale-down-to=512 512w,https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png 600w\"},\"\")})})})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vjVni.framer-k952wl, .framer-vjVni .framer-k952wl { display: block; }\",\".framer-vjVni.framer-1wgm507 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 96px 0px 96px; position: relative; width: 810px; }\",\".framer-vjVni .framer-1ytwpvj { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vjVni .framer-1l9qjmr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 597px; }\",\".framer-vjVni .framer-60tedx-container, .framer-vjVni .framer-pgsqzf-container, .framer-vjVni .framer-84ulrh-container, .framer-vjVni .framer-h5bbpe-container, .framer-vjVni .framer-putgu4-container, .framer-vjVni .framer-2tfg0a-container, .framer-vjVni .framer-xe2d44-container { flex: none; height: 34px; position: relative; width: auto; }\",\".framer-vjVni .framer-otox9t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vjVni .framer-1yp443j-container, .framer-vjVni .framer-1gimya7-container, .framer-vjVni .framer-17a6h9n-container, .framer-vjVni .framer-78yrc9-container, .framer-vjVni .framer-2etz6g-container, .framer-vjVni .framer-1f8dkub-container, .framer-vjVni .framer-qajsk-container, .framer-vjVni .framer-6nu2cr-container, .framer-vjVni .framer-1011xbt-container, .framer-vjVni .framer-mt3oa1-container, .framer-vjVni .framer-f5bcl-container, .framer-vjVni .framer-18ujmlg-container, .framer-vjVni .framer-18h642b-container, .framer-vjVni .framer-1lepkll-container, .framer-vjVni .framer-1hq5ddy-container, .framer-vjVni .framer-1tvgdos-container, .framer-vjVni .framer-z3uybr-container, .framer-vjVni .framer-13ey6qq-container, .framer-vjVni .framer-151ql16-container, .framer-vjVni .framer-1yagb8v-container, .framer-vjVni .framer-49vd08-container, .framer-vjVni .framer-1sdgw8v-container, .framer-vjVni .framer-9y8o61-container, .framer-vjVni .framer-kwuvvm-container, .framer-vjVni .framer-nkzmhx-container, .framer-vjVni .framer-1lcxi43-container, .framer-vjVni .framer-ip8ho0-container, .framer-vjVni .framer-sklj09-container, .framer-vjVni .framer-1b1qe9q-container, .framer-vjVni .framer-ewo8a3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-vjVni .framer-bi4uyp-container, .framer-vjVni .framer-we916k-container, .framer-vjVni .framer-3s221p-container, .framer-vjVni .framer-rp1baf-container { flex: none; height: auto; position: relative; width: 80px; }\",\".framer-vjVni .framer-121v6nl-container, .framer-vjVni .framer-1i21840-container, .framer-vjVni .framer-m368d-container, .framer-vjVni .framer-1qa1em7-container, .framer-vjVni .framer-l6nelt-container, .framer-vjVni .framer-4ddd45-container { flex: none; height: auto; position: relative; width: 72px; }\",\".framer-vjVni .framer-aah7n3-container, .framer-vjVni .framer-1naq9cn-container { flex: none; height: auto; position: relative; width: 68px; }\",\".framer-vjVni .framer-1lglw76-container, .framer-vjVni .framer-1pqiot1-container { flex: none; height: auto; position: relative; width: 66px; }\",\".framer-vjVni .framer-1fqdiys-container, .framer-vjVni .framer-1d9wb1s-container, .framer-vjVni .framer-81wq5f-container, .framer-vjVni .framer-crok2h-container { flex: none; height: auto; position: relative; width: 100px; }\",\".framer-vjVni .framer-q2o0g6-container, .framer-vjVni .framer-1apjla5-container { flex: none; height: auto; position: relative; width: 61px; }\",\".framer-vjVni .framer-64wgxy-container, .framer-vjVni .framer-1bp5amt-container { flex: none; height: auto; position: relative; width: 62px; }\",\".framer-vjVni .framer-1et8cp6-container, .framer-vjVni .framer-cm36co-container { flex: none; height: auto; position: relative; width: 67px; }\",\".framer-vjVni .framer-113um69-container, .framer-vjVni .framer-1qr6bnu-container, .framer-vjVni .framer-mbtxb-container, .framer-vjVni .framer-y4z1j4-container { flex: none; height: auto; position: relative; width: 126px; }\",\".framer-vjVni .framer-32u6f-container, .framer-vjVni .framer-2kr198-container { flex: none; height: auto; position: relative; width: 70px; }\",\".framer-vjVni .framer-5e0oxw-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-vjVni .framer-12i5hnn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vjVni.framer-v-vc84ux .framer-1ytwpvj { order: 0; }\",\".framer-vjVni.framer-v-vc84ux .framer-1l9qjmr { order: 1; }\",\".framer-vjVni.framer-v-vc84ux .framer-otox9t { order: 2; }\",\".framer-vjVni.framer-v-vc84ux .framer-1lglw76-container { order: 15; }\",\".framer-vjVni.framer-v-vc84ux .framer-1fqdiys-container { order: 14; }\",\".framer-vjVni.framer-v-vc84ux .framer-1d9wb1s-container { order: 16; }\",\".framer-vjVni.framer-v-vc84ux .framer-64wgxy-container, .framer-vjVni.framer-v-1g04fsg .framer-1et8cp6-container { order: 19; }\",\".framer-vjVni.framer-v-vc84ux .framer-32u6f-container, .framer-vjVni.framer-v-1g04fsg .framer-we916k-container { order: 18; }\",\".framer-vjVni.framer-v-1g04fsg .framer-q2o0g6-container { order: 20; }\",\".framer-vjVni.framer-v-1g04fsg .framer-113um69-container { order: 21; }\",\".framer-vjVni.framer-v-1g04fsg .framer-mt3oa1-container { order: 22; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 218\n * @framerIntrinsicWidth 810\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vV4DVfBl6\":{\"layout\":[\"fixed\",\"auto\"]},\"BdW5sn7Qa\":{\"layout\":[\"fixed\",\"auto\"]},\"RGWr61hR_\":{\"layout\":[\"fixed\",\"auto\"]},\"qYk7pxXKa\":{\"layout\":[\"fixed\",\"auto\"]},\"HhEtdteIp\":{\"layout\":[\"fixed\",\"auto\"]},\"w3cGNmTyD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQIHHgfQBB=withCSS(Component,css,\"framer-vjVni\");export default FramerQIHHgfQBB;FramerQIHHgfQBB.displayName=\"Logo Section 2\";FramerQIHHgfQBB.defaultProps={height:218,width:810};addPropertyControls(FramerQIHHgfQBB,{variant:{options:[\"rZf0ZgQmV\",\"vV4DVfBl6\",\"BdW5sn7Qa\",\"RGWr61hR_\",\"qYk7pxXKa\",\"HhEtdteIp\",\"w3cGNmTyD\"],optionTitles:[\"All\",\"FMCG\",\"Information technology (IT)\",\"Real estate\",\"Automobile\",\"Healthcare\",\"Real Estate\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQIHHgfQBB,[{explicitInter:true,fonts:[{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\",weight:\"500\"}]},...LogoSTabPillFonts,...LogoIndividualFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQIHHgfQBB\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"810\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"218\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vV4DVfBl6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BdW5sn7Qa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RGWr61hR_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qYk7pxXKa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HhEtdteIp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w3cGNmTyD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QIHHgfQBB.map", "// Generated by Framer (f8e3bf6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import LogoIndividual from\"https://framerusercontent.com/modules/26OT8Aya2OVWTX3lThTp/8rdNny3VgkclKm2K7Jd7/ByVCYgR6x.js\";import LogoSTabPill from\"https://framerusercontent.com/modules/IEHUKtykScpMorjLiThr/MDm7NQLdT34opChvSAKG/i5A80y3sW.js\";const RichTextWithFX=withFX(RichText);const LogoSTabPillFonts=getFonts(LogoSTabPill);const LogoIndividualFonts=getFonts(LogoIndividual);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"m_pm4Ohwn\",\"PZrgaNhok\",\"NCpSOr_F2\",\"spZDZXUaH\",\"r1uNa83C4\",\"mxMlr_Izg\",\"K7Da0n49b\"];const serializationHash=\"framer-OR37s\";const variantClassNames={K7Da0n49b:\"framer-v-fcclcy\",m_pm4Ohwn:\"framer-v-1vsjl51\",mxMlr_Izg:\"framer-v-1uxualb\",NCpSOr_F2:\"framer-v-okwdd9\",PZrgaNhok:\"framer-v-1d0czs5\",r1uNa83C4:\"framer-v-etoqgp\",spZDZXUaH:\"framer-v-56q4gq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={bounce:.2,delay:.2,duration:.6,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Information technology (IT)\":\"NCpSOr_F2\",\"Real Estate\":\"K7Da0n49b\",\"Real estate\":\"spZDZXUaH\",All:\"m_pm4Ohwn\",Automobile:\"r1uNa83C4\",FMCG:\"PZrgaNhok\",Healthcare:\"mxMlr_Izg\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"m_pm4Ohwn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"m_pm4Ohwn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const DPFS3tAvL1lchceg=activeVariantCallback(async(...args)=>{setVariant(\"m_pm4Ohwn\");});const DPFS3tAvL1lrgk2u=activeVariantCallback(async(...args)=>{setVariant(\"PZrgaNhok\");});const DPFS3tAvLmpdy2f=activeVariantCallback(async(...args)=>{setVariant(\"NCpSOr_F2\");});const DPFS3tAvL17s9jkk=activeVariantCallback(async(...args)=>{setVariant(\"spZDZXUaH\");});const DPFS3tAvLmc8uus=activeVariantCallback(async(...args)=>{setVariant(\"r1uNa83C4\");});const DPFS3tAvL23kbwl=activeVariantCallback(async(...args)=>{setVariant(\"mxMlr_Izg\");});const DPFS3tAvL1ogf06h=activeVariantCallback(async(...args)=>{setVariant(\"K7Da0n49b\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"PZrgaNhok\",\"NCpSOr_F2\",\"spZDZXUaH\",\"r1uNa83C4\",\"mxMlr_Izg\",\"K7Da0n49b\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"PZrgaNhok\",\"NCpSOr_F2\",\"spZDZXUaH\",\"mxMlr_Izg\",\"K7Da0n49b\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"PZrgaNhok\",\"NCpSOr_F2\",\"spZDZXUaH\",\"r1uNa83C4\",\"K7Da0n49b\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"PZrgaNhok\",\"NCpSOr_F2\",\"spZDZXUaH\",\"r1uNa83C4\",\"mxMlr_Izg\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"PZrgaNhok\",\"NCpSOr_F2\",\"spZDZXUaH\",\"r1uNa83C4\",\"mxMlr_Izg\",\"K7Da0n49b\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"NCpSOr_F2\",\"spZDZXUaH\",\"r1uNa83C4\",\"mxMlr_Izg\",\"K7Da0n49b\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"PZrgaNhok\",\"spZDZXUaH\",\"r1uNa83C4\",\"mxMlr_Izg\",\"K7Da0n49b\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if([\"PZrgaNhok\",\"NCpSOr_F2\",\"r1uNa83C4\",\"mxMlr_Izg\",\"K7Da0n49b\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1vsjl51\",className,classNames),\"data-framer-name\":\"All\",layoutDependency:layoutDependency,layoutId:\"m_pm4Ohwn\",ref:refBinding,style:{...style},...addPropertyOverrides({K7Da0n49b:{\"data-framer-name\":\"Real Estate\"},mxMlr_Izg:{\"data-framer-name\":\"Healthcare\"},NCpSOr_F2:{\"data-framer-name\":\"Information technology (IT)\"},PZrgaNhok:{\"data-framer-name\":\"FMCG\"},r1uNa83C4:{\"data-framer-name\":\"Automobile\"},spZDZXUaH:{\"data-framer-name\":\"Real estate\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNTAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 24, 51))\"},children:[\"Trusted by \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(22, 119, 255))\"},children:\"350+\"}),\" Global Brands\"]})}),className:\"framer-vimiub\",\"data-framer-name\":\"Trusted by 300+ Global Brands\",fonts:[\"GF;Onest-500\"],layoutDependency:layoutDependency,layoutId:\"uBZuRvveX\",style:{\"--extracted-1w3ko1f\":\"rgb(22, 119, 255)\",\"--extracted-r6o4lv\":\"rgb(10, 24, 51)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5b2e02\",layoutDependency:layoutDependency,layoutId:\"GOwdPFT57\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+204+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ihv7c2-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"upsfo4wcd-container\",name:\"1\",nodeId:\"upsfo4wcd\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL1lchceg,height:\"100%\",id:\"upsfo4wcd\",layoutId:\"upsfo4wcd\",name:\"1\",NWmlNyBKp:\"All\",style:{height:\"100%\"},variant:\"w4kwcK63o\",width:\"100%\",...addPropertyOverrides({K7Da0n49b:{variant:\"H7fd4UZgh\"},mxMlr_Izg:{variant:\"H7fd4UZgh\"},NCpSOr_F2:{variant:\"H7fd4UZgh\"},PZrgaNhok:{variant:\"H7fd4UZgh\"},r1uNa83C4:{variant:\"H7fd4UZgh\"},spZDZXUaH:{variant:\"H7fd4UZgh\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+204+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dp49u2-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"miWOBVif_-container\",name:\"2\",nodeId:\"miWOBVif_\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL1lrgk2u,height:\"100%\",id:\"miWOBVif_\",layoutId:\"miWOBVif_\",name:\"2\",NWmlNyBKp:\"Retail\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({PZrgaNhok:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+204+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16qzypg-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"zX9dGBMqe-container\",name:\"3\",nodeId:\"zX9dGBMqe\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvLmpdy2f,height:\"100%\",id:\"zX9dGBMqe\",layoutId:\"zX9dGBMqe\",name:\"3\",NWmlNyBKp:\"Automotive\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({NCpSOr_F2:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+204+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c7aqsd-container\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"TSwisgQTq-container\",name:\"4\",nodeId:\"TSwisgQTq\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL17s9jkk,height:\"100%\",id:\"TSwisgQTq\",layoutId:\"TSwisgQTq\",name:\"4\",NWmlNyBKp:\"Healthcare\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({spZDZXUaH:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+204+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18ycbbs-container\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"nSc1hr6Kt-container\",name:\"5\",nodeId:\"nSc1hr6Kt\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvLmc8uus,height:\"100%\",id:\"nSc1hr6Kt\",layoutId:\"nSc1hr6Kt\",name:\"5\",NWmlNyBKp:\"Finance\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({r1uNa83C4:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+204+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10fxb3n-container\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"eaDDQBbr0-container\",name:\"6\",nodeId:\"eaDDQBbr0\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL23kbwl,height:\"100%\",id:\"eaDDQBbr0\",layoutId:\"eaDDQBbr0\",name:\"6\",NWmlNyBKp:\"Education\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({mxMlr_Izg:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+204+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jzsp22-container\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"D9NwPSEB6-container\",name:\"7\",nodeId:\"D9NwPSEB6\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoSTabPill,{DPFS3tAvL:DPFS3tAvL1ogf06h,height:\"100%\",id:\"D9NwPSEB6\",layoutId:\"D9NwPSEB6\",name:\"7\",NWmlNyBKp:\"Real Estate\",style:{height:\"100%\"},variant:\"H7fd4UZgh\",width:\"100%\",...addPropertyOverrides({K7Da0n49b:{variant:\"w4kwcK63o\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j1l9x4\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"w0Hv_FSvE\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{m_5qgfXbG:\"gen-ai-powered-whatsapp-transformation-at-motilal-oswal\"},unresolvedPathSlugs:{m_5qgfXbG:{collectionId:\"pU6c0lpBi\",collectionItemId:\"Eux1SbDib\"}},webPageId:\"OavPTxokh\"},implicitPathVariables:undefined},{href:{pathVariables:{m_5qgfXbG:\"gen-ai-powered-whatsapp-transformation-at-motilal-oswal\"},unresolvedPathSlugs:{m_5qgfXbG:{collectionId:\"pU6c0lpBi\",collectionItemId:\"Eux1SbDib\"}},webPageId:\"OavPTxokh\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({r1uNa83C4:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tfn9pd-container\",layoutDependency:layoutDependency,layoutId:\"b8yxrTuaE-container\",nodeId:\"b8yxrTuaE\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"b8yxrTuaE\",layoutId:\"b8yxrTuaE\",LFbwJqaCc:resolvedLinks[0],variant:\"hKUKaOLuE\",width:\"100%\",...addPropertyOverrides({r1uNa83C4:{LFbwJqaCc:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({r1uNa83C4:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xs0ml-container\",layoutDependency:layoutDependency,layoutId:\"WUrKA7xrN-container\",nodeId:\"WUrKA7xrN\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"WUrKA7xrN\",layoutId:\"WUrKA7xrN\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:242,pixelWidth:600,src:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg\",srcSet:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg 600w\"},\"\")})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({r1uNa83C4:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12zih5x-container\",layoutDependency:layoutDependency,layoutId:\"z61GktOY1-container\",nodeId:\"z61GktOY1\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"z61GktOY1\",layoutId:\"z61GktOY1\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:100,pixelWidth:415,src:\"https://framerusercontent.com/images/ppobckYqcBfgVIx1BZrgUeFa90.jpeg\"},\"\")})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({r1uNa83C4:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18cfke2-container\",layoutDependency:layoutDependency,layoutId:\"gT6hLGfDl-container\",nodeId:\"gT6hLGfDl\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"gT6hLGfDl\",layoutId:\"gT6hLGfDl\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:274,pixelWidth:773,src:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp\",srcSet:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp?scale-down-to=512 512w,https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp 773w\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",...addPropertyOverrides({mxMlr_Izg:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g30jbj-container\",layoutDependency:layoutDependency,layoutId:\"vvs0MH3mF-container\",nodeId:\"vvs0MH3mF\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"vvs0MH3mF\",layoutId:\"vvs0MH3mF\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:196,pixelWidth:233,src:\"https://framerusercontent.com/images/4Fov1g7wdH6dookgGeJdc2J5kN8.png\"},\"\")})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({r1uNa83C4:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qrh3zt-container\",layoutDependency:layoutDependency,layoutId:\"TQ0ztgerP-container\",nodeId:\"TQ0ztgerP\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"TQ0ztgerP\",layoutId:\"TQ0ztgerP\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:131,pixelWidth:506,src:\"https://framerusercontent.com/images/EVormVJtyQG5II4OZv2HMwQr49U.jpeg\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",...addPropertyOverrides({mxMlr_Izg:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16hb7r3-container\",layoutDependency:layoutDependency,layoutId:\"YCw5pXPUy-container\",nodeId:\"YCw5pXPUy\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"YCw5pXPUy\",layoutId:\"YCw5pXPUy\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:337,pixelWidth:337,src:\"https://framerusercontent.com/images/irD0xIbTARCuKECbeMJKhK0A04.png\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",...addPropertyOverrides({mxMlr_Izg:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cvmkrz-container\",layoutDependency:layoutDependency,layoutId:\"IQenB3kWp-container\",nodeId:\"IQenB3kWp\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"IQenB3kWp\",layoutId:\"IQenB3kWp\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:345,pixelWidth:333,src:\"https://framerusercontent.com/images/8sYj5WDN8xuHF8EIYPRa1qemE.png\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({mxMlr_Izg:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sp8fx1-container\",layoutDependency:layoutDependency,layoutId:\"s78sY0QgD-container\",nodeId:\"s78sY0QgD\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"s78sY0QgD\",layoutId:\"s78sY0QgD\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:476,pixelWidth:1200,src:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png\",srcSet:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=512 512w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png 1200w\"},\"\")})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",...addPropertyOverrides({mxMlr_Izg:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m940sg-container\",layoutDependency:layoutDependency,layoutId:\"Jc_WttDsz-container\",nodeId:\"Jc_WttDsz\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Jc_WttDsz\",layoutId:\"Jc_WttDsz\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:262,pixelWidth:262,src:\"https://framerusercontent.com/images/YJbzIrdKjiAeJa7F0CmOJ0uW3zo.jpeg\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({K7Da0n49b:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cdi6t5-container\",layoutDependency:layoutDependency,layoutId:\"xnhXfOAtd-container\",nodeId:\"xnhXfOAtd\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"xnhXfOAtd\",layoutId:\"xnhXfOAtd\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:127,pixelWidth:800,src:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png\",srcSet:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png 800w\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({K7Da0n49b:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pp8f3t-container\",layoutDependency:layoutDependency,layoutId:\"zz0r6pMus-container\",nodeId:\"zz0r6pMus\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"zz0r6pMus\",layoutId:\"zz0r6pMus\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:143,pixelWidth:353,src:\"https://framerusercontent.com/images/B0zjcZhuNNttdG8ZxH8LS8m7vo.png\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({K7Da0n49b:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b9l55v-container\",layoutDependency:layoutDependency,layoutId:\"I_X7I64CO-container\",nodeId:\"I_X7I64CO\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"I_X7I64CO\",layoutId:\"I_X7I64CO\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:155,pixelWidth:448,src:\"https://framerusercontent.com/images/9WLGml1sYbvpTDzqVvQlBLqRpg.png\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"68px\",...addPropertyOverrides({K7Da0n49b:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14uofef-container\",layoutDependency:layoutDependency,layoutId:\"bN2c9jguf-container\",nodeId:\"bN2c9jguf\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"bN2c9jguf\",layoutId:\"bN2c9jguf\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:201,pixelWidth:194,src:\"https://framerusercontent.com/images/y4CQI8P3ULBNuO24uH5Y7r4LA.png\"},\"\")})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"66px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11mp8g0-container\",layoutDependency:layoutDependency,layoutId:\"DaDoH0Tci-container\",nodeId:\"DaDoH0Tci\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"DaDoH0Tci\",layoutId:\"DaDoH0Tci\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:299,pixelWidth:295,src:\"https://framerusercontent.com/images/pzPPBf84U5AyqlByBRP5EgmZ08.png\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",...addPropertyOverrides({PZrgaNhok:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-79kha-container\",layoutDependency:layoutDependency,layoutId:\"UbNhpnYXB-container\",nodeId:\"UbNhpnYXB\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"UbNhpnYXB\",layoutId:\"UbNhpnYXB\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:303,pixelWidth:512,src:\"https://framerusercontent.com/images/dxIXepNAXITO79Y7POxzBylIKxg.png\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",...addPropertyOverrides({PZrgaNhok:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12z1474-container\",layoutDependency:layoutDependency,layoutId:\"QTEMWCjrR-container\",nodeId:\"QTEMWCjrR\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"QTEMWCjrR\",layoutId:\"QTEMWCjrR\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:263,pixelWidth:463,src:\"https://framerusercontent.com/images/8Vl9yDzDa8odnp9v33QNi6V7GVM.jpeg\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"61px\",...addPropertyOverrides({NCpSOr_F2:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hxil1p-container\",layoutDependency:layoutDependency,layoutId:\"C1f2KsL5K-container\",nodeId:\"C1f2KsL5K\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"C1f2KsL5K\",layoutId:\"C1f2KsL5K\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:511,pixelWidth:479,src:\"https://framerusercontent.com/images/hC6gbZJg0lLHNPy2xSbQeBfB4.jpeg\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"62px\",...addPropertyOverrides({PZrgaNhok:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bcuvqs-container\",layoutDependency:layoutDependency,layoutId:\"LeG0NqYgY-container\",nodeId:\"LeG0NqYgY\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"LeG0NqYgY\",layoutId:\"LeG0NqYgY\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/jXM32NiwWqj9PosZ3Y1LKkCHeg.jpeg\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"67px\",...addPropertyOverrides({NCpSOr_F2:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o6dbe-container\",layoutDependency:layoutDependency,layoutId:\"sDdv3pbWu-container\",nodeId:\"sDdv3pbWu\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"sDdv3pbWu\",layoutId:\"sDdv3pbWu\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:512,pixelWidth:599,src:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg\",srcSet:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg 599w\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",...addPropertyOverrides({NCpSOr_F2:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ikrghc-container\",layoutDependency:layoutDependency,layoutId:\"rzndSOuVy-container\",nodeId:\"rzndSOuVy\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"rzndSOuVy\",layoutId:\"rzndSOuVy\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:279,pixelWidth:417,src:\"https://framerusercontent.com/images/zmyJnF4jkou0mCDXXqW0FDNOPQ.jpeg\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",...addPropertyOverrides({NCpSOr_F2:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ln2vso-container\",layoutDependency:layoutDependency,layoutId:\"Ao3zRB44O-container\",nodeId:\"Ao3zRB44O\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Ao3zRB44O\",layoutId:\"Ao3zRB44O\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:407,pixelWidth:960,src:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg\",srcSet:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg 960w\"},\"\")})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({NCpSOr_F2:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11usht8-container\",layoutDependency:layoutDependency,layoutId:\"HskDC5x6k-container\",nodeId:\"HskDC5x6k\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"HskDC5x6k\",layoutId:\"HskDC5x6k\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:146,pixelWidth:452,src:\"https://framerusercontent.com/images/jWMhwDUt8aA2abrn1mi9DLFyHk.png\"},\"\")})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"70px\",...addPropertyOverrides({PZrgaNhok:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4kngr5-container\",layoutDependency:layoutDependency,layoutId:\"xdY_yvb4P-container\",nodeId:\"xdY_yvb4P\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"xdY_yvb4P\",layoutId:\"xdY_yvb4P\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:735,pixelWidth:610,src:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg\",srcSet:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg 610w\"},\"\")})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({K7Da0n49b:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c1om6c-container\",layoutDependency:layoutDependency,layoutId:\"lUjeNvtKr-container\",nodeId:\"lUjeNvtKr\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"lUjeNvtKr\",layoutId:\"lUjeNvtKr\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:86,pixelWidth:416,src:\"https://framerusercontent.com/images/EE9VaL4BO28N1ZNlpCUCm1erK8.png\"},\"\")})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({spZDZXUaH:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uos1rd-container\",layoutDependency:layoutDependency,layoutId:\"Txz9un5hj-container\",nodeId:\"Txz9un5hj\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Txz9un5hj\",layoutId:\"Txz9un5hj\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:149,pixelWidth:554,src:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png\",srcSet:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png 554w\"},\"\")})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({spZDZXUaH:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17kbgaw-container\",layoutDependency:layoutDependency,layoutId:\"DtTDu0FQC-container\",nodeId:\"DtTDu0FQC\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"DtTDu0FQC\",layoutId:\"DtTDu0FQC\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:145,pixelWidth:419,src:\"https://framerusercontent.com/images/OaY2frpLyKdKCGT9WoD4HAFNI.png\"},\"\")})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({spZDZXUaH:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tdej6f-container\",layoutDependency:layoutDependency,layoutId:\"L7pp8s15M-container\",nodeId:\"L7pp8s15M\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"L7pp8s15M\",layoutId:\"L7pp8s15M\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:186,pixelWidth:664,src:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg\",srcSet:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg 664w\"},\"\")})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",...addPropertyOverrides({spZDZXUaH:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ehlw4w-container\",layoutDependency:layoutDependency,layoutId:\"VjE0DWZrd-container\",nodeId:\"VjE0DWZrd\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"VjE0DWZrd\",layoutId:\"VjE0DWZrd\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:253,pixelWidth:554,src:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg\",srcSet:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg 554w\"},\"\")})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({spZDZXUaH:{y:(componentViewport?.y||0)+0+262+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1admz9d-container\",layoutDependency:layoutDependency,layoutId:\"Sxu5LGAiA-container\",nodeId:\"Sxu5LGAiA\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Sxu5LGAiA\",layoutId:\"Sxu5LGAiA\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:203,pixelWidth:600,src:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png\",srcSet:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png?scale-down-to=512 512w,https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png 600w\"},\"\")})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13mjssz-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"coogFi0IS-container\",nodeId:\"coogFi0IS\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"coogFi0IS\",layoutId:\"coogFi0IS\",padding:10,paddingBottom:10,paddingLeft:40,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5nzxvh\",layoutDependency:layoutDependency,layoutId:\"CUbxVW1XA\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{m_5qgfXbG:\"gen-ai-powered-whatsapp-transformation-at-motilal-oswal\"},unresolvedPathSlugs:{m_5qgfXbG:{collectionId:\"pU6c0lpBi\",collectionItemId:\"Eux1SbDib\"}},webPageId:\"OavPTxokh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-198gql9-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"O0joGTpqP-container\",nodeId:\"O0joGTpqP\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"O0joGTpqP\",layoutId:\"O0joGTpqP\",LFbwJqaCc:resolvedLinks1[0],variant:\"hKUKaOLuE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15mqar2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"OQqpI3eQa-container\",nodeId:\"OQqpI3eQa\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"OQqpI3eQa\",layoutId:\"OQqpI3eQa\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:242,pixelWidth:600,src:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg\",srcSet:\"https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2puW6HxMDz1vnl18PZ7VpsJCnsU.jpeg 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-g0eaxo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"o25eRu4Vt-container\",nodeId:\"o25eRu4Vt\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"o25eRu4Vt\",layoutId:\"o25eRu4Vt\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:100,pixelWidth:415,src:\"https://framerusercontent.com/images/ppobckYqcBfgVIx1BZrgUeFa90.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k87c48-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"VBvHUmFAm-container\",nodeId:\"VBvHUmFAm\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"VBvHUmFAm\",layoutId:\"VBvHUmFAm\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:274,pixelWidth:773,src:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp\",srcSet:\"https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp?scale-down-to=512 512w,https://framerusercontent.com/images/S4cBaljIUbA02VmitqZpQnn110.webp 773w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"66px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u5qkes-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"D4Lb31zUO-container\",nodeId:\"D4Lb31zUO\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"D4Lb31zUO\",layoutId:\"D4Lb31zUO\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:196,pixelWidth:233,src:\"https://framerusercontent.com/images/4Fov1g7wdH6dookgGeJdc2J5kN8.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n1au9p-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"V2kk0MpCP-container\",nodeId:\"V2kk0MpCP\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"V2kk0MpCP\",layoutId:\"V2kk0MpCP\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:131,pixelWidth:506,src:\"https://framerusercontent.com/images/EVormVJtyQG5II4OZv2HMwQr49U.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rhzkb0-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vRC0S7ZUW-container\",nodeId:\"vRC0S7ZUW\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"vRC0S7ZUW\",layoutId:\"vRC0S7ZUW\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:337,pixelWidth:337,src:\"https://framerusercontent.com/images/irD0xIbTARCuKECbeMJKhK0A04.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hp2mrb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"SamoH1CkO-container\",nodeId:\"SamoH1CkO\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"SamoH1CkO\",layoutId:\"SamoH1CkO\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:345,pixelWidth:333,src:\"https://framerusercontent.com/images/8sYj5WDN8xuHF8EIYPRa1qemE.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ps4emo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"bPv3Oam4_-container\",nodeId:\"bPv3Oam4_\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"bPv3Oam4_\",layoutId:\"bPv3Oam4_\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:476,pixelWidth:1200,src:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png\",srcSet:\"https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=512 512w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wxKEtxKdVzMNPuiio9un2JCH14.png 1200w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"72px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gjzdwl-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KbI2903mL-container\",nodeId:\"KbI2903mL\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"KbI2903mL\",layoutId:\"KbI2903mL\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:262,pixelWidth:262,src:\"https://framerusercontent.com/images/YJbzIrdKjiAeJa7F0CmOJ0uW3zo.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e7cp9r-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rxV2br0ZJ-container\",nodeId:\"rxV2br0ZJ\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"rxV2br0ZJ\",layoutId:\"rxV2br0ZJ\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:127,pixelWidth:800,src:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png\",srcSet:\"https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xD0e4zg461wDn7j32R60ZgMaLA.png 800w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l2xnx2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hbx2qsJ3t-container\",nodeId:\"hbx2qsJ3t\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"hbx2qsJ3t\",layoutId:\"hbx2qsJ3t\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:143,pixelWidth:353,src:\"https://framerusercontent.com/images/B0zjcZhuNNttdG8ZxH8LS8m7vo.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rzjmzy-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"R6iBMjCtF-container\",nodeId:\"R6iBMjCtF\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"R6iBMjCtF\",layoutId:\"R6iBMjCtF\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:155,pixelWidth:448,src:\"https://framerusercontent.com/images/9WLGml1sYbvpTDzqVvQlBLqRpg.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"68px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10r15tf-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"AFfpMQp1o-container\",nodeId:\"AFfpMQp1o\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"AFfpMQp1o\",layoutId:\"AFfpMQp1o\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:201,pixelWidth:194,src:\"https://framerusercontent.com/images/y4CQI8P3ULBNuO24uH5Y7r4LA.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e07gyh-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Sad4omJOq-container\",nodeId:\"Sad4omJOq\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"Sad4omJOq\",layoutId:\"Sad4omJOq\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:303,pixelWidth:512,src:\"https://framerusercontent.com/images/dxIXepNAXITO79Y7POxzBylIKxg.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-npzkrk-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fC2_jnbvP-container\",nodeId:\"fC2_jnbvP\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"fC2_jnbvP\",layoutId:\"fC2_jnbvP\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:263,pixelWidth:463,src:\"https://framerusercontent.com/images/8Vl9yDzDa8odnp9v33QNi6V7GVM.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"61px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h9efdp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"f_MWuHZq_-container\",nodeId:\"f_MWuHZq_\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"f_MWuHZq_\",layoutId:\"f_MWuHZq_\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:511,pixelWidth:479,src:\"https://framerusercontent.com/images/hC6gbZJg0lLHNPy2xSbQeBfB4.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"62px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3u24ej-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"COVhA0U05-container\",nodeId:\"COVhA0U05\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"COVhA0U05\",layoutId:\"COVhA0U05\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/jXM32NiwWqj9PosZ3Y1LKkCHeg.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"67px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2k4adj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HRRJ8ucm4-container\",nodeId:\"HRRJ8ucm4\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"HRRJ8ucm4\",layoutId:\"HRRJ8ucm4\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:512,pixelWidth:599,src:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg\",srcSet:\"https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iWvDKuozKrBW1VB0gvO7KPGlTg.jpeg 599w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pk3q75-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"F_pAFtTwW-container\",nodeId:\"F_pAFtTwW\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"F_pAFtTwW\",layoutId:\"F_pAFtTwW\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:279,pixelWidth:417,src:\"https://framerusercontent.com/images/zmyJnF4jkou0mCDXXqW0FDNOPQ.jpeg\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f7v3o2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"mXHEia0gt-container\",nodeId:\"mXHEia0gt\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"mXHEia0gt\",layoutId:\"mXHEia0gt\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:407,pixelWidth:960,src:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg\",srcSet:\"https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MZdnoBIecAmVyM3M4yogyzD2Fw.jpg 960w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hoszvj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XaSbhEpYk-container\",nodeId:\"XaSbhEpYk\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"XaSbhEpYk\",layoutId:\"XaSbhEpYk\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:146,pixelWidth:452,src:\"https://framerusercontent.com/images/jWMhwDUt8aA2abrn1mi9DLFyHk.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"70px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a4gllx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GiDw5jN58-container\",nodeId:\"GiDw5jN58\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"GiDw5jN58\",layoutId:\"GiDw5jN58\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:735,pixelWidth:610,src:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg\",srcSet:\"https://framerusercontent.com/images/f9U81lZxD6E8noLk60DwSwy958.jpg 610w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ps9sxz-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"iCMvAVbNf-container\",nodeId:\"iCMvAVbNf\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"iCMvAVbNf\",layoutId:\"iCMvAVbNf\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:86,pixelWidth:416,src:\"https://framerusercontent.com/images/EE9VaL4BO28N1ZNlpCUCm1erK8.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1px8dqg-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fAuYZ9Ca_-container\",nodeId:\"fAuYZ9Ca_\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"fAuYZ9Ca_\",layoutId:\"fAuYZ9Ca_\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:149,pixelWidth:554,src:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png\",srcSet:\"https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oPKqC8JWpdzxtWtrEooLJcUSAGQ.png 554w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15kheh-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"SHCFOsqSF-container\",nodeId:\"SHCFOsqSF\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"SHCFOsqSF\",layoutId:\"SHCFOsqSF\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:145,pixelWidth:419,src:\"https://framerusercontent.com/images/OaY2frpLyKdKCGT9WoD4HAFNI.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oxn2pi-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"dionKvkTK-container\",nodeId:\"dionKvkTK\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"dionKvkTK\",layoutId:\"dionKvkTK\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:186,pixelWidth:664,src:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg\",srcSet:\"https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8iGi2eJkBgU8sr0d6gQofIJRY.jpeg 664w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"126px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16x95hw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HG4BX4ctI-container\",nodeId:\"HG4BX4ctI\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"HG4BX4ctI\",layoutId:\"HG4BX4ctI\",style:{width:\"100%\"},variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:253,pixelWidth:554,src:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg\",srcSet:\"https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/fFoyOu4i0UC5wGhXxMLsdLyq3Pw.jpeg 554w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pm5vam-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"bzdXwQlRe-container\",nodeId:\"bzdXwQlRe\",rendersWithMotion:true,scopeId:\"V6jwldEU4\",children:/*#__PURE__*/_jsx(LogoIndividual,{height:\"100%\",id:\"bzdXwQlRe\",layoutId:\"bzdXwQlRe\",variant:\"clKBsCHTo\",width:\"100%\",Y6Bo1pcP7:addImageAlt({pixelHeight:203,pixelWidth:600,src:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png\",srcSet:\"https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png?scale-down-to=512 512w,https://framerusercontent.com/images/tGCfIv7R5MdONyWkhYjbRTD4Xis.png 600w\"},\"\")})})})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OR37s.framer-150whqt, .framer-OR37s .framer-150whqt { display: block; }\",\".framer-OR37s.framer-1vsjl51 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 96px 0px 96px; position: relative; width: 1440px; }\",\".framer-OR37s .framer-vimiub { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OR37s .framer-5b2e02 { 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-OR37s .framer-1ihv7c2-container, .framer-OR37s .framer-dp49u2-container, .framer-OR37s .framer-16qzypg-container, .framer-OR37s .framer-c7aqsd-container, .framer-OR37s .framer-18ycbbs-container, .framer-OR37s .framer-10fxb3n-container, .framer-OR37s .framer-jzsp22-container { flex: none; height: 34px; position: relative; width: auto; }\",\".framer-OR37s .framer-1j1l9x4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OR37s .framer-1tfn9pd-container, .framer-OR37s .framer-xs0ml-container, .framer-OR37s .framer-12zih5x-container, .framer-OR37s .framer-18cfke2-container, .framer-OR37s .framer-qrh3zt-container, .framer-OR37s .framer-sp8fx1-container, .framer-OR37s .framer-cdi6t5-container, .framer-OR37s .framer-pp8f3t-container, .framer-OR37s .framer-1b9l55v-container, .framer-OR37s .framer-11usht8-container, .framer-OR37s .framer-1c1om6c-container, .framer-OR37s .framer-uos1rd-container, .framer-OR37s .framer-17kbgaw-container, .framer-OR37s .framer-tdej6f-container, .framer-OR37s .framer-1admz9d-container, .framer-OR37s .framer-198gql9-container, .framer-OR37s .framer-15mqar2-container, .framer-OR37s .framer-g0eaxo-container, .framer-OR37s .framer-k87c48-container, .framer-OR37s .framer-n1au9p-container, .framer-OR37s .framer-1ps4emo-container, .framer-OR37s .framer-e7cp9r-container, .framer-OR37s .framer-l2xnx2-container, .framer-OR37s .framer-rzjmzy-container, .framer-OR37s .framer-hoszvj-container, .framer-OR37s .framer-1ps9sxz-container, .framer-OR37s .framer-1px8dqg-container, .framer-OR37s .framer-15kheh-container, .framer-OR37s .framer-1oxn2pi-container, .framer-OR37s .framer-pm5vam-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-OR37s .framer-1g30jbj-container, .framer-OR37s .framer-ikrghc-container, .framer-OR37s .framer-pk3q75-container { flex: none; height: auto; position: relative; width: 80px; }\",\".framer-OR37s .framer-16hb7r3-container, .framer-OR37s .framer-cvmkrz-container, .framer-OR37s .framer-1m940sg-container, .framer-OR37s .framer-1rhzkb0-container, .framer-OR37s .framer-hp2mrb-container, .framer-OR37s .framer-gjzdwl-container { flex: none; height: auto; position: relative; width: 72px; }\",\".framer-OR37s .framer-14uofef-container, .framer-OR37s .framer-10r15tf-container { flex: none; height: auto; position: relative; width: 68px; }\",\".framer-OR37s .framer-11mp8g0-container, .framer-OR37s .framer-1u5qkes-container { flex: none; height: auto; position: relative; width: 66px; }\",\".framer-OR37s .framer-79kha-container, .framer-OR37s .framer-12z1474-container, .framer-OR37s .framer-e07gyh-container, .framer-OR37s .framer-npzkrk-container { flex: none; height: auto; position: relative; width: 100px; }\",\".framer-OR37s .framer-hxil1p-container, .framer-OR37s .framer-1h9efdp-container { flex: none; height: auto; position: relative; width: 61px; }\",\".framer-OR37s .framer-bcuvqs-container, .framer-OR37s .framer-3u24ej-container { flex: none; height: auto; position: relative; width: 62px; }\",\".framer-OR37s .framer-o6dbe-container, .framer-OR37s .framer-2k4adj-container { flex: none; height: auto; position: relative; width: 67px; }\",\".framer-OR37s .framer-ln2vso-container, .framer-OR37s .framer-1ehlw4w-container, .framer-OR37s .framer-f7v3o2-container, .framer-OR37s .framer-16x95hw-container { flex: none; height: auto; position: relative; width: 126px; }\",\".framer-OR37s .framer-4kngr5-container, .framer-OR37s .framer-a4gllx-container { flex: none; height: auto; position: relative; width: 70px; }\",\".framer-OR37s .framer-13mjssz-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-OR37s .framer-5nzxvh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OR37s.framer-v-1d0czs5 .framer-vimiub { order: 0; }\",\".framer-OR37s.framer-v-1d0czs5 .framer-5b2e02 { order: 1; }\",\".framer-OR37s.framer-v-1d0czs5 .framer-1j1l9x4 { order: 2; }\",\".framer-OR37s.framer-v-1d0czs5 .framer-79kha-container { order: 14; }\",\".framer-OR37s.framer-v-1d0czs5 .framer-12z1474-container { order: 16; }\",\".framer-OR37s.framer-v-1d0czs5 .framer-bcuvqs-container, .framer-OR37s.framer-v-okwdd9 .framer-o6dbe-container { order: 19; }\",\".framer-OR37s.framer-v-1d0czs5 .framer-4kngr5-container, .framer-OR37s.framer-v-okwdd9 .framer-ikrghc-container { order: 18; }\",\".framer-OR37s.framer-v-okwdd9 .framer-hxil1p-container { order: 20; }\",\".framer-OR37s.framer-v-okwdd9 .framer-ln2vso-container { order: 21; }\",\".framer-OR37s.framer-v-okwdd9 .framer-11usht8-container { order: 22; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 198\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PZrgaNhok\":{\"layout\":[\"fixed\",\"auto\"]},\"NCpSOr_F2\":{\"layout\":[\"fixed\",\"auto\"]},\"spZDZXUaH\":{\"layout\":[\"fixed\",\"auto\"]},\"r1uNa83C4\":{\"layout\":[\"fixed\",\"auto\"]},\"mxMlr_Izg\":{\"layout\":[\"fixed\",\"auto\"]},\"K7Da0n49b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerV6jwldEU4=withCSS(Component,css,\"framer-OR37s\");export default FramerV6jwldEU4;FramerV6jwldEU4.displayName=\"Logo Section\";FramerV6jwldEU4.defaultProps={height:198,width:1440};addPropertyControls(FramerV6jwldEU4,{variant:{options:[\"m_pm4Ohwn\",\"PZrgaNhok\",\"NCpSOr_F2\",\"spZDZXUaH\",\"r1uNa83C4\",\"mxMlr_Izg\",\"K7Da0n49b\"],optionTitles:[\"All\",\"FMCG\",\"Information technology (IT)\",\"Real estate\",\"Automobile\",\"Healthcare\",\"Real Estate\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerV6jwldEU4,[{explicitInter:true,fonts:[{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\",weight:\"500\"}]},...LogoSTabPillFonts,...LogoIndividualFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV6jwldEU4\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"198\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PZrgaNhok\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NCpSOr_F2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"spZDZXUaH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r1uNa83C4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mxMlr_Izg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K7Da0n49b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./V6jwldEU4.map"],
  "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", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "f2ToR3yBf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Link", "RichText", "css", "FramerYneF_jZFt", "withCSS", "YneF_jZFt_default", "addPropertyControls", "ControlType", "addFonts", "LogoButtonFonts", "getFonts", "YneF_jZFt_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Y6Bo1pcP7", "LFbwJqaCc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerByVCYgR6x", "withCSS", "ByVCYgR6x_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "NWmlNyBKp", "DPFS3tAvL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap157xaci", "args", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "Frameri5A80y3sW", "withCSS", "i5A80y3sW_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText", "LogoSTabPillFonts", "getFonts", "i5A80y3sW_default", "LogoIndividualFonts", "ByVCYgR6x_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "DPFS3tAvL17pmk91", "args", "DPFS3tAvL18q47t2", "DPFS3tAvLkm0slx", "DPFS3tAvL15xaoy4", "DPFS3tAvL140atkp", "DPFS3tAvLbk2qed", "DPFS3tAvLmz3bti", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerhKaageSqZ", "withCSS", "hKaageSqZ_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText", "LogoSTabPillFonts", "getFonts", "i5A80y3sW_default", "LogoIndividualFonts", "ByVCYgR6x_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "DPFS3tAvLa33bx4", "args", "DPFS3tAvL15nuqhk", "DPFS3tAvL9pjj2a", "DPFS3tAvL1sfo2f6", "DPFS3tAvL1mh2cr", "DPFS3tAvLfj2nb4", "DPFS3tAvLs4yh9l", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerQIHHgfQBB", "withCSS", "QIHHgfQBB_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText", "LogoSTabPillFonts", "getFonts", "i5A80y3sW_default", "LogoIndividualFonts", "ByVCYgR6x_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "DPFS3tAvL1lchceg", "args", "DPFS3tAvL1lrgk2u", "DPFS3tAvLmpdy2f", "DPFS3tAvL17s9jkk", "DPFS3tAvLmc8uus", "DPFS3tAvL23kbwl", "DPFS3tAvL1ogf06h", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerV6jwldEU4", "withCSS", "V6jwldEU4_default", "addPropertyControls", "ControlType", "addFonts"]
}
