{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/2SUPBYH74elYzOkIBGoA/8I7vmDKhm1nMR7G0SHsb/OADI56Kmb.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-MgVBs\";const variantClassNames={fN1Rj1dZI:\"framer-v-1pama2j\"};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,width,...props})=>{return{...props};};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({defaultVariant:\"fN1Rj1dZI\",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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pama2j\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fN1Rj1dZI\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-182rguj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"f0lXBXODB-container\",nodeId:\"f0lXBXODB\",rendersWithMotion:true,scopeId:\"OADI56Kmb\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"f0lXBXODB\",layoutId:\"f0lXBXODB\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pwrdvl\",layoutDependency:layoutDependency,layoutId:\"nhnIFrnVE\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1994pj5\",\"data-framer-name\":\"hindware_logo.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"ovXrNj59X\",svg:'<svg width=\"102\" height=\"23\" viewBox=\"0 0 102 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1592_4151)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.36953 7.25637C6.39038 7.25637 5.41122 7.54537 4.66246 8.00777C3.79849 8.47016 3.16492 9.16375 2.70415 9.91515H2.64655V0.667236H-0.00292969V22.2842H2.70415V13.3831C2.70415 12.9207 2.76174 12.5161 2.87694 12.1115C3.39531 10.6665 4.72005 9.45275 6.44797 9.45275C8.98226 9.45275 9.84622 11.4179 9.84622 13.7877V22.2264H12.4957V13.4987C12.4957 8.47016 9.32784 7.25637 7.36953 7.25637Z\" fill=\"#092755\"/>\\n<path d=\"M17.1631 7.54517H14.5137V22.284H17.1631V7.54517Z\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.0053 7.54517L63.9318 14.9435C63.471 16.6775 63.0678 18.2381 62.8374 19.7408H62.7223C62.3767 18.2381 61.9735 16.6775 61.3975 14.9435L59.1512 7.60297H56.9049L54.5434 15.1169C54.0827 16.6775 53.5643 18.2959 53.2187 19.7408H53.1035C52.8155 18.2381 52.4123 16.6775 52.0668 15.0591L50.1084 7.54517H47.4014L51.8364 22.284H54.2554L56.6169 15.2903C57.1353 13.7297 57.5961 12.1691 57.9417 10.4351H57.9993C58.3449 12.1691 58.8056 13.6719 59.324 15.2903L61.5703 22.3418H63.9894L68.77 7.60297H66.0053V7.54517Z\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M101.083 14.1344C101.083 11.4178 99.8154 7.19849 94.9773 7.19849C91.2334 7.19849 88.7568 9.85726 88.1808 13.4408H86.1649L85.7041 15.3482H88.0656C88.1808 19.6254 90.8303 22.2263 95.2653 22.2263C97.6267 22.2263 99.2395 21.7061 100.219 21.3015L99.7578 19.3942C98.7787 19.8566 97.6267 20.1456 95.726 20.1456C93.019 20.1456 90.7151 18.9896 90.6575 15.406H101.083V14.1344ZM91.9246 13.4986H90.5999C90.8303 11.649 91.9822 9.16367 94.6893 9.16367C97.6843 9.16367 98.4331 11.8224 98.3755 13.4986H91.9246Z\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.6596 7.25586C24.2405 7.25586 22.5126 8.64305 21.8214 10.0302H21.7638L21.591 7.60266H19.3447V22.3415H22.0518V13.4404C22.0518 12.978 22.1094 12.5156 22.2246 12.1688C22.6854 10.666 24.0677 9.39444 25.7956 9.39444C28.3299 9.39444 29.1939 11.3596 29.1939 13.7294V22.2259H31.8433V13.4982C31.8433 8.46965 28.6755 7.25586 26.6596 7.25586Z\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M44.0577 9.45275H44.0001C43.3089 8.29676 41.869 7.25637 39.5651 7.25637C35.9941 7.25637 32.9414 10.2619 32.9414 15.1749C32.9414 19.6255 35.7061 22.6888 39.2771 22.6888C41.6962 22.6888 43.4241 21.4172 44.2305 19.7988H44.3457L44.4609 22.342H46.7072V0.667236H44.0577V9.45275ZM44.0577 16.0997C44.0577 16.5043 44.0577 16.8511 43.9425 17.2557C43.4817 19.2209 41.8114 20.4346 40.0259 20.4346C37.146 20.4346 35.6485 17.9493 35.6485 15.0015C35.6485 11.7647 37.3188 9.33715 40.0835 9.33715C42.0994 9.33715 43.5393 10.7243 43.9425 12.4005C44.0577 12.7473 44.0577 13.2097 44.0577 13.5565V16.0997Z\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M76.8914 22.2837H79.5409V13.267C79.5409 10.3192 78.4465 7.25586 73.9539 7.25586C72.1108 7.25586 70.3253 7.77605 69.1158 8.52745L69.6917 10.3192C70.7285 9.62564 72.1684 9.22104 73.5508 9.22104C76.5458 9.16324 76.8914 11.4174 76.8914 12.5734V13.4404C70.6133 13.4404 68.2518 14.423 68.079 17.891C67.9638 20.0295 69.5765 22.2837 72.5716 22.2837C73.4356 22.2837 74.2995 22.1103 74.9907 21.7635L75.1635 19.8561C74.6451 20.1451 74.0115 20.3185 73.3204 20.3185C71.9956 20.3185 70.9013 19.9139 70.9013 18.18C70.9013 15.29 72.9748 15.4056 77.0066 15.4056L76.8914 22.2837Z\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M88.525 9.79903L88.8129 7.31366C88.5826 7.25586 88.3522 7.25586 88.0642 7.25586C86.2787 7.25586 84.6083 8.52745 83.9748 10.4926H83.9172L83.802 7.54486H81.6133V22.2837H84.2628V14.423C84.2628 14.0184 84.3204 13.556 84.378 13.1514C84.7235 11.1284 86.1059 9.74124 87.949 9.74124C88.237 9.79903 88.237 9.68344 88.525 9.79903Z\" fill=\"#092755\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1592_4151\">\\n<rect width=\"101.371\" height=\"21.9638\" fill=\"white\" transform=\"translate(0 0.667236)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2dd9gi\",layoutDependency:layoutDependency,layoutId:\"V2jC2knD3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bb6a7s\",\"data-framer-name\":\"National_Thermal_Power_logo 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:59,layoutDependency:layoutDependency,layoutId:\"BaoEGZwr5\",svg:'<svg width=\"59\" height=\"32\" viewBox=\"0 0 59 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.6236 0.89209H53.4182C55.8183 0.89209 57.7588 2.99856 57.7588 5.39432V25.9311C57.7588 28.3008 55.7162 30.407 53.4182 30.407H5.6236C3.30044 30.407 1.25781 28.4063 1.25781 25.9311V5.39432C1.25781 2.91924 3.22371 0.89209 5.6236 0.89209ZM7.05263 10.0374L6.28378 14.5593L10.5008 17.0288L11.5894 15.2089L9.14091 13.3024L9.76546 10.0374H10.9277C11.0855 11.4629 10.7662 12.478 10.0117 13.2424L11.2813 14.1951C12.444 13.5115 13.2529 12.194 13.623 10.0374H18.4432L18.0831 11.4937L13.7655 11.5362L13.4028 13.4427C13.7655 14.1362 14.1737 14.7428 14.9446 14.9159C15.2622 15.0026 15.8515 14.7428 16.1692 14.1362C16.2597 13.9632 16.3502 13.6596 16.3958 13.4427H17.6015L16.9217 16.1944H19.4609L20.9823 10.0374H21.6792L22.0677 8.26115H7.01338L6.62483 10.0374H7.05263ZM49.3327 22.7993C48.9245 24.5802 46.8309 26.0195 44.3543 26.0195C41.52 26.0195 39.2224 24.1654 39.2224 21.9213C39.2224 19.677 41.52 17.7982 44.3543 17.7982C46.8564 17.7982 49.0012 19.2863 49.4093 21.2137L45.9628 21.2622C45.733 20.7742 45.0951 20.36 44.3543 20.36C43.3584 20.36 42.567 21.0676 42.567 21.8967C42.567 22.7262 43.3584 23.4338 44.3543 23.4338C44.8907 23.4338 45.401 23.2142 45.733 22.8725L49.3327 22.7993ZM11.3142 17.8817H14.6149L16.8151 22.3953L17.679 17.8817H20.6917L18.806 26.1768H15.4529L13.3051 22.2243L12.6501 26.1768H9.61146L11.3142 17.8817ZM30.6793 17.8817H35.377C36.6787 17.8817 38.4915 19.1751 38.4915 20.5898C38.4915 23.0052 37.2406 24.2981 35.0963 24.2981H32.2368L31.8026 26.1768H28.9941L30.6793 17.8817ZM33.1813 20.5412L32.9002 21.6877H34.5345C34.9174 21.6877 35.0196 21.5167 35.0706 21.5167C35.2495 21.5167 35.4793 21.2242 35.4793 21.0047C35.4793 20.7119 35.1985 20.5412 34.5093 20.5412H33.1813ZM21.6321 17.8817H29.8018L29.2148 20.663H26.4321L25.2062 26.1768H22.5004L23.4703 20.663H21.0447L21.6321 17.8817ZM44.5236 11.4679H46.3106L46.5911 10.0374H45.0965L44.5236 11.4679ZM45.9367 13.3744H43.7603L43.6994 13.5266L44.8784 14.5663L43.6537 16.1699L40.1628 13.9166L40.8426 12.5734C42.203 12.0532 42.7019 10.9699 41.9311 10.1036L44.3465 10.0374H41.7578L42.1465 8.26115H46.0214L46.6564 6.13093C46.838 5.56235 47.3815 5.46816 47.9259 5.46816C48.9234 5.42044 50.1023 5.42044 51.3721 5.46816C51.9163 5.46816 52.5056 6.22523 52.5056 6.65179L52.3768 8.26115H52.8026L52.414 10.0374H51.9916L50.6943 16.1514L48.4268 16.1944L49.6351 10.0374H49.0387L47.7411 16.1514L45.3834 16.1944L45.9367 13.3744ZM31.6911 10.0374C31.4247 11.4913 30.8183 13.4339 31.2431 14.1635C31.6056 14.8136 32.3765 14.8567 33.1924 14.6837C33.6193 14.6427 34.0051 14.4097 34.5403 14.1295L34.1355 16.1944L36.4937 16.1514L37.7907 10.0374H38.3868L37.1791 16.1944L39.4463 16.1514L40.7438 10.0374H41.1686L41.5566 8.26115H41.1295L41.258 6.65179C41.258 6.22523 40.6683 5.46816 40.124 5.46816C38.7181 5.42044 37.5849 5.42044 36.6779 5.46816C36.1342 5.46816 35.5899 5.56235 35.4081 6.13093L34.7733 8.26115H31.6264L31.2382 10.0374H31.6911ZM34.9268 12.1609C34.2443 12.4557 33.7885 12.2361 33.9633 11.6939L34.2646 10.0374H35.3437L34.9268 12.1609ZM48.6968 8.26115L48.8329 7.88231C48.8782 7.78801 48.969 7.78801 49.1048 7.78801H49.7853C49.8757 7.78801 50.0119 7.97743 50.0119 7.97743L49.9776 8.26115H48.6968ZM37.4487 8.26115L37.5849 7.88231C37.6303 7.78801 37.7207 7.78801 37.8569 7.78801H38.5373C38.6278 7.78801 38.7639 7.97743 38.7639 7.97743L38.7293 8.26115H37.4487ZM30.477 8.26115L30.6054 6.65179C30.6054 6.22523 30.0158 5.46816 29.4716 5.46816C28.2475 5.37355 27.0685 5.32615 26.0254 5.46816C25.4817 5.51557 24.9375 5.56235 24.7556 6.13093L24.1209 8.26115H22.6945L22.306 10.0374H24.8526L24.6488 11.0507C21.8375 11.0507 20.5679 12.5676 20.749 14.0838C20.9756 15.9034 23.1521 16.5969 25.9633 16.2939L26.3718 14.0405H24.1501C23.4241 14.0405 23.6964 13.3042 24.1045 13.1741L26.5532 13.1305L27.2003 10.0374H27.7343L26.5269 16.1944L28.8843 16.1514L29.9588 10.0374H30.7401L31.1281 8.26115H30.477ZM26.7963 8.26115L26.9324 7.88231C26.9777 7.78801 27.0685 7.78801 27.2043 7.78801H27.8848C27.9752 7.78801 28.1114 7.97743 28.1114 7.97743V8.26115H26.7963ZM7.20662 3.13003H52.1673C54.6695 3.13003 55.7162 4.20955 55.7162 6.63216V24.6933C55.7162 27.0896 54.5419 28.1954 52.1673 28.1954H7.20662C4.11762 28.1954 3.65791 26.9051 3.65791 24.6933V6.63216C3.65791 4.39392 4.47477 3.13003 7.20662 3.13003Z\" fill=\"#092755\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xsvwvh\",layoutDependency:layoutDependency,layoutId:\"o5czWRUoE\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vf4o30\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:130,layoutDependency:layoutDependency,layoutId:\"hZlWP07WN\",svg:'<svg width=\"130\" height=\"32\" viewBox=\"0 0 130 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M67.2475 17.6376L62.3296 5.31253L57.4421 17.5769C58.7171 17.5465 59.9921 17.5162 61.2975 17.5162C63.3618 17.5162 65.335 17.5465 67.2475 17.6376ZM107.987 30.1448C97.4834 25.5609 85.644 22.1912 71.7404 21.0376L75.9601 31.2984H72.6815L68.5225 20.8251C66.185 20.7037 63.7868 20.6126 61.3278 20.6126C59.5975 20.6126 57.8671 20.643 56.1974 20.7037L51.9778 31.2984H48.6992L52.9796 20.8858C38.2563 21.8573 25.6883 25.3484 14.6686 30.1448V29.5073C22.0151 25.4091 29.3009 22.343 37.1634 20.3394V14.0251L28.3294 0.45536H31.608L38.6206 11.7483L45.6331 0.45536H48.9117L40.1081 14.0251V19.6412C44.6009 18.6698 49.3063 18.0322 54.3153 17.7287L61.601 0H63.0582L70.4047 17.8501C75.3225 18.2447 79.9672 18.9733 84.3994 20.0358V2.79288H77.1744V0.425005H94.6298V2.79288H87.4048V20.8251C94.5387 22.8287 101.217 25.7126 107.987 29.5377V30.1448ZM119.675 0.45536H102.219V2.82323H109.444V24.1341H112.45V2.82323H119.675V0.45536ZM19.5258 24.1037H16.5204V12.4161H3.64893V24.0734H0.643555V0.425005H3.64893V10.0483H16.5508V0.425005H19.5562V24.1037H19.5258Z\" fill=\"#092755\"/>\\n<path d=\"M127.565 2.27676C127.414 2.18569 127.201 2.15533 126.867 2.15533H126.381V3.33927H126.898C127.14 3.33927 127.323 3.30891 127.444 3.27855C127.656 3.18748 127.778 3.00534 127.778 2.76248C127.778 2.51962 127.717 2.36783 127.565 2.27676ZM126.928 1.79105C127.323 1.79105 127.626 1.8214 127.808 1.91247C128.142 2.06426 128.324 2.33748 128.324 2.73212C128.324 3.03569 128.233 3.2482 128.021 3.36963C127.899 3.43034 127.748 3.49106 127.535 3.52141C127.808 3.55177 127.99 3.6732 128.112 3.82499C128.233 4.00713 128.294 4.15892 128.294 4.34106V4.58392C128.294 4.67499 128.294 4.73571 128.294 4.82678C128.294 4.91785 128.294 4.97856 128.324 5.00892L128.355 5.03928H127.808V5.00892V4.97857V4.88749V4.61428C127.808 4.24999 127.717 4.00713 127.505 3.8857C127.383 3.82499 127.171 3.79463 126.867 3.79463H126.412V5.06964H125.835V1.8214H126.928V1.79105ZM125.198 1.6089C124.712 2.09462 124.469 2.70177 124.469 3.39999C124.469 4.0982 124.712 4.70535 125.198 5.22142C125.683 5.7375 126.29 5.98036 126.989 5.98036C127.687 5.98036 128.294 5.7375 128.78 5.22142C129.265 4.73571 129.508 4.12856 129.508 3.39999C129.508 2.70177 129.265 2.09462 128.78 1.6089C128.264 1.12318 127.687 0.849968 126.989 0.849968C126.29 0.849968 125.714 1.12318 125.198 1.6089ZM129.083 5.525C128.506 6.10179 127.808 6.40536 126.989 6.40536C126.169 6.40536 125.471 6.10179 124.894 5.525C124.317 4.94821 124.044 4.24999 124.044 3.43034C124.044 2.61069 124.348 1.91248 124.924 1.33569C125.501 0.758898 126.199 0.455322 127.019 0.455322C127.839 0.455322 128.537 0.758898 129.114 1.33569C129.69 1.91248 129.994 2.61069 129.994 3.43034C129.994 4.24999 129.66 4.91785 129.083 5.525Z\" fill=\"#092755\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gkm682\",layoutDependency:layoutDependency,layoutId:\"iYjbdDbyt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-26hi0e\",\"data-framer-name\":\"taco_bell_logo.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"YzH6R1q4W\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 31\"><g transform=\"translate(-0.009 0.899)\" id=\"ss11522123591_1\"><path d=\"M 0 29.604 L 0 0 L 70.22 0 L 70.22 29.604 Z\" fill=\"transparent\"></path><path d=\"M 32.523 16.343 C 32.523 7.323 25.229 0.029 16.273 0.029 C 7.289 0.029 0.022 7.352 0.022 16.343 C 0.022 16.343 0.022 16.343 0.022 16.371 L 0.022 29.066 C 0.022 29.349 0.248 29.604 0.557 29.604 L 32.016 29.604 C 32.298 29.604 32.552 29.378 32.552 29.066 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 29.189 15.748 C 28.626 14.363 23.894 15.409 17.304 18.972 C 10.854 22.421 7.052 26.436 7.615 27.652 C 8.207 28.924 14.853 28.02 20.148 25.079 C 27.386 21.064 29.893 17.445 29.189 15.748 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.693 25.758 C 12.567 25.787 11.525 25.334 10.764 24.599 C 12.257 23.1 14.538 21.432 17.242 19.934 C 17.495 20.443 17.636 21.008 17.636 21.63 C 17.664 23.864 15.918 25.702 13.693 25.758 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 3.492 28.727 C 3.802 29.038 4.056 29.264 4.788 29.519 C 4.816 29.519 4.957 29.575 4.957 29.575 L 0.535 29.575 C 0.253 29.575 0 29.349 0 29.038 L 0 16.343 C 0 16.343 0 16.343 0 16.315 C 0 10.858 2.676 6.023 6.788 3.054 L 6.59 3.28 C 6.168 3.846 6.224 4.355 6.478 5.061 C 6.647 5.542 6.14 6.079 5.858 6.39 C 4.675 7.691 3.52 9.444 3.38 12.498 C 3.267 15.297 4.084 17.757 4.365 19.057 C 4.647 20.443 4.703 20.895 4.732 21.15 C 5.774 20.273 6.9 19.397 8.027 18.605 C 9.857 17.389 11.322 16.513 12.617 15.806 C 15.518 14.222 16.279 14.392 13.969 15.749 C 11.66 17.135 9.435 18.69 7.914 20.047 C 1.971 25.447 2.873 28.105 3.492 28.727 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 32.529 29.066 C 32.529 29.349 32.304 29.603 31.994 29.603 L 11.406 29.603 L 11.688 29.547 C 14.392 28.981 17.546 27.85 20.757 26.041 C 27.122 22.732 31.29 18.463 32.389 15.381 L 32.445 15.24 C 32.445 15.24 32.445 15.296 32.445 15.381 C 32.473 15.636 32.473 16.031 32.473 16.371 L 32.473 29.066\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9.151 1.64 C 11.291 0.594 13.714 0 16.248 0 C 23.768 0 30.105 5.146 31.964 12.101 C 31.964 12.101 31.71 11.875 31.147 11.621 C 30.753 11.451 30.161 11.282 29.373 11.14 C 28.359 10.942 27.345 10.886 26.19 10.264 C 24.106 9.133 21.346 4.241 16.924 2.969 C 14.812 2.347 13.178 2.601 12.503 2.714 C 12.136 2.771 11.404 2.856 11.151 2.516 C 10.616 1.838 10.221 1.414 9.405 1.555 C 9.348 1.583 9.151 1.64 9.151 1.64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 37.831 16.064 L 40.196 16.064 L 40.196 8.345 L 43.182 8.345 L 43.182 6.309 L 34.873 6.309 L 34.873 8.345 L 37.831 8.345 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 43.917 16.064 L 44.452 14.65 L 48.367 14.65 L 48.902 16.064 L 51.521 16.064 L 47.55 6.309 L 45.551 6.309 L 41.411 16.064 Z M 46.452 9.25 L 47.635 12.699 L 45.185 12.699 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 56.076 16.234 C 57.991 16.234 59.23 15.498 60.131 14.452 L 58.16 12.982 C 57.738 13.547 57.062 14.028 55.991 14.028 C 54.442 14.028 53.541 12.841 53.541 11.172 C 53.541 9.504 54.442 8.288 56.076 8.288 C 57.033 8.288 57.653 8.769 58.019 9.335 L 59.934 7.949 C 59.061 6.875 57.878 6.083 56.076 6.083 C 52.809 6.083 51.063 8.345 51.063 11.116 C 51.119 13.972 52.837 16.234 56.076 16.234 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 65.264 16.233 C 68.334 16.233 70.221 13.971 70.221 11.2 C 70.221 8.401 68.334 6.167 65.264 6.167 C 62.166 6.167 60.279 8.429 60.279 11.2 C 60.279 13.971 62.166 16.233 65.264 16.233 Z M 65.264 8.316 C 66.813 8.316 67.742 9.532 67.742 11.2 C 67.742 12.84 66.813 14.028 65.264 14.028 C 63.687 14.028 62.786 12.84 62.786 11.2 C 62.786 9.532 63.687 8.316 65.264 8.316 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 43.61 22.171 C 44.54 21.719 44.962 21.097 44.962 19.994 C 44.962 18.552 43.835 17.704 41.582 17.704 L 37.836 17.704 L 37.836 27.458 L 42.061 27.458 C 44.54 27.458 45.722 26.554 45.722 24.659 C 45.722 23.33 44.99 22.454 43.61 22.171 Z M 40.09 19.598 L 41.019 19.598 C 42.146 19.598 42.624 19.824 42.624 20.531 C 42.624 21.266 42.174 21.549 41.301 21.549 L 40.118 21.549 Z M 41.47 25.423 L 40.061 25.423 L 40.061 23.387 L 41.498 23.387 C 42.765 23.387 43.3 23.67 43.3 24.405 C 43.328 25.196 42.906 25.423 41.47 25.423 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 49.048 23.5 L 53.16 23.5 L 53.16 21.521 L 49.048 21.521 L 49.048 19.739 L 53.977 19.739 L 53.977 17.704 L 46.683 17.704 L 46.683 27.458 L 54.09 27.458 L 54.09 25.394 L 49.048 25.394 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 57.6 17.704 L 55.235 17.704 L 55.235 27.458 L 61.881 27.458 L 61.881 25.394 L 57.6 25.394 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 65.401 17.704 L 63.036 17.704 L 63.036 27.458 L 69.682 27.458 L 69.682 25.394 L 65.401 25.394 Z\" fill=\"rgb(9,39,85)\"></path></g></svg>',svgContentId:11522123591,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oezz7f\",layoutDependency:layoutDependency,layoutId:\"aMGQGtshD\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-71k6dq\",\"data-framer-name\":\"Kempegowda_International_Airport_Bengaluru_Logo 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:103,layoutDependency:layoutDependency,layoutId:\"a84_l4Fft\",svg:'<svg width=\"103\" height=\"32\" viewBox=\"0 0 103 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1592_4243)\">\\n<path d=\"M7.8232 19.4189C2.8553 21.1959 2.77458 25.4308 3.12224 27.4024C3.12918 27.4569 3.18663 27.547 3.17375 27.5564C2.98853 27.6654 -5.58334 13.0272 18.1255 8.40198C19.5241 4.14874 18.6257 0.121826 18.6257 0.121826C-13.6352 19.3466 5.71985 31.5408 6.10912 31.1683C6.1116 31.1574 6.06455 31.1272 6.0076 31.0396C4.9116 29.4166 1.93462 24.8335 7.7915 19.8518C7.98465 19.6908 8.33083 19.4298 8.74239 19.1287H8.73645C8.37491 19.2253 8.04656 19.3258 7.8232 19.4189Z\" fill=\"#092755\"/>\\n<path d=\"M16.3848 12.4092C16.4066 12.4092 16.4209 12.4127 16.4407 12.4127C18.8333 12.5578 21.6374 13.1402 24.9125 14.2525C28.4601 11.0646 29.7477 7.24072 29.7477 7.24072C25.2161 7.41901 21.3962 7.76965 18.1588 8.39615C18.1553 8.39615 18.1409 8.40308 18.1256 8.40308C18.1038 8.46945 18.0825 8.5368 18.0612 8.6002C17.6402 9.82991 17.1821 11.1621 16.3848 12.4092Z\" fill=\"#092755\"/>\\n<path d=\"M3.17702 27.5565C3.19138 27.5466 3.13344 27.4575 3.1265 27.402C2.77834 25.4309 2.85907 21.1965 7.82647 19.4185C8.05082 19.3264 8.37868 19.2254 8.73972 19.1288C4.07789 19.0426 2.8343 21.7933 2.58816 23.3033C2.56885 23.4509 2.56489 23.491 2.53715 23.4796C2.28457 23.339 2.28457 11.5925 16.3889 12.4087C17.1863 11.1607 17.6444 9.82942 18.0658 8.5997L18.1297 8.40259C-5.57957 13.0268 2.99229 27.665 3.17702 27.5565Z\" fill=\"#092755\"/>\\n<path d=\"M24.9974 14.2725C24.9737 14.2661 24.944 14.2557 24.9113 14.2517C24.9029 14.2557 24.8999 14.2557 24.892 14.2661C22.5717 16.3432 19.4144 17.4555 14.7085 18.1211C13.2292 18.3281 12.3764 18.4371 11.1596 18.6223C10.3462 18.7488 9.53997 18.9175 8.7442 19.128H8.74023C8.83978 19.128 8.93437 19.1295 9.03491 19.1349C9.5683 19.1572 10.1492 19.2226 10.7683 19.3395C12.5542 19.6678 15.1914 20.4325 17.4914 21.2913C28.9397 25.6044 36.3125 19.388 36.3125 19.388C32.0226 17.0449 28.2726 15.3913 24.9974 14.2725Z\" fill=\"#092755\"/>\\n<path d=\"M16.3894 12.4087C16.3607 12.4602 16.3275 12.5077 16.2943 12.5588C15.2776 14.1119 13.4258 15.8002 11.2631 17.329C10.6697 17.748 9.57771 18.5142 8.75014 19.1288C9.54593 18.9183 10.3521 18.7493 11.1655 18.6226C12.3823 18.4369 13.2357 18.3285 14.7145 18.1215C19.4204 17.4553 22.5776 16.3435 24.8979 14.2659C24.9058 14.256 24.9088 14.256 24.9172 14.252C21.6421 13.1397 18.838 12.5573 16.4454 12.4122C16.4256 12.4122 16.4107 12.4087 16.3894 12.4087Z\" fill=\"#092755\"/>\\n<path d=\"M16.2913 12.5593C16.324 12.5088 16.3572 12.4603 16.3859 12.4088C2.28204 11.5931 2.28204 23.34 2.53462 23.4802C2.56186 23.4911 2.56632 23.4509 2.58514 23.3034C2.83029 21.7938 4.07486 19.0427 8.73718 19.1289H8.74709C9.57416 18.5147 10.6662 17.7491 11.26 17.3291C13.4223 15.8007 15.2745 14.1124 16.2913 12.5593Z\" fill=\"#092755\"/>\\n<path d=\"M59.9816 5.35139L59.8359 4.85099L59.9122 4.8064L59.9816 5.35139Z\" fill=\"#092755\"/>\\n<path d=\"M96.7319 9.18565C96.5616 9.3871 96.366 9.56572 96.1499 9.71705C95.937 9.86563 95.6631 9.93992 95.3278 9.93992C95.1273 9.94157 94.9282 9.90562 94.7409 9.83393C94.5664 9.76756 94.4062 9.66837 94.269 9.54174C94.1368 9.41839 94.0301 9.27032 93.955 9.10591C93.8777 8.93756 93.8383 8.75429 93.8396 8.56905C93.8396 8.33579 93.8866 8.1159 93.9812 7.91037C94.0753 7.70484 94.2343 7.52407 94.4577 7.36856C94.6815 7.21255 94.9782 7.08527 95.3486 6.98573C95.7186 6.88668 96.1762 6.83022 96.7215 6.81586V6.72027C96.7215 6.45779 96.6531 6.26711 96.5169 6.14677C96.3807 6.02592 96.1623 5.966 95.8622 5.966C95.5887 5.96986 95.3177 6.01837 95.0599 6.10962C94.7776 6.20471 94.4928 6.32357 94.2061 6.46522L93.8713 5.26422C94.1293 5.12308 94.4527 4.98985 94.8405 4.86604C95.2278 4.74223 95.6527 4.67982 96.1133 4.67982C96.5328 4.67982 96.8859 4.72786 97.1716 4.82345C97.4584 4.91903 97.6887 5.05919 97.8635 5.24342C98.0383 5.42766 98.1622 5.6525 98.2355 5.91796C98.3088 6.18391 98.3419 6.48998 98.335 6.83715L98.3251 8.3031C98.3251 8.47347 98.3489 8.57995 98.3979 8.62254C98.4469 8.66464 98.5554 8.69337 98.7228 8.70723L98.5653 9.87603C98.0344 9.94685 97.6293 9.91714 97.3499 9.78589C97.0706 9.65515 96.8745 9.45457 96.7631 9.18565H96.7319ZM96.7215 7.58102C96.2183 7.63748 95.8657 7.72118 95.6631 7.83063C95.4601 7.94058 95.359 8.105 95.359 8.3249C95.359 8.48833 95.415 8.61709 95.5264 8.71268C95.6383 8.80826 95.7849 8.8563 95.9672 8.8563C96.1277 8.8563 96.2728 8.82609 96.4015 8.76567C96.5308 8.70575 96.6373 8.62601 96.7215 8.52696V7.58102ZM91.4718 6.11458C91.3732 6.04664 91.2646 5.99466 91.1498 5.96055C91.0156 5.92015 90.876 5.90045 90.7358 5.90211C90.3971 5.90211 90.1336 6.02939 89.9434 6.28445C89.7527 6.5395 89.6586 6.87281 89.6586 7.28338C89.6586 7.7088 89.7513 8.03814 89.938 8.2719C90.1247 8.50566 90.3659 8.62254 90.6625 8.62254C90.8423 8.62254 90.9963 8.59233 91.1236 8.53241C91.2514 8.47199 91.3683 8.38878 91.4713 8.2823L91.4718 6.11458ZM91.4718 2.75675L93.0957 2.55469V9.78045H91.4713L91.4817 9.27033C91.3281 9.43377 91.1399 9.58383 90.9161 9.7225C90.6927 9.86018 90.4268 9.92952 90.1197 9.92952C89.8319 9.93236 89.547 9.87059 89.2862 9.74875C89.0309 9.62804 88.8056 9.45211 88.6265 9.23369C88.4323 8.99396 88.2846 8.71999 88.1912 8.42593C88.0867 8.11045 88.0342 7.75783 88.0342 7.36856C88.0342 6.9575 88.1006 6.58754 88.2333 6.2582C88.3545 5.94469 88.5355 5.65774 88.7662 5.4133C88.9876 5.17954 89.2466 5.00075 89.5378 4.87644C89.8324 4.75223 90.1492 4.68905 90.4689 4.69072C90.8165 4.69072 91.1518 4.74718 91.4713 4.86059L91.4718 2.75675ZM81.275 9.80125L79.9021 4.8388H81.5365L82.1971 8.12233L83.0252 4.8388H84.712L85.5505 8.06934L86.1161 4.8388H87.793L86.4098 9.80125H84.7749L83.8424 6.5499L82.9098 9.80125H81.275ZM78.0791 7.30962C78.0791 6.89361 77.9934 6.5603 77.8221 6.30921C77.6512 6.05911 77.3981 5.93331 77.0623 5.93331C76.7271 5.93331 76.476 6.05911 76.3081 6.30872C76.1402 6.5603 76.0565 6.89708 76.0565 7.32002C76.0565 7.74347 76.1422 8.07628 76.313 8.32044C76.4844 8.56311 76.7375 8.68544 77.0732 8.68544C77.408 8.68544 77.6596 8.56163 77.8275 8.31549C77.9954 8.06786 78.0791 7.73257 78.0791 7.30962ZM79.6822 7.29378C79.6822 7.70484 79.6124 8.07479 79.4727 8.40413C79.3434 8.71809 79.1507 9.002 78.9067 9.23814C78.6657 9.4672 78.3803 9.64451 78.0682 9.75915C77.7397 9.88067 77.3918 9.94174 77.0415 9.93943C76.6937 9.9421 76.3481 9.88463 76.0198 9.76955C75.7126 9.66263 75.4321 9.49047 75.1977 9.26489C74.9602 9.03162 74.7744 8.75101 74.6524 8.44128C74.5197 8.1154 74.4533 7.74347 74.4533 7.32547C74.4533 6.90748 74.5212 6.53406 74.6579 6.20422C74.7845 5.8889 74.9774 5.60448 75.2235 5.37021C75.4664 5.14258 75.7534 4.96726 76.0669 4.85514C76.3997 4.73616 76.751 4.67665 77.1044 4.67933C77.4749 4.67933 77.8171 4.73826 78.1311 4.85465C78.4461 4.97202 78.7185 5.1419 78.9483 5.36476C79.1791 5.58763 79.3593 5.86101 79.4881 6.18342C79.6179 6.50533 79.6822 6.87578 79.6822 7.29378ZM69.9059 10.1098C69.6888 10.0458 69.4883 9.93512 69.3185 9.7854C69.2351 9.71627 69.1683 9.6293 69.1229 9.5309C69.0776 9.4325 69.0549 9.32518 69.0566 9.21685C69.0566 8.98309 69.1507 8.76369 69.3398 8.55816C69.528 8.35263 69.7692 8.20752 70.0629 8.12233C69.7762 7.98659 69.5304 7.77767 69.3502 7.51664C69.1685 7.25415 69.0779 6.9466 69.0779 6.5925C69.0779 6.32308 69.1303 6.07149 69.2348 5.83773C69.3398 5.60397 69.4914 5.4019 69.6905 5.23203C69.9059 5.053 70.153 4.91608 70.419 4.8284C70.7053 4.72935 71.0301 4.67982 71.3937 4.67982C71.6869 4.67982 71.9632 4.71647 72.2212 4.79126C72.4798 4.86554 72.6996 4.94479 72.8814 5.02997L74.2542 4.91309L74.3275 6.24186L73.3846 6.09328C73.4267 6.1428 73.4594 6.22403 73.4836 6.33744C73.5084 6.45085 73.5208 6.5499 73.5208 6.63459C73.5208 6.88271 73.4683 7.11647 73.3638 7.33637C73.2594 7.55521 73.1091 7.74897 72.923 7.90442C72.7348 8.0639 72.5095 8.18969 72.2475 8.28181C71.9855 8.37393 71.6977 8.42048 71.3833 8.42048C71.2713 8.42048 71.1649 8.41305 71.0633 8.39869C70.9531 8.38303 70.8431 8.36537 70.7335 8.3457C70.6614 8.38266 70.5958 8.43118 70.5393 8.48932C70.5105 8.51771 70.4877 8.55166 70.4724 8.58912C70.4571 8.62658 70.4495 8.66677 70.4502 8.70723C70.4502 8.82015 70.5185 8.90038 70.6547 8.94594C70.7909 8.992 71.0197 9.01528 71.3412 9.01528H71.9176C72.2246 9.01305 72.5312 9.03607 72.8344 9.08412C73.1102 9.13018 73.3479 9.20793 73.547 9.31788C73.7461 9.42783 73.8996 9.57145 74.0076 9.74826C74.1166 9.92556 74.1706 10.145 74.1706 10.4069C74.1706 10.719 74.0864 10.9988 73.919 11.2464C73.7516 11.4945 73.5257 11.707 73.2429 11.8843C72.941 12.0695 72.6124 12.2074 72.2688 12.2934C71.9018 12.389 71.5195 12.437 71.1213 12.437C70.7929 12.437 70.4839 12.4102 70.1937 12.3568C69.9323 12.3129 69.6784 12.2325 69.4394 12.118C69.2424 12.0246 69.0686 11.8884 68.9308 11.7194C68.8043 11.5573 68.7378 11.3564 68.7426 11.1508C68.7426 10.9032 68.8381 10.6803 69.0308 10.4817C69.223 10.2836 69.5147 10.1593 69.9059 10.1098ZM70.5448 10.2901C70.4383 10.3428 70.3439 10.417 70.2675 10.508C70.193 10.5992 70.1538 10.7142 70.157 10.8319C70.157 11.0235 70.267 11.179 70.4868 11.2999C70.7072 11.4202 71.0059 11.4807 71.3833 11.4807C71.5784 11.4807 71.7601 11.4658 71.928 11.4381C72.0801 11.4144 72.2281 11.3698 72.3678 11.3053C72.4941 11.2449 72.5917 11.1741 72.6615 11.0924C72.73 11.0147 72.7674 10.9146 72.7665 10.8111C72.7665 10.613 72.6635 10.4817 72.457 10.4178C72.2509 10.354 71.935 10.3223 71.5091 10.3223C71.1874 10.3216 70.8658 10.3108 70.5448 10.2901ZM70.6181 6.6029C70.6181 6.86538 70.681 7.07587 70.8063 7.23534C70.9326 7.39431 71.1247 7.47405 71.3833 7.47405C71.6274 7.47405 71.8077 7.39085 71.9231 7.22444C72.038 7.05803 72.0954 6.83665 72.0954 6.5603C72.0954 6.29831 72.0345 6.08734 71.9122 5.92836C71.7899 5.76889 71.6032 5.68915 71.3516 5.68915C71.1213 5.68915 70.941 5.77235 70.8117 5.93876C70.683 6.10517 70.6181 6.32655 70.6181 6.6029ZM67.0869 6.84706V6.75197C67.0869 6.45382 67.0255 6.22205 66.9037 6.05564C66.7814 5.88923 66.5942 5.80603 66.3431 5.80603C66.0632 5.80603 65.8429 5.91003 65.6829 6.11953C65.52 6.33364 65.4217 6.58984 65.3996 6.85795L67.0869 6.84706ZM65.3892 7.69741C65.4169 8.03022 65.5393 8.28676 65.7557 8.46802C65.9726 8.6483 66.2802 8.73893 66.6783 8.73893C66.9438 8.73893 67.2142 8.69436 67.4906 8.6062C67.7624 8.51934 68.0241 8.40344 68.2711 8.26051L68.4281 9.52539C68.1834 9.65267 67.8952 9.75172 67.5639 9.82255C67.2244 9.89462 66.8783 9.93064 66.5313 9.93001C66.1192 9.93001 65.7453 9.87306 65.41 9.76014C65.0913 9.65648 64.7984 9.48613 64.5507 9.26043C64.313 9.04103 64.1298 8.77013 64.001 8.44772C63.8712 8.12531 63.8069 7.75832 63.8069 7.34776C63.8069 6.94413 63.8712 6.57714 64.0005 6.24829C64.1204 5.93282 64.3061 5.64649 64.5453 5.40834C64.7854 5.17409 65.0709 4.9914 65.3842 4.87149C65.7235 4.7414 66.0842 4.67654 66.4476 4.68032C67.1389 4.68032 67.6684 4.87149 68.0353 5.25482C68.4018 5.63666 68.5851 6.13636 68.5851 6.75296C68.5851 6.88717 68.5767 7.03971 68.5593 7.20958C68.5474 7.35014 68.5208 7.48907 68.4801 7.62411L65.3892 7.6771V7.6984V7.69741ZM59.877 8.50467C60.0781 8.63988 60.3227 8.70673 60.6125 8.70673C60.9587 8.70673 61.2236 8.58094 61.4108 8.32985C61.5975 8.07826 61.6901 7.74693 61.6901 7.33637C61.6901 6.91094 61.6059 6.58012 61.4366 6.34289C61.2677 6.10517 61.0156 5.9863 60.6858 5.9863C60.506 5.9863 60.3539 6.0185 60.2301 6.08238C60.1043 6.14627 59.9875 6.22749 59.877 6.32654V8.50467ZM59.877 5.34891C60.0305 5.18597 60.2163 5.03393 60.4362 4.89179C60.6561 4.75015 60.9215 4.67933 61.236 4.67933C61.5346 4.67933 61.8125 4.73975 62.0655 4.8601C62.3206 4.98044 62.539 5.1523 62.7242 5.37516C62.909 5.59852 63.0526 5.86794 63.1571 6.18342C63.2621 6.4984 63.3141 6.85449 63.3141 7.25118C63.3141 7.66225 63.2497 8.0322 63.1204 8.36154C63.0025 8.67542 62.8232 8.96265 62.593 9.20645C62.3742 9.43765 62.1093 9.62037 61.8154 9.74281C61.5188 9.86662 61.2083 9.92902 60.8794 9.92902C60.7098 9.92814 60.5406 9.9139 60.3733 9.88643C60.2051 9.86034 60.0392 9.82126 59.877 9.76955V11.9799H58.2531V4.92448L59.8775 4.72241V5.34941L59.877 5.34891ZM55.6649 9.78045V6.86835C55.6649 6.5712 55.6054 6.36369 55.4886 6.24681C55.3697 6.12993 55.2112 6.07149 55.0097 6.07149C54.8492 6.07149 54.7041 6.10368 54.5733 6.16757C54.4491 6.226 54.3333 6.30097 54.2291 6.39043V9.78045H52.6047V6.86835C52.6047 6.5712 52.5438 6.36369 52.4234 6.24681C52.3011 6.12993 52.1402 6.07149 51.9396 6.07149C51.7786 6.07149 51.634 6.10021 51.5028 6.15667C51.3777 6.209 51.2618 6.2807 51.1591 6.36914V9.78045H49.5346V4.92399L51.1591 4.72192L51.1501 5.4128C51.3681 5.18598 51.6008 5.00669 51.8484 4.87595C52.0986 4.7452 52.3833 4.67933 52.7042 4.67933C53.0138 4.67933 53.2896 4.75362 53.5363 4.90269C53.7804 5.05126 53.9622 5.27116 54.0811 5.56138C54.2937 5.30265 54.5516 5.08482 54.8423 4.91854C55.1253 4.75912 55.4451 4.67665 55.7699 4.67933C56.2443 4.67933 56.6168 4.83187 56.8857 5.13645C57.1546 5.44103 57.2888 5.85952 57.2888 6.39043V9.78045H55.6649ZM47.2817 6.84706V6.75197C47.2817 6.45382 47.2208 6.22205 47.0985 6.05564C46.9761 5.88923 46.7894 5.80603 46.5378 5.80603C46.2585 5.80603 46.0381 5.91003 45.8777 6.11953C45.715 6.3337 45.6169 6.5899 45.5949 6.85795L47.2817 6.84706ZM45.584 7.69741C45.6122 8.03022 45.734 8.28676 45.9505 8.46802C46.1674 8.6483 46.4749 8.73893 46.8731 8.73893C47.1386 8.73893 47.409 8.69436 47.6853 8.6062C47.9572 8.51933 48.2189 8.40344 48.4659 8.26051L48.6229 9.52539C48.3787 9.65267 48.0905 9.75172 47.7586 9.82255C47.4193 9.89425 47.0734 9.92994 46.7265 9.92902C46.314 9.92902 45.9406 9.87207 45.6048 9.75915C45.2863 9.65544 44.9935 9.48509 44.746 9.25944C44.5083 9.04004 44.325 8.76914 44.1958 8.44673C44.0665 8.12432 44.0016 7.75733 44.0016 7.34677C44.0016 6.94314 44.066 6.57615 44.1958 6.2473C44.3157 5.93183 44.5014 5.6455 44.7406 5.40735C44.9806 5.17315 45.2659 4.99047 45.579 4.8705C45.9183 4.7404 46.279 4.67554 46.6423 4.67933C47.3342 4.67933 47.8631 4.87049 48.2301 5.25382C48.5966 5.63566 48.7799 6.13537 48.7799 6.75197C48.7799 6.88618 48.7714 7.03872 48.7541 7.20859C48.7423 7.34913 48.7159 7.48805 48.6754 7.62312L45.584 7.67611V7.69741ZM39.9777 6.07149L42.1578 3.13859H44.0645L41.4763 6.37954L44.1274 9.78045H42.1365L39.9782 6.85845H39.9673V9.78045H38.3018V3.13909H39.9678V6.07149H39.9787H39.9777Z\" fill=\"#092755\"/>\\n<path d=\"M100.394 17.299V13.5039H100.785V16.935H102.697V17.2995L100.394 17.299ZM98.123 13.8927L97.3802 15.8663H98.8595L98.123 13.8927ZM99.8069 17.2995H99.4043L98.9957 16.2125H97.244L96.8354 17.2995H96.4332L97.9002 13.5039H98.3642L99.8069 17.2995ZM95.4492 13.5039H95.8389V17.3357H95.4056L93.2022 14.0507V17.2995H92.8119V13.5039H93.2572L95.4492 16.7587V13.5039ZM91.6238 15.4106C91.6238 15.168 91.5867 14.9451 91.5124 14.743C91.4442 14.5506 91.3379 14.3739 91.1999 14.2235C91.0653 14.0796 90.9017 13.9658 90.72 13.8897C90.5278 13.8096 90.3214 13.7693 90.1133 13.7714C89.8988 13.7714 89.6997 13.811 89.516 13.8897C89.3328 13.969 89.1743 14.0789 89.0425 14.2205C88.9067 14.3685 88.8015 14.5418 88.733 14.7307C88.6587 14.9288 88.6216 15.1477 88.6216 15.3864C88.6216 15.629 88.6597 15.8519 88.736 16.0545C88.8127 16.2565 88.9177 16.4309 89.052 16.577C89.1857 16.7226 89.3456 16.8345 89.5319 16.9137C89.7176 16.993 89.9196 17.0321 90.138 17.0321C90.353 17.0321 90.5511 16.9925 90.7324 16.9137C90.9141 16.8345 91.0706 16.7236 91.2028 16.5794C91.3383 16.4302 91.4434 16.2562 91.5124 16.0669C91.5867 15.8688 91.6238 15.6498 91.6238 15.4106ZM92.026 15.3864C92.026 15.6781 91.9784 15.945 91.8838 16.1882C91.7887 16.4309 91.6565 16.6404 91.4876 16.8167C91.3166 16.9939 91.1112 17.1343 90.8839 17.2292C90.6511 17.3288 90.3961 17.3783 90.1197 17.3783C89.8632 17.3805 89.6087 17.332 89.3709 17.2357C89.1447 17.1439 88.9394 17.0075 88.7672 16.8345C88.5921 16.6567 88.4553 16.445 88.365 16.2125C88.2656 15.957 88.2161 15.6848 88.2194 15.4106C88.2194 15.1194 88.267 14.852 88.3616 14.6093C88.4567 14.3666 88.5889 14.1572 88.7578 13.9803C88.9284 13.8034 89.134 13.664 89.3615 13.5708C89.604 13.4718 89.8638 13.4223 90.1257 13.4252C90.3941 13.4252 90.6447 13.4727 90.878 13.5678C91.1107 13.6629 91.3123 13.7966 91.4812 13.969C91.6505 14.1408 91.7833 14.3473 91.8803 14.588C91.9774 14.8287 92.026 15.0952 92.026 15.3864ZM87.0249 17.2995V13.5039H87.4146V17.2995H87.0249ZM85.0067 13.8684V17.2995H84.6169V13.8684H83.255V13.5039H86.3687V13.8684H85.0067ZM81.6459 13.8932L80.903 15.8663H82.3824L81.6459 13.8932ZM83.3298 17.2995H82.9271L82.5186 16.2125H80.7668L80.3583 17.2995H79.9561L81.4231 13.5039H81.8871L83.3298 17.2995ZM78.972 13.5039H79.3618V17.3357H78.9285L76.7251 14.0507V17.2995H76.3348V13.5039H76.78L78.972 16.7587V13.5039ZM74.1493 15.4047C74.278 15.4007 74.4008 15.3804 74.5172 15.3443C74.6341 15.3076 74.7361 15.2561 74.8258 15.1893C74.9154 15.1224 74.9857 15.0407 75.0372 14.9431C75.0911 14.8402 75.118 14.7254 75.1155 14.6093C75.1155 14.3582 75.0239 14.1685 74.8411 14.0413C74.6589 13.914 74.3964 13.8501 74.0552 13.8501H73.4509V15.429L74.1493 15.4047ZM73.4509 17.2995H73.0607V13.5039H74.1007C74.5791 13.5039 74.9327 13.603 75.1621 13.8016C75.3914 13.9997 75.5058 14.2651 75.5058 14.5969C75.5092 14.8528 75.4149 15.1004 75.2423 15.2893C75.1602 15.3798 75.0642 15.4567 74.958 15.5171C74.8486 15.58 74.7317 15.6295 74.6079 15.6657L75.6791 17.2995H75.221L74.2285 15.7326L73.4509 15.7811V17.2995ZM69.9223 17.2995V13.5039H72.2559V13.8625H70.3125V15.2284H71.934V15.5751H70.3125V16.941H72.2559V17.2995H69.9223ZM67.917 13.8684V17.2995H67.5272V13.8684H66.1653V13.5039H69.2789V13.8684H67.917ZM65.1317 13.5039H65.5214V17.3357H65.0881L62.8847 14.0507V17.2995H62.4944V13.5039H62.9397L65.1317 16.7587V13.5039ZM61.0958 17.2995V13.5039H61.4856V17.2995H61.0958ZM81.5196 19.3038V22.735H81.1274V19.3038H79.7605V18.9393H82.887V19.3038H81.5196ZM78.0122 20.8401C78.1415 20.8362 78.2648 20.8158 78.3817 20.7797C78.4991 20.743 78.6016 20.6915 78.6917 20.6247C78.7819 20.5578 78.8522 20.4761 78.9042 20.3785C78.9572 20.2815 78.9829 20.1705 78.9829 20.0447C78.9829 19.7936 78.8908 19.604 78.7071 19.4772C78.5238 19.3494 78.2609 19.2855 77.9176 19.2855H77.311V20.8644L78.0122 20.8401ZM77.311 22.735H76.9187V18.9393H77.9637C78.4441 18.9393 78.7992 19.0384 79.0295 19.237C79.2598 19.4351 79.3747 19.7005 79.3747 20.0324C79.3784 20.2885 79.2837 20.5363 79.1102 20.7247C79.0276 20.8153 78.9312 20.8922 78.8245 20.9525C78.7134 21.0156 78.5954 21.0655 78.4728 21.1011L79.5485 22.735H79.0884L78.092 21.168L77.311 21.2165V22.735ZM75.7257 20.8466C75.7257 20.6034 75.688 20.381 75.6137 20.178C75.545 19.9858 75.4382 19.8094 75.2997 19.6594C75.1645 19.5152 75.0003 19.4013 74.8179 19.3251C74.6249 19.245 74.4176 19.2047 74.2087 19.2068C73.9928 19.2068 73.7927 19.2464 73.6089 19.3251C73.4242 19.4044 73.2657 19.5143 73.1335 19.656C73.0003 19.7976 72.8968 19.968 72.8225 20.1661C72.7477 20.3642 72.7105 20.5831 72.7105 20.8218C72.7105 21.0645 72.7487 21.2873 72.8254 21.4899C72.9022 21.6924 73.0077 21.8663 73.1424 22.0124C73.2771 22.158 73.4376 22.2699 73.6243 22.3492C73.811 22.4284 74.0141 22.4675 74.2334 22.4675C74.4489 22.4675 74.648 22.4279 74.8302 22.3492C75.0096 22.2723 75.1706 22.1584 75.3027 22.0149C75.4354 21.8712 75.5389 21.7004 75.6137 21.5023C75.688 21.3042 75.7257 21.0853 75.7257 20.8466ZM76.1293 20.8218C76.1293 21.1135 76.0817 21.3804 75.9867 21.6236C75.8911 21.8663 75.7588 22.0758 75.5885 22.2521C75.4166 22.4294 75.2103 22.5698 74.9823 22.6646C74.7485 22.7642 74.492 22.8137 74.2146 22.8137C73.9452 22.8137 73.6946 22.7662 73.4628 22.6711C73.2359 22.5794 73.0297 22.443 72.8566 22.2699C72.6808 22.0924 72.5433 21.8807 72.4525 21.6479C72.3527 21.3926 72.3031 21.1206 72.3064 20.8466C72.3064 20.5548 72.354 20.2874 72.4495 20.0447C72.5446 19.8021 72.6774 19.5926 72.8472 19.4158C73.0171 19.2399 73.2187 19.1038 73.4534 19.0062C73.6872 18.9091 73.9437 18.8606 74.2211 18.8606C74.4905 18.8606 74.7421 18.9081 74.9763 19.0032C75.2106 19.0983 75.4122 19.232 75.5825 19.4044C75.7524 19.5762 75.8861 19.7827 75.9837 20.0234C76.0807 20.2646 76.1293 20.5306 76.1293 20.8218ZM71.3674 20.1418C71.3674 19.8704 71.2723 19.6619 71.0807 19.5163C70.889 19.3707 70.6102 19.2979 70.2447 19.2979H69.6766V21.0407L70.2323 21.0283C70.6017 21.0204 70.884 20.9441 71.0777 20.8005C71.2708 20.6569 71.3674 20.4375 71.3674 20.1418ZM71.778 20.1235C71.778 20.5405 71.6378 20.8545 71.357 21.0645C71.0767 21.2754 70.6934 21.3849 70.207 21.3928L69.6771 21.3988V22.735H69.2849V18.9393H70.261C70.5181 18.9393 70.7419 18.969 70.9326 19.0275C71.1233 19.0864 71.2807 19.1671 71.4051 19.2702C71.5294 19.3737 71.623 19.498 71.6849 19.6441C71.7468 19.7897 71.778 19.9496 71.778 20.1235ZM67.0899 20.8401C67.2192 20.8362 67.3425 20.8158 67.4594 20.7797C67.5767 20.743 67.6793 20.6915 67.7694 20.6247C67.8595 20.5578 67.9299 20.4761 67.9819 20.3785C68.0348 20.2815 68.0606 20.1705 68.0606 20.0447C68.0606 19.7936 67.968 19.604 67.7847 19.4772C67.6015 19.3494 67.3385 19.2855 66.9953 19.2855H66.3881V20.8644L67.0899 20.8401ZM66.3881 22.735H65.9969V18.9393H67.0409C67.5213 18.9393 67.8769 19.0384 68.1072 19.237C68.337 19.4351 68.4523 19.7005 68.4523 20.0324C68.4558 20.2884 68.3612 20.5362 68.1879 20.7247C68.1053 20.8153 68.0088 20.8922 67.9021 20.9525C67.7911 21.0156 67.6731 21.0655 67.5505 21.1011L68.6262 22.735H68.1661L67.1696 21.168L66.3881 21.2165V22.735ZM64.5918 22.735V18.9393H64.9831V22.735H64.5918ZM62.2978 19.3281L61.552 21.3017H63.0377L62.2978 19.3281ZM63.9886 22.735H63.5845L63.1744 21.6479H61.4148L61.0047 22.735H60.6006L62.074 18.9393H62.54L63.9886 22.735ZM91.8016 27.213C91.8016 27.4478 91.7709 27.6593 91.7095 27.8475C91.6476 28.0357 91.5555 28.1966 91.4321 28.3303C91.3093 28.4641 91.1573 28.5661 90.977 28.6374C90.7962 28.7077 90.5853 28.7434 90.3431 28.7434C90.1133 28.7434 89.9092 28.7087 89.7305 28.6399C89.56 28.5762 89.4056 28.4758 89.2783 28.3457C89.152 28.2132 89.0563 28.0546 88.998 27.8811C88.9323 27.6856 88.9002 27.4803 88.9029 27.274V24.869H89.2907V27.2254C89.2907 27.5894 89.3798 27.8742 89.5571 28.0783C89.7354 28.2828 90.0043 28.3853 90.3644 28.3853C90.7081 28.3853 90.9686 28.2863 91.1469 28.0872C91.3247 27.8891 91.4143 27.5993 91.4143 27.219V24.869H91.8016V27.213ZM86.7723 26.7698C86.8967 26.7664 87.02 26.7459 87.1388 26.7089C87.2542 26.6727 87.3557 26.6212 87.4453 26.5544C87.5345 26.4875 87.6038 26.4058 87.6553 26.3082C87.7078 26.2111 87.7336 26.1002 87.7336 25.9744C87.7336 25.7233 87.642 25.5336 87.4607 25.4064C87.2789 25.2791 87.0184 25.2152 86.6787 25.2152H86.078V26.7941L86.7723 26.7698ZM86.078 28.6641H85.6902V24.869H86.7243C87.1997 24.869 87.5513 24.9681 87.7791 25.1667C88.007 25.3648 88.1209 25.6302 88.1209 25.962C88.1243 26.2176 88.0309 26.4649 87.8594 26.6544C87.7778 26.7448 87.6823 26.8217 87.5766 26.8822C87.4676 26.9446 87.3517 26.9941 87.2289 27.0308L88.2937 28.6641H87.8381L86.851 27.0977L86.078 27.1462V28.6641ZM84.7546 27.213C84.7546 27.4478 84.7234 27.6593 84.662 27.8475C84.6006 28.0357 84.5085 28.1966 84.3852 28.3303C84.2623 28.4641 84.1103 28.5661 83.9295 28.6374C83.7493 28.7077 83.5383 28.7434 83.2956 28.7434C83.0869 28.7469 82.8794 28.7118 82.6835 28.6399C82.513 28.5762 82.3586 28.4758 82.2313 28.3457C82.105 28.2132 82.0094 28.0546 81.951 27.8811C81.8852 27.6856 81.8529 27.4803 81.8554 27.274V24.869H82.2432V27.2254C82.2432 27.5894 82.3323 27.8742 82.5101 28.0783C82.6884 28.2828 82.9574 28.3853 83.3174 28.3853C83.6611 28.3853 83.9216 28.2863 84.0999 28.0872C84.2772 27.8891 84.3668 27.5993 84.3668 27.219V24.869H84.7546V27.213ZM79.0493 28.6641V24.869H79.4366V28.3001H81.3384V28.6641H79.0493ZM76.7904 25.2578L76.052 27.2314H77.5229L76.7904 25.2578ZM78.4644 28.6641H78.0642L77.6581 27.5771H75.9163L75.5102 28.6641H75.11L76.5686 24.869H77.0302L78.4644 28.6641ZM74.5682 28.368C74.3747 28.4953 74.1618 28.5903 73.9378 28.6493C73.7161 28.7107 73.4873 28.7423 73.2573 28.7434C72.9974 28.7469 72.7393 28.6995 72.4976 28.6037C72.2761 28.5149 72.0758 28.3804 71.9097 28.209C71.7412 28.0318 71.6122 27.8208 71.5313 27.5899C71.4398 27.3284 71.3948 27.0528 71.3986 26.7757C71.3986 26.4721 71.4452 26.1988 71.5373 25.9561C71.6294 25.7134 71.7587 25.5049 71.9251 25.3306C72.091 25.1567 72.2866 25.023 72.5129 24.9299C72.7494 24.8348 73.0024 24.7873 73.2573 24.7903C73.495 24.7903 73.7219 24.8205 73.9378 24.8824C74.1527 24.9443 74.3325 25.0171 74.4761 25.1008L74.3474 25.4524C74.1904 25.3533 74.0204 25.2766 73.8422 25.2246C73.6507 25.1661 73.4516 25.1364 73.2514 25.1364C73.0419 25.1364 72.8492 25.1726 72.6729 25.2454C72.4961 25.3197 72.3436 25.4247 72.2143 25.5634C72.085 25.701 71.9835 25.8709 71.9097 26.0715C71.8324 26.294 71.7948 26.5283 71.7988 26.7639C71.7988 27.0154 71.8334 27.2423 71.9033 27.4423C71.9731 27.6439 72.0717 27.8163 72.2004 27.9574C72.3302 28.1005 72.4827 28.209 72.6615 28.2843C72.8512 28.3617 73.0545 28.4001 73.2593 28.3972C73.5812 28.4012 73.8987 28.3213 74.1805 28.1654V27.1279H73.0666V26.7817H74.5682V28.368ZM70.2234 24.869H70.6107V28.7008H70.1798L67.9893 25.4158V28.6646H67.601V24.869H68.0433L70.2234 28.1238V24.869ZM64.4809 28.6641V24.869H66.8012V25.2276H64.8687V26.5935H66.4812V26.9402H64.8687V28.3061H66.8012V28.6641H64.4809ZM63.3299 27.6107C63.3299 27.3869 63.2398 27.2195 63.0595 27.1081C62.8788 26.9956 62.6163 26.9397 62.2716 26.9397H61.4841V28.3185H62.3701C62.7104 28.3185 62.9555 28.2556 63.1056 28.1288C63.2551 28.0035 63.3299 27.8306 63.3299 27.6107ZM63.2131 25.8892C63.2131 25.6807 63.1403 25.5168 62.9937 25.3965C62.8481 25.2761 62.6202 25.2152 62.3117 25.2152H61.4836V26.5935H62.2498C62.542 26.5935 62.7762 26.5331 62.9506 26.4127C63.1259 26.2924 63.2131 26.118 63.2131 25.8892ZM62.8604 26.7252C63.1427 26.7817 63.3557 26.8872 63.5003 27.0432C63.6449 27.1987 63.7182 27.3869 63.7182 27.6097C63.7182 27.7633 63.691 27.9039 63.638 28.0337C63.5846 28.164 63.4995 28.279 63.3904 28.368C63.2629 28.4679 63.117 28.5418 62.961 28.5854C62.7876 28.6379 62.5801 28.6646 62.3389 28.6646H61.0958V24.869H62.2929C62.5227 24.869 62.7198 24.8938 62.8857 24.9418C63.0511 24.9903 63.1878 25.0597 63.2943 25.1498C63.4008 25.239 63.4775 25.343 63.527 25.4618C63.5766 25.5817 63.6013 25.7154 63.6013 25.861C63.6013 26.0472 63.5424 26.2225 63.4255 26.384C63.3076 26.5459 63.1199 26.6603 62.8604 26.7252Z\" fill=\"#092755\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1592_4243\">\\n<rect width=\"102.681\" height=\"31.0548\" fill=\"white\" transform=\"translate(0.000976562 0.121826)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12qtqbk\",layoutDependency:layoutDependency,layoutId:\"xeKQzLPRW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1k977b\",\"data-framer-name\":\"Logo.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"DtO3PlQ6y\",svg:'<svg width=\"65\" height=\"23\" viewBox=\"0 0 65 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1592_4160)\">\\n<path d=\"M52.9758 22.631C50.46 22.631 48.0556 21.8046 46.113 20.263C44.1704 21.7887 41.7661 22.631 39.2503 22.631C36.7345 22.631 34.3301 21.8046 32.3875 20.263C30.4449 21.7887 28.0406 22.631 25.5248 22.631C23.009 22.631 20.6046 21.8046 18.662 20.263C16.7194 21.7887 14.3151 22.631 11.7993 22.631C8.86946 22.631 6.11481 21.5185 4.02891 19.4843C1.91117 17.45 0.732878 14.7323 0.685109 11.8398C0.637341 8.93147 1.7201 6.18202 3.7423 4.06829C5.74858 1.97044 8.47139 0.762593 11.4012 0.667236H11.449H12.1496C14.538 0.7467 16.799 1.57312 18.6461 3.01936C20.4772 1.57312 22.7383 0.7467 25.1267 0.667236L25.1745 1.90687V0.667236H25.8751C28.2635 0.7467 30.5246 1.57312 32.3716 3.01936C34.2187 1.57312 36.4638 0.7467 38.8681 0.667236H38.9159H39.6165C42.0049 0.7467 44.266 1.57312 46.113 3.01936C47.9442 1.57312 50.2052 0.7467 52.6096 0.667236L52.6573 1.90687V0.667236H53.3579C56.2718 0.762593 58.9946 1.97044 61.0168 4.06829C63.039 6.16613 64.1218 8.93147 64.074 11.8239C64.0263 14.7323 62.848 17.45 60.7621 19.4843C58.6443 21.5185 55.8897 22.631 52.9758 22.631ZM47.9282 18.4671C49.3454 19.5001 51.0969 20.12 52.9758 20.12C57.6093 20.12 61.4468 16.3852 61.5104 11.8081C61.5901 7.23094 57.896 3.3849 53.2783 3.21008H52.6733C50.9058 3.27365 49.2817 3.87757 47.9442 4.84703C49.5365 6.83362 50.3644 9.28111 50.3326 11.8398C50.2689 14.2714 49.4409 16.5759 47.9282 18.4671ZM34.2027 18.4671C35.6199 19.5001 37.3714 20.12 39.2503 20.12C41.1292 20.12 42.8648 19.5001 44.2819 18.4671C42.7852 16.5918 41.9412 14.2714 41.8935 11.8398C41.8457 9.28111 42.6896 6.83362 44.2819 4.84703C42.9444 3.87757 41.3203 3.27365 39.5528 3.21008H38.9478C37.1803 3.27365 35.5562 3.87757 34.2187 4.84703C35.8109 6.83362 36.6389 9.28111 36.6071 11.8398C36.5434 14.2714 35.6995 16.5759 34.2027 18.4671ZM20.4613 18.4671C21.8784 19.5001 23.63 20.12 25.5089 20.12C27.3878 20.12 29.1233 19.5001 30.5405 18.4671C29.0437 16.5918 28.1998 14.2714 28.152 11.8398C28.1043 9.28111 28.9482 6.83362 30.5405 4.84703C29.203 3.87757 27.5788 3.27365 25.8114 3.21008H25.2063C23.4389 3.27365 21.8148 3.87757 20.4772 4.84703C22.0695 6.83362 22.8975 9.28111 22.8657 11.8398C22.802 14.2714 21.9581 16.5759 20.4613 18.4671ZM11.4649 3.19418C6.84726 3.35311 3.15315 7.21505 3.23277 11.7922C3.31238 16.3693 7.13387 20.1041 11.7674 20.1041C13.6463 20.1041 15.3819 19.4843 16.799 18.4512C15.3023 16.5759 14.4584 14.2555 14.4106 11.8239C14.3628 9.26522 15.2068 6.81773 16.799 4.83114C15.4615 3.86168 13.8374 3.25776 12.07 3.19418H11.4649ZM32.3716 6.64291C31.2889 8.08915 30.6679 9.86914 30.6997 11.7922C30.7316 13.6039 31.3525 15.2886 32.3716 16.6553C33.3907 15.2886 34.0117 13.6039 34.0435 11.7922C34.0754 9.86914 33.4384 8.08915 32.3716 6.64291ZM18.6302 6.64291C17.5474 8.08915 16.9264 9.86914 16.9583 11.7922C16.9901 13.6039 17.6111 15.2886 18.6302 16.6553C19.6492 15.2886 20.2702 13.6039 20.3021 11.7922C20.3339 9.86914 19.7129 8.08915 18.6302 6.64291ZM46.0971 6.64291C45.0144 8.08915 44.3934 9.86914 44.4252 11.7922C44.4571 13.6039 45.0781 15.2886 46.0971 16.6553C47.1162 15.2886 47.7372 13.6039 47.769 11.7922C47.8168 9.86914 47.1799 8.08915 46.0971 6.64291Z\" fill=\"#092755\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1592_4160\">\\n<rect width=\"63.3571\" height=\"21.9638\" fill=\"white\" transform=\"translate(0.681641 0.667236)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rk1q6a\",layoutDependency:layoutDependency,layoutId:\"jquHogGBH\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hhg33b\",\"data-framer-name\":\"taj_hotels_logo.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:34,layoutDependency:layoutDependency,layoutId:\"YUtnAd3vS\",svg:'<svg width=\"34\" height=\"32\" viewBox=\"0 0 34 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2840_35309)\">\\n<path d=\"M26.8835 4.36148L27.9311 3.73622V0.14917L23.8389 2.55151M27.5383 1.36679V3.60458L26.5889 1.92624L27.5383 1.36679ZM26.9817 3.93367L25.0829 2.81478L26.0323 2.25533L26.9817 3.93367Z\" fill=\"#092755\"/>\\n<path d=\"M26.5564 4.92087L23.5117 3.1438V7.98138L26.5564 6.20431M24.3302 4.09815L26.229 5.21705H24.3302V4.09815ZM24.3302 6.99412V5.87522H26.229L24.3302 6.99412Z\" fill=\"#092755\"/>\\n<path d=\"M28.5859 7.35622V10.9433L32.7109 8.54094L29.6663 6.73096M29.0115 9.72565V7.48786L29.9609 9.1662L29.0115 9.72565ZM30.5175 8.83711L29.5681 7.15877L31.4669 8.27767L30.5175 8.83711Z\" fill=\"#092755\"/>\\n<path d=\"M29.9932 4.92087V6.1714L33.0378 7.94847V3.1438M32.1866 6.99412L30.2878 5.87522H32.1866V6.99412ZM32.1866 5.21705H30.2878L32.1866 4.09815V5.21705Z\" fill=\"#092755\"/>\\n<path d=\"M32.7109 2.55151L28.5859 0.14917V3.73622L29.6336 4.36148M29.0115 1.36679L29.9609 1.92624L29.0115 3.60458V1.36679ZM30.5175 2.25533L31.4669 2.81478L29.5681 3.93367L30.5175 2.25533Z\" fill=\"#092755\"/>\\n<path d=\"M23.8389 8.54094L27.9639 10.9433V7.35622L26.8835 6.73096M27.5383 9.72565L26.5889 9.1662L27.5383 7.48786V9.72565ZM26.0323 8.83711L25.0829 8.27767L26.9817 7.15877L26.0323 8.83711Z\" fill=\"#092755\"/>\\n<path d=\"M5.30892 20.7829C5.30892 22.4941 5.30892 23.975 5.2107 24.7648C5.14523 25.2913 5.04701 25.7192 4.65416 25.785C4.49047 25.8179 4.2613 25.8508 3.9994 25.8508C3.77023 25.8508 3.70475 25.9166 3.70475 26.0153C3.70475 26.147 3.8357 26.2128 4.06487 26.2128C4.81785 26.2128 5.99642 26.147 6.42201 26.147C6.94582 26.147 8.12439 26.2128 9.36844 26.2128C9.56487 26.2128 9.72856 26.147 9.72856 26.0153C9.72856 25.9166 9.63035 25.8508 9.43392 25.8508C9.13928 25.8508 8.74642 25.8179 8.48451 25.785C7.92797 25.7192 7.82975 25.2913 7.76428 24.7648C7.66606 23.9421 7.66606 22.4941 7.66606 20.7499V13.0822L10.0232 13.148C11.6928 13.1809 12.1839 13.7075 12.2167 14.2011L12.2494 14.3986C12.2821 14.6947 12.3149 14.7606 12.4458 14.7606C12.544 14.7606 12.6095 14.6618 12.6095 14.4644C12.6095 13.9708 12.675 12.6873 12.675 12.2924C12.675 11.9962 12.6423 11.8975 12.5113 11.8975C12.3476 11.8975 11.922 12.095 10.7107 12.095H3.3119C2.68987 12.095 2.00237 12.062 1.44582 11.9962C0.987491 11.9633 0.791062 11.7659 0.627372 11.7659C0.529157 11.7659 0.463681 11.8646 0.398205 12.1279C0.398205 12.2924 0.0380859 14.0037 0.0380859 14.2998C0.0380859 14.4973 0.070824 14.596 0.201776 14.596C0.299991 14.596 0.365467 14.5302 0.398205 14.3657C0.430943 14.2011 0.529157 14.0037 0.725586 13.7075C1.02023 13.3126 1.44582 13.2139 2.52618 13.1809L5.30892 13.1151\" fill=\"#092755\"/>\\n<path d=\"M19.4521 21.3423L19.6158 21.474L21.0891 25.4559C21.1873 25.6863 21.0563 25.8508 20.9254 25.8837C20.7289 25.9167 20.6635 25.9496 20.6635 26.0483C20.6635 26.1799 20.8926 26.1799 21.22 26.2128C22.6932 26.2457 24.0027 26.2457 24.6575 26.2457C25.345 26.2457 25.5087 26.2128 25.5087 26.0483C25.5087 25.9167 25.4105 25.8837 25.2795 25.8837C25.0504 25.8837 24.7885 25.8508 24.5266 25.8179C24.1337 25.7192 23.6099 25.4559 22.9224 23.7776C21.7438 20.9145 18.8301 13.2797 18.4045 12.2266C18.2081 11.7988 18.1099 11.6343 17.9462 11.6343C17.7498 11.6343 17.6516 11.8317 17.4224 12.3912L12.8391 24.1725C12.4789 25.1268 12.1188 25.7521 11.3004 25.8508C11.1694 25.8837 10.9075 25.8837 10.7438 25.8837C10.6129 25.8837 10.5146 25.9167 10.5146 26.0483C10.5146 26.2128 10.6129 26.2457 10.8748 26.2457C11.8242 26.2457 12.8391 26.1799 13.0355 26.1799C13.592 26.1799 14.3777 26.2457 14.967 26.2457C15.1635 26.2457 15.2617 26.2128 15.2617 26.0483C15.2617 25.9496 15.1962 25.8837 14.9998 25.8837H14.7379C14.1813 25.8837 14.0176 25.6534 14.0176 25.2914C14.0176 25.061 14.1158 24.6332 14.2795 24.1396L15.2617 21.4411C15.2944 21.3423 15.3271 21.2765 15.4254 21.2765M15.7527 20.388L15.6873 20.2564L17.3569 15.6491L17.4551 15.4846L17.5533 15.6491L19.1902 20.2893L19.092 20.388H15.7527Z\" fill=\"#092755\"/>\\n<path d=\"M27.3744 22.9549C27.3744 26.6407 27.4071 28.5165 26.0321 29.9644C25.672 30.3264 25.4101 30.5568 25.1809 30.6884C24.8863 30.853 24.7881 30.9188 24.7881 31.0175L24.919 31.1821C25.0173 31.1821 25.1482 31.1492 25.2792 31.0833C25.6393 30.8859 25.9339 30.7543 26.1631 30.5897C27.8655 29.4708 28.8149 28.1874 29.2077 27.0356C29.5678 25.9825 29.6333 24.7649 29.6333 23.7118C29.6333 22.7904 29.5678 21.8689 29.5678 21.0791V17.5579C29.5678 14.6948 29.5678 14.1683 29.6006 13.5759C29.6333 12.9177 29.7643 12.5887 30.2553 12.5228C30.4845 12.4899 30.5827 12.457 30.7792 12.457C31.0083 12.457 31.1065 12.4241 31.1065 12.2925C31.1065 12.1608 30.9756 12.1279 30.7137 12.1279C30.0262 12.1279 28.8803 12.1937 28.4548 12.1937C27.9964 12.1937 26.8506 12.1279 25.9339 12.1279C25.672 12.1279 25.5411 12.1608 25.5411 12.2925C25.5411 12.4241 25.6393 12.457 25.8357 12.457C26.0976 12.457 26.3923 12.4899 26.5232 12.5228C27.1125 12.6545 27.2434 12.9506 27.2762 13.5759C27.3089 14.1683 27.3089 14.6948 27.3089 17.5579\" fill=\"#092755\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2840_35309\">\\n<rect width=\"33\" height=\"31\" fill=\"white\" transform=\"translate(0.0380859 0.14917)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16t15sm\",layoutDependency:layoutDependency,layoutId:\"eGhqwMcjZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vsqa81\",\"data-framer-name\":\"Frame 1261157959\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:44,layoutDependency:layoutDependency,layoutId:\"zWLczpYwp\",svg:'<svg width=\"44\" height=\"32\" viewBox=\"0 0 44 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.0198 7.91991C20.8715 6.12517 19.673 5.9251 18.1956 6.54296C16.7182 7.16082 15.8164 8.40243 15.5197 10.0148C15.2646 10.1442 14.517 10.7091 14.2559 10.5385C13.9949 10.3678 14.0186 9.5852 13.9533 9.32628C13.8228 8.77903 13.5321 8.29063 13.0396 7.99053C10.9452 6.69596 9.30762 9.36159 10.8443 10.9857C11.2834 11.4506 11.9776 11.3976 12.0191 12.192C12.0725 13.1865 11.0935 15.2166 10.3222 15.858C8.76769 17.1584 6.67326 15.8286 7.03519 13.8926C7.17759 13.1276 7.68191 12.1861 8.20997 11.6094C8.63716 11.1446 9.21862 10.9151 9.39662 10.2384C9.87127 8.43185 7.59291 7.74926 6.1808 7.99641C4.0567 8.37301 2.95312 10.1972 2.47253 12.1214C1.93261 14.2868 2.75732 16.264 4.47203 17.641C5.87821 18.7708 9.16522 19.6005 10.8443 18.8296C12.3929 18.1176 13.9474 15.2578 14.0601 13.6101C14.1254 12.6451 13.8347 11.427 15.2349 11.3446C15.0451 12.3803 14.7781 13.4042 14.5941 14.4398C14.3271 15.9639 13.6863 20.0183 14.6891 21.2187C15.3951 22.066 16.5462 21.254 17.1039 20.6361C18.0532 19.5828 18.5101 18.3353 19.1865 17.1349C19.8747 15.9227 21.2809 13.9279 22.5387 13.3041C25.0604 12.0508 24.556 16.4994 24.6272 17.7057C24.6747 18.4942 24.912 19.6828 25.9741 19.3415C27.4871 18.8531 28.8695 15.8697 29.6824 14.5634C30.0502 13.9691 30.6732 12.9805 31.4979 13.5631C31.9014 13.8514 32.204 15.0047 32.4947 15.5108C33.8475 17.8587 37.2235 19.0356 39.5019 17.2232L40.113 16.7112C40.2554 19.5063 39.6858 21.4482 37.1404 22.8192C33.4974 24.7846 27.5642 25.7909 23.4347 26.091C20.0468 26.3381 16.647 26.5146 13.2592 26.2204C10.3637 25.9674 5.50441 25.4554 3.51678 23.1605C2.89972 22.4426 2.57933 21.5364 2.24707 20.6714C1.37488 18.3942 0.722225 16.058 0.211967 13.6749C-0.274559 11.3917 0.259433 8.27886 1.81987 6.47235C2.30047 5.91333 2.80479 5.61911 3.54051 5.49554C3.80158 4.90121 3.89651 4.24216 4.21097 3.67137C5.51035 1.32349 10.1739 0.723279 12.6124 0.440827C16.6055 -0.0181565 20.5214 0.128954 24.5264 0.440827C27.2675 0.652666 29.9434 1.22934 32.6312 1.76482C34.6366 2.16496 36.6064 2.38268 38.3093 3.64195C39.3832 4.43634 39.4307 5.14836 39.8579 6.28993C40.1367 7.03725 40.5046 7.77869 40.7063 8.55543C40.9318 9.40278 40.908 10.0383 40.8546 10.9092C40.7716 12.2567 40.558 13.6101 40.3562 14.94C39.0153 16.3111 36.9921 17.8175 35.3545 15.8933C34.3933 14.7635 34.6663 12.0684 34.5476 10.6091C34.3637 8.33182 33.0999 7.04902 30.7147 7.53743C29.6883 7.74926 29.2967 8.50835 28.9229 9.37925C28.4067 10.5679 28.0566 11.8272 27.5049 12.9982C27.4218 12.9923 27.4218 12.8275 27.4159 12.7628C27.3387 11.6153 27.493 10.4502 27.4633 9.30863C27.4159 7.39032 26.158 7.0961 24.5145 7.59627C23.1024 8.02583 21.9573 9.00853 21.0258 10.1089C20.9842 9.40278 21.0851 8.63193 21.0258 7.93168L21.0198 7.91991Z\" fill=\"#092755\"/>\\n<path d=\"M21.5832 29.3745C22.2952 29.3627 21.8502 30.1453 21.6307 30.469C21.7553 30.6337 21.9274 30.7808 22.141 30.8044C22.1528 31.3928 21.5298 31.1045 21.2628 30.8456C20.0703 31.7753 18.6759 30.3395 20.0584 29.398C19.4829 28.8272 19.8863 28.0034 20.6873 28.0387C21.3578 28.0681 21.6188 28.7801 21.1679 29.2509C21.0848 29.3391 20.7941 29.4804 20.7941 29.5745L21.2984 30.1571C21.4824 29.9452 21.5951 29.6628 21.5832 29.3803V29.3745ZM20.5271 28.48C20.1949 28.5506 20.3135 29.0508 20.5212 29.2038C20.9602 29.1097 21.0552 28.3741 20.5271 28.48ZM20.9721 30.5396L20.3432 29.7628C19.6431 30.2512 20.2779 30.9868 20.9721 30.5396Z\" fill=\"#092755\"/>\\n<path d=\"M7.97244 30.2395C8.08517 30.3219 8.4471 28.8861 8.45304 28.7802C9.28962 28.6743 9.04043 29.7806 9.42609 30.2395C9.53288 30.2395 9.85921 28.9097 9.85921 28.7273C10.6246 28.5272 10.3695 29.1392 10.2449 29.5805C10.1677 29.8512 10.0609 30.1513 9.94821 30.4102C9.91261 30.4985 9.65155 31.0751 9.61595 31.0928C9.56848 31.1222 9.42015 31.0987 9.36082 31.081C9.01669 30.9692 8.81496 30.0689 8.69037 29.7629C8.59543 30.0866 8.5005 30.422 8.3581 30.728C8.25724 30.9457 8.19197 31.1928 7.89531 31.0692C7.46219 30.8809 7.00533 29.1627 6.96973 28.6861C7.74698 28.5625 7.62238 29.1509 7.77665 29.6805C7.83005 29.8688 7.91311 30.0512 7.97244 30.2395Z\" fill=\"#092755\"/>\\n<path d=\"M32.7146 29.6804C33.1596 29.192 33.4385 28.5388 34.2395 28.6859L33.2842 29.8216L33.6699 30.3041C33.7233 30.4277 34.281 30.8102 34.281 30.8631C34.281 31.1044 33.7767 31.1632 33.6106 31.0102L32.7146 29.9393V31.1044C32.4654 31.1338 32.1035 31.0397 32.1035 30.7396V27.915C32.24 27.915 32.4298 27.8974 32.5544 27.968C32.679 28.0386 32.7146 28.1681 32.7146 28.1975V29.6863V29.6804Z\" fill=\"#092755\"/>\\n<path d=\"M13.3183 30.1512C13.4429 30.7749 14.3032 30.7279 14.7067 30.4101C14.8669 31.2398 13.7277 31.281 13.2293 30.9456C12.2266 30.2689 12.7428 28.4212 14.054 28.6624C14.7423 28.786 15.1576 29.8276 14.4219 30.0688C14.3685 30.0865 14.1015 30.1512 14.0718 30.1512H13.3123H13.3183ZM13.3183 29.7216H14.0362C14.3447 29.7216 14.3981 29.145 13.8167 29.1567C13.4725 29.1685 13.3123 29.3921 13.3183 29.7216Z\" fill=\"#092755\"/>\\n<path d=\"M11.058 30.1513C11.1885 30.7692 12.0429 30.7339 12.4463 30.4102C12.6184 31.2399 11.4673 31.2811 10.969 30.9457C9.98404 30.2808 10.4884 28.4213 11.7937 28.6626C13.099 28.9038 12.8973 29.8277 12.1615 30.0689C12.1081 30.0866 11.8411 30.1513 11.8115 30.1513H11.052H11.058ZM11.058 29.7218H11.7759C12.0666 29.7218 12.1497 29.1686 11.6038 29.1569C11.058 29.1451 11.0758 29.3569 11.058 29.7218Z\" fill=\"#092755\"/>\\n<path d=\"M29.0176 29.6392C29.0769 28.9508 28.1039 29.0979 27.7538 29.4215C27.6055 28.4859 29.1303 28.4153 29.4745 29.1214C29.6228 29.4333 29.6406 30.3513 29.5041 30.6631C29.2905 31.1457 28.6557 31.2104 28.1988 31.0809C27.5462 30.8985 27.4216 30.0335 28.0623 29.751C28.1039 29.7334 28.3709 29.6451 28.3887 29.6451H29.0176V29.6392ZM29.0176 30.0688C28.7921 30.0806 28.2581 29.9923 28.2344 30.3101C28.2107 30.6219 28.5192 30.669 28.7743 30.6278C29.0295 30.5866 29.0176 30.3042 29.0176 30.0688Z\" fill=\"#092755\"/>\\n<path d=\"M27.2799 31.1045C26.206 31.1928 26.9417 29.6864 26.5619 29.2921C26.4136 29.1391 26.0992 29.1214 25.933 29.2686C25.7669 29.4157 25.8025 29.4686 25.8025 29.4804V31.0339C25.8025 31.1633 25.2566 31.128 25.1973 30.7279C25.1439 30.3984 25.1676 29.4981 25.3041 29.1979C25.5948 28.5389 26.645 28.4447 27.0663 29.0038C27.1315 29.0861 27.2858 29.4392 27.2858 29.5216V31.0986L27.2799 31.1045Z\" fill=\"#092755\"/>\\n<path d=\"M6.79835 29.3803C6.59069 29.1567 5.6651 29.0155 5.62357 29.4039C5.6117 29.4804 5.63543 29.5098 5.69477 29.551C5.83716 29.6569 6.26436 29.6746 6.47202 29.7687C6.86361 29.9452 6.94668 30.3395 6.76868 30.7161C6.47795 31.3457 4.95311 31.3222 5.10144 30.416C5.36844 30.5455 5.64137 30.6631 5.94989 30.6337C6.25842 30.6043 6.43642 30.3572 6.13383 30.1924C5.7185 29.9688 4.95904 30.1747 5.06584 29.3627C5.17857 28.4683 6.93481 28.327 6.79835 29.3803Z\" fill=\"#092755\"/>\\n<path d=\"M24.7991 29.3745C24.6804 29.3568 24.6092 29.2685 24.4965 29.2273C24.2354 29.1332 23.7667 29.0802 23.6243 29.3568C23.5709 29.6746 24.1761 29.651 24.4075 29.7452C25.0779 30.0159 24.9296 30.8868 24.2769 31.0809C23.743 31.2398 22.9894 31.1045 23.1022 30.4101C23.3217 30.5984 24.2295 30.7985 24.2651 30.3807C24.2888 30.11 23.6896 30.1041 23.4938 30.0394C23.1022 29.9041 22.9479 29.6334 23.0725 29.2332C23.3158 28.4506 24.8821 28.3741 24.7991 29.3745Z\" fill=\"#092755\"/>\\n<path d=\"M36.1492 29.3803C35.9415 29.1802 34.9862 28.9978 34.9744 29.4038C34.9744 29.6686 35.5321 29.6569 35.7576 29.7451C36.161 29.904 36.2856 30.2747 36.1254 30.669C35.8584 31.3457 34.298 31.3339 34.4522 30.4101C34.7192 30.5395 34.9981 30.6631 35.3007 30.6278C35.5618 30.5984 35.7576 30.3336 35.4846 30.1865C35.3304 30.1041 35.0396 30.11 34.8438 30.0452C34.4582 29.9158 34.3573 29.7157 34.4107 29.3156C34.5294 28.4682 36.2619 28.3447 36.1432 29.3744L36.1492 29.3803Z\" fill=\"#092755\"/>\\n<path d=\"M18.4091 29.3746C18.2904 29.3569 18.2192 29.2686 18.1065 29.2274C17.8632 29.1392 17.1216 29.0686 17.2462 29.4746C17.2996 29.6452 17.8336 29.6688 18.0234 29.7453C18.4269 29.9041 18.5515 30.2749 18.3913 30.6691C18.1243 31.3458 16.5639 31.3341 16.7181 30.4102C16.9614 30.5691 17.5428 30.7515 17.7861 30.5397C18.2192 30.1631 17.2877 30.0983 17.1097 30.0395C16.6647 29.8865 16.5342 29.5276 16.7359 29.1098C17.0563 28.4507 18.5159 28.4272 18.4091 29.3687V29.3746Z\" fill=\"#092755\"/>\\n<path d=\"M31.7588 29.4628C31.1417 28.8508 30.0975 29.4628 30.5662 30.2807C30.8095 30.6985 31.4265 30.6514 31.7588 30.369C31.9012 31.3458 30.6374 31.2928 30.1509 30.7338C29.5338 30.0277 29.9254 28.8272 30.8807 28.6978C31.4562 28.6213 31.8537 28.839 31.7588 29.4628Z\" fill=\"#092755\"/>\\n<path d=\"M43.0376 2.08262C43.0376 2.88879 42.379 3.54196 41.5662 3.54196C40.7533 3.54196 40.0947 2.88879 40.0947 2.08262C40.0947 1.27646 40.7533 0.623291 41.5662 0.623291C42.379 0.623291 43.0376 1.27646 43.0376 2.08262ZM42.7588 2.08262C42.7588 1.43534 42.2307 0.905742 41.5721 0.905742C40.9135 0.905742 40.3855 1.42945 40.3855 2.08262C40.3855 2.73579 40.9135 3.25951 41.5721 3.25951C42.2307 3.25951 42.7588 2.73579 42.7588 2.08262Z\" fill=\"#092755\"/>\\n<path d=\"M16.4933 28.6861C16.5763 29.298 16.2025 29.2039 15.7397 29.2098L15.6745 29.2745C15.6804 29.9453 15.455 30.9162 16.4933 30.4985C16.5763 31.4576 15.2117 31.2517 15.1049 30.3866C15.0634 30.0689 15.0574 28.8449 15.1286 28.5684C15.188 28.333 15.4075 28.1329 15.6626 28.1741V28.6919H16.4873L16.4933 28.6861Z\" fill=\"#092755\"/>\\n<path d=\"M41.656 1.2941C42.2612 1.36471 42.368 1.95315 41.8103 2.17676L42.2434 2.84758H41.8577C41.7213 2.58278 41.6145 2.16499 41.2407 2.24149V2.84758H40.8906V1.35883L40.9559 1.2941C41.1754 1.31175 41.4365 1.27056 41.6501 1.2941H41.656ZM41.2407 1.98846C42.0417 2.09438 42.0417 1.44709 41.2407 1.55889V1.98846Z\" fill=\"#092755\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:51,intrinsicWidth:150,pixelHeight:102,pixelWidth:300,src:\"https://framerusercontent.com/images/Ms4xk6GWZMt6978sA2dpZr0fM2Y.png\"},className:\"framer-1dsli9r\",\"data-framer-name\":\"Image 75\",layoutDependency:layoutDependency,layoutId:\"zevRDnyaS\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bxjiky\",layoutDependency:layoutDependency,layoutId:\"oVVHhQCAu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xv0e9l\",\"data-framer-name\":\"airtel_logo.svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:125,layoutDependency:layoutDependency,layoutId:\"xBHHZnLaB\",svg:'<svg width=\"125\" height=\"32\" viewBox=\"0 0 125 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2840_35295)\">\\n<path d=\"M11.766 30.1158C13.5038 29.5052 14.9129 28.6598 16.2281 27.8143L16.6038 27.5795C18.0129 26.687 19.422 25.7007 20.8311 24.4795C23.9781 21.8022 25.8569 19.1249 26.9372 15.931C27.3599 14.6158 28.0175 12.0795 27.219 9.68402C26.6554 7.94614 25.5751 6.49008 24.0251 5.40978C23.8372 5.26887 21.8645 3.71887 18.2008 3.71887C14.819 3.71887 11.1084 4.98705 7.20991 7.52341L7.069 7.61735C6.92809 7.66432 6.83415 7.75826 6.74021 7.8522C6.64627 7.89917 6.55233 7.99311 6.45839 8.04008C5.65991 8.55675 4.90839 9.16735 4.15688 9.77796C2.46597 11.328 0.58718 13.9583 0.681119 16.1658C0.728089 17.1052 1.15082 17.9037 1.85536 18.4674C2.51294 18.984 3.35839 19.2189 4.34476 19.2189C6.36445 19.2189 8.57203 18.1386 10.0751 17.2461C10.169 17.1992 10.2629 17.1052 10.3569 17.0583C10.6387 16.8704 10.8735 16.7295 11.1554 16.5416L11.4372 16.3537C13.5978 14.9446 15.8054 13.4886 18.2948 12.6431C18.9523 12.4083 19.516 12.3143 20.0326 12.3143C20.2675 12.3143 20.5493 12.3143 20.7841 12.4083C21.5357 12.5961 22.0993 13.0189 22.4281 13.6764C22.9917 14.8507 22.8508 16.6355 22.0993 18.3264C21.019 20.581 19.1872 22.8355 16.6038 24.9961C15.2887 26.0764 14.0675 26.9219 13.0341 27.4855L12.8932 27.5325C12.3766 27.8143 11.8129 28.0961 11.2493 28.331L11.1554 28.378C10.9675 28.4249 10.8266 28.5189 10.6857 28.5658C8.19627 29.2234 9.6993 27.0628 9.6993 27.0628C10.2629 26.4052 10.8266 25.8886 11.3902 25.3719C11.719 25.0431 12.0948 24.7613 12.4235 24.3855L12.5175 24.2916C12.9402 23.8689 13.5508 23.2583 13.5038 22.4128C13.4569 21.2855 12.2826 20.581 11.2023 20.581H11.1084C10.0751 20.581 9.08869 21.1916 8.43112 21.7083C7.77354 22.2249 7.11597 22.9764 6.64627 23.681C5.98869 24.7143 4.5796 27.3446 5.94172 29.4583C6.50536 30.3037 7.39779 30.7264 8.66597 30.7264C9.55839 30.7264 10.5917 30.5386 11.766 30.1158ZM60.4735 0.14917C58.5008 0.14917 56.8569 1.69917 56.8569 3.62493C56.8569 5.59765 58.4069 7.10069 60.4266 7.10069C62.3993 7.10069 63.9963 5.55069 63.9963 3.62493C64.0432 2.68553 63.6675 1.79311 63.0099 1.1825C62.3523 0.524928 61.4599 0.14917 60.4735 0.14917ZM57.6554 30.7264H63.2448V8.88553L57.6554 9.77796V30.7264ZM45.4432 8.50978C42.766 8.50978 40.3705 9.26129 37.8811 10.4355L37.2705 10.7643L38.7735 14.0522L39.619 13.6764C41.3569 12.9249 43.2357 12.4083 44.9266 12.4552C46.9463 12.5492 47.7917 13.4416 47.7917 15.3674V16.4946H44.4569C39.1023 16.4946 35.8145 19.2658 35.7205 23.5401C35.7205 27.6264 39.1963 31.1492 44.0342 31.1492C47.9326 31.1492 51.2675 29.928 53.4751 27.7204V16.0249C53.4281 10.3416 49.2948 8.50978 45.4432 8.50978ZM47.7448 26.5931C47.1811 26.9689 46.0538 27.2977 44.8326 27.2977C42.5781 27.2977 41.5448 25.6067 41.5917 23.634C41.6387 21.9901 42.672 20.1583 45.4902 20.1583H47.7448V26.5931ZM104.484 27.2507C102.934 27.2507 101.901 26.734 101.243 26.0295C100.257 24.9492 99.7872 22.7886 99.9281 20.4401H111.999V19.8764C111.905 12.1264 109.181 8.60372 103.31 8.60372C96.7341 8.60372 94.1508 14.5219 94.1038 20.1113C94.0569 23.634 95.419 27.2037 97.9084 29.2234C99.4114 30.4446 101.525 31.1492 103.921 31.1492C105.236 31.1492 106.645 30.9613 107.913 30.5855C110.355 29.834 112.14 28.5658 112.14 28.5658L110.543 25.3719C110.214 25.6067 107.772 27.2507 104.484 27.2507ZM103.263 12.737C105.752 12.737 106.128 15.3674 106.128 17.0113H100.069C100.163 14.8977 101.055 12.737 103.263 12.737ZM67.7069 12.784V30.7264H73.4372V13.8643C74.1887 13.1598 75.7857 12.5492 77.2887 12.4552C78.6978 12.4083 79.5902 12.6901 79.5902 12.6901L81.1872 9.21432C80.5766 8.9325 79.1205 8.55675 77.4296 8.55675C74.8932 8.55675 71.1357 9.26129 67.7069 12.784ZM123.836 27.2507C121.487 27.0628 121.017 26.0764 121.017 24.3855V2.77947L115.381 3.71887V24.0098C115.381 28.8007 118.058 30.8674 122.521 30.8674C123.46 30.8674 124.681 30.6325 124.681 30.6325V27.2037C124.681 27.2977 124.164 27.2977 123.836 27.2507ZM88.3735 2.87341L82.6432 3.76584V24.1507C82.6432 28.7067 85.3675 30.8674 89.9705 30.8674C91.0508 30.8674 92.0842 30.6795 92.0842 30.6795V27.2977C92.0372 27.2977 91.6144 27.2977 91.2857 27.2977C88.8902 27.2037 88.4205 25.9355 88.4205 24.4325V12.9249H92.1311V8.88553H88.4205L88.3735 2.87341Z\" fill=\"#092755\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2840_35295\">\\n<rect width=\"124\" height=\"31\" fill=\"white\" transform=\"translate(0.680664 0.14917)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h5gxdp\",layoutDependency:layoutDependency,layoutId:\"kKi34dG5i\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y7jbcu\",\"data-framer-name\":\"Bank_of_Baroda-3ryBfGUM_brandlogos.net 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:129,layoutDependency:layoutDependency,layoutId:\"mYiaI_xH3\",svg:'<svg width=\"129\" height=\"32\" viewBox=\"0 0 129 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1592_4224)\">\\n<g clip-path=\"url(#clip1_1592_4224)\">\\n<path d=\"M21.0971 30.9547L6.18066 30.9785L6.27613 30.4535L17.1353 30.1432C19.2117 30.0716 21.2403 29.9523 23.1974 29.284C27.2069 27.9475 30.405 25.2029 31.3596 21.8377C32.362 18.2101 30.047 14.6778 25.6795 14.3676C29.3787 13.2936 32.5291 10.9308 33.3883 7.92367C34.4861 4.00959 32.5052 2.00482 29.1639 1.28883C34.7009 1.19337 39.0446 3.07881 37.5649 8.37713C36.7296 11.4082 33.4838 13.6993 29.8083 14.7017C30.7471 14.7544 31.6614 15.0209 32.4813 15.4809C33.3013 15.941 34.0053 16.5823 34.5395 17.356C35.0738 18.1297 35.4241 19.0153 35.5637 19.9451C35.7034 20.8749 35.6287 21.8243 35.3453 22.7208C34.152 26.4439 31.1449 28.7828 27.1353 30.1194C25.2021 30.7638 23.1974 30.8831 21.0971 30.9547Z\" fill=\"#092755\"/>\\n<path d=\"M13.2524 29.0931L6.25953 29.4511C6.26442 29.347 6.2564 29.2428 6.23566 29.1408L23.9683 23.8902L24.0161 23.2458L5.90153 27.9236C5.8538 27.7565 5.82993 27.8043 5.75833 27.6372L24.7082 17.136L24.5173 16.611L5.16168 26.611C5.10395 26.5268 5.04014 26.4471 4.97074 26.3723L27.5006 5.34606L27.2142 4.77327L4.15929 25.6324C4.03996 25.5608 3.96836 25.4892 3.87289 25.4415L20.3884 1.67064H19.6963L2.79891 24.9403C2.70344 24.9165 2.60798 24.8687 2.51251 24.8449L12.3216 1.62291H11.7011L1.1044 24.6778H0.674805L7.50058 0L20.2691 0.0477327C26.3072 -0.286396 31.0805 1.33651 29.5053 6.96897C28.67 9.99999 25.4958 12.3389 21.8204 13.3413L21.7965 13.4129C26.164 13.7231 28.6223 17.2315 27.6199 20.8592C26.6891 24.2482 23.324 26.8974 19.2905 28.2339C17.3574 28.9021 15.3526 28.9976 13.2524 29.0931Z\" fill=\"#092755\"/>\\n<path d=\"M47.0151 30.9076C47.9697 30.9076 50.3564 30.7883 50.9292 28.0675C51.2394 26.6117 51.0485 25.5854 49.4972 25.3468V25.3229C50.7621 25.0842 51.5497 24.2012 51.8122 22.9601C52.2896 20.669 51.0008 20.1917 49.2824 20.1917H45.3445L43.0771 30.9076H47.0151ZM47.2299 21.8623H48.6141C49.3779 21.8623 49.7836 22.4351 49.6165 23.2227C49.4017 24.2728 48.638 24.5831 48.1607 24.5831H46.6571L47.2299 21.8623ZM46.2991 26.2298H47.6118C48.7335 26.2298 48.9721 26.8026 48.7812 27.7573C48.4709 29.2609 47.397 29.2609 46.9196 29.2609H45.6786L46.2991 26.2298Z\" fill=\"#092755\"/>\\n<path d=\"M58.1302 25.7758C58.4166 24.4155 58.3211 23.2699 55.672 23.2699C54.9536 23.2334 54.2402 23.4076 53.6194 23.7711C53.0467 24.1052 52.6409 24.678 52.45 25.5849H54.5025C54.6218 24.9883 54.8128 24.4393 55.5288 24.4393C56.2925 24.4393 56.2686 24.8928 56.1493 25.5372L56.0299 26.11C54.0968 26.0861 52.1636 26.1816 51.6385 28.6637C51.3521 29.9763 51.6624 31.0503 53.1183 31.0503C54.0252 31.0503 54.7173 30.6684 55.314 29.9047H55.3378L55.2185 30.9071H57.1517C57.1918 30.4428 57.2556 29.9807 57.3426 29.5229L58.1302 25.7758ZM55.7674 27.3033C55.6004 28.1147 55.4333 29.7854 54.1922 29.7854C53.5001 29.7854 53.5717 29.141 53.6672 28.5921C53.9536 27.2556 54.7173 27.351 55.7674 27.3033Z\" fill=\"#092755\"/>\\n<path d=\"M61.8292 23.4368H59.7289L58.1299 30.9309H60.2301L61.328 25.7757C61.4712 25.1075 61.7098 24.5824 62.3542 24.5824C62.9986 24.5824 63.0225 25.1075 62.8793 25.7757L61.8053 30.907H63.9055L65.1705 24.9165C65.3853 23.8664 64.6454 23.2698 63.643 23.2698C63.2678 23.2518 62.8939 23.3248 62.5531 23.4828C62.2123 23.6407 61.9148 23.8788 61.686 24.1767H61.6621L61.8292 23.4368Z\" fill=\"#092755\"/>\\n<path d=\"M66.9879 30.907L67.8471 26.8497H67.871L68.945 30.907H71.3077L69.828 26.7542L72.6681 23.4368H70.4963L67.9426 26.5872H67.8949L69.2552 20.2148H67.1789L64.8877 30.907H66.9879Z\" fill=\"#092755\"/>\\n<path d=\"M76.5782 31.0739C79.2751 31.0739 79.991 29.4271 80.4922 27.0882C80.9218 25.0357 80.9934 23.2935 78.2488 23.2935C75.5042 23.2935 74.812 25.0357 74.3824 27.0882C73.8813 29.4271 73.8813 31.0739 76.5782 31.0739ZM76.8646 29.7374C76.1008 29.7374 76.0054 29.26 76.4827 26.9689C76.8168 25.4176 77.0555 24.63 77.9385 24.63C78.8216 24.63 78.7261 25.4176 78.4159 26.9689C77.9385 29.2362 77.6283 29.7374 76.8646 29.7374Z\" fill=\"#092755\"/>\\n<path d=\"M86.0334 20.1672C85.7948 20.1433 85.5561 20.1433 85.2936 20.1433C82.7399 20.1433 82.6683 21.2889 82.2387 23.4369H81.284L81.0215 24.7256H81.9523L80.6396 30.9309H82.7399L84.0525 24.7256H85.0311L85.2936 23.4369H84.3151L84.506 22.5299C84.6731 21.7662 84.9117 21.456 85.747 21.5037L86.0334 20.1672Z\" fill=\"#092755\"/>\\n<path d=\"M90.7738 30.9076C91.7284 30.9076 94.1151 30.7883 94.6878 28.0675C94.9981 26.6117 94.8072 25.5854 93.2559 25.3468V25.3229C94.5208 25.0842 95.3084 24.2012 95.5709 22.9601C96.0482 20.669 94.7594 20.1917 93.0411 20.1917H89.0554L86.7881 30.9076H90.7738ZM90.9647 21.8623H92.3489C93.1127 21.8623 93.5184 22.4351 93.3513 23.2227C93.1365 24.2728 92.3728 24.5831 91.8955 24.5831H90.3919L90.9647 21.8623ZM90.0578 26.2298H91.3704C92.4921 26.2298 92.7308 26.8026 92.5399 27.7573C92.2296 29.2609 91.1556 29.2609 90.6783 29.2609H89.4373L90.0578 26.2298Z\" fill=\"#092755\"/>\\n<path d=\"M101.867 25.7758C102.153 24.4155 102.057 23.2699 99.4083 23.2699C98.6899 23.2334 97.9765 23.4076 97.3558 23.7711C96.783 24.1052 96.4011 24.678 96.1863 25.5849H98.2388C98.3582 24.9883 98.5491 24.4393 99.2651 24.4393C100.029 24.4393 100.005 24.8928 99.8856 25.5372L99.7663 26.11C97.8331 26.0861 95.8999 26.1816 95.3749 28.6637C95.0885 29.9763 95.3987 31.0503 96.8546 31.0503C97.7615 31.0503 98.4536 30.6684 99.0503 29.9047H99.0742L98.9548 30.9071H100.888C100.928 30.4428 100.992 29.9807 101.079 29.5229L101.867 25.7758ZM99.5037 27.3033C99.3367 28.1147 99.1696 29.7854 97.9286 29.7854C97.2364 29.7854 97.308 29.141 97.4035 28.5921C97.7138 27.2556 98.4536 27.351 99.5037 27.3033Z\" fill=\"#092755\"/>\\n<path d=\"M103.497 23.4372L101.897 30.9073H103.998L104.857 26.8262C105.024 26.0863 105.263 25.0123 107.076 25.1317L107.482 23.2701C107.053 23.247 106.626 23.3387 106.244 23.5359C105.862 23.7331 105.54 24.0286 105.31 24.3918H105.286L105.501 23.4372H103.497Z\" fill=\"#092755\"/>\\n<path d=\"M109.061 31.0739C111.758 31.0739 112.474 29.4271 112.975 27.0882C113.405 25.0357 113.477 23.2935 110.732 23.2935C107.987 23.2935 107.295 25.0357 106.866 27.0882C106.341 29.4271 106.364 31.0739 109.061 31.0739ZM109.348 29.7374C108.584 29.7374 108.489 29.26 108.966 26.9689C109.3 25.4176 109.539 24.63 110.422 24.63C111.305 24.63 111.209 25.4176 110.899 26.9689C110.398 29.2362 110.111 29.7374 109.348 29.7374Z\" fill=\"#092755\"/>\\n<path d=\"M118.727 30.907L120.994 20.2148H118.894L118.059 24.1528H118.035C117.749 23.5084 117.271 23.2936 116.508 23.2936C114.407 23.2936 113.978 25.6325 113.644 27.1361C113.309 28.6874 112.737 31.074 114.885 31.074C115.271 31.0916 115.655 31.011 116.001 30.8399C116.348 30.6688 116.645 30.4127 116.866 30.0955H116.889L116.722 30.9308H118.727V30.907ZM116.03 29.7852C115.267 29.7852 115.314 28.9977 115.696 27.1122C116.006 25.6086 116.221 24.5824 117.128 24.5824C117.987 24.5824 117.749 25.6086 117.438 27.1122C117.033 28.9977 116.746 29.7852 116.03 29.7852Z\" fill=\"#092755\"/>\\n<path d=\"M126.556 25.7758C126.842 24.4155 126.747 23.2699 124.098 23.2699C123.379 23.2334 122.666 23.4076 122.045 23.7711C121.472 24.1052 121.091 24.678 120.876 25.5849H122.928C123.048 24.9883 123.239 24.4393 123.955 24.4393C124.718 24.4393 124.694 24.8928 124.575 25.5372L124.456 26.11C122.523 26.0861 120.589 26.1816 120.064 28.6637C119.778 29.9763 120.088 31.0503 121.544 31.0503C122.451 31.0503 123.143 30.6684 123.74 29.9047H123.764L123.644 30.9071H125.577C125.618 30.4428 125.681 29.9807 125.768 29.5229L126.556 25.7758ZM124.193 27.3033C124.026 28.1147 123.859 29.7854 122.618 29.7854C121.926 29.7854 121.997 29.141 122.093 28.5921C122.403 27.2556 123.143 27.351 124.193 27.3033Z\" fill=\"#092755\"/>\\n<path d=\"M105.724 14.678H107.538L107.132 16.1815H105.319L105.724 14.678ZM80.9749 13.1983H82.7888L82.3831 14.7018H80.5692L80.9749 13.1983ZM52.0251 2.36294H53.8389L53.4332 3.86652H51.6194L52.0251 2.36294ZM74.722 4.63024H91.7387L91.4523 5.53716H88.0155L87.4427 7.709C87.692 7.45817 87.99 7.26102 88.3184 7.12968C88.6467 6.99834 88.9985 6.93558 89.352 6.94527C90.3067 6.94527 91.0227 7.4226 90.8079 8.23406L89.5907 12.9835H87.5859L88.636 8.90231C88.7792 8.37725 88.7554 7.97153 88.1348 7.97153C87.6814 7.97153 87.3473 8.35339 87.1563 8.75912L86.6551 10.6684C86.5597 11.0503 86.0107 13.3892 85.9391 13.771H83.8628L84.4833 11.2412C84.2302 11.4838 83.9305 11.6724 83.6022 11.7955C83.274 11.9185 82.9242 11.9736 82.574 11.9572C81.6193 11.9572 80.9033 11.4799 81.1181 10.6684L82.4547 5.51329H80.8795L78.7554 13.7949H76.8461L78.9702 5.51329H77.4666L75.3425 13.7949H73.4332L74.5549 9.45124H73.0036L73.2661 8.52045H74.7936L75.5573 5.51329H74.3878L74.722 4.63024ZM86.0107 5.53716H84.5072L83.3377 10.0479C83.1945 10.573 83.2184 10.9548 83.8628 10.9548C84.5072 10.9548 84.7458 10.3582 84.889 9.8331L86.0107 5.53716ZM68.8747 13.7949H66.0346L66.2733 12.8641H68.7554C69.3759 12.8641 70.3067 12.5061 70.617 11.2651C70.8079 10.4775 70.4738 9.57057 69.352 9.57057H67.4905L67.7291 8.54432H69.8771C70.6408 8.54432 71.2375 7.89993 71.4523 7.04074C71.6193 6.39635 71.5716 5.51329 70.4499 5.51329H68.1349L68.3735 4.58251H71.142C72.5501 4.58251 74.0776 5.17917 73.6718 6.87368C73.3616 8.13859 72.7172 8.75912 71.2375 8.99778C72.7649 9.21258 73.0752 10.2388 72.7649 11.456C72.216 13.6994 69.8294 13.7949 68.8747 13.7949ZM47.9917 4.63024L46.321 2.57774L47.7053 1.55148L49.4714 4.63024H49.9965L48.5883 0.907093L50.259 0.167236L51.2375 4.65411H62.3115L62.0489 5.53716H58.2065L57.7291 7.44647C57.9691 7.18179 58.2648 6.97381 58.5951 6.83759C58.9253 6.70137 59.2817 6.64032 59.6384 6.65888C61.7148 6.65888 61.2614 8.61592 60.9511 9.8331C60.6408 11.0503 60.1158 12.7687 58.111 12.7687C57.7713 12.8021 57.4312 12.7086 57.1564 12.5061L57.2995 11.9811C57.3473 11.9811 57.4189 12.0288 57.4905 12.0288C58.3497 12.0288 58.5883 11.0026 58.8986 9.80923C59.2805 8.32952 59.3043 7.709 58.5883 7.709C57.9917 7.709 57.6337 8.16246 57.2995 9.30804L56.1778 13.8426H54.2924L54.7936 12.0527C54.5509 12.3124 54.2541 12.5154 53.9241 12.6474C53.5941 12.7794 53.2391 12.8371 52.8843 12.8164C50.8079 12.8164 51.2852 10.74 51.5955 9.52284C51.9058 8.30566 52.407 6.65888 54.4117 6.65888C55.1277 6.65888 55.5812 6.82594 55.8676 7.351L56.321 5.58489H51.1898L49.0657 13.8665H47.1564L47.6576 12.0527C47.1086 12.6255 46.154 12.8164 45.3902 12.8164C43.3139 12.8164 43.7435 10.7162 44.0537 9.47511C44.364 8.28179 44.9129 6.65888 46.9416 6.65888C47.6576 6.65888 48.469 6.84981 48.7554 7.351L49.2089 5.58489H44.5788L44.8652 4.67797H47.9917V4.63024ZM46.5358 8.16246L48.0155 10.0956L48.1349 9.66604C48.4451 8.47272 48.6838 7.66126 47.586 7.6374C47.3787 7.6123 47.1687 7.6487 46.982 7.74205C46.7952 7.83541 46.6401 7.98161 46.5358 8.16246ZM47.6576 11.0026L46.1301 9.04551C46.0824 9.23644 46.0346 9.42737 45.963 9.64217C45.5812 11.1219 45.605 11.7424 46.512 11.7424C46.7569 11.7574 47.0001 11.6936 47.2062 11.5605C47.4123 11.4274 47.5705 11.2319 47.6576 11.0026ZM54.2685 13.7949C54.7697 11.9811 54.7697 12.0049 54.7697 12.0049L54.2685 13.7949ZM53.9105 11.7424C54.6027 11.7424 54.889 11.1219 55.2709 9.64217C55.5812 8.44885 55.796 7.6374 54.9845 7.6374C54.1253 7.6374 53.9344 8.44885 53.6241 9.64217C53.2184 11.1219 53.1707 11.7424 53.9105 11.7424ZM109.686 7.25554L110.092 5.53716H104.459L102.335 13.8188H100.426L100.927 12.0049C100.378 12.5777 99.4236 12.7687 98.6599 12.7687C96.5835 12.7687 96.9415 10.7878 97.2518 9.54671C97.562 8.35339 98.1826 6.61115 100.211 6.61115C100.927 6.61115 101.739 6.80208 102.025 7.30327L102.479 5.53716H97.8723L98.1587 4.63024H111.667L109.996 2.57774L111.381 1.55148L113.147 4.63024H113.672L112.264 0.907093L113.934 0.167236L114.913 4.65411H127.681L127.395 5.56103H126.321L124.197 13.8426H122.288L124.412 5.56103H122.765L122.097 7.66126H119.447C118.588 7.66126 118.35 8.68752 117.992 10.215C117.562 12.0527 117.228 13.1505 118.421 13.1505C118.553 13.1424 118.683 13.1101 118.803 13.0551C118.684 11.9333 119.328 10.5968 120.665 10.5968C121.882 10.5968 121.882 11.2651 121.715 11.8617C121.476 12.6971 121.047 13.1505 120.235 13.3653C120.665 14.1529 121.691 14.2245 121.691 14.2245L119.638 15.3462C119.209 14.8971 118.919 14.3335 118.803 13.7233C118.32 13.8456 117.822 13.9018 117.323 13.8904C114.865 13.8904 115.271 11.5037 115.7 9.88083C116.13 8.21019 116.846 6.75434 118.875 6.75434C119.591 6.75434 120.402 6.80208 120.402 6.80208L120.76 5.53716H115.414L113.29 13.8188H111.381L113.505 5.53716H111.977L111.261 8.44885H109.352C109.519 7.80446 109.209 7.5658 108.397 7.5658C107.658 7.5658 107.443 7.66126 107.132 8.71138C106.918 9.6183 107.18 9.78537 108.063 9.7615H109.591C110.712 9.7615 110.903 10.1911 110.521 11.8379C110.02 13.6994 109.113 13.8188 107.992 13.8188H105.772C103.839 13.8188 103.767 12.9596 104.197 11.5515H106.393C106.202 12.2913 105.748 13.0312 107.037 13.0312C107.801 13.0312 108.063 12.8403 108.35 11.7663C108.588 11.0026 108.66 10.5968 107.467 10.5968C107.467 10.5968 106.44 10.573 105.939 10.573C104.626 10.573 104.841 9.47511 105.08 8.56819C105.533 6.87368 105.868 6.65888 107.801 6.65888C108.994 6.68274 109.519 6.80208 109.686 7.25554ZM99.8055 8.23406L101.309 10.1911L101.452 9.66604C101.763 8.47272 102.001 7.66126 100.903 7.6374C100.682 7.61708 100.459 7.66293 100.264 7.76914C100.068 7.87535 99.9089 8.03715 99.8055 8.23406ZM100.784 11.098L99.2804 9.14098L99.1611 9.64217C98.7792 11.1219 98.8031 11.7424 99.71 11.7424C99.9324 11.7515 100.153 11.6953 100.343 11.5808C100.534 11.4663 100.687 11.2985 100.784 11.098ZM81.9057 1.74241C81.4284 3.53239 80.617 3.62785 79.5907 3.62785H77.5859C75.9153 3.62785 75.7721 2.91186 76.1062 1.74241H78.0871C77.8962 2.36294 77.6575 2.91186 78.7076 2.91186C79.3998 2.91186 79.6384 2.7448 79.901 1.76628L81.9057 1.74241Z\" fill=\"#092755\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1592_4224\">\\n<rect width=\"127.915\" height=\"31.2984\" fill=\"white\" transform=\"translate(0.680664)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_1592_4224\">\\n<rect width=\"126.993\" height=\"31.074\" fill=\"white\" transform=\"translate(0.677734)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-142r0ry\",layoutDependency:layoutDependency,layoutId:\"tMocmsFeo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6j2exz\",\"data-framer-name\":\"fortis_healthcare_logo.svg\",fill:'var(--token-74473dc3-46a6-4559-a65c-7948b87a969e, rgb(9, 39, 85)) /* {\"name\":\"900\"} */',intrinsicHeight:32,intrinsicWidth:83,layoutDependency:layoutDependency,layoutId:\"kQXzVCYJQ\",svg:'<svg width=\"83\" height=\"32\" viewBox=\"0 0 83 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1592_4199)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.4435 7.39038L21.6331 17.5738L17.336 26.1084L20.3117 30.7054H13.3717L12.7158 27.4176L13.7045 16.9143H15.6882\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.15802 7.39038L0.818359 17.5738L5.11223 26.1084L2.14306 30.7054H9.07654L9.7389 27.5841L8.75027 16.9143H6.76647\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.89355 2.99574C8.89355 1.58855 9.98659 0.445801 11.3341 0.445801C12.6817 0.445801 13.7715 1.58855 13.7715 2.99574C13.7715 4.40292 12.6817 5.54566 11.3341 5.54566C9.98659 5.54566 8.89355 4.40292 8.89355 2.99574Z\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.4414 30.5519L31.2752 28.8966V21.1652H35.5397V18.3932H31.2752V15.4156H36.9721V12.6501H27.4414\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.0371 24.1593C35.0371 27.8814 37.7485 30.8525 42.4111 30.8525C47.0965 30.8525 49.8111 27.8814 49.8111 24.1593C49.8111 19.8823 46.6038 17.2866 42.4111 17.2866C38.2412 17.2866 35.0371 19.8823 35.0371 24.1593ZM38.8709 23.7545C38.8709 21.8184 40.0259 19.9051 42.4111 19.9051C44.8223 19.9051 45.9773 21.7694 45.9773 23.7545C45.9773 25.9191 45.2334 28.234 42.4111 28.234C39.6148 28.234 38.8709 25.8963 38.8709 23.7545Z\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.4961 30.5522L54.17 28.8968V25.7951C54.17 24.4173 54.3299 22.2625 55.5404 21.1981C56.8096 20.0749 58.8326 20.1925 59.3546 20.1892L61.159 17.476C60.774 17.3748 58.0332 17.4271 57.6743 17.4271C55.4817 17.4271 53.9775 19.3273 53.8144 20.5353H53.7589V17.5904H50.4961\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.6655 30.5522L63.3362 28.8969V20.1533H71.4769V17.476H63.3362V13.9172L59.6655 14.9979V17.476H58.9053V20.1533H59.6655\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M67.835 30.5524L71.5089 28.897V17.5905H67.835V30.5524ZM67.835 15.2267H71.5089V12.0042H67.835V15.2267Z\" fill=\"#092755\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.0125 17.3822C80.8607 17.1537 79.735 16.9055 78.0123 16.9055C75.1377 16.9055 72.4785 18.1331 72.4785 20.9279C72.4785 25.6099 78.8606 23.8729 78.8606 26.4131C78.8606 27.6701 77.3825 27.9966 76.4526 27.9966C75.1899 27.9966 73.9794 27.6701 72.8342 27.1444L72.6156 29.9131C73.9533 30.2429 75.3792 30.4649 76.7789 30.4649C79.7677 30.4649 82.6977 29.2568 82.6977 26.2368C82.6977 21.5581 76.3123 22.8641 76.3123 20.8039C76.3123 19.6971 77.4902 19.3673 78.4788 19.3673C79.8231 19.3673 80.6453 19.573 81.7678 19.9223\" fill=\"#092755\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1592_4199\">\\n<rect width=\"82.3642\" height=\"30.9664\" fill=\"white\" transform=\"translate(0.595703 0.166016)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xyq04b\",layoutDependency:layoutDependency,layoutId:\"DjT1r63a_\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94.5,intrinsicWidth:150,pixelHeight:189,pixelWidth:300,src:\"https://framerusercontent.com/images/EHt3fUF3D3ApPiiha6gGay8kN8.png\"},className:\"framer-1fgfh4r\",\"data-framer-name\":\"Image 80\",layoutDependency:layoutDependency,layoutId:\"crVXFQsZq\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xquon9\",layoutDependency:layoutDependency,layoutId:\"jhrn5FAum\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94.5,intrinsicWidth:150,pixelHeight:189,pixelWidth:300,src:\"https://framerusercontent.com/images/zmWsU3b2nhtKkuW29Y31vREG8eQ.png\"},className:\"framer-2bvdte\",\"data-framer-name\":\"Image 105 (1)\",layoutDependency:layoutDependency,layoutId:\"NYmgQCSxk\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vji2ap\",layoutDependency:layoutDependency,layoutId:\"CzYdXjz6d\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94.5,intrinsicWidth:116.5,pixelHeight:189,pixelWidth:233,src:\"https://framerusercontent.com/images/bFnMVaT9O1lBVy31pHzZbdUFOWM.png\"},className:\"framer-10wb5i2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YdWc8Ng3z\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lxa2zh\",\"data-framer-name\":\"Frame 1261157958\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FXCfAkdNs\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 32\"><path d=\"M 56.161 2.763 L 56.198 2.192 C 56.508 0.461 58.426 -0.373 59.916 0.498 C 60.718 0.966 61.136 1.811 61.108 2.739 C 61.045 4.882 58.382 5.932 56.862 4.374 C 56.436 3.938 56.203 3.401 56.161 2.763 Z M 60.86 2.632 C 60.86 2.041 60.626 1.474 60.209 1.056 C 59.792 0.638 59.227 0.403 58.637 0.403 C 58.048 0.403 57.482 0.638 57.065 1.056 C 56.649 1.474 56.414 2.041 56.414 2.632 C 56.414 2.924 56.472 3.214 56.584 3.484 C 56.695 3.755 56.859 4 57.065 4.207 C 57.272 4.414 57.517 4.578 57.787 4.69 C 58.056 4.802 58.345 4.86 58.637 4.86 C 58.929 4.86 59.218 4.802 59.488 4.69 C 59.757 4.578 60.002 4.414 60.209 4.207 C 60.415 4 60.579 3.755 60.691 3.484 C 60.802 3.214 60.86 2.924 60.86 2.632 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 25.442 19.999 L 24.65 19.98 C 22.911 19.885 21.318 19.36 19.873 18.403 L 19.647 18.253 C 17.105 16.393 15.654 13.508 15.722 10.345 C 15.832 5.255 20.025 1.113 25.141 1.161 C 29.845 1.205 33.823 4.607 34.435 9.326 C 35.157 14.9 31.019 19.732 25.442 19.999 Z M 32.172 10.576 C 32.172 8.7 31.429 6.902 30.106 5.576 C 28.783 4.25 26.989 3.505 25.119 3.505 C 23.248 3.505 21.454 4.25 20.131 5.576 C 18.809 6.902 18.066 8.7 18.066 10.576 C 18.066 11.504 18.248 12.424 18.602 13.282 C 18.957 14.14 19.476 14.919 20.131 15.576 C 21.454 16.902 23.248 17.647 25.119 17.647 C 26.989 17.647 28.783 16.902 30.106 15.576 C 31.429 14.25 32.172 12.451 32.172 10.576 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 57.604 1.256 C 58.142 1.246 58.629 1.269 59.065 1.324 C 59.428 1.369 59.607 1.639 59.637 1.991 C 59.669 2.373 59.496 2.633 59.118 2.771 C 59.108 2.775 59.1 2.78 59.093 2.788 C 59.086 2.796 59.081 2.805 59.079 2.815 C 59.077 2.824 59.077 2.835 59.08 2.844 C 59.082 2.854 59.087 2.863 59.094 2.87 C 59.115 2.892 59.136 2.913 59.159 2.931 C 59.207 2.97 59.242 3.004 59.264 3.034 C 59.464 3.31 59.648 3.595 59.818 3.89 C 59.854 3.952 59.836 3.982 59.765 3.982 L 59.181 3.979 C 59.171 3.979 59.161 3.976 59.153 3.971 C 59.144 3.967 59.136 3.959 59.131 3.951 C 58.957 3.682 58.78 3.411 58.6 3.138 C 58.468 2.936 58.284 2.851 58.046 2.881 C 58.031 2.883 58.018 2.89 58.008 2.902 C 57.998 2.913 57.993 2.928 57.993 2.943 L 58.014 3.972 C 57.832 3.993 57.662 3.989 57.504 3.962 C 57.49 3.96 57.477 3.953 57.468 3.942 C 57.458 3.931 57.453 3.917 57.453 3.903 C 57.445 3.066 57.44 2.23 57.437 1.396 C 57.436 1.279 57.492 1.232 57.604 1.256 Z M 58.713 2.401 C 59.097 2.366 59.17 1.852 58.728 1.784 C 58.634 1.769 58.416 1.769 58.075 1.784 C 58.059 1.784 58.044 1.791 58.033 1.802 C 58.022 1.814 58.016 1.829 58.016 1.845 L 58.016 2.344 C 58.016 2.359 58.023 2.375 58.034 2.386 C 58.045 2.398 58.06 2.404 58.076 2.405 C 58.4 2.412 58.612 2.41 58.713 2.401 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 53.297 1.873 C 53.491 1.883 53.665 1.912 53.82 1.96 C 54.02 2.052 54.198 2.176 54.354 2.332 C 54.576 2.584 54.743 2.869 54.855 3.186 C 54.936 3.533 54.984 3.885 54.998 4.241 L 54.967 4.578 L 54.947 5.067 L 54.723 6.719 L 54.647 7.224 L 54.586 7.499 L 54.555 7.714 L 53.826 11.826 L 53.759 12.346 L 53.714 12.651 C 53.624 13.206 53.578 13.764 53.574 14.324 L 53.502 14.887 C 53.488 14.991 53.426 15.033 53.317 15.012 L 53.073 15.001 C 53.058 15 53.044 14.994 53.034 14.984 C 53.023 14.974 53.016 14.96 53.015 14.945 L 53.006 14.863 L 52.974 14.644 C 52.956 14.007 52.888 13.364 52.77 12.715 C 52.775 12.634 52.766 12.559 52.742 12.491 C 52.648 11.782 52.53 11.082 52.389 10.39 L 52.307 9.931 L 51.852 7.344 L 51.789 6.949 L 51.534 4.823 L 51.529 4.578 L 51.531 3.786 C 51.57 3.433 51.672 3.082 51.836 2.733 C 52.021 2.419 52.276 2.173 52.6 1.995 C 52.836 1.891 53.068 1.85 53.297 1.873 Z\" fill=\"rgba(255, 255, 255, 0)\"></path><path d=\"M 25.119 17.647 C 29.014 17.647 32.172 14.481 32.172 10.576 C 32.172 6.67 29.014 3.505 25.119 3.505 C 21.223 3.505 18.065 6.67 18.065 10.576 C 18.065 14.481 21.223 17.647 25.119 17.647 Z\" fill=\"rgba(255, 255, 255, 0)\"></path><path d=\"M 0.128 7.607 L 0.117 7.27 C 0.112 6.734 0.109 6.199 0.109 5.665 C 0.109 5.248 0.201 4.528 0.699 4.518 C 1.515 4.502 2.332 4.498 3.15 4.507 C 3.464 4.51 3.589 4.661 3.524 4.958 C 3.351 5.75 3.272 6.551 3.287 7.361 C 3.31 8.634 3.419 9.899 3.615 11.156 C 3.736 11.933 3.929 12.691 4.193 13.43 C 4.274 13.654 4.407 13.842 4.594 13.994 C 4.602 13.999 4.61 14.004 4.62 14.006 C 4.629 14.008 4.638 14.007 4.648 14.005 C 5.041 13.907 5.404 13.178 5.535 12.831 C 6.091 11.375 6.289 9.72 6.353 8.172 L 6.383 7.759 C 6.423 7.002 6.392 6.249 6.291 5.499 C 6.256 5.237 6.248 4.996 6.244 4.745 C 6.242 4.607 6.309 4.531 6.447 4.515 C 6.706 4.484 7.53 4.483 8.918 4.51 L 9.132 4.626 C 9.267 4.801 9.161 4.927 9.135 5.09 C 9.061 5.553 9.023 6.02 9.023 6.49 L 8.997 7.071 C 8.966 7.813 8.955 8.374 8.964 8.754 C 9.003 10.366 9.354 11.905 10.018 13.37 C 10.071 13.488 10.304 13.987 10.515 13.932 C 10.71 13.881 11.012 13.268 11.07 13.113 C 11.95 10.759 12.094 8.075 11.737 5.643 C 11.695 5.356 11.544 4.918 11.713 4.639 C 11.788 4.553 11.883 4.506 12 4.499 C 12.548 4.512 13.096 4.505 13.644 4.476 C 14.254 4.444 14.628 4.527 14.629 5.232 C 14.633 6.495 14.623 7.332 14.598 7.744 C 14.523 8.987 14.342 10.214 14.054 11.426 C 13.919 11.996 13.693 12.87 13.472 13.476 C 12.792 15.348 11.616 17.063 10.205 18.456 C 9.61 19.042 8.63 17.092 8.451 16.725 C 8.084 15.972 7.692 15.23 7.275 14.502 C 7.271 14.494 7.264 14.486 7.256 14.481 C 7.247 14.476 7.238 14.473 7.229 14.472 C 7.219 14.471 7.209 14.472 7.2 14.475 C 7.191 14.479 7.183 14.484 7.177 14.492 C 7.115 14.562 7.06 14.638 7.012 14.72 C 6.344 15.876 5.716 17.069 4.897 18.128 C 4.411 18.755 3.994 18.53 3.585 18.002 C 1.223 14.959 0.364 11.397 0.128 7.607 Z M 49.963 6.245 L 49.948 6.551 C 49.946 8.079 49.779 9.589 49.444 11.079 C 49.126 12.498 48.782 13.735 48.147 14.919 C 47.534 16.062 46.791 17.113 45.92 18.072 C 45.797 18.207 45.643 18.354 45.457 18.513 C 45.309 18.607 45.163 18.602 45.02 18.497 C 43.985 17.57 43.604 16.302 42.901 15.053 C 42.795 14.865 42.687 14.679 42.578 14.493 C 42.542 14.432 42.507 14.433 42.472 14.495 C 42.448 14.54 42.419 14.582 42.387 14.622 C 42.327 14.697 42.285 14.756 42.261 14.8 C 41.689 15.869 41.066 16.906 40.391 17.912 C 40.23 18.152 40.015 18.364 39.748 18.547 C 39.432 18.467 39.169 18.316 38.957 18.093 C 38.915 18.048 38.741 17.81 38.436 17.38 C 37.366 15.871 36.606 14.133 36.146 12.338 C 35.774 10.886 35.549 9.492 35.472 8.157 C 35.434 7.504 35.426 6.545 35.448 5.282 L 35.525 4.93 C 35.7 4.347 36.381 4.478 36.976 4.499 L 37.502 4.498 C 37.84 4.489 38.181 4.498 38.526 4.526 C 38.838 4.552 38.921 4.755 38.838 5.029 C 38.776 5.24 38.732 5.437 38.707 5.622 C 38.546 6.815 38.58 7.988 38.687 9.195 C 38.776 10.209 38.929 11.214 39.147 12.21 C 39.261 12.734 39.443 13.552 39.833 13.937 C 39.902 14.005 39.977 14.013 40.059 13.964 C 40.946 13.427 41.341 11.24 41.463 10.345 C 41.703 8.587 41.772 6.642 41.545 5.048 C 41.527 4.92 41.536 4.793 41.57 4.669 C 41.601 4.557 41.672 4.501 41.783 4.501 L 43.903 4.501 C 44.029 4.501 44.157 4.513 44.285 4.538 C 44.449 4.569 44.515 4.668 44.481 4.837 C 44.414 5.161 44.375 5.487 44.363 5.817 C 44.326 6.374 44.304 6.932 44.298 7.49 C 44.294 7.856 44.242 8.468 44.302 8.968 C 44.343 10.402 44.643 11.776 45.203 13.088 C 45.382 13.508 45.458 13.736 45.769 13.953 C 45.78 13.961 45.793 13.965 45.806 13.964 C 45.82 13.963 45.833 13.958 45.843 13.95 C 46.226 13.625 46.474 12.93 46.615 12.459 C 47.165 10.63 47.265 8.791 47.178 6.842 C 47.151 6.248 47.041 5.627 46.962 5.018 C 46.9 4.546 47.131 4.498 47.534 4.504 C 48.001 4.51 48.466 4.501 48.93 4.476 C 49.471 4.447 49.868 4.477 49.94 5.085 C 49.959 5.25 49.967 5.637 49.963 6.245 Z\" fill=\"rgb(9,39,85)\"></path><path d=\"M 53.015 16.769 C 53.829 16.72 54.408 17.056 54.754 17.778 L 54.885 18.105 C 54.956 18.471 54.969 18.847 54.923 19.233 C 54.816 19.601 54.638 19.93 54.388 20.219 C 54.125 20.475 53.831 20.631 53.503 20.688 L 53.185 20.685 L 52.98 20.678 L 52.754 20.622 L 52.406 20.463 L 52.144 20.255 C 51.798 19.846 51.593 19.456 51.552 18.907 C 51.494 18.119 51.78 17.485 52.409 17.004 C 52.609 16.895 52.811 16.816 53.015 16.769 Z\" fill=\"rgba(255, 255, 255, 0)\"></path><path d=\"M 28.903 28.042 C 28.866 27.262 28.866 26.482 28.903 25.702 C 28.913 24.813 28.984 24.023 29.117 23.331 C 29.271 22.526 31.375 22.713 31.936 22.732 C 32.15 22.74 32.266 22.68 32.337 22.485 C 32.342 22.47 32.353 22.458 32.367 22.451 C 32.572 22.345 32.79 22.294 33.021 22.297 C 33.035 22.298 33.048 22.294 33.059 22.286 C 33.07 22.278 33.078 22.266 33.081 22.253 C 33.217 21.776 33.502 21.418 33.935 21.18 C 33.944 21.174 33.955 21.172 33.966 21.172 C 33.976 21.173 33.987 21.176 33.996 21.181 C 34.393 21.422 34.667 21.762 34.817 22.203 C 34.844 22.28 34.897 22.316 34.977 22.309 C 35.151 22.294 35.32 22.314 35.484 22.37 C 35.494 22.374 35.503 22.379 35.51 22.387 C 35.516 22.395 35.521 22.404 35.524 22.414 C 35.55 22.522 35.599 22.618 35.673 22.701 C 35.681 22.71 35.692 22.717 35.705 22.72 C 36.23 22.844 36.823 22.748 37.354 22.699 C 38.111 22.63 38.898 22.668 38.908 23.641 C 38.917 24.69 38.918 25.739 38.912 26.788 C 38.904 28.082 38.763 30.238 36.795 29.727 C 36.387 29.621 35.664 29.081 35.999 28.609 C 36.347 28.119 37.088 28.208 37.325 27.654 C 37.679 26.821 37.57 25.882 37.231 25.11 C 37.011 24.609 36.48 24.008 35.89 24.12 C 35.044 24.28 34.761 25.267 34.746 25.997 C 34.733 26.672 34.742 27.347 34.774 28.022 C 34.819 28.944 34.862 30.622 33.887 31.142 C 33.88 31.146 33.872 31.148 33.864 31.149 C 33.855 31.15 33.847 31.149 33.839 31.146 C 32.639 30.739 32.954 28.082 33.009 27.144 C 33.064 26.232 33.131 24.369 31.912 24.127 C 31.496 24.045 30.894 24.581 30.696 24.881 C 30.64 24.967 30.616 25.082 30.624 25.228 C 30.68 26.209 30.697 26.994 30.674 27.583 C 30.645 28.306 30.469 29.035 30.027 29.614 C 29.867 29.826 29.7 29.796 29.543 29.607 C 29.145 29.127 28.932 28.605 28.903 28.042 Z M 14.291 25.717 L 14.285 26.078 C 14.255 26.34 14.247 26.597 14.261 26.849 C 14.235 27.422 14.219 27.997 14.212 28.572 C 14.209 28.853 14.122 29.06 13.926 29.236 C 13.21 29.879 12.454 29.941 11.656 29.424 C 11.29 29.186 11.21 28.893 11.416 28.543 C 11.566 28.288 11.85 28.212 12.124 28.169 C 12.171 28.162 12.288 28.093 12.473 27.963 C 13.099 27.409 12.951 26.187 12.736 25.486 C 12.536 24.831 11.921 23.815 11.063 24.198 C 10.472 24.461 10.234 25.109 10.172 25.717 C 10.032 27.089 10.223 28.372 10.047 29.669 C 9.979 30.178 9.786 30.896 9.276 31.14 C 9.263 31.146 9.248 31.148 9.234 31.144 C 8.306 30.897 8.339 29.509 8.323 28.771 L 8.382 26.788 L 8.372 26.457 C 8.393 26.016 8.357 25.586 8.263 25.166 C 8.114 24.498 7.484 23.769 6.748 24.292 C 6.039 24.796 5.902 25.488 6.051 26.314 C 6.265 27.498 6.281 28.673 5.459 29.592 C 5.297 29.773 5.174 29.814 4.98 29.646 C 4.327 29.082 4.243 28.15 4.252 27.32 C 4.263 26.19 4.335 25.064 4.467 23.941 C 4.508 23.587 4.522 23.323 4.704 23.001 C 4.831 22.897 4.975 22.818 5.137 22.762 C 5.428 22.724 5.621 22.713 5.715 22.731 C 6.204 22.818 6.696 22.848 7.191 22.822 C 7.535 22.803 7.587 22.586 7.774 22.372 C 7.784 22.36 7.798 22.353 7.814 22.352 L 8.422 22.295 C 8.434 22.294 8.446 22.289 8.455 22.281 C 8.465 22.273 8.472 22.262 8.475 22.25 C 8.585 21.826 8.818 21.485 9.172 21.227 C 9.185 21.218 9.201 21.214 9.216 21.216 L 9.582 21.262 C 9.591 21.263 9.6 21.266 9.608 21.271 C 9.615 21.275 9.622 21.282 9.627 21.29 L 10.239 22.274 C 10.246 22.285 10.256 22.293 10.268 22.298 C 10.279 22.303 10.293 22.304 10.305 22.302 C 10.601 22.234 10.765 22.374 10.984 22.607 C 11.128 22.761 11.261 22.77 11.455 22.774 C 11.911 22.784 12.409 22.757 12.95 22.693 C 13.525 22.626 14.203 22.758 14.307 23.421 C 14.418 24.135 14.315 24.994 14.291 25.717 Z M 20.303 22.337 C 20.408 22.268 20.481 22.175 20.522 22.059 C 20.711 21.815 20.848 21.47 21.082 21.233 C 21.089 21.226 21.097 21.221 21.107 21.218 C 21.117 21.215 21.127 21.214 21.137 21.216 L 21.377 21.265 C 21.39 21.268 21.401 21.274 21.41 21.283 C 21.468 21.343 21.526 21.402 21.585 21.46 C 21.866 21.734 21.958 22.163 22.247 22.409 C 22.925 22.984 24.214 22.258 24.669 23.188 C 24.998 23.86 24.544 24.697 25.19 25.204 C 25.473 25.426 25.772 25.622 26.089 25.793 C 26.102 25.8 26.112 25.811 26.117 25.825 C 26.39 26.541 25.383 26.588 25.023 27.025 C 24.524 27.629 24.874 28.469 24.521 29.118 C 24.336 29.458 24.028 29.644 23.63 29.639 C 23.192 29.633 22.815 29.661 22.499 29.723 C 21.778 29.865 22.021 30.83 21.274 31.008 C 20.747 31.134 20.454 30.395 20.337 30.04 C 20.289 29.893 20.189 29.811 20.04 29.793 C 19.267 29.7 17.922 29.533 17.683 28.596 C 17.545 28.057 17.941 27.48 17.47 27.028 C 17.216 26.784 16.802 26.801 16.551 26.574 C 16.347 26.389 16.374 26.229 16.309 25.991 C 16.285 25.9 16.309 25.826 16.383 25.768 C 16.902 25.36 17.592 24.937 17.691 24.218 C 17.772 23.639 17.78 22.582 18.603 22.557 C 18.928 22.547 19.334 22.544 19.823 22.55 C 19.98 22.551 20.14 22.48 20.303 22.337 Z M 19.595 27.633 C 20.38 28.288 21.332 28.1 22.392 27.978 C 23.304 27.874 23.36 26.101 23.268 25.461 C 23.155 24.667 22.84 24.179 22.024 24.068 C 21.445 23.989 20.82 23.937 20.295 24.112 C 19.815 24.271 19.4 24.398 19.188 24.903 C 18.814 25.799 18.799 26.967 19.595 27.633 Z M 50.769 25.918 C 50.922 26.145 50.628 26.346 50.458 26.495 C 50.007 26.708 49.642 26.836 49.452 27.345 C 49.251 27.88 49.458 28.491 49.204 29.017 C 48.611 30.247 47.225 29.157 46.718 29.963 C 46.705 29.983 46.661 30.107 46.586 30.334 C 46.491 30.62 46.308 30.846 46.037 31.009 C 45.598 31.164 45.329 30.828 45.157 30.459 C 45.084 30.246 44.972 30.049 44.822 29.87 C 44.813 29.858 44.8 29.851 44.785 29.848 C 44.19 29.749 43.66 29.763 43.113 29.476 C 42.566 29.19 42.456 28.799 42.386 28.163 C 42.346 27.803 42.3 27.446 42.246 27.089 C 42.244 27.077 42.239 27.066 42.231 27.057 C 42.222 27.048 42.212 27.042 42.2 27.039 C 41.554 26.884 40.867 26.666 40.92 25.855 C 40.922 25.84 40.928 25.826 40.939 25.816 C 41.271 25.489 41.78 25.191 42.013 24.895 C 42.377 24.436 42.323 23.868 42.434 23.286 C 42.694 21.911 44.477 23.2 45.142 22.068 C 45.308 21.787 45.482 21.511 45.666 21.242 C 45.672 21.233 45.68 21.226 45.69 21.222 C 45.7 21.217 45.71 21.215 45.721 21.216 C 46.571 21.276 46.301 22.403 47.265 22.576 C 47.895 22.689 49.142 22.384 49.308 23.342 C 49.371 23.704 49.412 24.067 49.432 24.432 C 49.462 24.966 49.696 25.158 50.153 25.449 C 50.372 25.588 50.577 25.745 50.769 25.918 Z M 44.122 27.547 C 44.815 28.252 45.793 28.087 46.661 28.037 C 46.928 28.022 47.109 27.994 47.204 27.952 C 47.951 27.625 47.986 25.905 47.872 25.239 C 47.74 24.475 47.153 24.129 46.436 24.05 C 45.912 23.992 45.397 23.951 44.905 24.112 C 44.406 24.275 43.95 24.435 43.765 24.982 C 43.463 25.878 43.416 26.829 44.122 27.547 Z\" fill=\"rgb(9,39,85)\"></path></svg>',svgContentId:9353415171,withExternalLayout:true})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MgVBs.framer-1yrex1q, .framer-MgVBs .framer-1yrex1q { display: block; }\",\".framer-MgVBs.framer-1pama2j { height: 44px; overflow: hidden; position: relative; width: 1240px; }\",\".framer-MgVBs .framer-182rguj-container, .framer-MgVBs .framer-bb6a7s, .framer-MgVBs .framer-vf4o30, .framer-MgVBs .framer-71k6dq, .framer-MgVBs .framer-1k977b, .framer-MgVBs .framer-hhg33b, .framer-MgVBs .framer-vsqa81, .framer-MgVBs .framer-1xv0e9l, .framer-MgVBs .framer-1y7jbcu, .framer-MgVBs .framer-6j2exz { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-MgVBs .framer-1pwrdvl { height: 31px; overflow: hidden; position: relative; width: 137px; }\",\".framer-MgVBs .framer-1994pj5 { aspect-ratio: 4.434782608695652 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-MgVBs .framer-2dd9gi { height: 32px; overflow: hidden; position: relative; width: 59px; }\",\".framer-MgVBs .framer-1xsvwvh { height: 32px; overflow: hidden; position: relative; width: 130px; }\",\".framer-MgVBs .framer-1gkm682 { height: 31px; overflow: hidden; position: relative; width: 71px; }\",\".framer-MgVBs .framer-26hi0e { flex: none; height: 31px; left: calc(49.29577464788735% - 71px / 2); position: absolute; top: calc(48.38709677419357% - 31px / 2); width: 71px; }\",\".framer-MgVBs .framer-oezz7f { height: 32px; overflow: hidden; position: relative; width: 103px; }\",\".framer-MgVBs .framer-12qtqbk { height: 23px; overflow: hidden; position: relative; width: 65px; }\",\".framer-MgVBs .framer-1rk1q6a { height: 32px; overflow: hidden; position: relative; width: 34px; }\",\".framer-MgVBs .framer-16t15sm { height: 32px; overflow: hidden; position: relative; width: 44px; }\",\".framer-MgVBs .framer-1dsli9r { aspect-ratio: 2.9411764705882355 / 1; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 91px; }\",\".framer-MgVBs .framer-bxjiky { height: 32px; overflow: hidden; position: relative; width: 125px; }\",\".framer-MgVBs .framer-h5gxdp { height: 32px; overflow: hidden; position: relative; width: 129px; }\",\".framer-MgVBs .framer-142r0ry { height: 32px; overflow: hidden; position: relative; width: 83px; }\",\".framer-MgVBs .framer-xyq04b, .framer-MgVBs .framer-1xquon9 { height: 31px; overflow: hidden; position: relative; width: 49px; }\",\".framer-MgVBs .framer-1fgfh4r, .framer-MgVBs .framer-2bvdte { aspect-ratio: 1.5873015873015872 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-MgVBs .framer-1vji2ap { height: 31px; overflow: hidden; position: relative; width: 38px; }\",\".framer-MgVBs .framer-10wb5i2 { aspect-ratio: 1.2328042328042328 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-MgVBs .framer-1lxa2zh { height: 32px; position: relative; width: 62px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 1240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOADI56Kmb=withCSS(Component,css,\"framer-MgVBs\");export default FramerOADI56Kmb;FramerOADI56Kmb.displayName=\"New Logo\";FramerOADI56Kmb.defaultProps={height:44,width:1240};addFonts(FramerOADI56Kmb,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOADI56Kmb\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"44\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OADI56Kmb.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", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "SVG", "Image2", "css", "FramerOADI56Kmb", "withCSS", "OADI56Kmb_default", "addFonts", "TickerFonts"]
}
