{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/5hwSRFxV0XH7mOeR3v4n/Ticker.js", "ssg:https://framerusercontent.com/modules/bg1GYXJpGRJh2EfKZZFA/LTm9hYhhyebzYjeudLxO/jzRtNNs7S.js", "ssg:https://framerusercontent.com/modules/kT2zpzjbQQwXAMEceHAX/HIQ3Ero5lAVWGZJUExHA/ab0QIGND1.js", "ssg:https://framerusercontent.com/modules/xjDaCJnRovc4xBIfUvC3/9KZeroRc6CfXyQ3TN2tB/rxmZz1Neg.js", "ssg:https://framerusercontent.com/modules/xmlzcwWwfm4Cf4QuaAuH/3khOeWxrMc2PgHkpbx3c/B0_rAZ1Jt.js", "ssg:https://framerusercontent.com/modules/erCsAN40Ho73oV7Jnp1b/bJ6nygROX15X0ANhFLna/o9rTAVTRD.js", "ssg:https://framerusercontent.com/modules/pfNt2lBabUwOqAjzBRlH/7yERiSy16SBdxPZJjv6e/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"QU_ZfdjYM\",\"Sf8W4_P8q\"];const serializationHash=\"framer-8xQc9\";const variantClassNames={QU_ZfdjYM:\"framer-v-1iv2kv5\",Sf8W4_P8q:\"framer-v-1ilm7ot\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:.1,mass:1.4,stiffness:650,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"QU_ZfdjYM\",\"Variant 2\":\"Sf8W4_P8q\"};const getProps=({click,height,id,width,...props})=>{return{...props,pxRqs5Y0c:click??props.pxRqs5Y0c,variant:humanReadableVariantMap[props.variant]??props.variant??\"QU_ZfdjYM\"};};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,pxRqs5Y0c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QU_ZfdjYM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaprjojqg=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(pxRqs5Y0c){const res=await pxRqs5Y0c(...args);if(res===false)return false;}});const onTap2fzb4g=activeVariantCallback(async(...args)=>{setVariant(\"Sf8W4_P8q\");});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1iv2kv5\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QU_ZfdjYM\",onTap:onTaprjojqg,ref:refBinding,style:{...style},...addPropertyOverrides({Sf8W4_P8q:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wowl35\",\"data-framer-name\":\"New\",layoutDependency:layoutDependency,layoutId:\"XVn6lv6zx\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(66, 0, 255)\",borderBottomLeftRadius:20,borderTopLeftRadius:20},variants:{Sf8W4_P8q:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(217, 217, 217)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({Sf8W4_P8q:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Brands\"})})}),className:\"framer-sukq58\",\"data-framer-name\":\"Brands\",fonts:[\"GF;Be Vietnam Pro-500\"],layoutDependency:layoutDependency,layoutId:\"mcIsc2lZ1\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{Sf8W4_P8q:{\"--extracted-r6o4lv\":\"var(--token-fe1c61f0-f949-4f9d-bdb7-65a803e032b7, rgb(66, 0, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Sf8W4_P8q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe1c61f0-f949-4f9d-bdb7-65a803e032b7, rgb(66, 0, 255)))\"},children:\"Brands\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sih3xk\",\"data-border\":true,\"data-framer-name\":\"Frame 1000011586\",layoutDependency:layoutDependency,layoutId:\"vzqy3Hnav\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(217, 217, 217)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomRightRadius:20,borderTopRightRadius:20},variants:{Sf8W4_P8q:{\"--border-bottom-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-fe1c61f0-f949-4f9d-bdb7-65a803e032b7, rgb(66, 0, 255))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(66, 0, 255, 1))\"},children:\"Freelancers\"})})}),className:\"framer-19rw4i6\",\"data-framer-name\":\"Freelancers\",\"data-highlight\":true,fonts:[\"GF;Be Vietnam Pro-500\"],layoutDependency:layoutDependency,layoutId:\"cdr6sr4oj\",onTap:onTap2fzb4g,style:{\"--extracted-1w3ko1f\":\"rgba(66, 0, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{Sf8W4_P8q:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Sf8W4_P8q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Freelancers\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8xQc9.framer-f0vxrq, .framer-8xQc9 .framer-f0vxrq { display: block; }\",\".framer-8xQc9.framer-1iv2kv5 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: min-content; }\",\".framer-8xQc9 .framer-wowl35 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 20px 5px 20px; position: relative; width: min-content; z-index: 2; }\",\".framer-8xQc9 .framer-sukq58 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8xQc9 .framer-1sih3xk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 5px 20px 5px 20px; position: relative; width: min-content; z-index: 1; }\",\".framer-8xQc9 .framer-19rw4i6 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8xQc9.framer-1iv2kv5, .framer-8xQc9 .framer-wowl35, .framer-8xQc9 .framer-1sih3xk { gap: 0px; } .framer-8xQc9.framer-1iv2kv5 > *, .framer-8xQc9 .framer-wowl35 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8xQc9.framer-1iv2kv5 > :first-child, .framer-8xQc9 .framer-wowl35 > :first-child, .framer-8xQc9 .framer-1sih3xk > :first-child { margin-left: 0px; } .framer-8xQc9.framer-1iv2kv5 > :last-child, .framer-8xQc9 .framer-wowl35 > :last-child, .framer-8xQc9 .framer-1sih3xk > :last-child { margin-right: 0px; } .framer-8xQc9 .framer-1sih3xk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-8xQc9.framer-v-1ilm7ot .framer-sukq58 { order: 0; z-index: 1; }\",\".framer-8xQc9.framer-v-1ilm7ot .framer-1sih3xk { z-index: 2; }\",'.framer-8xQc9[data-border=\"true\"]::after, .framer-8xQc9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 185\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Sf8W4_P8q\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pxRqs5Y0c\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjzRtNNs7S=withCSS(Component,css,\"framer-8xQc9\");export default FramerjzRtNNs7S;FramerjzRtNNs7S.displayName=\"tab change\";FramerjzRtNNs7S.defaultProps={height:38,width:185};addPropertyControls(FramerjzRtNNs7S,{variant:{options:[\"QU_ZfdjYM\",\"Sf8W4_P8q\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},pxRqs5Y0c:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerjzRtNNs7S,[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjzRtNNs7S\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Sf8W4_P8q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"38\",\"framerVariables\":\"{\\\"pxRqs5Y0c\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"185\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jzRtNNs7S.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jsUrKpGbDB1UbVwbJ0Pl/brLHIatoSR6deU7bqf0T/D8yOkc5r2.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/Sanfh35cEMUiIvQTPnTz/sltQODWkNWbCRP3yy7qh/ybtYqU_Wg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/EI8bbjItISmHRYXqIS5x/2VsrY1hjWHfghy3FGOBi/yebpNQ4eu.js\";import TabChange from\"https://framerusercontent.com/modules/bg1GYXJpGRJh2EfKZZFA/LTm9hYhhyebzYjeudLxO/jzRtNNs7S.js\";const TabChangeFonts=getFonts(TabChange);const cycleOrder=[\"T__SJdtL0\",\"xFIzoZL31\"];const serializationHash=\"framer-pRW1s\";const variantClassNames={T__SJdtL0:\"framer-v-filnwt\",xFIzoZL31:\"framer-v-166qf3j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const negate=value=>{return!value;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"column\";}else{return\"row\";}};const convertFromBoolean1=(value,activeLocale)=>{if(value){return\"flex-start\";}else{return\"flex-start\";}};const convertFromBoolean2=(value,activeLocale)=>{if(value){return 12;}else{return 32;}};const toNumber=value=>{if(typeof value===\"number\"&&Number.isFinite(value))return value;if(typeof value!==\"string\")return 0;const parsedNumber=parseFloat(value);return typeof parsedNumber===\"number\"&&Number.isFinite(parsedNumber)?parsedNumber:0;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Brands:\"T__SJdtL0\",Freelancers:\"xFIzoZL31\"};const getProps=({height,id,mobile,width,...props})=>{return{...props,OezcbaZkP:mobile??props.OezcbaZkP,variant:humanReadableVariantMap[props.variant]??props.variant??\"T__SJdtL0\"};};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,OezcbaZkP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T__SJdtL0\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const pxRqs5Y0c1p3xq54=activeVariantCallback(async(...args)=>{setVariant(\"xFIzoZL31\");});const pxRqs5Y0ccjw311=activeVariantCallback(async(...args)=>{setVariant(\"T__SJdtL0\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(OezcbaZkP);const stackDirection=convertFromBoolean(OezcbaZkP,activeLocale);const stackAlignment=convertFromBoolean1(OezcbaZkP,activeLocale);const gap=toNumber(convertFromBoolean2(OezcbaZkP,activeLocale));return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-filnwt\",className,classNames),\"data-framer-name\":\"Brands\",layoutDependency:layoutDependency,layoutId:\"T__SJdtL0\",ref:refBinding,style:{...style},...addPropertyOverrides({xFIzoZL31:{\"data-framer-name\":\"Freelancers\"}},baseVariant,gestureVariant),children:[visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-smbngc\",\"data-framer-name\":\"left\",layoutDependency:layoutDependency,layoutId:\"F2AsXvLAJ\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||449)-0-449)/2)+0),pixelHeight:449,pixelWidth:530,positionX:\"center\",positionY:\"center\",sizes:\"530px\",src:\"https://framerusercontent.com/images/8x2jMq5VYjFQSwH8EXyOutu9o.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/8x2jMq5VYjFQSwH8EXyOutu9o.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/8x2jMq5VYjFQSwH8EXyOutu9o.png?lossless=1 530w\"},className:\"framer-mz5x58\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"S_uF00Eml\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a5z5b5\",\"data-framer-name\":\"right\",layoutDependency:layoutDependency,layoutId:\"ceexzF32C\",children:[OezcbaZkP&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-flriah\",\"data-framer-name\":\"imgwrapper\",layoutDependency:layoutDependency,layoutId:\"aXO4r4Xej\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:449,pixelWidth:530,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/8x2jMq5VYjFQSwH8EXyOutu9o.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/8x2jMq5VYjFQSwH8EXyOutu9o.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/8x2jMq5VYjFQSwH8EXyOutu9o.png?lossless=1 530w\"},className:\"framer-cvn75r\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"NOUg4dsmC\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ie8f14-container\",layoutDependency:layoutDependency,layoutId:\"ytmsS9Zkv-container\",nodeId:\"ytmsS9Zkv\",rendersWithMotion:true,scopeId:\"ab0QIGND1\",children:/*#__PURE__*/_jsx(TabChange,{height:\"100%\",id:\"ytmsS9Zkv\",layoutId:\"ytmsS9Zkv\",pxRqs5Y0c:pxRqs5Y0c1p3xq54,variant:\"QU_ZfdjYM\",width:\"100%\",...addPropertyOverrides({xFIzoZL31:{pxRqs5Y0c:pxRqs5Y0ccjw311,variant:\"Sf8W4_P8q\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nydvo0\",\"data-framer-name\":\"content\",layoutDependency:layoutDependency,layoutId:\"XqhSHfBrv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-104id0w\",\"data-styles-preset\":\"yebpNQ4eu\",children:\"About Expert Right\"})}),className:\"framer-1cplawj\",\"data-framer-name\":\"About Expert Right\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nIi_HLEWn\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({xFIzoZL31:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-104id0w\",\"data-styles-preset\":\"yebpNQ4eu\",children:\"About Freelancers\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-h4vq79\",\"data-styles-preset\":\"D8yOkc5r2\",children:\"Expertright speeds up outsourcing for startups and enterprises by managing the entire process, from freelancer/agency selection to project management and delivery. The idea is to empower managers and POCs with guidance and process setup for outsourcing.\"})}),className:\"framer-11hucj\",\"data-framer-name\":\"ExpertRight simplifies outsourcing for large enterprises by managing the entire process, from talent vetting to project delivery. Our mission is to empower businesses with efficient, quality-driven solutions that streamline operations and cut costs.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aIEFJrsck\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wm26oz\",\"data-framer-name\":\"bullet points\",layoutDependency:layoutDependency,layoutId:\"THjSRFW4k\",style:{\"--1dp6oge\":stackDirection,\"--1e7ln2p\":stackAlignment,\"--1nrru1d\":stackDirection===\"row\"?0:\"calc(calc(max(0, var(--rmohyg)) * 1px) / 2)\",\"--kcos4w\":stackDirection===\"column\"?0:\"calc(calc(max(0, var(--rmohyg)) * 1px) / 2)\",\"--rmohyg\":gap},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k5jlj4\",\"data-framer-name\":\"left container\",layoutDependency:layoutDependency,layoutId:\"YyglsxKsC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b8umdm\",\"data-framer-name\":\"one\",layoutDependency:layoutDependency,layoutId:\"wr4v4MjJH\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:90,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KTVAv0eYVoQIQFyipMld8VBh8s.png\"},className:\"framer-1n12rpv\",\"data-framer-name\":\"Check Mark\",layoutDependency:layoutDependency,layoutId:\"c3Imby3nr\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",children:\"Comprehensive Vetting\"})}),className:\"framer-6rsrij\",\"data-framer-name\":\"Comprehensive Vetting\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aIS6kApuh\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x3he2c\",\"data-framer-name\":\"two\",layoutDependency:layoutDependency,layoutId:\"QTVFnRM5t\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:90,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KTVAv0eYVoQIQFyipMld8VBh8s.png\"},className:\"framer-ybjq9v\",\"data-framer-name\":\"Check Mark\",layoutDependency:layoutDependency,layoutId:\"Ll0wnqyrC\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",children:\"Transparent Financials\"})}),className:\"framer-6khj7\",\"data-framer-name\":\"Transparent Financials\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HfwkIJqyb\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ohj84a\",\"data-framer-name\":\"right container\",layoutDependency:layoutDependency,layoutId:\"UEJlAUnNz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bp6mxm\",\"data-framer-name\":\"three\",layoutDependency:layoutDependency,layoutId:\"h4IkGX_Cu\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:90,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KTVAv0eYVoQIQFyipMld8VBh8s.png\"},className:\"framer-dt29zh\",\"data-framer-name\":\"Check Mark\",layoutDependency:layoutDependency,layoutId:\"O8c_8F2cL\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",children:\"Managed Services\"})}),className:\"framer-1dse6hb\",\"data-framer-name\":\"Managed Services\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zczJqhV9t\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hdqpay\",\"data-framer-name\":\"four\",layoutDependency:layoutDependency,layoutId:\"PRzVtRQwI\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:90,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KTVAv0eYVoQIQFyipMld8VBh8s.png\"},className:\"framer-yheyix\",\"data-framer-name\":\"Check Mark\",layoutDependency:layoutDependency,layoutId:\"qx0jpbtDx\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",children:\"Commitment to Excellence\"})}),className:\"framer-1py81hi\",\"data-framer-name\":\"Commitment to Excellence\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Fx9szk1XL\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CzJhHvdTS\"},motionChild:true,nodeId:\"U8Vvjuba0\",scopeId:\"ab0QIGND1\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-r1ubpv framer-15l38un\",\"data-framer-name\":\"learn more\",layoutDependency:layoutDependency,layoutId:\"U8Vvjuba0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbS1yZWd1bGFy\",\"--framer-font-family\":'\"Be Vietnam\", \"Be Vietnam Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(66, 0, 255))\"},children:\"Learn More About Us\"})}),className:\"framer-44ly5k\",\"data-framer-name\":\"Learn More About Us\",fonts:[\"GF;Be Vietnam-regular\"],layoutDependency:layoutDependency,layoutId:\"l42LMQ7aa\",style:{\"--extracted-r6o4lv\":\"rgb(66, 0, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11po93b\",\"data-framer-name\":\"cta\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:11,layoutDependency:layoutDependency,layoutId:\"kj1a7Su2m\",svg:'<svg width=\"11\" height=\"10\" viewBox=\"0 0 11 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.46967 8.71235C0.176777 9.00524 0.176777 9.48011 0.46967 9.77301C0.762563 10.0659 1.23744 10.0659 1.53033 9.77301L0.46967 8.71235ZM10.2353 0.757395C10.2353 0.343181 9.89949 0.0073947 9.48528 0.00739485L2.73528 0.00739443C2.32107 0.00739443 1.98528 0.343181 1.98528 0.757395C1.98528 1.17161 2.32107 1.50739 2.73528 1.50739H8.73528V7.50739C8.73528 7.92161 9.07107 8.25739 9.48528 8.25739C9.8995 8.25739 10.2353 7.92161 10.2353 7.50739L10.2353 0.757395ZM1.53033 9.77301L10.0156 1.28772L8.95495 0.227064L0.46967 8.71235L1.53033 9.77301Z\" fill=\"#4200FF\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pRW1s.framer-15l38un, .framer-pRW1s .framer-15l38un { display: block; }\",\".framer-pRW1s.framer-filnwt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1438px; }\",\".framer-pRW1s .framer-smbngc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-pRW1s .framer-mz5x58 { flex: none; height: 449px; position: relative; width: 530px; }\",\".framer-pRW1s .framer-a5z5b5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-pRW1s .framer-flriah { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-pRW1s .framer-cvn75r { aspect-ratio: 1.1804008908685968 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 169px); position: relative; width: 1px; }\",\".framer-pRW1s .framer-ie8f14-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-pRW1s .framer-1nydvo0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 540px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pRW1s .framer-1cplawj, .framer-pRW1s .framer-11hucj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pRW1s .framer-1wm26oz { align-content: var(--1e7ln2p); align-items: var(--1e7ln2p); display: flex; flex: none; flex-direction: var(--1dp6oge); flex-wrap: nowrap; gap: calc(max(0, var(--rmohyg)) * 1px); height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-pRW1s .framer-k5jlj4, .framer-pRW1s .framer-ohj84a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-pRW1s .framer-1b8umdm, .framer-pRW1s .framer-x3he2c, .framer-pRW1s .framer-1bp6mxm, .framer-pRW1s .framer-hdqpay { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pRW1s .framer-1n12rpv, .framer-pRW1s .framer-ybjq9v, .framer-pRW1s .framer-dt29zh, .framer-pRW1s .framer-yheyix { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-pRW1s .framer-6rsrij, .framer-pRW1s .framer-6khj7, .framer-pRW1s .framer-1dse6hb, .framer-pRW1s .framer-1py81hi, .framer-pRW1s .framer-44ly5k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pRW1s .framer-r1ubpv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 172px; }\",\".framer-pRW1s .framer-11po93b { flex: none; height: 10px; position: relative; width: 11px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pRW1s.framer-filnwt, .framer-pRW1s .framer-smbngc, .framer-pRW1s .framer-a5z5b5, .framer-pRW1s .framer-flriah, .framer-pRW1s .framer-1nydvo0, .framer-pRW1s .framer-1wm26oz, .framer-pRW1s .framer-k5jlj4, .framer-pRW1s .framer-1b8umdm, .framer-pRW1s .framer-x3he2c, .framer-pRW1s .framer-ohj84a, .framer-pRW1s .framer-1bp6mxm, .framer-pRW1s .framer-hdqpay, .framer-pRW1s .framer-r1ubpv { gap: 0px; } .framer-pRW1s.framer-filnwt > *, .framer-pRW1s .framer-smbngc > *, .framer-pRW1s .framer-flriah > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pRW1s.framer-filnwt > :first-child, .framer-pRW1s .framer-smbngc > :first-child, .framer-pRW1s .framer-flriah > :first-child, .framer-pRW1s .framer-1b8umdm > :first-child, .framer-pRW1s .framer-x3he2c > :first-child, .framer-pRW1s .framer-1bp6mxm > :first-child, .framer-pRW1s .framer-hdqpay > :first-child, .framer-pRW1s .framer-r1ubpv > :first-child { margin-left: 0px; } .framer-pRW1s.framer-filnwt > :last-child, .framer-pRW1s .framer-smbngc > :last-child, .framer-pRW1s .framer-flriah > :last-child, .framer-pRW1s .framer-1b8umdm > :last-child, .framer-pRW1s .framer-x3he2c > :last-child, .framer-pRW1s .framer-1bp6mxm > :last-child, .framer-pRW1s .framer-hdqpay > :last-child, .framer-pRW1s .framer-r1ubpv > :last-child { margin-right: 0px; } .framer-pRW1s .framer-a5z5b5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pRW1s .framer-a5z5b5 > :first-child, .framer-pRW1s .framer-1nydvo0 > :first-child, .framer-pRW1s .framer-k5jlj4 > :first-child, .framer-pRW1s .framer-ohj84a > :first-child { margin-top: 0px; } .framer-pRW1s .framer-a5z5b5 > :last-child, .framer-pRW1s .framer-1nydvo0 > :last-child, .framer-pRW1s .framer-k5jlj4 > :last-child, .framer-pRW1s .framer-ohj84a > :last-child { margin-bottom: 0px; } .framer-pRW1s .framer-1nydvo0 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-pRW1s .framer-1wm26oz > * { margin-bottom: var(--1nrru1d); margin-left: var(--kcos4w); margin-right: var(--kcos4w); margin-top: var(--1nrru1d); } .framer-pRW1s .framer-1wm26oz > :first-child { margin-left: 0px; margin-top: 0px; } .framer-pRW1s .framer-1wm26oz > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-pRW1s .framer-k5jlj4 > *, .framer-pRW1s .framer-ohj84a > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-pRW1s .framer-1b8umdm > *, .framer-pRW1s .framer-x3he2c > *, .framer-pRW1s .framer-1bp6mxm > *, .framer-pRW1s .framer-hdqpay > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-pRW1s .framer-r1ubpv > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 449\n * @framerIntrinsicWidth 1438\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xFIzoZL31\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OezcbaZkP\":\"mobile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerab0QIGND1=withCSS(Component,css,\"framer-pRW1s\");export default Framerab0QIGND1;Framerab0QIGND1.displayName=\"Tabs\";Framerab0QIGND1.defaultProps={height:449,width:1438};addPropertyControls(Framerab0QIGND1,{variant:{options:[\"T__SJdtL0\",\"xFIzoZL31\"],optionTitles:[\"Brands\",\"Freelancers\"],title:\"Variant\",type:ControlType.Enum},OezcbaZkP:{defaultValue:false,title:\"Mobile\",type:ControlType.Boolean}});addFonts(Framerab0QIGND1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TabChangeFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerab0QIGND1\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1438\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"449\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"OezcbaZkP\\\":\\\"mobile\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xFIzoZL31\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ab0QIGND1.map", "// Generated by Framer (1e08357)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"YDTJwI0Dy\",\"aJVtbZiww\"];const serializationHash=\"framer-lY3ka\";const variantClassNames={aJVtbZiww:\"framer-v-hdnk7p\",YDTJwI0Dy:\"framer-v-kroai7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Toogle Blue\":\"YDTJwI0Dy\",\"Toogle Red\":\"aJVtbZiww\"};const getProps=({click8,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,PqU5FbjCl:click8!==null&&click8!==void 0?click8:props.PqU5FbjCl,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"YDTJwI0Dy\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PqU5FbjCl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YDTJwI0Dy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1e6m5j3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PqU5FbjCl){const res=await PqU5FbjCl(...args);if(res===false)return false;}setVariant(\"aJVtbZiww\");});const onTap1mf0tle=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PqU5FbjCl){const res=await PqU5FbjCl(...args);if(res===false)return false;}setVariant(\"YDTJwI0Dy\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-kroai7\",className,classNames),\"data-framer-name\":\"Toogle Blue\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YDTJwI0Dy\",onTap:onTap1e6m5j3,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(66, 0, 255)\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,...style},variants:{aJVtbZiww:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27}},...addPropertyOverrides({aJVtbZiww:{\"data-framer-name\":\"Toogle Red\",onTap:onTap1mf0tle}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qsf0ou\",\"data-framer-name\":\"Handle\",layoutDependency:layoutDependency,layoutId:\"TU3vW2wOG\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -0.6666666666666666px rgba(0, 0, 0, 0.06593), 0px 2.288533303243457px 2.288533303243457px -1.3333333333333333px rgba(0, 0, 0, 0.07132), 0px 10px 10px -2px rgba(0, 0, 0, 0.096)\"}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lY3ka.framer-1s6nbau, .framer-lY3ka .framer-1s6nbau { display: block; }\",\".framer-lY3ka.framer-kroai7 { cursor: pointer; height: 53px; overflow: hidden; position: relative; width: 89px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lY3ka .framer-qsf0ou { bottom: 6px; flex: none; left: 6px; overflow: hidden; position: absolute; top: 6px; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lY3ka.framer-v-hdnk7p .framer-qsf0ou { left: 39px; right: 8px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 89\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"aJVtbZiww\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"PqU5FbjCl\":\"click8\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrxmZz1Neg=withCSS(Component,css,\"framer-lY3ka\");export default FramerrxmZz1Neg;FramerrxmZz1Neg.displayName=\"Toggle\";FramerrxmZz1Neg.defaultProps={height:53,width:89};addPropertyControls(FramerrxmZz1Neg,{variant:{options:[\"YDTJwI0Dy\",\"aJVtbZiww\"],optionTitles:[\"Toogle Blue\",\"Toogle Red\"],title:\"Variant\",type:ControlType.Enum},PqU5FbjCl:{title:\"Click 8\",type:ControlType.EventHandler}});addFonts(FramerrxmZz1Neg,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrxmZz1Neg\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"53\",\"framerVariables\":\"{\\\"PqU5FbjCl\\\":\\\"click8\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aJVtbZiww\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"89\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rxmZz1Neg.map", "// Generated by Framer (3d4fa65)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/jsUrKpGbDB1UbVwbJ0Pl/brLHIatoSR6deU7bqf0T/D8yOkc5r2.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/enkC8zPQ4BiBNaHSuBE0/0przgjmlIuAFYnpsDr7T/IN9wbgyCM.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/DvJHC8wrExvtjeK8rMVk/tRNVt0UCBCv6QtCfu6yn/MIcEBtMNd.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/man41F5CmOf4BkKSPfdE/dxggnoVuHMbVS9rYPLIU/wsUkuAfcd.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/Sanfh35cEMUiIvQTPnTz/sltQODWkNWbCRP3yy7qh/ybtYqU_Wg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/EI8bbjItISmHRYXqIS5x/2VsrY1hjWHfghy3FGOBi/yebpNQ4eu.js\";import Toggle from\"https://framerusercontent.com/modules/xjDaCJnRovc4xBIfUvC3/9KZeroRc6CfXyQ3TN2tB/rxmZz1Neg.js\";const ToggleFonts=getFonts(Toggle);const cycleOrder=[\"ZFWayqZ9_\",\"INAgUX8ov\",\"fwtwF0Rkb\",\"WlrzwBJng\"];const serializationHash=\"framer-oxerY\";const variantClassNames={fwtwF0Rkb:\"framer-v-wqzccy\",INAgUX8ov:\"framer-v-solw20\",WlrzwBJng:\"framer-v-1fjj9bf\",ZFWayqZ9_:\"framer-v-1n8e4yb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const negate=value=>{return!value;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Comparison Blue\":\"ZFWayqZ9_\",\"Comparison Red\":\"INAgUX8ov\",\"Do Mobile\":\"fwtwF0Rkb\",\"Don'tr Mobile\":\"WlrzwBJng\"};const getProps=({height,id,tablet,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZFWayqZ9_\",xZpcPyAwE:tablet??props.xZpcPyAwE};};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,xZpcPyAwE,kJcx9OWT6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZFWayqZ9_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const PqU5FbjCl8c5ou7=activeVariantCallback(async(...args)=>{setVariant(\"INAgUX8ov\");});const PqU5FbjCl5nl41d=activeVariantCallback(async(...args)=>{setVariant(\"ZFWayqZ9_\");});const PqU5FbjCl15iwb1v=activeVariantCallback(async(...args)=>{setVariant(\"WlrzwBJng\");});const PqU5FbjClm4qslr=activeVariantCallback(async(...args)=>{setVariant(\"fwtwF0Rkb\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"fwtwF0Rkb\",\"WlrzwBJng\"].includes(baseVariant))return false;return true;};const isDisplayed1=value=>{if(baseVariant===\"INAgUX8ov\")return value;if([\"fwtwF0Rkb\",\"WlrzwBJng\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"fwtwF0Rkb\",\"WlrzwBJng\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"fwtwF0Rkb\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"WlrzwBJng\")return true;return false;};const isDisplayed5=value=>{if([\"fwtwF0Rkb\",\"WlrzwBJng\"].includes(baseVariant))return value;return true;};const isDisplayed6=()=>{if([\"INAgUX8ov\",\"WlrzwBJng\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if([\"INAgUX8ov\",\"WlrzwBJng\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"INAgUX8ov\")return false;return true;};const isDisplayed9=()=>{if(baseVariant===\"INAgUX8ov\")return true;return false;};const visible=negate(xZpcPyAwE);const isDisplayed10=value=>{if(baseVariant===\"WlrzwBJng\")return value;return false;};const isDisplayed11=value=>{if(baseVariant===\"fwtwF0Rkb\")return value;return false;};const isDisplayed12=()=>{if(baseVariant===\"fwtwF0Rkb\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:768,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uaksx2iZt9hlNVmN0lrq7yBDWjo.png\",srcSet:\"https://framerusercontent.com/images/uaksx2iZt9hlNVmN0lrq7yBDWjo.png?scale-down-to=512 512w,https://framerusercontent.com/images/uaksx2iZt9hlNVmN0lrq7yBDWjo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uaksx2iZt9hlNVmN0lrq7yBDWjo.png 1440w\"},className:cx(scopingClassNames,\"framer-1n8e4yb\",className,classNames),\"data-framer-name\":\"Comparison Blue\",layoutDependency:layoutDependency,layoutId:\"ZFWayqZ9_\",ref:refBinding,style:{...style},...addPropertyOverrides({fwtwF0Rkb:{\"data-framer-name\":\"Do Mobile\"},INAgUX8ov:{\"data-framer-name\":\"Comparison Red\"},WlrzwBJng:{\"data-framer-name\":\"Don'tr Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ckoxhh\",\"data-framer-name\":\"Toggle Container\",layoutDependency:layoutDependency,layoutId:\"jQXL17Tap\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fi2ysi\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"QKjbXukUs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(66, 0, 255))\"},children:\"do\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(66, 0, 255))\"},children:\" \"})]}),className:\"framer-4rs5ho\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"igjxhrnPe\",style:{\"--extracted-2gxw0f\":\"rgb(66, 0, 255)\",\"--extracted-r6o4lv\":\"rgb(66, 0, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,variants:{INAgUX8ov:{\"--extracted-2gxw0f\":\"rgb(229, 63, 65)\",\"--extracted-r6o4lv\":\"rgb(229, 63, 65)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({INAgUX8ov:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(229, 63, 65))\"},children:\"don't\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(229, 63, 65))\"},children:\" \"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:\"89px\",y:(componentViewport?.y||0)+85+(((componentViewport?.height||600)-170-429)/2+0+0)+.5+66.5,...addPropertyOverrides({INAgUX8ov:{y:(componentViewport?.y||0)+85+(((componentViewport?.height||600)-170-429)/2+0+0)+.5+67.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xlza8m-container\",layoutDependency:layoutDependency,layoutId:\"nTy_rVdbI-container\",nodeId:\"nTy_rVdbI\",rendersWithMotion:true,scopeId:\"B0_rAZ1Jt\",children:/*#__PURE__*/_jsx(Toggle,{height:\"100%\",id:\"nTy_rVdbI\",layoutId:\"nTy_rVdbI\",PqU5FbjCl:PqU5FbjCl8c5ou7,style:{height:\"100%\",width:\"100%\"},variant:\"YDTJwI0Dy\",width:\"100%\",...addPropertyOverrides({INAgUX8ov:{PqU5FbjCl:PqU5FbjCl5nl41d,variant:\"aJVtbZiww\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"When People\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(49, 49, 49))\"},children:\"                 work with us.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(49, 49, 49))\"},children:\" \"})]}),className:\"framer-v0xt9e\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"RGd4sZYra\",style:{\"--extracted-1iakedh\":\"rgb(49, 49, 49)\",\"--extracted-2gxw0f\":\"rgb(49, 49, 49)\",\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({INAgUX8ov:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"When People\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(49, 49, 49))\"},children:\"                       work with us.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(49, 49, 49))\"},children:\" \"})]})}},baseVariant,gestureVariant)})]}),isDisplayed1(kJcx9OWT6)&&/*#__PURE__*/_jsx(Link,{href:\"Also Thttps://form.typeform.com/to/ql26VqK7\",motionChild:true,nodeId:\"zwOfhrslS\",openInNewTab:true,scopeId:\"B0_rAZ1Jt\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-2kth05 framer-130akid\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"zwOfhrslS\",style:{backgroundColor:\"rgb(66, 0, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fhl7gw\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"s859Tzx7A\",svg:'<svg width=\"19\" height=\"18\" viewBox=\"0 0 19 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.30937 1.80078C5.54807 1.80078 5.77699 1.8956 5.94577 2.06439C6.11455 2.23317 6.20937 2.46209 6.20937 2.70078V3.60078H7.10937C7.34807 3.60078 7.57699 3.6956 7.74577 3.86439C7.91455 4.03317 8.00937 4.26209 8.00937 4.50078C8.00937 4.73948 7.91455 4.96839 7.74577 5.13718C7.57699 5.30596 7.34807 5.40078 7.10937 5.40078H6.20937V6.30078C6.20937 6.53948 6.11455 6.76839 5.94577 6.93718C5.77699 7.10596 5.54807 7.20078 5.30937 7.20078C5.07068 7.20078 4.84176 7.10596 4.67298 6.93718C4.5042 6.76839 4.40937 6.53948 4.40937 6.30078V5.40078H3.50937C3.27068 5.40078 3.04176 5.30596 2.87298 5.13718C2.7042 4.96839 2.60938 4.73948 2.60938 4.50078C2.60938 4.26209 2.7042 4.03317 2.87298 3.86439C3.04176 3.6956 3.27068 3.60078 3.50937 3.60078H4.40937V2.70078C4.40937 2.46209 4.5042 2.23317 4.67298 2.06439C4.84176 1.8956 5.07068 1.80078 5.30937 1.80078ZM5.30937 10.8008C5.54807 10.8008 5.77699 10.8956 5.94577 11.0644C6.11455 11.2332 6.20937 11.4621 6.20937 11.7008V12.6008H7.10937C7.34807 12.6008 7.57699 12.6956 7.74577 12.8644C7.91455 13.0332 8.00937 13.2621 8.00937 13.5008C8.00937 13.7395 7.91455 13.9684 7.74577 14.1372C7.57699 14.306 7.34807 14.4008 7.10937 14.4008H6.20937V15.3008C6.20937 15.5395 6.11455 15.7684 5.94577 15.9372C5.77699 16.106 5.54807 16.2008 5.30937 16.2008C5.07068 16.2008 4.84176 16.106 4.67298 15.9372C4.5042 15.7684 4.40937 15.5395 4.40937 15.3008V14.4008H3.50937C3.27068 14.4008 3.04176 14.306 2.87298 14.1372C2.7042 13.9684 2.60938 13.7395 2.60938 13.5008C2.60938 13.2621 2.7042 13.0332 2.87298 12.8644C3.04176 12.6956 3.27068 12.6008 3.50937 12.6008H4.40937V11.7008C4.40937 11.4621 4.5042 11.2332 4.67298 11.0644C4.84176 10.8956 5.07068 10.8008 5.30937 10.8008ZM11.6094 1.80078C11.808 1.80072 12.0011 1.86636 12.1585 1.98747C12.3159 2.10859 12.4288 2.27838 12.4797 2.47038L13.5408 6.48078L16.5594 8.22138C16.6962 8.30038 16.8098 8.41399 16.8888 8.5508C16.9678 8.68761 17.0093 8.84281 17.0093 9.00078C17.0093 9.15876 16.9678 9.31395 16.8888 9.45076C16.8098 9.58757 16.6962 9.70119 16.5594 9.78018L13.5408 11.5217L12.4788 15.5312C12.4278 15.723 12.3149 15.8926 12.1576 16.0136C12.0003 16.1346 11.8074 16.2002 11.6089 16.2002C11.4105 16.2002 11.2176 16.1346 11.0602 16.0136C10.9029 15.8926 10.79 15.723 10.7391 15.5312L9.67797 11.5208L6.65937 9.78018C6.52257 9.70119 6.40896 9.58757 6.32998 9.45076C6.251 9.31395 6.20941 9.15876 6.20941 9.00078C6.20941 8.84281 6.251 8.68761 6.32998 8.5508C6.40896 8.41399 6.52257 8.30038 6.65937 8.22138L9.67797 6.47988L10.74 2.47038C10.7908 2.27853 10.9036 2.10885 11.0608 1.98775C11.2181 1.86665 11.4109 1.80092 11.6094 1.80078Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Let's build something\"})})}),className:\"framer-c0k35h\",\"data-framer-name\":\"Let's build something\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"GvfZmasdZ\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-104id0w\",\"data-styles-preset\":\"yebpNQ4eu\",children:\"When people do work with us!\"})}),className:\"framer-sdxrx4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IsefSvx4C\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fwtwF0Rkb:{\"--extracted-1sp2osd\":\"var(--token-fe1c61f0-f949-4f9d-bdb7-65a803e032b7, rgb(66, 0, 255))\"},WlrzwBJng:{\"--extracted-1sp2osd\":\"rgb(229, 63, 65)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fwtwF0Rkb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{className:\"framer-styles-preset-1xcyqzb\",\"data-styles-preset\":\"wsUkuAfcd\",children:[\"When people \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1sp2osd, var(--token-fe1c61f0-f949-4f9d-bdb7-65a803e032b7, rgb(66, 0, 255)))\"},children:\"do\"}),\" work with us!\"]})})},WlrzwBJng:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{className:\"framer-styles-preset-1xcyqzb\",\"data-styles-preset\":\"wsUkuAfcd\",children:[\"When people \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1sp2osd, rgb(229, 63, 65))\"},children:\"don't\"}),\" work with us!\"]})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fwtwF0Rkb:{height:53,width:\"89px\",y:(componentViewport?.y||0)+85+(((componentViewport?.height||200)-170-1180.9)/2+0+0)+0+112.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qwg78-container\",layoutDependency:layoutDependency,layoutId:\"Pohg1UMHq-container\",nodeId:\"Pohg1UMHq\",rendersWithMotion:true,scopeId:\"B0_rAZ1Jt\",children:/*#__PURE__*/_jsx(Toggle,{height:\"100%\",id:\"Pohg1UMHq\",layoutId:\"Pohg1UMHq\",PqU5FbjCl:PqU5FbjCl15iwb1v,style:{height:\"100%\",width:\"100%\"},variant:\"YDTJwI0Dy\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({WlrzwBJng:{height:53,width:\"89px\",y:(componentViewport?.y||0)+85+(((componentViewport?.height||200)-170-1190.5)/2+0+0)+0+112.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o5a8hs-container\",layoutDependency:layoutDependency,layoutId:\"LuuXu8sRg-container\",nodeId:\"LuuXu8sRg\",rendersWithMotion:true,scopeId:\"B0_rAZ1Jt\",children:/*#__PURE__*/_jsx(Toggle,{height:\"100%\",id:\"LuuXu8sRg\",layoutId:\"LuuXu8sRg\",PqU5FbjCl:PqU5FbjClm4qslr,style:{height:\"100%\",width:\"100%\"},variant:\"aJVtbZiww\",width:\"100%\"})})})]}),isDisplayed5(xZpcPyAwE)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4w9w6t\",\"data-framer-name\":\"Content Tiles\",layoutDependency:layoutDependency,layoutId:\"HiMbDXQN_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a0e2cq\",\"data-framer-name\":\"Submit\",layoutDependency:layoutDependency,layoutId:\"zvbnPSeRr\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wjncwj\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"Rswl9qSDI\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M34.828 5.17115C34.0779 4.42126 33.0607 4 32 4C30.9393 4 29.9221 4.42126 29.172 5.17115L14 20.3431V25.9991H19.656L34.828 10.8271C35.5779 10.077 35.9991 9.0598 35.9991 7.99915C35.9991 6.93849 35.5779 5.92126 34.828 5.17115Z\" fill=\"#4200FF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 12C4 10.9391 4.42143 9.92172 5.17157 9.17157C5.92172 8.42143 6.93913 8 8 8H16C16.5304 8 17.0391 8.21071 17.4142 8.58579C17.7893 8.96086 18 9.46957 18 10C18 10.5304 17.7893 11.0391 17.4142 11.4142C17.0391 11.7893 16.5304 12 16 12H8V32H28V24C28 23.4696 28.2107 22.9609 28.5858 22.5858C28.9609 22.2107 29.4696 22 30 22C30.5304 22 31.0391 22.2107 31.4142 22.5858C31.7893 22.9609 32 23.4696 32 24V32C32 33.0609 31.5786 34.0783 30.8284 34.8284C30.0783 35.5786 29.0609 36 28 36H8C6.93913 36 5.92172 35.5786 5.17157 34.8284C4.42143 34.0783 4 33.0609 4 32V12Z\" fill=\"#4200FF\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-e7ztj3\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"IAvNLw97V\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M34.828 5.17115C34.0779 4.42126 33.0607 4 32 4C30.9393 4 29.9221 4.42126 29.172 5.17115L14 20.3431V25.9991H19.656L34.828 10.8271C35.5779 10.077 35.9991 9.0598 35.9991 7.99915C35.9991 6.93849 35.5779 5.92126 34.828 5.17115Z\" fill=\"#E53F41\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 12C4 10.9391 4.42143 9.92172 5.17157 9.17157C5.92172 8.42143 6.93913 8 8 8H16C16.5304 8 17.0391 8.21071 17.4142 8.58579C17.7893 8.96086 18 9.46957 18 10C18 10.5304 17.7893 11.0391 17.4142 11.4142C17.0391 11.7893 16.5304 12 16 12H8V32H28V24C28 23.4696 28.2107 22.9609 28.5858 22.5858C28.9609 22.2107 29.4696 22 30 22C30.5304 22 31.0391 22.2107 31.4142 22.5858C31.7893 22.9609 32 23.4696 32 24V32C32 33.0609 31.5786 34.0783 30.8284 34.8284C30.0783 35.5786 29.0609 36 28 36H8C6.93913 36 5.92172 35.5786 5.17157 34.8284C4.42143 34.0783 4 33.0609 4 32V12Z\" fill=\"#E53F41\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19omnvj\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"z7owSxHXt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1qa0ciz\",\"data-styles-preset\":\"IN9wbgyCM\",children:\"Submit Project/ Work Details\"})}),className:\"framer-s5hr47\",\"data-framer-name\":\"Submit Project/ Work Details\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N46hXBiGF\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136)))\"},children:\"Be it contractual resource requirement, freelancers for tech or agencies for content/marketing. Upload everything on the website\"})}),className:\"framer-1vvinfv\",\"data-framer-name\":\"Unique designs tailored to your brand, captivating users with innovative visuals.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YgUuqsmmy\",style:{\"--extracted-r6o4lv\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{INAgUX8ov:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\"},WlrzwBJng:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({INAgUX8ov:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"18.5px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Only to wait for stupid proposals sent your way without proper research\"})}),fonts:[\"GF;Poppins-regular\"]},WlrzwBJng:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"18.5px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Only to wait for stupid proposals sent your way without proper research\"})}),fonts:[\"GF;Poppins-regular\"]}},baseVariant,gestureVariant)})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-134wo0p\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"W9Q4yWlUD\",children:[isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-kg3ddp\",\"data-framer-name\":\"Line 91\",fill:\"rgba(66, 0, 255, 0.21)\",intrinsicHeight:8,intrinsicWidth:358,layoutDependency:layoutDependency,layoutId:\"Fv0FlFvj7\",svg:'<svg width=\"358\" height=\"8\" viewBox=\"-2 -2 358 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2 2L352 2.00003\" stroke=\"#4200FF\" stroke-opacity=\"0.21\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32)))\"},children:\"Get Regular Updates\"})}),className:\"framer-1kaozwo\",\"data-framer-name\":\"Get Regular Updates\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F6ZJsMCX8\",style:{\"--extracted-r6o4lv\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xg016e\",\"data-framer-name\":\"Line 92\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:518,layoutDependency:layoutDependency,layoutId:\"VSm_zOTLC\",svg:'<svg width=\"518\" height=\"80\" viewBox=\"-2 -2 518 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M-3.23465e-06 37L59.5 -0.000117353L123 75.9999L228.5 -0.000117353L306.5 46.4999L407 16.4999L514 37\" stroke=\"#E53F41\" stroke-opacity=\"0.27\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"22.5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\"},children:\"Time Consuming\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"22.5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\"},children:\"Interview Process\"})})]}),className:\"framer-19b7rq2\",\"data-framer-name\":\"Time Consuming Interview Process\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"XbUDgs0Pu\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"22.5px\"},children:\"Selecting Right\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"22.5px\"},children:\"Service Provider \"})]}),className:\"framer-1ygip21\",\"data-framer-name\":\"Selecting Right Candidate\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"qxa2cSc6F\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"22.5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\"},children:\"Manage Financial \"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"22.5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\"},children:\"Treatment\"})})]}),className:\"framer-y6e85q\",\"data-framer-name\":\"Manage Financial Treatment\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"KELhZmNNp\",style:{\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"22.5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\"},children:\"Lack of coordination\"})})}),className:\"framer-ndimy5\",\"data-framer-name\":\"Lack of coordination\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"aFy3QfTFX\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"22.5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\"},children:\"Keep Track\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"22.5px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\"},children:\"of Deadlines\"})})]}),className:\"framer-ijj9v7\",\"data-framer-name\":\"Keep Track of Deadlines\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"Ecx7Dw5iy\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u1xqct\",\"data-framer-name\":\"Ellipse 2812\",layoutDependency:layoutDependency,layoutId:\"WAwAn6D3j\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-9o17ml\",\"data-framer-name\":\"Ellipse 2813\",layoutDependency:layoutDependency,layoutId:\"ejQvU8rA7\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jhdybk\",\"data-framer-name\":\"Ellipse 2814\",layoutDependency:layoutDependency,layoutId:\"PfZN5hTeG\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-tmjco\",\"data-framer-name\":\"Ellipse 2815\",layoutDependency:layoutDependency,layoutId:\"D98AMgDiN\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1syx9nc\",\"data-framer-name\":\"Ellipse 2816\",layoutDependency:layoutDependency,layoutId:\"QiBPouyXG\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gfoflw\",\"data-framer-name\":\"Receive\",layoutDependency:layoutDependency,layoutId:\"xKQdWZ1E9\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-19z6qht\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"dECm6ygkC\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 36C24.2435 36 28.3131 34.3143 31.3137 31.3137C34.3143 28.3131 36 24.2435 36 20C36 15.7565 34.3143 11.6869 31.3137 8.68629C28.3131 5.68571 24.2435 4 20 4C15.7565 4 11.6869 5.68571 8.68629 8.68629C5.68571 11.6869 4 15.7565 4 20C4 24.2435 5.68571 28.3131 8.68629 31.3137C11.6869 34.3143 15.7565 36 20 36ZM27.414 17.414C27.7783 17.0368 27.9799 16.5316 27.9753 16.0072C27.9708 15.4828 27.7605 14.9812 27.3896 14.6104C27.0188 14.2395 26.5172 14.0292 25.9928 14.0247C25.4684 14.0201 24.9632 14.2217 24.586 14.586L18 21.172L15.414 18.586C15.0368 18.2217 14.5316 18.0201 14.0072 18.0247C13.4828 18.0292 12.9812 18.2395 12.6104 18.6104C12.2395 18.9812 12.0292 19.4828 12.0247 20.0072C12.0201 20.5316 12.2217 21.0368 12.586 21.414L16.586 25.414C16.9611 25.7889 17.4697 25.9996 18 25.9996C18.5303 25.9996 19.0389 25.7889 19.414 25.414L27.414 17.414Z\" fill=\"#E53F41\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17jl3k5\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"X8O43zJJa\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 36C24.2435 36 28.3131 34.3143 31.3137 31.3137C34.3143 28.3131 36 24.2435 36 20C36 15.7565 34.3143 11.6869 31.3137 8.68629C28.3131 5.68571 24.2435 4 20 4C15.7565 4 11.6869 5.68571 8.68629 8.68629C5.68571 11.6869 4 15.7565 4 20C4 24.2435 5.68571 28.3131 8.68629 31.3137C11.6869 34.3143 15.7565 36 20 36ZM27.414 17.414C27.7783 17.0368 27.9799 16.5316 27.9753 16.0072C27.9708 15.4828 27.7605 14.9812 27.3896 14.6104C27.0188 14.2395 26.5172 14.0292 25.9928 14.0247C25.4684 14.0201 24.9632 14.2217 24.586 14.586L18 21.172L15.414 18.586C15.0368 18.2217 14.5316 18.0201 14.0072 18.0247C13.4828 18.0292 12.9812 18.2395 12.6104 18.6104C12.2395 18.9812 12.0292 19.4828 12.0247 20.0072C12.0201 20.5316 12.2217 21.0368 12.586 21.414L16.586 25.414C16.9611 25.7889 17.4697 25.9996 18 25.9996C18.5303 25.9996 19.0389 25.7889 19.414 25.414L27.414 17.414Z\" fill=\"#4200FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vyjoxz\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"VhJmBKkso\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1qa0ciz\",\"data-styles-preset\":\"IN9wbgyCM\",children:\"Receive High Quality Work\"})}),className:\"framer-za2frv\",\"data-framer-name\":\"Receive High Quality Work\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KuB04NFMX\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{INAgUX8ov:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\"},WlrzwBJng:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({INAgUX8ov:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.64px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Receive sub standard deliverables\"})}),fonts:[\"GF;Poppins-600\"]},WlrzwBJng:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.64px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Receive sub standard deliverables\"})}),fonts:[\"GF;Poppins-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-h4vq79\",\"data-styles-preset\":\"D8yOkc5r2\",children:\"Get tailored solution & on-time deliveries backed and managed by ExpertRight's Dedicated Project Managers\"})}),className:\"framer-g1dxh8\",\"data-framer-name\":\"Unique designs tailored to your brand, captivating users with innovative visuals.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PoDudwGVI\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{INAgUX8ov:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\"},WlrzwBJng:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({INAgUX8ov:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"18.5px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"No proof checking or proper testing is done before sending the work your way!\"})}),fonts:[\"GF;Poppins-regular\"]},WlrzwBJng:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"18.5px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"No proof checking or proper testing is done before sending the work your way!\"})}),fonts:[\"GF;Poppins-regular\"]}},baseVariant,gestureVariant)})]})]})]}),isDisplayed10(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6x6npw\",\"data-framer-name\":\"Content Tiles\",layoutDependency:layoutDependency,layoutId:\"Vns5E7_R0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qkyphe\",\"data-framer-name\":\"Submit\",layoutDependency:layoutDependency,layoutId:\"YsXUNOujE\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pcr1lr\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"RGkN8TLYC\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M34.828 5.17115C34.0779 4.42126 33.0607 4 32 4C30.9393 4 29.9221 4.42126 29.172 5.17115L14 20.3431V25.9991H19.656L34.828 10.8271C35.5779 10.077 35.9991 9.0598 35.9991 7.99915C35.9991 6.93849 35.5779 5.92126 34.828 5.17115Z\" fill=\"#E53F41\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 12C4 10.9391 4.42143 9.92172 5.17157 9.17157C5.92172 8.42143 6.93913 8 8 8H16C16.5304 8 17.0391 8.21071 17.4142 8.58579C17.7893 8.96086 18 9.46957 18 10C18 10.5304 17.7893 11.0391 17.4142 11.4142C17.0391 11.7893 16.5304 12 16 12H8V32H28V24C28 23.4696 28.2107 22.9609 28.5858 22.5858C28.9609 22.2107 29.4696 22 30 22C30.5304 22 31.0391 22.2107 31.4142 22.5858C31.7893 22.9609 32 23.4696 32 24V32C32 33.0609 31.5786 34.0783 30.8284 34.8284C30.0783 35.5786 29.0609 36 28 36H8C6.93913 36 5.92172 35.5786 5.17157 34.8284C4.42143 34.0783 4 33.0609 4 32V12Z\" fill=\"#E53F41\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lefbhn\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"CLzIKb2qg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1qa0ciz\",\"data-styles-preset\":\"IN9wbgyCM\",children:\"Submit Project/ Work Details\"})}),className:\"framer-10jm4ed\",\"data-framer-name\":\"Submit Project/ Work Details\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lwS1v2e8r\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"18.5px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Only to wait for stupid proposals sent your way without proper research\"})}),className:\"framer-16y9765\",\"data-framer-name\":\"Unique designs tailored to your brand, captivating users with innovative visuals.\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"iWvAWaCuq\",style:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5k427o\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"QSKw3ea7U\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vij82x\",\"data-framer-name\":\"Line 92\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:518,layoutDependency:layoutDependency,layoutId:\"y4zUFoCar\",svg:'<svg width=\"518\" height=\"80\" viewBox=\"-2 -2 518 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M-3.23465e-06 37L59.5 -0.000117353L123 75.9999L228.5 -0.000117353L306.5 46.4999L407 16.4999L514 37\" stroke=\"#E53F41\" stroke-opacity=\"0.27\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16.5px\",\"--framer-text-alignment\":\"left\"},children:\"Time Consuming\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16.5px\",\"--framer-text-alignment\":\"left\"},children:\"Interview Process\"})]}),className:\"framer-1oz7cqy\",\"data-framer-name\":\"Time Consuming Interview Process\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"qZeNAFr15\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16.5px\"},children:\"Selecting Right\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16.5px\"},children:\"Service Provider \"})]}),className:\"framer-15xywi7\",\"data-framer-name\":\"Selecting Right Candidate\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"q0f3_kiik\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16.5px\",\"--framer-text-alignment\":\"left\"},children:\"Manage Financial \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16.5px\",\"--framer-text-alignment\":\"left\"},children:\"Treatment\"})]}),className:\"framer-g0qhk9\",\"data-framer-name\":\"Manage Financial Treatment\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"zA2NMznc2\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16.5px\"},children:\"Lack of coordination\"})}),className:\"framer-1otflao\",\"data-framer-name\":\"Lack of coordination\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"XGcvP9pi1\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16.5px\"},children:\"Keep Track\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16.5px\"},children:\"of Deadlines\"})]}),className:\"framer-10bghn0\",\"data-framer-name\":\"Keep Track of Deadlines\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"XTr75FR4E\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nzd29y\",\"data-framer-name\":\"Ellipse 2812\",layoutDependency:layoutDependency,layoutId:\"u4rHtayVl\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-daumsh\",\"data-framer-name\":\"Ellipse 2813\",layoutDependency:layoutDependency,layoutId:\"VfWshkp4E\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13vj19z\",\"data-framer-name\":\"Ellipse 2814\",layoutDependency:layoutDependency,layoutId:\"kT2bfHiqx\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-725n4d\",\"data-framer-name\":\"Ellipse 2815\",layoutDependency:layoutDependency,layoutId:\"PkrOMHcKJ\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15dobqf\",\"data-framer-name\":\"Ellipse 2816\",layoutDependency:layoutDependency,layoutId:\"shE_oQwJv\",style:{backgroundColor:\"rgb(229, 63, 65)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iug8jt\",\"data-framer-name\":\"Receive\",layoutDependency:layoutDependency,layoutId:\"PePcogcmb\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kwvh0d\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"Q49bejGI3\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 36C24.2435 36 28.3131 34.3143 31.3137 31.3137C34.3143 28.3131 36 24.2435 36 20C36 15.7565 34.3143 11.6869 31.3137 8.68629C28.3131 5.68571 24.2435 4 20 4C15.7565 4 11.6869 5.68571 8.68629 8.68629C5.68571 11.6869 4 15.7565 4 20C4 24.2435 5.68571 28.3131 8.68629 31.3137C11.6869 34.3143 15.7565 36 20 36ZM27.414 17.414C27.7783 17.0368 27.9799 16.5316 27.9753 16.0072C27.9708 15.4828 27.7605 14.9812 27.3896 14.6104C27.0188 14.2395 26.5172 14.0292 25.9928 14.0247C25.4684 14.0201 24.9632 14.2217 24.586 14.586L18 21.172L15.414 18.586C15.0368 18.2217 14.5316 18.0201 14.0072 18.0247C13.4828 18.0292 12.9812 18.2395 12.6104 18.6104C12.2395 18.9812 12.0292 19.4828 12.0247 20.0072C12.0201 20.5316 12.2217 21.0368 12.586 21.414L16.586 25.414C16.9611 25.7889 17.4697 25.9996 18 25.9996C18.5303 25.9996 19.0389 25.7889 19.414 25.414L27.414 17.414Z\" fill=\"#E53F41\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8533mf\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"zbvMKKdqL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.64px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"Receive sub standard deliverables\"})}),className:\"framer-1ttd2ha\",\"data-framer-name\":\"Receive High Quality Work\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"PCxeuPS6_\",style:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"18.5px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 49, 49))\"},children:\"No proof checking or proper testing is done before sending the work your way!\"})}),className:\"framer-ybtvza\",\"data-framer-name\":\"Unique designs tailored to your brand, captivating users with innovative visuals.\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"P_5dQcB9A\",style:{\"--extracted-r6o4lv\":\"rgb(49, 49, 49)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed11(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11n30g0\",\"data-framer-name\":\"Content Tiles\",layoutDependency:layoutDependency,layoutId:\"qHiG6hfFK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2l6i3t\",\"data-framer-name\":\"Submit\",layoutDependency:layoutDependency,layoutId:\"k62sjpsLr\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-coahql\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"JpaIoa20N\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M34.828 5.17115C34.0779 4.42126 33.0607 4 32 4C30.9393 4 29.9221 4.42126 29.172 5.17115L14 20.3431V25.9991H19.656L34.828 10.8271C35.5779 10.077 35.9991 9.0598 35.9991 7.99915C35.9991 6.93849 35.5779 5.92126 34.828 5.17115Z\" fill=\"#4200FF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 12C4 10.9391 4.42143 9.92172 5.17157 9.17157C5.92172 8.42143 6.93913 8 8 8H16C16.5304 8 17.0391 8.21071 17.4142 8.58579C17.7893 8.96086 18 9.46957 18 10C18 10.5304 17.7893 11.0391 17.4142 11.4142C17.0391 11.7893 16.5304 12 16 12H8V32H28V24C28 23.4696 28.2107 22.9609 28.5858 22.5858C28.9609 22.2107 29.4696 22 30 22C30.5304 22 31.0391 22.2107 31.4142 22.5858C31.7893 22.9609 32 23.4696 32 24V32C32 33.0609 31.5786 34.0783 30.8284 34.8284C30.0783 35.5786 29.0609 36 28 36H8C6.93913 36 5.92172 35.5786 5.17157 34.8284C4.42143 34.0783 4 33.0609 4 32V12Z\" fill=\"#4200FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hjttyg\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"uQYnARbLe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1qa0ciz\",\"data-styles-preset\":\"IN9wbgyCM\",children:\"Submit Project/ Work Details\"})}),className:\"framer-kdjfej\",\"data-framer-name\":\"Submit Project/ Work Details\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ztRyLly5b\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136)))\"},children:\"Be it contractual resource requirement, freelancers for tech or agencies for content/marketing. Upload everything on the website\"})}),className:\"framer-1giug4t\",\"data-framer-name\":\"Unique designs tailored to your brand, captivating users with innovative visuals.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hSqd5k1F3\",style:{\"--extracted-r6o4lv\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16antfx\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"zSXlbbBoV\",children:[isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1lbhu2l\",\"data-framer-name\":\"Line 91\",fill:\"rgba(66, 0, 255, 0.21)\",intrinsicHeight:8,intrinsicWidth:358,layoutDependency:layoutDependency,layoutId:\"cDkMjZkxI\",svg:'<svg width=\"358\" height=\"8\" viewBox=\"-2 -2 358 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2 2L352 2.00003\" stroke=\"#4200FF\" stroke-opacity=\"0.21\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32)))\"},children:\"Get Regular Updates\"})}),className:\"framer-1g5azg0\",\"data-framer-name\":\"Get Regular Updates\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aIYLXwXGn\",style:{\"--extracted-r6o4lv\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1she2l8\",layoutDependency:layoutDependency,layoutId:\"q6DgLWYKO\",style:{backgroundColor:\"rgba(68, 0, 255, 0.19)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p4uay8\",layoutDependency:layoutDependency,layoutId:\"EoteWBrEd\",style:{backgroundColor:\"rgba(68, 0, 255, 0.19)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1imbt5i\",\"data-framer-name\":\"Receive\",layoutDependency:layoutDependency,layoutId:\"Gi_RkI8Fl\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rlognb\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"hVMzayody\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 36C24.2435 36 28.3131 34.3143 31.3137 31.3137C34.3143 28.3131 36 24.2435 36 20C36 15.7565 34.3143 11.6869 31.3137 8.68629C28.3131 5.68571 24.2435 4 20 4C15.7565 4 11.6869 5.68571 8.68629 8.68629C5.68571 11.6869 4 15.7565 4 20C4 24.2435 5.68571 28.3131 8.68629 31.3137C11.6869 34.3143 15.7565 36 20 36ZM27.414 17.414C27.7783 17.0368 27.9799 16.5316 27.9753 16.0072C27.9708 15.4828 27.7605 14.9812 27.3896 14.6104C27.0188 14.2395 26.5172 14.0292 25.9928 14.0247C25.4684 14.0201 24.9632 14.2217 24.586 14.586L18 21.172L15.414 18.586C15.0368 18.2217 14.5316 18.0201 14.0072 18.0247C13.4828 18.0292 12.9812 18.2395 12.6104 18.6104C12.2395 18.9812 12.0292 19.4828 12.0247 20.0072C12.0201 20.5316 12.2217 21.0368 12.586 21.414L16.586 25.414C16.9611 25.7889 17.4697 25.9996 18 25.9996C18.5303 25.9996 19.0389 25.7889 19.414 25.414L27.414 17.414Z\" fill=\"#4200FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vcepx\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"gMPi2kZ1t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1qa0ciz\",\"data-styles-preset\":\"IN9wbgyCM\",children:\"Receive High Quality Work\"})}),className:\"framer-1bbvybv\",\"data-framer-name\":\"Receive High Quality Work\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"M9OmzBUUr\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-h4vq79\",\"data-styles-preset\":\"D8yOkc5r2\",children:\"Get tailored solution & on-time deliveries backed and managed by ExpertRight's Dedicated Project Managers\"})}),className:\"framer-7qbwf3\",\"data-framer-name\":\"Unique designs tailored to your brand, captivating users with innovative visuals.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HeidKWTeb\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oxerY.framer-130akid, .framer-oxerY .framer-130akid { display: block; }\",\".framer-oxerY.framer-1n8e4yb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; padding: 85px 0px 85px 0px; position: relative; width: 1198px; }\",\".framer-oxerY .framer-ckoxhh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 188px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oxerY .framer-fi2ysi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 187px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oxerY .framer-4rs5ho { flex: none; height: auto; left: 0px; position: absolute; top: 68%; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-1xlza8m-container { flex: none; height: 53px; left: 78px; position: absolute; top: calc(49.73262032085564% - 53px / 2); width: 89px; z-index: 1; }\",\".framer-oxerY .framer-v0xt9e, .framer-oxerY .framer-sdxrx4, .framer-oxerY .framer-1kaozwo, .framer-oxerY .framer-1g5azg0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oxerY .framer-2kth05 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 58px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 231px; }\",\".framer-oxerY .framer-fhl7gw { flex: none; height: 18px; position: relative; width: 19px; }\",\".framer-oxerY .framer-c0k35h { flex: none; height: 16px; position: relative; white-space: pre; width: auto; }\",\".framer-oxerY .framer-qwg78-container, .framer-oxerY .framer-o5a8hs-container { flex: none; height: 53px; position: relative; width: 89px; z-index: 1; }\",\".framer-oxerY .framer-4w9w6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oxerY .framer-1a0e2cq, .framer-oxerY .framer-gfoflw { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.4651162790697674 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 232px); justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 340px; }\",\".framer-oxerY .framer-wjncwj, .framer-oxerY .framer-e7ztj3, .framer-oxerY .framer-19z6qht, .framer-oxerY .framer-17jl3k5, .framer-oxerY .framer-1pcr1lr, .framer-oxerY .framer-kwvh0d, .framer-oxerY .framer-coahql, .framer-oxerY .framer-rlognb { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-oxerY .framer-19omnvj, .framer-oxerY .framer-1vyjoxz, .framer-oxerY .framer-lefbhn, .framer-oxerY .framer-8533mf, .framer-oxerY .framer-hjttyg, .framer-oxerY .framer-1vcepx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oxerY .framer-s5hr47, .framer-oxerY .framer-1vvinfv, .framer-oxerY .framer-za2frv, .framer-oxerY .framer-g1dxh8, .framer-oxerY .framer-10jm4ed, .framer-oxerY .framer-16y9765, .framer-oxerY .framer-1ttd2ha, .framer-oxerY .framer-ybtvza, .framer-oxerY .framer-kdjfej, .framer-oxerY .framer-1giug4t, .framer-oxerY .framer-1bbvybv, .framer-oxerY .framer-7qbwf3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oxerY .framer-134wo0p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 25px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-oxerY .framer-kg3ddp, .framer-oxerY .framer-1lbhu2l { flex: none; height: 8px; position: relative; width: 358px; }\",\".framer-oxerY .framer-xg016e { flex: none; height: 80px; position: relative; width: 518px; }\",\".framer-oxerY .framer-19b7rq2 { flex: none; height: auto; left: 8px; position: absolute; top: -31px; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-1ygip21 { bottom: -54px; flex: none; height: auto; left: 17px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-y6e85q { flex: none; height: auto; left: 52%; position: absolute; top: -31px; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-ndimy5 { flex: none; height: auto; position: absolute; right: 28px; top: 9px; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-ijj9v7 { bottom: -25px; flex: none; height: auto; position: absolute; right: 153px; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-1u1xqct { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 54px; position: absolute; top: 23px; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-9o17ml { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 225px; position: absolute; top: 23px; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-1jhdybk { aspect-ratio: 1 / 1; bottom: -3px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 120px; position: absolute; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-tmjco { aspect-ratio: 1 / 1; bottom: 26px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: absolute; right: 203px; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-1syx9nc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: absolute; right: 100px; top: 37px; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-6x6npw, .framer-oxerY .framer-11n30g0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oxerY .framer-qkyphe, .framer-oxerY .framer-iug8jt, .framer-oxerY .framer-2l6i3t, .framer-oxerY .framer-1imbt5i { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.4651162790697674 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 137px); justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-oxerY .framer-5k427o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-oxerY .framer-vij82x { flex: none; height: 80px; position: relative; width: 390px; }\",\".framer-oxerY .framer-1oz7cqy { flex: none; height: auto; left: 43px; position: absolute; top: -31px; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-15xywi7 { bottom: -42px; flex: none; height: auto; left: 89px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-g0qhk9 { flex: none; height: auto; position: absolute; right: 110px; top: -31px; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-1otflao { flex: none; height: auto; position: absolute; right: 7px; top: 0px; white-space: pre-wrap; width: 82px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oxerY .framer-10bghn0 { bottom: -25px; flex: none; height: auto; position: absolute; right: 89px; white-space: pre; width: auto; z-index: 1; }\",\".framer-oxerY .framer-1nzd29y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 43px; position: absolute; top: 20px; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-daumsh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 168px; position: absolute; top: 21px; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-13vj19z { aspect-ratio: 1 / 1; bottom: -3px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 89px; position: absolute; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-725n4d { aspect-ratio: 1 / 1; bottom: 26px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: absolute; right: 152px; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-15dobqf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: absolute; right: 77px; top: 37px; width: 12px; z-index: 1; }\",\".framer-oxerY .framer-16antfx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-oxerY .framer-1she2l8, .framer-oxerY .framer-1p4uay8 { flex: none; height: 100px; overflow: visible; position: relative; width: 4px; }\",\".framer-oxerY.framer-v-solw20 .framer-4rs5ho { top: 64%; }\",\".framer-oxerY.framer-v-solw20 .framer-1xlza8m-container { left: 152px; top: calc(50.26737967914441% - 53px / 2); }\",\".framer-oxerY.framer-v-wqzccy .framer-ckoxhh, .framer-oxerY.framer-v-1fjj9bf .framer-ckoxhh { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; height: min-content; padding: 0px 0px 32px 0px; }\",\".framer-oxerY.framer-v-wqzccy .framer-sdxrx4, .framer-oxerY.framer-v-1fjj9bf .framer-sdxrx4 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oxerY.framer-v-wqzccy .framer-4w9w6t, .framer-oxerY.framer-v-1fjj9bf .framer-4w9w6t { gap: 24px; }\",\".framer-oxerY.framer-v-wqzccy .framer-1a0e2cq, .framer-oxerY.framer-v-wqzccy .framer-gfoflw, .framer-oxerY.framer-v-1fjj9bf .framer-1a0e2cq, .framer-oxerY.framer-v-1fjj9bf .framer-gfoflw { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 137px); width: 1px; }\",\".framer-oxerY.framer-v-wqzccy .framer-1g5azg0 { order: 2; }\",\".framer-oxerY.framer-v-wqzccy .framer-1she2l8 { order: 15; }\",\".framer-oxerY.framer-v-wqzccy .framer-1p4uay8 { order: 1; }\",\".framer-oxerY.framer-v-1fjj9bf .framer-6x6npw { gap: 96px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1198\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"INAgUX8ov\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"fwtwF0Rkb\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"WlrzwBJng\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerVariables {\"xZpcPyAwE\":\"tablet\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerB0_rAZ1Jt=withCSS(Component,css,\"framer-oxerY\");export default FramerB0_rAZ1Jt;FramerB0_rAZ1Jt.displayName=\"Main Section\";FramerB0_rAZ1Jt.defaultProps={height:600,width:1198};addPropertyControls(FramerB0_rAZ1Jt,{variant:{options:[\"ZFWayqZ9_\",\"INAgUX8ov\",\"fwtwF0Rkb\",\"WlrzwBJng\"],optionTitles:[\"Comparison Blue\",\"Comparison Red\",\"Do Mobile\",\"Don'tr Mobile\"],title:\"Variant\",type:ControlType.Enum},xZpcPyAwE:{defaultValue:false,title:\"Tablet\",type:ControlType.Boolean}});addFonts(FramerB0_rAZ1Jt,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"}]},...ToggleFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB0_rAZ1Jt\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"600\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"xZpcPyAwE\\\":\\\"tablet\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1198\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"INAgUX8ov\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"fwtwF0Rkb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"WlrzwBJng\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B0_rAZ1Jt.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLoadMorePaginatedQuery,useLocaleCode,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Blogs from\"https://framerusercontent.com/modules/yqEv61vKQdooXtAfoDG4/dxiLmMAjKEcEexbgRuL8/SbkgNiwD9.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/DvJHC8wrExvtjeK8rMVk/tRNVt0UCBCv6QtCfu6yn/MIcEBtMNd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/EI8bbjItISmHRYXqIS5x/2VsrY1hjWHfghy3FGOBi/yebpNQ4eu.js\";import AshishButton from\"https://framerusercontent.com/modules/CZX65jkjwHD9UevLNB14/k1fWkgNKNlhEL5LQOj0b/oSv1d1O90.js\";const AshishButtonFonts=getFonts(AshishButton);const cycleOrder=[\"GIJ_KhVlJ\",\"Moi3s6GbV\"];const serializationHash=\"framer-KZlbO\";const variantClassNames={GIJ_KhVlJ:\"framer-v-1dwc1qz\",Moi3s6GbV:\"framer-v-szlst6\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const query=prequery=>prequery({from:{alias:\"D1rNxXZti\",data:Blogs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"D1rNxXZti\",direction:\"desc\",name:\"Yj3p4mfJD\",type:\"Identifier\"}],select:[{collection:\"D1rNxXZti\",name:\"ifFRvci3x\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"UUm2FcEOz\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"Yj3p4mfJD\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"XEqcXJ2zC\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"Bw5iV2qEs\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"RWXzBbq8h\",data:Blogs,type:\"Collection\"},orderBy:[{collection:\"RWXzBbq8h\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"RWXzBbq8h\",name:\"Bw5iV2qEs\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"ifFRvci3x\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"XEqcXJ2zC\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"Yj3p4mfJD\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"UUm2FcEOz\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"id\",type:\"Identifier\"}]});const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"RWXzBbq8h\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const query2=prequery=>prequery({from:{alias:\"sfO5V6_AT\",data:Blogs,type:\"Collection\"},orderBy:[{collection:\"sfO5V6_AT\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"sfO5V6_AT\",name:\"Bw5iV2qEs\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"ifFRvci3x\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"XEqcXJ2zC\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"Yj3p4mfJD\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"UUm2FcEOz\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"id\",type:\"Identifier\"}]});const QueryData2=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"sfO5V6_AT\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"GIJ_KhVlJ\",Phone:\"Moi3s6GbV\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GIJ_KhVlJ\"};};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,ifFRvci3xD1rNxXZti,UUm2FcEOzD1rNxXZti,Yj3p4mfJDD1rNxXZti,XEqcXJ2zCD1rNxXZti,Bw5iV2qEsD1rNxXZti,idD1rNxXZti,Bw5iV2qEsRWXzBbq8h,ifFRvci3xRWXzBbq8h,XEqcXJ2zCRWXzBbq8h,Yj3p4mfJDRWXzBbq8h,UUm2FcEOzRWXzBbq8h,idRWXzBbq8h,Bw5iV2qEssfO5V6_AT,ifFRvci3xsfO5V6_AT,XEqcXJ2zCsfO5V6_AT,Yj3p4mfJDsfO5V6_AT,UUm2FcEOzsfO5V6_AT,idsfO5V6_AT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GIJ_KhVlJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"Moi3s6GbV\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Moi3s6GbV\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1dwc1qz\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"GIJ_KhVlJ\",ref:refBinding,style:{...style},...addPropertyOverrides({Moi3s6GbV:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ybtrki\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"C5FhDoACz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-104id0w\",\"data-styles-preset\":\"yebpNQ4eu\",children:\"News Section\"})}),className:\"framer-lgqpsk\",\"data-framer-name\":\"News Section\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MGZYOXZXu\",style:{\"--framer-paragraph-spacing\":\"36px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c8h447\",\"data-framer-name\":\"Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:1170,layoutDependency:layoutDependency,layoutId:\"EQOlhI86m\",svg:'<svg width=\"1170\" height=\"1\" viewBox=\"0 0 1170 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1170\" y2=\"0.5\" stroke=\"#ABADB0\"/>\\n<line y1=\"0.5\" x2=\"140\" y2=\"0.5\" stroke=\"#0068FF\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5h1z46\",layoutDependency:layoutDependency,layoutId:\"D1rNxXZti\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"D1rNxXZti\",data:Blogs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"D1rNxXZti\",direction:\"desc\",name:\"Yj3p4mfJD\",type:\"Identifier\"}],select:[{collection:\"D1rNxXZti\",name:\"ifFRvci3x\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"UUm2FcEOz\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"Yj3p4mfJD\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"XEqcXJ2zC\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"Bw5iV2qEs\",type:\"Identifier\"},{collection:\"D1rNxXZti\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({Bw5iV2qEs:Bw5iV2qEsD1rNxXZti,id:idD1rNxXZti,ifFRvci3x:ifFRvci3xD1rNxXZti,UUm2FcEOz:UUm2FcEOzD1rNxXZti,XEqcXJ2zC:XEqcXJ2zCD1rNxXZti,Yj3p4mfJD:Yj3p4mfJDD1rNxXZti},index)=>{UUm2FcEOzD1rNxXZti??=\"\";XEqcXJ2zCD1rNxXZti??=\"\";Bw5iV2qEsD1rNxXZti??=\"\";const textContent=toDateString(Yj3p4mfJDD1rNxXZti,{dateStyle:\"full\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`D1rNxXZti-${idD1rNxXZti}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Bw5iV2qEs:Bw5iV2qEsD1rNxXZti},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h0sqpe\",layoutDependency:layoutDependency,layoutId:\"NPY_TVfwN\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(ifFRvci3xD1rNxXZti)},className:\"framer-pwqg1d\",layoutDependency:layoutDependency,layoutId:\"nFvFJvZww\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m7ffsa\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"UD2ThA1wP\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a0zl8x\",layoutDependency:layoutDependency,layoutId:\"HQ6JRu2r9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-104id0w\",\"data-styles-preset\":\"yebpNQ4eu\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-0c460159-3f24-4456-beb9-3be1ce3d9f83, rgb(255, 255, 255)))\"},children:\"6 Practical Tips to Help You Build a Successful Outsourced Content Team\"})}),className:\"framer-1kaue8p\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qnaTr1a_i\",style:{\"--extracted-1of0zx5\":\"var(--token-0c460159-3f24-4456-beb9-3be1ce3d9f83, rgb(255, 255, 255))\"},text:UUm2FcEOzD1rNxXZti,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lppvtq\",layoutDependency:layoutDependency,layoutId:\"NGmwHq1dd\",style:{opacity:.8},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c460159-3f24-4456-beb9-3be1ce3d9f83, rgb(255, 255, 255)))\"},children:\"Wednesday, April 9, 2025\"})}),className:\"framer-wi1r5l\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XRKRA6pvG\",style:{\"--extracted-r6o4lv\":\"var(--token-0c460159-3f24-4456-beb9-3be1ce3d9f83, rgb(255, 255, 255))\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c460159-3f24-4456-beb9-3be1ce3d9f83, rgb(255, 255, 255)))\"},children:\"\u2022\"})}),className:\"framer-bd9etb\",fonts:[\"FS;Poppins-medium\"],layoutDependency:layoutDependency,layoutId:\"s_QSF82YZ\",style:{\"--extracted-r6o4lv\":\"var(--token-0c460159-3f24-4456-beb9-3be1ce3d9f83, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c460159-3f24-4456-beb9-3be1ce3d9f83, rgb(255, 255, 255)))\"},children:\"Ayush Goyal\"})}),className:\"framer-szbb3o\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EmODUVwwS\",style:{\"--extracted-r6o4lv\":\"var(--token-0c460159-3f24-4456-beb9-3be1ce3d9f83, rgb(255, 255, 255))\"},text:XEqcXJ2zCD1rNxXZti,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Bw5iV2qEs:Bw5iV2qEsD1rNxXZti},webPageId:\"fJQpdwrLJ\"},implicitPathVariables:undefined},{href:{pathVariables:{Bw5iV2qEs:Bw5iV2qEsD1rNxXZti},webPageId:\"fJQpdwrLJ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11my0a2-container\",layoutDependency:layoutDependency,layoutId:\"FlwCK9kAz-container\",nodeId:\"FlwCK9kAz\",rendersWithMotion:true,scopeId:\"o9rTAVTRD\",children:/*#__PURE__*/_jsx(AshishButton,{GtT8pQQ3P:resolvedLinks[0],height:\"100%\",id:\"FlwCK9kAz\",layoutId:\"FlwCK9kAz\",ObJKKUCOO:\"Read Blog\",style:{height:\"100%\"},U_PqPoCaZ:true,variant:\"zv_H70tIp\",width:\"100%\",...addPropertyOverrides({Moi3s6GbV:{GtT8pQQ3P:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})})})},idD1rNxXZti);})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xvmi3t\",\"data-framer-name\":\"News Headlines\",layoutDependency:layoutDependency,layoutId:\"vNN9HnGBm\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-aoakxk\",layoutDependency:layoutDependency,layoutId:\"RWXzBbq8h\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:3,query:{from:{alias:\"RWXzBbq8h\",data:Blogs,type:\"Collection\"},orderBy:[{collection:\"RWXzBbq8h\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"RWXzBbq8h\",name:\"Bw5iV2qEs\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"ifFRvci3x\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"XEqcXJ2zC\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"Yj3p4mfJD\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"UUm2FcEOz\",type:\"Identifier\"},{collection:\"RWXzBbq8h\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({Bw5iV2qEs:Bw5iV2qEsRWXzBbq8h,id:idRWXzBbq8h,ifFRvci3x:ifFRvci3xRWXzBbq8h,UUm2FcEOz:UUm2FcEOzRWXzBbq8h,XEqcXJ2zC:XEqcXJ2zCRWXzBbq8h,Yj3p4mfJD:Yj3p4mfJDRWXzBbq8h},index1)=>{Bw5iV2qEsRWXzBbq8h??=\"\";XEqcXJ2zCRWXzBbq8h??=\"\";UUm2FcEOzRWXzBbq8h??=\"\";const textContent1=toDateString(Yj3p4mfJDRWXzBbq8h,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`RWXzBbq8h-${idRWXzBbq8h}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Bw5iV2qEs:Bw5iV2qEsRWXzBbq8h},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Bw5iV2qEs:Bw5iV2qEsRWXzBbq8h},webPageId:\"fJQpdwrLJ\"},motionChild:true,nodeId:\"kQMBgOMsX\",openInNewTab:true,scopeId:\"o9rTAVTRD\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1o0wzk2 framer-d8iciq\",layoutDependency:layoutDependency,layoutId:\"kQMBgOMsX\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"130px\",...toResponsiveImage(ifFRvci3xRWXzBbq8h)},className:\"framer-1e8mvea\",layoutDependency:layoutDependency,layoutId:\"KAVGz4rvx\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ofe6q\",layoutDependency:layoutDependency,layoutId:\"hFtCH_gD2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5bz6wa\",layoutDependency:layoutDependency,layoutId:\"BQmkDoYg4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(32, 32, 32))\"},children:\"Ayush Goyal\"})}),className:\"framer-gingmg\",\"data-framer-name\":\"Author\",fonts:[\"FS;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"tSN3O9Mtp\",style:{\"--extracted-1eung3n\":\"rgb(32, 32, 32)\"},text:XEqcXJ2zCRWXzBbq8h,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 109, 136))\"},children:\"-\"})}),className:\"framer-1rivnlb\",\"data-framer-name\":\"Date\",fonts:[\"FS;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"DYjsSD15n\",style:{\"--extracted-r6o4lv\":\"rgb(92, 109, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 109, 136))\"},children:\"Apr 9, 2025\"})}),className:\"framer-18ghqvb\",\"data-framer-name\":\"Date\",fonts:[\"FS;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"Ggft567Px\",style:{\"--extracted-r6o4lv\":\"rgb(92, 109, 136)\"},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(51, 51, 51))\"},children:\"6 Practical Tips to Help You Build a Successful Outsourced Content Team\"})}),className:\"framer-1q40yzz\",\"data-framer-name\":\"Title\",fonts:[\"FS;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"AtyBOR7w4\",style:{\"--extracted-1of0zx5\":\"rgb(51, 51, 51)\"},text:UUm2FcEOzRWXzBbq8h,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idRWXzBbq8h);})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vf7yml\",layoutDependency:layoutDependency,layoutId:\"sfO5V6_AT\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData2,{pageSize:3,query:{from:{alias:\"sfO5V6_AT\",data:Blogs,type:\"Collection\"},orderBy:[{collection:\"sfO5V6_AT\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"sfO5V6_AT\",name:\"Bw5iV2qEs\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"ifFRvci3x\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"XEqcXJ2zC\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"Yj3p4mfJD\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"UUm2FcEOz\",type:\"Identifier\"},{collection:\"sfO5V6_AT\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({Bw5iV2qEs:Bw5iV2qEssfO5V6_AT,id:idsfO5V6_AT,ifFRvci3x:ifFRvci3xsfO5V6_AT,UUm2FcEOz:UUm2FcEOzsfO5V6_AT,XEqcXJ2zC:XEqcXJ2zCsfO5V6_AT,Yj3p4mfJD:Yj3p4mfJDsfO5V6_AT},index2)=>{Bw5iV2qEssfO5V6_AT??=\"\";XEqcXJ2zCsfO5V6_AT??=\"\";UUm2FcEOzsfO5V6_AT??=\"\";const textContent2=toDateString(Yj3p4mfJDsfO5V6_AT,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`sfO5V6_AT-${idsfO5V6_AT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Bw5iV2qEs:Bw5iV2qEssfO5V6_AT},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Bw5iV2qEs:Bw5iV2qEssfO5V6_AT},webPageId:\"fJQpdwrLJ\"},motionChild:true,nodeId:\"uwLRg_3Co\",openInNewTab:true,scopeId:\"o9rTAVTRD\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1synzob framer-d8iciq\",layoutDependency:layoutDependency,layoutId:\"uwLRg_3Co\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(ifFRvci3xsfO5V6_AT)},className:\"framer-13mbibk\",layoutDependency:layoutDependency,layoutId:\"o_IbEEnmF\",...addPropertyOverrides({Moi3s6GbV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1364)-0-1515)/2+787.4+0)+64+0+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 50px)`,...toResponsiveImage(ifFRvci3xsfO5V6_AT)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gc6sj2\",layoutDependency:layoutDependency,layoutId:\"lmHctB82h\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gf7ugc\",layoutDependency:layoutDependency,layoutId:\"gDRF01w5h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(32, 32, 32))\"},children:\"Ayush Goyal\"})}),className:\"framer-17ztp0k\",\"data-framer-name\":\"Author\",fonts:[\"FS;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"buxeYsX6R\",style:{\"--extracted-1eung3n\":\"rgb(32, 32, 32)\"},text:XEqcXJ2zCsfO5V6_AT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 109, 136))\"},children:\"-\"})}),className:\"framer-1cl4x8x\",\"data-framer-name\":\"Date\",fonts:[\"FS;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"q8YOu1sFG\",style:{\"--extracted-r6o4lv\":\"rgb(92, 109, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 109, 136))\"},children:\"Content\"})}),className:\"framer-185ke1n\",\"data-framer-name\":\"Date\",fonts:[\"FS;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"s2x5ikUb4\",style:{\"--extracted-r6o4lv\":\"rgb(92, 109, 136)\"},text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(51, 51, 51))\"},children:\"6 Practical Tips to Help You Build a Successful Outsourced Content Team\"})}),className:\"framer-1xr76d4\",\"data-framer-name\":\"Title\",fonts:[\"FS;Be Vietnam Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"aEu1Sp69k\",style:{\"--extracted-1of0zx5\":\"rgb(51, 51, 51)\"},text:UUm2FcEOzsfO5V6_AT,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idsfO5V6_AT);})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KZlbO.framer-d8iciq, .framer-KZlbO .framer-d8iciq { display: block; }\",\".framer-KZlbO.framer-1dwc1qz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1152px; }\",\".framer-KZlbO .framer-ybtrki { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 29px 0px; position: relative; width: 100%; }\",\".framer-KZlbO .framer-lgqpsk, .framer-KZlbO .framer-wi1r5l, .framer-KZlbO .framer-bd9etb, .framer-KZlbO .framer-szbb3o, .framer-KZlbO .framer-gingmg, .framer-KZlbO .framer-1rivnlb, .framer-KZlbO .framer-18ghqvb, .framer-KZlbO .framer-17ztp0k, .framer-KZlbO .framer-1cl4x8x, .framer-KZlbO .framer-185ke1n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KZlbO .framer-c8h447 { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-KZlbO .framer-5h1z46 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 390px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-KZlbO .framer-1h0sqpe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 100%; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-KZlbO .framer-pwqg1d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: flex-end; padding: 36px; position: relative; width: 1px; z-index: 1; }\",\".framer-KZlbO .framer-1m7ffsa { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-KZlbO .framer-1a0zl8x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KZlbO .framer-1kaue8p { flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KZlbO .framer-1lppvtq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KZlbO .framer-11my0a2-container { flex: none; height: 52px; position: relative; width: auto; }\",\".framer-KZlbO .framer-1xvmi3t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KZlbO .framer-aoakxk { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KZlbO .framer-1o0wzk2 { align-content: flex-start; align-items: flex-start; align-self: start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 17px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-KZlbO .framer-1e8mvea { flex: none; height: 107px; position: relative; width: 130px; }\",\".framer-KZlbO .framer-2ofe6q { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-KZlbO .framer-5bz6wa, .framer-KZlbO .framer-1gf7ugc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 38px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KZlbO .framer-1q40yzz, .framer-KZlbO .framer-1xr76d4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KZlbO .framer-1vf7yml { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KZlbO .framer-1synzob { align-content: flex-start; align-items: flex-start; align-self: start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 17px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-KZlbO .framer-13mbibk { aspect-ratio: 1.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 123px); position: relative; width: 100%; }\",\".framer-KZlbO .framer-gc6sj2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KZlbO.framer-1dwc1qz, .framer-KZlbO .framer-ybtrki, .framer-KZlbO .framer-5h1z46, .framer-KZlbO .framer-1h0sqpe, .framer-KZlbO .framer-pwqg1d, .framer-KZlbO .framer-1a0zl8x, .framer-KZlbO .framer-1lppvtq, .framer-KZlbO .framer-1xvmi3t, .framer-KZlbO .framer-1o0wzk2, .framer-KZlbO .framer-2ofe6q, .framer-KZlbO .framer-5bz6wa, .framer-KZlbO .framer-1synzob, .framer-KZlbO .framer-gc6sj2, .framer-KZlbO .framer-1gf7ugc { gap: 0px; } .framer-KZlbO.framer-1dwc1qz > *, .framer-KZlbO .framer-gc6sj2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KZlbO.framer-1dwc1qz > :first-child, .framer-KZlbO .framer-ybtrki > :first-child, .framer-KZlbO .framer-pwqg1d > :first-child, .framer-KZlbO .framer-1a0zl8x > :first-child, .framer-KZlbO .framer-1xvmi3t > :first-child, .framer-KZlbO .framer-2ofe6q > :first-child, .framer-KZlbO .framer-1synzob > :first-child, .framer-KZlbO .framer-gc6sj2 > :first-child { margin-top: 0px; } .framer-KZlbO.framer-1dwc1qz > :last-child, .framer-KZlbO .framer-ybtrki > :last-child, .framer-KZlbO .framer-pwqg1d > :last-child, .framer-KZlbO .framer-1a0zl8x > :last-child, .framer-KZlbO .framer-1xvmi3t > :last-child, .framer-KZlbO .framer-2ofe6q > :last-child, .framer-KZlbO .framer-1synzob > :last-child, .framer-KZlbO .framer-gc6sj2 > :last-child { margin-bottom: 0px; } .framer-KZlbO .framer-ybtrki > *, .framer-KZlbO .framer-1a0zl8x > *, .framer-KZlbO .framer-1xvmi3t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KZlbO .framer-5h1z46 > *, .framer-KZlbO .framer-1h0sqpe > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-KZlbO .framer-5h1z46 > :first-child, .framer-KZlbO .framer-1h0sqpe > :first-child, .framer-KZlbO .framer-1lppvtq > :first-child, .framer-KZlbO .framer-1o0wzk2 > :first-child, .framer-KZlbO .framer-5bz6wa > :first-child, .framer-KZlbO .framer-1gf7ugc > :first-child { margin-left: 0px; } .framer-KZlbO .framer-5h1z46 > :last-child, .framer-KZlbO .framer-1h0sqpe > :last-child, .framer-KZlbO .framer-1lppvtq > :last-child, .framer-KZlbO .framer-1o0wzk2 > :last-child, .framer-KZlbO .framer-5bz6wa > :last-child, .framer-KZlbO .framer-1gf7ugc > :last-child { margin-right: 0px; } .framer-KZlbO .framer-pwqg1d > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-KZlbO .framer-1lppvtq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KZlbO .framer-1o0wzk2 > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-KZlbO .framer-2ofe6q > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-KZlbO .framer-5bz6wa > *, .framer-KZlbO .framer-1gf7ugc > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-KZlbO .framer-1synzob > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } }\",\".framer-KZlbO.framer-v-szlst6.framer-1dwc1qz { width: 390px; }\",\".framer-KZlbO.framer-v-szlst6 .framer-5h1z46 { aspect-ratio: 0.7696709585121603 / 1; height: var(--framer-aspect-ratio-supported, 507px); }\",\".framer-KZlbO.framer-v-szlst6 .framer-pwqg1d { padding: 24px; }\",\".framer-KZlbO.framer-v-szlst6 .framer-13mbibk { height: var(--framer-aspect-ratio-supported, 240px); }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 649\n * @framerIntrinsicWidth 1152\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Moi3s6GbV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framero9rTAVTRD=withCSS(Component,css,\"framer-KZlbO\");export default Framero9rTAVTRD;Framero9rTAVTRD.displayName=\"Ashish/Blog Section\";Framero9rTAVTRD.defaultProps={height:649,width:1152};addPropertyControls(Framero9rTAVTRD,{variant:{options:[\"GIJ_KhVlJ\",\"Moi3s6GbV\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framero9rTAVTRD,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QMIUKUCANYOW3DZTE34ZMVXC7KRYZNCO/X3SZZ4Z5SZNM5K75FPPASQ2YRIJMIPUD/G2K4CBVGEH7VFVIC3T6GBHAWO2E2W7YQ.woff2\",weight:\"400\"}]},...AshishButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero9rTAVTRD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"649\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1152\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Moi3s6GbV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/5hwSRFxV0XH7mOeR3v4n/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Tabs from\"#framer/local/canvasComponent/ab0QIGND1/ab0QIGND1.js\";import MainSection from\"#framer/local/canvasComponent/B0_rAZ1Jt/B0_rAZ1Jt.js\";import Navigation from\"#framer/local/canvasComponent/ItwjKYGRy/ItwjKYGRy.js\";import AshishFooter from\"#framer/local/canvasComponent/JYO_ss3zy/JYO_ss3zy.js\";import AshishBlogSection from\"#framer/local/canvasComponent/o9rTAVTRD/o9rTAVTRD.js\";import AshishButton from\"#framer/local/canvasComponent/oSv1d1O90/oSv1d1O90.js\";import*as sharedStyle3 from\"#framer/local/css/D8yOkc5r2/D8yOkc5r2.js\";import*as sharedStyle2 from\"#framer/local/css/MIcEBtMNd/MIcEBtMNd.js\";import*as sharedStyle5 from\"#framer/local/css/sjvHQ_GJa/sjvHQ_GJa.js\";import*as sharedStyle from\"#framer/local/css/wsUkuAfcd/wsUkuAfcd.js\";import*as sharedStyle1 from\"#framer/local/css/ybtYqU_Wg/ybtYqU_Wg.js\";import*as sharedStyle4 from\"#framer/local/css/yebpNQ4eu/yebpNQ4eu.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const AshishButtonFonts=getFonts(AshishButton);const TickerFonts=getFonts(Ticker);const TabsFonts=getFonts(Tabs);const MainSectionFonts=getFonts(MainSection);const YouTubeFonts=getFonts(YouTube);const CarouselFonts=getFonts(Carousel);const Ticker1Fonts=getFonts(Ticker1);const AshishBlogSectionFonts=getFonts(AshishBlogSection);const AshishFooterFonts=getFonts(AshishFooter);const breakpoints={CfRPGFzs1:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",XhM55gPOl:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KtnZr\";const variantClassNames={CfRPGFzs1:\"framer-v-kozzjc\",WQLkyLRf1:\"framer-v-72rtr7\",XhM55gPOl:\"framer-v-2i410y\"};const transition1={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,transition:transition1};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"CfRPGFzs1\",Tablet:\"XhM55gPOl\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"CfRPGFzs1\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"Q4K5IAW5v\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"AitRnBNg2\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"IeOx1oFZx\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"iCZqCB6_f\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{height:64,width:componentViewport?.width||\"100vw\"},XhM55gPOl:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:\"1200px\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1z0vb1j-container\",id:\"1z0vb1j\",nodeId:\"Fb9mhg9Hs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{style:{width:\"100%\"},variant:\"cHq6mbYp2\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Fb9mhg9Hs\",layoutId:\"Fb9mhg9Hs\",style:{height:\"100%\",width:\"100%\"},variant:\"d1DwbEunl\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64),pixelHeight:774,pixelWidth:1439,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VXlNpmASLZnjktMVIRGqgs84Pb8.png\",srcSet:\"https://framerusercontent.com/images/VXlNpmASLZnjktMVIRGqgs84Pb8.png?scale-down-to=512 512w,https://framerusercontent.com/images/VXlNpmASLZnjktMVIRGqgs84Pb8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VXlNpmASLZnjktMVIRGqgs84Pb8.png 1439w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+98),pixelHeight:774,pixelWidth:1439,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VXlNpmASLZnjktMVIRGqgs84Pb8.png\",srcSet:\"https://framerusercontent.com/images/VXlNpmASLZnjktMVIRGqgs84Pb8.png?scale-down-to=512 512w,https://framerusercontent.com/images/VXlNpmASLZnjktMVIRGqgs84Pb8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VXlNpmASLZnjktMVIRGqgs84Pb8.png 1439w\"},className:\"framer-10w50w5\",\"data-framer-name\":\"Hero Sections\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h4ywcu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18pcss7\",\"data-framer-name\":\"Tag\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ho3q3y\",\"data-border\":true,\"data-framer-name\":\"New\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"20px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\"},children:\"Contact Us\"})})}),className:\"framer-1e2a522\",\"data-framer-name\":\"Contact Us\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CzJhHvdTS\"},motionChild:true,nodeId:\"VFtQltXYy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-10k0w7v framer-lux5qc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(66, 0, 255)\"},children:\"Register yourself as a freelancer\"})}),className:\"framer-1f02yhe\",\"data-framer-name\":\"An upgraded search experience\",fonts:[\"GF;Be Vietnam Pro-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cz2x3k\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"10\" viewBox=\"-1 -1 6 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.25L3.75 4L0 7.75\" stroke=\"#4200FF\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xcyqzb\",\"data-styles-preset\":\"wsUkuAfcd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Outsourcing has never been so effortless\"})}),className:\"framer-18wn7ok\",\"data-framer-name\":\"Outsourcing has never been so effortless\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hire selective agencies and freelancers, with delivery managed and supported by our dedicated project managers.\"})}),className:\"framer-1hun5pz\",\"data-framer-name\":\"Achieve your projects goals, without the stress of managing the project yourself.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dtnird\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-63a74p\",\"data-framer-name\":\"Hero Buttons\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{y:(componentViewport?.y||0)+0+64+44+228.9+0+0+0},XhM55gPOl:{y:(componentViewport?.y||0)+0+98+72+236.9+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+98+96+236.9+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uw0sqt-container\",nodeId:\"AgQybwRwP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AshishButton,{GtT8pQQ3P:\"mailto:support@expertright.com\",height:\"100%\",id:\"AgQybwRwP\",layoutId:\"AgQybwRwP\",ObJKKUCOO:\"Get Started as a Brand\",style:{height:\"100%\"},U_PqPoCaZ:true,variant:\"zv_H70tIp\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CzJhHvdTS\"},implicitPathVariables:undefined},{href:{webPageId:\"CzJhHvdTS\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XhM55gPOl:{y:(componentViewport?.y||0)+0+98+72+236.9+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+98+96+236.9+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9p44m0-container hidden-kozzjc\",nodeId:\"wpJ6qIqgP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XhM55gPOl:{GtT8pQQ3P:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(AshishButton,{GtT8pQQ3P:resolvedLinks[0],height:\"100%\",id:\"wpJ6qIqgP\",layoutId:\"wpJ6qIqgP\",ObJKKUCOO:\"Learn More\",style:{height:\"100%\"},U_PqPoCaZ:false,variant:\"eKCKHsMfT\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ko7p5d\",\"data-framer-name\":\"stat\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11xxaib\",\"data-framer-name\":\"Avatar group\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ntxxlp\",\"data-framer-name\":\"Avatars\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+44+228.9+0+82+0+0+0+0),pixelHeight:640,pixelWidth:640,sizes:\"30px\",src:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?lossless=1 640w\"}},XhM55gPOl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+98+72+236.9+0+82+0+0+0),pixelHeight:640,pixelWidth:640,sizes:\"30px\",src:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?lossless=1 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+98+96+236.9+0+82+0+0+0),pixelHeight:640,pixelWidth:640,sizes:\"30px\",src:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/Z9qf3dNysbW0T70Hu1s64EN34o.jpg?lossless=1 640w\"},className:\"framer-1gza729\",\"data-border\":true,\"data-framer-name\":\"Avatar\",whileHover:animation})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+44+228.9+0+82+0+0+0+0),pixelHeight:640,pixelWidth:640,sizes:\"30px\",src:\"https://framerusercontent.com/images/MNSkYup7bhQo8t1dZGylIuWiM.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/MNSkYup7bhQo8t1dZGylIuWiM.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/MNSkYup7bhQo8t1dZGylIuWiM.jpg?lossless=1 640w\"}},XhM55gPOl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+98+72+236.9+0+82+0+0+0),pixelHeight:640,pixelWidth:640,sizes:\"30px\",src:\"https://framerusercontent.com/images/MNSkYup7bhQo8t1dZGylIuWiM.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/MNSkYup7bhQo8t1dZGylIuWiM.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/MNSkYup7bhQo8t1dZGylIuWiM.jpg?lossless=1 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+98+96+236.9+0+82+0+0+0),pixelHeight:640,pixelWidth:640,sizes:\"30px\",src:\"https://framerusercontent.com/images/MNSkYup7bhQo8t1dZGylIuWiM.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/MNSkYup7bhQo8t1dZGylIuWiM.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/MNSkYup7bhQo8t1dZGylIuWiM.jpg?lossless=1 640w\"},className:\"framer-18bjz9a\",\"data-border\":true,\"data-framer-name\":\"Avatar\",whileHover:animation})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+44+228.9+0+82+0+0+0+0),pixelHeight:640,pixelWidth:640,sizes:\"30px\",src:\"https://framerusercontent.com/images/Jh14PaQUfafpWnRlAhAhFiXZX8.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/Jh14PaQUfafpWnRlAhAhFiXZX8.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/Jh14PaQUfafpWnRlAhAhFiXZX8.jpg?lossless=1 640w\"}},XhM55gPOl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+98+72+236.9+0+82+0+0+0),pixelHeight:640,pixelWidth:640,sizes:\"30px\",src:\"https://framerusercontent.com/images/Jh14PaQUfafpWnRlAhAhFiXZX8.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/Jh14PaQUfafpWnRlAhAhFiXZX8.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/Jh14PaQUfafpWnRlAhAhFiXZX8.jpg?lossless=1 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+98+96+236.9+0+82+0+0+0),pixelHeight:640,pixelWidth:640,sizes:\"30px\",src:\"https://framerusercontent.com/images/Jh14PaQUfafpWnRlAhAhFiXZX8.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/Jh14PaQUfafpWnRlAhAhFiXZX8.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/Jh14PaQUfafpWnRlAhAhFiXZX8.jpg?lossless=1 640w\"},className:\"framer-dim1n2\",\"data-border\":true,\"data-framer-name\":\"Avatar\",whileHover:animation})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e0ulfs\",\"data-border\":true,\"data-framer-name\":\"Avatar\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+25k\"})}),className:\"framer-1y0hqb7\",\"data-framer-name\":\"Text\",fonts:[\"GF;Be Vietnam Pro-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",children:\"Access to 25,000 verified freelancers and agencies\"})}),className:\"framer-ihhimc\",\"data-framer-name\":\"Access to 25,000 verified freelancers and agencies\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nenoko\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h4vq79\",\"data-styles-preset\":\"D8yOkc5r2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Join the 350+ Companies that trust us\"})}),className:\"framer-z5bkyd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hu283k\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-snaiax-container\",isModuleExternal:true,nodeId:\"TSBxcTFQF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:69,height:\"100%\",hoverFactor:1,id:\"TSBxcTFQF\",layoutId:\"TSBxcTFQF\",padding:17,paddingBottom:17,paddingLeft:17,paddingPerSide:false,paddingRight:17,paddingTop:17,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-30re4y\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:164,intrinsicWidth:1280,pixelHeight:164,pixelWidth:1280,sizes:\"163px\",src:\"https://framerusercontent.com/images/SKL1Vi14uKFORdLVHiBuVgYyeU.png\",srcSet:\"https://framerusercontent.com/images/SKL1Vi14uKFORdLVHiBuVgYyeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SKL1Vi14uKFORdLVHiBuVgYyeU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SKL1Vi14uKFORdLVHiBuVgYyeU.png 1280w\"},className:\"framer-h0iisc\",\"data-framer-name\":\"Hindustan-times.cc0d7f00\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dr9b1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"73px\",src:\"https://framerusercontent.com/images/oaSboUcuIrHhNdSVzqrcWsoOI.png\",srcSet:\"https://framerusercontent.com/images/oaSboUcuIrHhNdSVzqrcWsoOI.png?scale-down-to=512 512w,https://framerusercontent.com/images/oaSboUcuIrHhNdSVzqrcWsoOI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oaSboUcuIrHhNdSVzqrcWsoOI.png 1500w\"},className:\"framer-cei6kj\",\"data-framer-name\":\"Oyo.3e5879da\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16i593b\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:326,intrinsicWidth:1200,pixelHeight:326,pixelWidth:1200,sizes:\"140px\",src:\"https://framerusercontent.com/images/ZnDhjDjB2nsXTZnmDm74MDDszmQ.png\",srcSet:\"https://framerusercontent.com/images/ZnDhjDjB2nsXTZnmDm74MDDszmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZnDhjDjB2nsXTZnmDm74MDDszmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZnDhjDjB2nsXTZnmDm74MDDszmQ.png 1200w\"},className:\"framer-hvo0pj\",\"data-framer-name\":\"Byju.45b3bfc5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nydq8x\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:102,intrinsicWidth:493,pixelHeight:102,pixelWidth:493,src:\"https://framerusercontent.com/images/LhaVYU4nazBPjbapyQHSRoqt0.jpg\"},className:\"framer-zlu8qw\",\"data-framer-name\":\"Download\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1frwy5k\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/5fNjWII9cCcuhlF90RbtqEz7DEQ.png\"},className:\"framer-19fwh79\",\"data-framer-name\":\"Download (1)\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hth7ai\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:811,intrinsicWidth:2560,pixelHeight:811,pixelWidth:2560,sizes:\"91px\",src:\"https://framerusercontent.com/images/UCA7YRjjbC0CvkSYdm9RayoLR0.png\",srcSet:\"https://framerusercontent.com/images/UCA7YRjjbC0CvkSYdm9RayoLR0.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCA7YRjjbC0CvkSYdm9RayoLR0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UCA7YRjjbC0CvkSYdm9RayoLR0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UCA7YRjjbC0CvkSYdm9RayoLR0.png 2560w\"},className:\"framer-1mzpkwb\",\"data-framer-name\":\"Paytm.a5f0f450\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-149op9r\",\"data-framer-name\":\"mailmoda\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:157,intrinsicWidth:863,pixelHeight:157,pixelWidth:863,sizes:\"132px\",src:\"https://framerusercontent.com/images/nPEgxHuIAHYNgxeXjTcb6K4qDk.png\",srcSet:\"https://framerusercontent.com/images/nPEgxHuIAHYNgxeXjTcb6K4qDk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nPEgxHuIAHYNgxeXjTcb6K4qDk.png 863w\"},className:\"framer-1k59xre\",\"data-framer-name\":\"Mailmodo.81a21d78\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r1egf6\",\"data-framer-name\":\"holisol\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:452,intrinsicWidth:861,pixelHeight:452,pixelWidth:861,sizes:\"79px\",src:\"https://framerusercontent.com/images/8Jboxf7k27EOHXzs7B66XSEetI.jpg\",srcSet:\"https://framerusercontent.com/images/8Jboxf7k27EOHXzs7B66XSEetI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8Jboxf7k27EOHXzs7B66XSEetI.jpg 861w\"},className:\"framer-1hn1vwc\",\"data-framer-name\":\"Holisol.0ba44f3b\"})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ydx1mx-container\",isModuleExternal:true,nodeId:\"Ig9kFwj5B\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:81,height:\"100%\",hoverFactor:1,id:\"Ig9kFwj5B\",layoutId:\"Ig9kFwj5B\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1agcbfr\",\"data-framer-name\":\"fieldassi\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:437,intrinsicWidth:1516,pixelHeight:437,pixelWidth:1516,sizes:\"123px\",src:\"https://framerusercontent.com/images/tGlHkZDNtMuwjnulAzOoiXKG3Q.png\",srcSet:\"https://framerusercontent.com/images/tGlHkZDNtMuwjnulAzOoiXKG3Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/tGlHkZDNtMuwjnulAzOoiXKG3Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tGlHkZDNtMuwjnulAzOoiXKG3Q.png 1516w\"},className:\"framer-1eec61u\",\"data-framer-name\":\"Fieldassist.04b4ea82\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12bs1d6\",\"data-framer-name\":\"sistema\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:436,intrinsicWidth:1275,pixelHeight:436,pixelWidth:1275,sizes:\"114px\",src:\"https://framerusercontent.com/images/GbE67M2E9xvY8djQjvCLN8Qq1k.png\",srcSet:\"https://framerusercontent.com/images/GbE67M2E9xvY8djQjvCLN8Qq1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/GbE67M2E9xvY8djQjvCLN8Qq1k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GbE67M2E9xvY8djQjvCLN8Qq1k.png 1275w\"},className:\"framer-1k42qdt\",\"data-framer-name\":\"Sistema-bio.ddfcf107\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ud9st\",\"data-framer-name\":\"CP kukreja\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:114,intrinsicWidth:441,pixelHeight:114,pixelWidth:441,src:\"https://framerusercontent.com/images/aod2r0mx6WdxEjXgbzIeKXuSvEw.png\"},className:\"framer-1ery5ub\",\"data-framer-name\":\"Download\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yzgwlj\",\"data-framer-name\":\"allianz\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:762,intrinsicWidth:4267,pixelHeight:762,pixelWidth:4267,sizes:\"123px\",src:\"https://framerusercontent.com/images/IL5796aD2S0d8PNHG0hMEhZKQ.png\",srcSet:\"https://framerusercontent.com/images/IL5796aD2S0d8PNHG0hMEhZKQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/IL5796aD2S0d8PNHG0hMEhZKQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IL5796aD2S0d8PNHG0hMEhZKQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IL5796aD2S0d8PNHG0hMEhZKQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/IL5796aD2S0d8PNHG0hMEhZKQ.png 4267w\"},className:\"framer-19zw67q\",\"data-framer-name\":\"Allianz.da2f6cdc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rg6jyu\",\"data-framer-name\":\"akbar\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:216,intrinsicWidth:300,pixelHeight:216,pixelWidth:300,src:\"https://framerusercontent.com/images/l6B0iyF3tDt0coMeuhxqk6YYauo.png\"},className:\"framer-18jji6m\",\"data-framer-name\":\"Akbartravels\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17h0ufk\",\"data-framer-name\":\"koovs\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:166,intrinsicWidth:651,pixelHeight:166,pixelWidth:651,sizes:\"89px\",src:\"https://framerusercontent.com/images/Dgf8jNTjDNGLRVyC81J6Hjgs.png\",srcSet:\"https://framerusercontent.com/images/Dgf8jNTjDNGLRVyC81J6Hjgs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dgf8jNTjDNGLRVyC81J6Hjgs.png 651w\"},className:\"framer-1dhmsea\",\"data-framer-name\":\"Koovs.027d38b3\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zgu467\",\"data-framer-name\":\"shipsy\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:453,intrinsicWidth:740,pixelHeight:453,pixelWidth:740,sizes:\"86px\",src:\"https://framerusercontent.com/images/tub43pnbFQQxYf0YFDzn2TC79d4.jpg\",srcSet:\"https://framerusercontent.com/images/tub43pnbFQQxYf0YFDzn2TC79d4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tub43pnbFQQxYf0YFDzn2TC79d4.jpg 740w\"},className:\"framer-1nf61fl\",\"data-framer-name\":\"Shipsy.3b28a264\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1846hwo\",\"data-framer-name\":\"fasa\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"54px\",src:\"https://framerusercontent.com/images/M98xo9x1HHIioENQUPDFKkA0Wg.png\",srcSet:\"https://framerusercontent.com/images/M98xo9x1HHIioENQUPDFKkA0Wg.png?scale-down-to=512 512w,https://framerusercontent.com/images/M98xo9x1HHIioENQUPDFKkA0Wg.png 1024w\"},className:\"framer-1aki0yh\",\"data-framer-name\":\"Fasa.533e683f\"})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-103ihga\",\"data-framer-name\":\"About Expert\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+877.9+44+0},XhM55gPOl:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+974.9+56}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:449,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+1046.9+72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g98yru-container\",nodeId:\"DzIa_Rr52\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{OezcbaZkP:true},XhM55gPOl:{OezcbaZkP:true}},children:/*#__PURE__*/_jsx(Tabs,{height:\"100%\",id:\"DzIa_Rr52\",layoutId:\"DzIa_Rr52\",OezcbaZkP:false,style:{width:\"100%\"},variant:\"T__SJdtL0\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1de4lio\",\"data-framer-name\":\"Comparison Section \",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9986 - 40px, 1200px)`,y:(componentViewport?.y||0)+0+1414.9+0+0},XhM55gPOl:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9986 - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1535.9+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`min(${componentViewport?.width||\"100vw\"} * 0.9986, 1200px)`,y:(componentViewport?.y||0)+0+1639.9+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ji2x0l-container\",nodeId:\"A6djFt0fp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{variant:\"fwtwF0Rkb\"},XhM55gPOl:{variant:\"fwtwF0Rkb\",xZpcPyAwE:true}},children:/*#__PURE__*/_jsx(MainSection,{height:\"100%\",id:\"A6djFt0fp\",layoutId:\"A6djFt0fp\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ZFWayqZ9_\",width:\"100%\",xZpcPyAwE:false})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-beeoe\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-104id0w\",\"data-styles-preset\":\"yebpNQ4eu\",children:\"Testimonials\"})}),className:\"framer-uln6z1\",\"data-framer-name\":\"Testimonials\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tp6urz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aAxIaoKgt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,topLeftRadius:0,topRightRadius:0}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"aAxIaoKgt\",isMixedBorderRadius:false,isRed:true,layoutId:\"aAxIaoKgt\",play:\"Off\",shouldMute:true,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://www.youtube.com/watch?v=rtEhRlR-Cao\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8zypz3\",\"data-framer-name\":\"Carousel\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a50oj6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uOtsGVYth\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:8,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:20},paddingLeft:20,paddingPerSide:true,paddingRight:20,sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(255, 255, 255)\",arrowPadding:20,arrowRadius:40,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/RZO60KE6CPb55WBjaz2KrFNCE0.png\",rightArrow:\"https://framerusercontent.com/images/hR1AnJ7DwtXsVpmIwdGFes4pb8.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:8,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:20},gap:10,height:\"100%\",id:\"uOtsGVYth\",layoutId:\"uOtsGVYth\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1352qem\",\"data-framer-name\":\"Testimonial Card 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yixy5p\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jret28\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5sepmm\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y5y0w2\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-ozfx60\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o2soj1\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Sneha Dalakoti\"})}),className:\"framer-ffpl3e\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-3zkug7\",\"data-framer-name\":\"#Position\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-p1xssj\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g266ku\",\"data-framer-name\":\"Testimonial Card 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1igoiem\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iljg49\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fdn86i\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n2qh00\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-u0lu46\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-djsp43\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Sunny Side\"})}),className:\"framer-1xayde2\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-gft0a1\",\"data-framer-name\":\"#Position\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-pxi8sv\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wi6hi9\",\"data-framer-name\":\"Testimonial Card 3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i263pd\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l7fb5y\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fis0vo\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vksjzp\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-13anfad\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dxu09f\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Albert stien\"})}),className:\"framer-e7n7dg\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-358ev5\",\"data-framer-name\":\"#Position\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-171u8m\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hcelpj\",\"data-framer-name\":\"Testimonial Card 4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3hx5wq\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u3det2\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xi5abh\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-33lf5t\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-v93b5k\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jb675p\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Vishaka \"})}),className:\"framer-fj13a\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-187ahrz\",\"data-framer-name\":\"#Position\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-1soqdpm\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rpk8pp\",\"data-framer-name\":\"Testimonial Card 5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t4rxwp\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1si9osz\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2gou9f\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eacygo\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-g3n8u5\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r160ws\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Tanu\"})}),className:\"framer-11gwoop\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-rbp6rt\",\"data-framer-name\":\"#Position\",fonts:[\"GF;Be Vietnam Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-mw47p5\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1352qem\",\"data-framer-name\":\"Testimonial Card 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yixy5p\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jret28\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5sepmm\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y5y0w2\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-ozfx60\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o2soj1\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Sneha Dalakoti\"})}),className:\"framer-ffpl3e\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-3zkug7\",\"data-framer-name\":\"#Position\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-p1xssj\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g266ku\",\"data-framer-name\":\"Testimonial Card 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1igoiem\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iljg49\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fdn86i\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n2qh00\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-u0lu46\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-djsp43\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Sunny Side\"})}),className:\"framer-1xayde2\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-gft0a1\",\"data-framer-name\":\"#Position\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-pxi8sv\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wi6hi9\",\"data-framer-name\":\"Testimonial Card 3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i263pd\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l7fb5y\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fis0vo\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vksjzp\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-13anfad\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dxu09f\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Albert stien\"})}),className:\"framer-e7n7dg\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-358ev5\",\"data-framer-name\":\"#Position\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-171u8m\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hcelpj\",\"data-framer-name\":\"Testimonial Card 4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3hx5wq\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u3det2\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xi5abh\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-33lf5t\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-v93b5k\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jb675p\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Vishaka \"})}),className:\"framer-fj13a\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-187ahrz\",\"data-framer-name\":\"#Position\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-1soqdpm\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rpk8pp\",\"data-framer-name\":\"Testimonial Card 5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t4rxwp\",\"data-framer-name\":\"Frame 1000011574\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1si9osz\",\"data-framer-name\":\"User card 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2gou9f\",\"data-border\":true,\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eacygo\",\"data-framer-name\":\"Img lib/Ava/Cartoon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:128,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dymv10HeHsVtOMwrcGzp9Lh0PlM.png\"},className:\"framer-g3n8u5\",\"data-framer-name\":\"Image ava\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r160ws\",\"data-framer-name\":\"Name wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1llsl5q\",\"data-styles-preset\":\"ybtYqU_Wg\",style:{\"--framer-text-color\":\"var(--token-b3e826bd-91c4-45ad-b0a3-6424e19f1dab, rgb(32, 32, 32))\"},children:\"Tanu\"})}),className:\"framer-11gwoop\",\"data-framer-name\":\"#Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Team Lead, Koovs.com\"})}),className:\"framer-rbp6rt\",\"data-framer-name\":\"#Position\",fonts:[\"GF;Be Vietnam Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-128j4u5\",\"data-styles-preset\":\"MIcEBtMNd\",style:{\"--framer-text-color\":\"var(--token-9fe81724-202c-4ef9-957e-14a3361fba37, rgb(92, 109, 136))\"},children:\"It was nice working with Expert Right, their deliveries were quick and prompt and their process of onboarding freelancers was hassle free. ExpertRight.com does not charge you for any service. No hidden cost, No middle man fee.\"})}),className:\"framer-mw47p5\",\"data-framer-name\":\"#Testimonial content\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4zrtr6\",\"data-framer-name\":\"Featured Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yrpm0b\",\"data-framer-name\":\"featured-main\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tsvgl8\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b6gsgd\",\"data-framer-name\":\"featured-box\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fuu5of\",\"data-framer-name\":\"Frame 1000011591\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oydkrw\",\"data-framer-name\":\"Frame 1000011541\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1339tu4\",\"data-styles-preset\":\"sjvHQ_GJa\",children:\"Featured On\"})}),className:\"framer-1w9eukj\",\"data-framer-name\":\"Featured On\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h4vq79\",\"data-styles-preset\":\"D8yOkc5r2\",children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"})}),className:\"framer-1hsdcdu\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{y:(componentViewport?.y||0)+0+2991.3+0+0+48+0+0+32+0+204},XhM55gPOl:{y:(componentViewport?.y||0)+0+3184.3+0+72+0+32+0+204}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+3320.3+0+96+0+32+0+204,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6hckqx-container\",nodeId:\"ey3zMzKjK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AshishButton,{height:\"100%\",id:\"ey3zMzKjK\",layoutId:\"ey3zMzKjK\",ObJKKUCOO:\"Work With Us\",style:{height:\"100%\"},U_PqPoCaZ:true,variant:\"zxpKjOpkV\",width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7iq4sm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"r6cduVQOv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:2,fadeWidth:24,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"r6cduVQOv\",layoutId:\"r6cduVQOv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1okm2pu\",\"data-framer-name\":\"Featured Card-1\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-clb9xp\",\"data-framer-name\":\"Frame 1000011543\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mylid8\",\"data-framer-name\":\"Rise\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:141,intrinsicWidth:140,svg:'<svg width=\"140\" height=\"141\" viewBox=\"0 0 140 141\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M55.2542 38.9014C55.2542 38.1186 55.8371 37.4583 56.6139 37.3612L65.927 36.1971C66.8535 36.0813 67.6717 36.8037 67.6717 37.7373V68.3689C67.6717 69.3025 66.8535 70.0249 65.927 69.9091L56.6139 68.745C55.8371 68.6479 55.2542 67.9876 55.2542 67.2048V38.9014Z\" fill=\"#1E1E1E\"/>\\n<path d=\"M36.6279 42.7819C36.6279 41.9991 37.2108 41.3388 37.9876 41.2417L47.3007 40.0776C48.2272 39.9618 49.0455 40.6841 49.0455 41.6178V66.0406C49.0455 66.9742 48.2272 67.6966 47.3007 67.5808L37.9876 66.4167C37.2108 66.3196 36.6279 65.6593 36.6279 64.8765V42.7819Z\" fill=\"#1E1E1E\"/>\\n<path d=\"M85.1223 38.7894C85.8133 38.9622 86.298 39.583 86.298 40.2953V53.235C86.298 54.0178 85.7151 54.6781 84.9384 54.7752L75.6252 55.9394C74.6988 56.0552 73.8805 55.3328 73.8805 54.3992V37.967C73.8805 36.9572 74.8295 36.2162 75.8092 36.4612L85.1223 38.7894Z\" fill=\"#1E1E1E\"/>\\n<path d=\"M103.372 44.1758C103.372 43.4635 102.887 42.8427 102.196 42.6699L92.8832 40.3416C91.9036 40.0967 90.9546 40.8377 90.9546 41.8475V53.6231C90.9546 54.5567 91.7729 55.2791 92.6993 55.1633L102.012 53.9991C102.789 53.9021 103.372 53.2418 103.372 52.4589V44.1758Z\" fill=\"#1E1E1E\"/>\\n<path d=\"M103.372 60.038L73.1044 60.814C73.5423 66.5072 78.2896 70.9033 83.9995 70.9033H90.9546V77.5091L36.6279 72.4555V104.815L103.372 100.159V60.038Z\" fill=\"#1E1E1E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h4vq79\",\"data-styles-preset\":\"D8yOkc5r2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lorem ipsum dolor sit amet consectetur. Auctor risus.\"})}),className:\"framer-1lndwg\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Auctor risus.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nv4w1p\",\"data-framer-name\":\"Featured Card-1\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c70wym\",\"data-framer-name\":\"Frame 1000011543\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-292k65\",\"data-framer-name\":\"Flash\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:143,intrinsicWidth:144,svg:'<svg width=\"144\" height=\"143\" viewBox=\"0 0 144 143\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M76.1069 30.4313L35.0381 79.7138H72L67.8931 112.569L108.962 63.2863H72L76.1069 30.4313Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h4vq79\",\"data-styles-preset\":\"D8yOkc5r2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Lorem ipsum dolor sit amet consectetur. Auctor risus.\"})}),className:\"framer-lb7xb\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Auctor risus.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mqb54l\",\"data-framer-name\":\"Featured Card-1\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-60bdh4\",\"data-framer-name\":\"Frame 1000011543\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1sdwzho\",\"data-framer-name\":\"Rise\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:141,intrinsicWidth:140,svg:'<svg width=\"140\" height=\"141\" viewBox=\"0 0 140 141\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M55.2542 38.9014C55.2542 38.1186 55.8371 37.4583 56.6139 37.3612L65.927 36.1971C66.8535 36.0813 67.6717 36.8037 67.6717 37.7373V68.3689C67.6717 69.3025 66.8535 70.0249 65.927 69.9091L56.6139 68.745C55.8371 68.6479 55.2542 67.9876 55.2542 67.2048V38.9014Z\" fill=\"#1E1E1E\"/>\\n<path d=\"M36.6279 42.7819C36.6279 41.9991 37.2108 41.3388 37.9876 41.2417L47.3007 40.0776C48.2272 39.9618 49.0455 40.6841 49.0455 41.6178V66.0406C49.0455 66.9742 48.2272 67.6966 47.3007 67.5808L37.9876 66.4167C37.2108 66.3196 36.6279 65.6593 36.6279 64.8765V42.7819Z\" fill=\"#1E1E1E\"/>\\n<path d=\"M85.1223 38.7894C85.8133 38.9622 86.298 39.583 86.298 40.2953V53.235C86.298 54.0178 85.7151 54.6781 84.9384 54.7752L75.6252 55.9394C74.6988 56.0552 73.8805 55.3328 73.8805 54.3992V37.967C73.8805 36.9572 74.8295 36.2162 75.8092 36.4612L85.1223 38.7894Z\" fill=\"#1E1E1E\"/>\\n<path d=\"M103.372 44.1758C103.372 43.4635 102.887 42.8427 102.196 42.6699L92.8832 40.3416C91.9036 40.0967 90.9546 40.8377 90.9546 41.8475V53.6231C90.9546 54.5567 91.7729 55.2791 92.6993 55.1633L102.012 53.9991C102.789 53.9021 103.372 53.2418 103.372 52.4589V44.1758Z\" fill=\"#1E1E1E\"/>\\n<path d=\"M103.372 60.038L73.1044 60.814C73.5423 66.5072 78.2896 70.9033 83.9995 70.9033H90.9546V77.5091L36.6279 72.4555V104.815L103.372 100.159V60.038Z\" fill=\"#1E1E1E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h4vq79\",\"data-styles-preset\":\"D8yOkc5r2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lorem ipsum dolor sit amet consectetur. Auctor risus.\"})}),className:\"framer-at2p73\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Auctor risus.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p6h6qx\",\"data-framer-name\":\"Featured Card-1\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rbbfa8\",\"data-framer-name\":\"Frame 1000011543\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-p7q7ja\",\"data-framer-name\":\"Flash\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:143,intrinsicWidth:144,svg:'<svg width=\"144\" height=\"143\" viewBox=\"0 0 144 143\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M76.1069 30.4313L35.0381 79.7138H72L67.8931 112.569L108.962 63.2863H72L76.1069 30.4313Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h4vq79\",\"data-styles-preset\":\"D8yOkc5r2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b89c4839-a67c-46ba-91df-a8cd7737156d, rgb(171, 173, 176))\"},children:\"Lorem ipsum dolor sit amet consectetur. Auctor risus.\"})}),className:\"framer-1oz9ixc\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Auctor risus.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ax7urw\",\"data-framer-name\":\"News Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+3737.3+44+0},XhM55gPOl:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+3648.3+56+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:649,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1200px)`,y:(componentViewport?.y||0)+0+3832.3+72+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4numb9-container\",nodeId:\"L14JE7TDR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{variant:\"Moi3s6GbV\"}},children:/*#__PURE__*/_jsx(AshishBlogSection,{height:\"100%\",id:\"L14JE7TDR\",layoutId:\"L14JE7TDR\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"GIJ_KhVlJ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{y:(componentViewport?.y||0)+0+4474.3},XhM55gPOl:{y:(componentViewport?.y||0)+0+4409.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:733,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4625.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hng2j8-container\",nodeId:\"XZg4zKpVc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfRPGFzs1:{variant:\"lT5EKPajx\"},XhM55gPOl:{variant:\"n9qtIa6Df\"}},children:/*#__PURE__*/_jsx(AshishFooter,{height:\"100%\",id:\"XZg4zKpVc\",layoutId:\"XZg4zKpVc\",style:{width:\"100%\"},variant:\"JIblhKMSg\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KtnZr.framer-lux5qc, .framer-KtnZr .framer-lux5qc { display: block; }\",\".framer-KtnZr.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-KtnZr .framer-1z0vb1j-container { flex: none; height: 98px; position: relative; width: 1200px; z-index: 1; }\",\".framer-KtnZr .framer-10w50w5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-h4ywcu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1024px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-18pcss7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KtnZr .framer-1ho3q3y { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #fbfbfb; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 20px 5px 20px; position: relative; width: min-content; }\",\".framer-KtnZr .framer-1e2a522, .framer-KtnZr .framer-1f02yhe, .framer-KtnZr .framer-ihhimc, .framer-KtnZr .framer-uln6z1, .framer-KtnZr .framer-1w9eukj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KtnZr .framer-10k0w7v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-KtnZr .framer-cz2x3k { flex: none; height: 10px; position: relative; width: 6px; }\",\".framer-KtnZr .framer-18wn7ok, .framer-KtnZr .framer-1hsdcdu, .framer-KtnZr .framer-1lndwg, .framer-KtnZr .framer-lb7xb, .framer-KtnZr .framer-at2p73, .framer-KtnZr .framer-1oz9ixc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KtnZr .framer-1hun5pz { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-KtnZr .framer-dtnird { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-63a74p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KtnZr .framer-uw0sqt-container, .framer-KtnZr .framer-9p44m0-container, .framer-KtnZr .framer-6hckqx-container { flex: none; height: 52px; position: relative; width: auto; }\",\".framer-KtnZr .framer-ko7p5d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KtnZr .framer-11xxaib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 30px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 96px; z-index: 1; }\",\".framer-KtnZr .framer-1ntxxlp { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 4px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-KtnZr .framer-1gza729 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; bottom: 0px; cursor: default; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 30px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-KtnZr .framer-18bjz9a { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 38px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 30px; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-KtnZr .framer-dim1n2 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 20px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 30px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-KtnZr .framer-e0ulfs { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0067ff; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 55px; overflow: visible; padding: 6px 0px 6px 0px; position: absolute; top: 0px; width: 30px; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-KtnZr .framer-1y0hqb7 { --framer-paragraph-spacing: 0px; cursor: default; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-KtnZr .framer-nenoko { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 0px 72px 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-z5bkyd { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KtnZr .framer-1hu283k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-snaiax-container, .framer-KtnZr .framer-ydx1mx-container { flex: none; height: 78px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-30re4y { height: 21px; overflow: hidden; position: relative; width: 163px; }\",\".framer-KtnZr .framer-h0iisc { aspect-ratio: 7.804878048780488 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-1dr9b1 { height: 29px; overflow: hidden; position: relative; width: 73px; }\",\".framer-KtnZr .framer-cei6kj, .framer-KtnZr .framer-19fwh79, .framer-KtnZr .framer-1nf61fl, .framer-KtnZr .framer-1y5y0w2, .framer-KtnZr .framer-n2qh00, .framer-KtnZr .framer-1vksjzp, .framer-KtnZr .framer-33lf5t, .framer-KtnZr .framer-1eacygo { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-16i593b { height: 38px; overflow: hidden; position: relative; width: 140px; }\",\".framer-KtnZr .framer-hvo0pj { aspect-ratio: 3.6809815950920246 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-nydq8x { height: 27px; overflow: hidden; position: relative; width: 129px; }\",\".framer-KtnZr .framer-zlu8qw { aspect-ratio: 4.833333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-1frwy5k { height: 31px; overflow: hidden; position: relative; width: 181px; }\",\".framer-KtnZr .framer-hth7ai { height: 29px; overflow: hidden; position: relative; width: 91px; }\",\".framer-KtnZr .framer-1mzpkwb { aspect-ratio: 3.156596794081381 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-149op9r { height: 24px; overflow: hidden; position: relative; width: 132px; }\",\".framer-KtnZr .framer-1k59xre { aspect-ratio: 5.496815286624204 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-r1egf6 { height: 41px; overflow: hidden; position: relative; width: 79px; }\",\".framer-KtnZr .framer-1hn1vwc { aspect-ratio: 1.904867256637168 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-1agcbfr { height: 35px; overflow: hidden; position: relative; width: 123px; }\",\".framer-KtnZr .framer-1eec61u { aspect-ratio: 3.469107551487414 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-12bs1d6 { height: 39px; overflow: hidden; position: relative; width: 114px; }\",\".framer-KtnZr .framer-1k42qdt { aspect-ratio: 2.9243119266055047 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-7ud9st { height: 28px; overflow: hidden; position: relative; width: 107px; }\",\".framer-KtnZr .framer-1ery5ub { aspect-ratio: 3.8684210526315788 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-1yzgwlj { height: 22px; overflow: hidden; position: relative; width: 123px; }\",\".framer-KtnZr .framer-19zw67q { aspect-ratio: 5.599737532808399 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-rg6jyu { height: 45px; overflow: hidden; position: relative; width: 62px; }\",\".framer-KtnZr .framer-18jji6m { aspect-ratio: 1.3888888888888888 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-17h0ufk { height: 23px; overflow: hidden; position: relative; width: 89px; }\",\".framer-KtnZr .framer-1dhmsea { aspect-ratio: 3.9216867469879517 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-zgu467 { height: 24px; overflow: hidden; position: relative; width: 86px; }\",\".framer-KtnZr .framer-1846hwo { height: 54px; overflow: hidden; position: relative; width: 54px; }\",\".framer-KtnZr .framer-1aki0yh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-103ihga { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 72px 0px 72px 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-g98yru-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-KtnZr .framer-1de4lio { align-content: center; align-items: center; background-color: #f8fbff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-1ji2x0l-container, .framer-KtnZr .framer-4numb9-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-beeoe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 0px 72px 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-tp6urz-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 576px); max-width: 1024px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-8zypz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-1a50oj6-container { flex: none; height: auto; max-width: 1140px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-1352qem, .framer-KtnZr .framer-1g266ku, .framer-KtnZr .framer-1wi6hi9, .framer-KtnZr .framer-1hcelpj, .framer-KtnZr .framer-rpk8pp { align-content: flex-start; align-items: flex-start; background-color: #f7faff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-KtnZr .framer-yixy5p, .framer-KtnZr .framer-1igoiem, .framer-KtnZr .framer-1i263pd, .framer-KtnZr .framer-3hx5wq, .framer-KtnZr .framer-t4rxwp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 262px; }\",\".framer-KtnZr .framer-1jret28, .framer-KtnZr .framer-1iljg49, .framer-KtnZr .framer-1l7fb5y, .framer-KtnZr .framer-1u3det2, .framer-KtnZr .framer-1si9osz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KtnZr .framer-5sepmm, .framer-KtnZr .framer-fdn86i, .framer-KtnZr .framer-fis0vo, .framer-KtnZr .framer-1xi5abh, .framer-KtnZr .framer-2gou9f { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.6); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KtnZr .framer-ozfx60, .framer-KtnZr .framer-u0lu46, .framer-KtnZr .framer-13anfad, .framer-KtnZr .framer-v93b5k, .framer-KtnZr .framer-g3n8u5 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-KtnZr .framer-o2soj1, .framer-KtnZr .framer-djsp43, .framer-KtnZr .framer-1dxu09f, .framer-KtnZr .framer-jb675p, .framer-KtnZr .framer-1r160ws { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KtnZr .framer-ffpl3e, .framer-KtnZr .framer-1xayde2, .framer-KtnZr .framer-e7n7dg, .framer-KtnZr .framer-fj13a, .framer-KtnZr .framer-11gwoop { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KtnZr .framer-3zkug7, .framer-KtnZr .framer-gft0a1, .framer-KtnZr .framer-358ev5, .framer-KtnZr .framer-187ahrz, .framer-KtnZr .framer-rbp6rt { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KtnZr .framer-p1xssj, .framer-KtnZr .framer-pxi8sv, .framer-KtnZr .framer-171u8m, .framer-KtnZr .framer-1soqdpm, .framer-KtnZr .framer-mw47p5 { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 262px; word-break: break-word; word-wrap: break-word; }\",\".framer-KtnZr .framer-4zrtr6 { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-KtnZr .framer-1yrpm0b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 60px 96px 60px; position: relative; width: 1px; }\",\".framer-KtnZr .framer-tsvgl8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KtnZr .framer-1b6gsgd { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 320px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-KtnZr .framer-fuu5of { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KtnZr .framer-oydkrw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 340px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-7iq4sm-container { flex: none; height: 320px; position: absolute; right: 0px; top: calc(50.00000000000002% - 320px / 2); width: 50%; z-index: 0; }\",\".framer-KtnZr .framer-1okm2pu, .framer-KtnZr .framer-1mqb54l { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 300px; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KtnZr .framer-clb9xp, .framer-KtnZr .framer-c70wym, .framer-KtnZr .framer-60bdh4, .framer-KtnZr .framer-rbbfa8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-1mylid8, .framer-KtnZr .framer-1sdwzho { flex: none; height: 141px; position: relative; width: 140px; }\",\".framer-KtnZr .framer-1nv4w1p, .framer-KtnZr .framer-p6h6qx { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 300px; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KtnZr .framer-292k65, .framer-KtnZr .framer-p7q7ja { flex: none; height: 143px; position: relative; width: 144px; z-index: 1; }\",\".framer-KtnZr .framer-1ax7urw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 60px 72px 60px; position: relative; width: 100%; }\",\".framer-KtnZr .framer-1hng2j8-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KtnZr.framer-72rtr7, .framer-KtnZr .framer-10w50w5, .framer-KtnZr .framer-h4ywcu, .framer-KtnZr .framer-18pcss7, .framer-KtnZr .framer-1ho3q3y, .framer-KtnZr .framer-10k0w7v, .framer-KtnZr .framer-dtnird, .framer-KtnZr .framer-63a74p, .framer-KtnZr .framer-ko7p5d, .framer-KtnZr .framer-11xxaib, .framer-KtnZr .framer-1ntxxlp, .framer-KtnZr .framer-1gza729, .framer-KtnZr .framer-18bjz9a, .framer-KtnZr .framer-dim1n2, .framer-KtnZr .framer-e0ulfs, .framer-KtnZr .framer-nenoko, .framer-KtnZr .framer-1hu283k, .framer-KtnZr .framer-103ihga, .framer-KtnZr .framer-1de4lio, .framer-KtnZr .framer-beeoe, .framer-KtnZr .framer-8zypz3, .framer-KtnZr .framer-1352qem, .framer-KtnZr .framer-yixy5p, .framer-KtnZr .framer-1jret28, .framer-KtnZr .framer-o2soj1, .framer-KtnZr .framer-1g266ku, .framer-KtnZr .framer-1igoiem, .framer-KtnZr .framer-1iljg49, .framer-KtnZr .framer-djsp43, .framer-KtnZr .framer-1wi6hi9, .framer-KtnZr .framer-1i263pd, .framer-KtnZr .framer-1l7fb5y, .framer-KtnZr .framer-1dxu09f, .framer-KtnZr .framer-1hcelpj, .framer-KtnZr .framer-3hx5wq, .framer-KtnZr .framer-1u3det2, .framer-KtnZr .framer-jb675p, .framer-KtnZr .framer-rpk8pp, .framer-KtnZr .framer-t4rxwp, .framer-KtnZr .framer-1si9osz, .framer-KtnZr .framer-1r160ws, .framer-KtnZr .framer-4zrtr6, .framer-KtnZr .framer-1yrpm0b, .framer-KtnZr .framer-tsvgl8, .framer-KtnZr .framer-1b6gsgd, .framer-KtnZr .framer-oydkrw, .framer-KtnZr .framer-1okm2pu, .framer-KtnZr .framer-clb9xp, .framer-KtnZr .framer-1nv4w1p, .framer-KtnZr .framer-c70wym, .framer-KtnZr .framer-1mqb54l, .framer-KtnZr .framer-60bdh4, .framer-KtnZr .framer-p6h6qx, .framer-KtnZr .framer-rbbfa8, .framer-KtnZr .framer-1ax7urw { gap: 0px; } .framer-KtnZr.framer-72rtr7 > *, .framer-KtnZr .framer-1gza729 > *, .framer-KtnZr .framer-18bjz9a > *, .framer-KtnZr .framer-dim1n2 > *, .framer-KtnZr .framer-o2soj1 > *, .framer-KtnZr .framer-djsp43 > *, .framer-KtnZr .framer-1dxu09f > *, .framer-KtnZr .framer-jb675p > *, .framer-KtnZr .framer-1r160ws > *, .framer-KtnZr .framer-1okm2pu > *, .framer-KtnZr .framer-1nv4w1p > *, .framer-KtnZr .framer-1mqb54l > *, .framer-KtnZr .framer-p6h6qx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KtnZr.framer-72rtr7 > :first-child, .framer-KtnZr .framer-10w50w5 > :first-child, .framer-KtnZr .framer-h4ywcu > :first-child, .framer-KtnZr .framer-dtnird > :first-child, .framer-KtnZr .framer-1gza729 > :first-child, .framer-KtnZr .framer-18bjz9a > :first-child, .framer-KtnZr .framer-dim1n2 > :first-child, .framer-KtnZr .framer-e0ulfs > :first-child, .framer-KtnZr .framer-nenoko > :first-child, .framer-KtnZr .framer-1hu283k > :first-child, .framer-KtnZr .framer-1de4lio > :first-child, .framer-KtnZr .framer-beeoe > :first-child, .framer-KtnZr .framer-1352qem > :first-child, .framer-KtnZr .framer-yixy5p > :first-child, .framer-KtnZr .framer-o2soj1 > :first-child, .framer-KtnZr .framer-1g266ku > :first-child, .framer-KtnZr .framer-1igoiem > :first-child, .framer-KtnZr .framer-djsp43 > :first-child, .framer-KtnZr .framer-1wi6hi9 > :first-child, .framer-KtnZr .framer-1i263pd > :first-child, .framer-KtnZr .framer-1dxu09f > :first-child, .framer-KtnZr .framer-1hcelpj > :first-child, .framer-KtnZr .framer-3hx5wq > :first-child, .framer-KtnZr .framer-jb675p > :first-child, .framer-KtnZr .framer-rpk8pp > :first-child, .framer-KtnZr .framer-t4rxwp > :first-child, .framer-KtnZr .framer-1r160ws > :first-child, .framer-KtnZr .framer-oydkrw > :first-child, .framer-KtnZr .framer-1okm2pu > :first-child, .framer-KtnZr .framer-clb9xp > :first-child, .framer-KtnZr .framer-1nv4w1p > :first-child, .framer-KtnZr .framer-c70wym > :first-child, .framer-KtnZr .framer-1mqb54l > :first-child, .framer-KtnZr .framer-60bdh4 > :first-child, .framer-KtnZr .framer-p6h6qx > :first-child, .framer-KtnZr .framer-rbbfa8 > :first-child, .framer-KtnZr .framer-1ax7urw > :first-child { margin-top: 0px; } .framer-KtnZr.framer-72rtr7 > :last-child, .framer-KtnZr .framer-10w50w5 > :last-child, .framer-KtnZr .framer-h4ywcu > :last-child, .framer-KtnZr .framer-dtnird > :last-child, .framer-KtnZr .framer-1gza729 > :last-child, .framer-KtnZr .framer-18bjz9a > :last-child, .framer-KtnZr .framer-dim1n2 > :last-child, .framer-KtnZr .framer-e0ulfs > :last-child, .framer-KtnZr .framer-nenoko > :last-child, .framer-KtnZr .framer-1hu283k > :last-child, .framer-KtnZr .framer-1de4lio > :last-child, .framer-KtnZr .framer-beeoe > :last-child, .framer-KtnZr .framer-1352qem > :last-child, .framer-KtnZr .framer-yixy5p > :last-child, .framer-KtnZr .framer-o2soj1 > :last-child, .framer-KtnZr .framer-1g266ku > :last-child, .framer-KtnZr .framer-1igoiem > :last-child, .framer-KtnZr .framer-djsp43 > :last-child, .framer-KtnZr .framer-1wi6hi9 > :last-child, .framer-KtnZr .framer-1i263pd > :last-child, .framer-KtnZr .framer-1dxu09f > :last-child, .framer-KtnZr .framer-1hcelpj > :last-child, .framer-KtnZr .framer-3hx5wq > :last-child, .framer-KtnZr .framer-jb675p > :last-child, .framer-KtnZr .framer-rpk8pp > :last-child, .framer-KtnZr .framer-t4rxwp > :last-child, .framer-KtnZr .framer-1r160ws > :last-child, .framer-KtnZr .framer-oydkrw > :last-child, .framer-KtnZr .framer-1okm2pu > :last-child, .framer-KtnZr .framer-clb9xp > :last-child, .framer-KtnZr .framer-1nv4w1p > :last-child, .framer-KtnZr .framer-c70wym > :last-child, .framer-KtnZr .framer-1mqb54l > :last-child, .framer-KtnZr .framer-60bdh4 > :last-child, .framer-KtnZr .framer-p6h6qx > :last-child, .framer-KtnZr .framer-rbbfa8 > :last-child, .framer-KtnZr .framer-1ax7urw > :last-child { margin-bottom: 0px; } .framer-KtnZr .framer-10w50w5 > *, .framer-KtnZr .framer-beeoe > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-KtnZr .framer-h4ywcu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KtnZr .framer-18pcss7 > *, .framer-KtnZr .framer-10k0w7v > *, .framer-KtnZr .framer-103ihga > *, .framer-KtnZr .framer-8zypz3 > *, .framer-KtnZr .framer-1yrpm0b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KtnZr .framer-18pcss7 > :first-child, .framer-KtnZr .framer-1ho3q3y > :first-child, .framer-KtnZr .framer-10k0w7v > :first-child, .framer-KtnZr .framer-63a74p > :first-child, .framer-KtnZr .framer-ko7p5d > :first-child, .framer-KtnZr .framer-11xxaib > :first-child, .framer-KtnZr .framer-1ntxxlp > :first-child, .framer-KtnZr .framer-103ihga > :first-child, .framer-KtnZr .framer-8zypz3 > :first-child, .framer-KtnZr .framer-1jret28 > :first-child, .framer-KtnZr .framer-1iljg49 > :first-child, .framer-KtnZr .framer-1l7fb5y > :first-child, .framer-KtnZr .framer-1u3det2 > :first-child, .framer-KtnZr .framer-1si9osz > :first-child, .framer-KtnZr .framer-4zrtr6 > :first-child, .framer-KtnZr .framer-1yrpm0b > :first-child, .framer-KtnZr .framer-tsvgl8 > :first-child, .framer-KtnZr .framer-1b6gsgd > :first-child { margin-left: 0px; } .framer-KtnZr .framer-18pcss7 > :last-child, .framer-KtnZr .framer-1ho3q3y > :last-child, .framer-KtnZr .framer-10k0w7v > :last-child, .framer-KtnZr .framer-63a74p > :last-child, .framer-KtnZr .framer-ko7p5d > :last-child, .framer-KtnZr .framer-11xxaib > :last-child, .framer-KtnZr .framer-1ntxxlp > :last-child, .framer-KtnZr .framer-103ihga > :last-child, .framer-KtnZr .framer-8zypz3 > :last-child, .framer-KtnZr .framer-1jret28 > :last-child, .framer-KtnZr .framer-1iljg49 > :last-child, .framer-KtnZr .framer-1l7fb5y > :last-child, .framer-KtnZr .framer-1u3det2 > :last-child, .framer-KtnZr .framer-1si9osz > :last-child, .framer-KtnZr .framer-4zrtr6 > :last-child, .framer-KtnZr .framer-1yrpm0b > :last-child, .framer-KtnZr .framer-tsvgl8 > :last-child, .framer-KtnZr .framer-1b6gsgd > :last-child { margin-right: 0px; } .framer-KtnZr .framer-1ho3q3y > *, .framer-KtnZr .framer-ko7p5d > *, .framer-KtnZr .framer-11xxaib > *, .framer-KtnZr .framer-1ntxxlp > *, .framer-KtnZr .framer-tsvgl8 > *, .framer-KtnZr .framer-1b6gsgd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KtnZr .framer-dtnird > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-KtnZr .framer-63a74p > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-KtnZr .framer-e0ulfs > *, .framer-KtnZr .framer-1de4lio > *, .framer-KtnZr .framer-1352qem > *, .framer-KtnZr .framer-1g266ku > *, .framer-KtnZr .framer-1wi6hi9 > *, .framer-KtnZr .framer-1hcelpj > *, .framer-KtnZr .framer-rpk8pp > *, .framer-KtnZr .framer-1ax7urw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KtnZr .framer-nenoko > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-KtnZr .framer-1hu283k > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-KtnZr .framer-yixy5p > *, .framer-KtnZr .framer-1igoiem > *, .framer-KtnZr .framer-1i263pd > *, .framer-KtnZr .framer-3hx5wq > *, .framer-KtnZr .framer-t4rxwp > *, .framer-KtnZr .framer-oydkrw > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-KtnZr .framer-1jret28 > *, .framer-KtnZr .framer-1iljg49 > *, .framer-KtnZr .framer-1l7fb5y > *, .framer-KtnZr .framer-1u3det2 > *, .framer-KtnZr .framer-1si9osz > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-KtnZr .framer-4zrtr6 > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } .framer-KtnZr .framer-clb9xp > *, .framer-KtnZr .framer-c70wym > *, .framer-KtnZr .framer-60bdh4 > *, .framer-KtnZr .framer-rbbfa8 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-KtnZr[data-border=\"true\"]::after, .framer-KtnZr [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-KtnZr.framer-72rtr7 { width: 810px; } .framer-KtnZr .framer-1z0vb1j-container { width: 100%; } .framer-KtnZr .framer-10w50w5 { padding: 72px 40px 0px 40px; } .framer-KtnZr .framer-nenoko { gap: 48px; padding: 56px 0px 56px 0px; } .framer-KtnZr .framer-103ihga, .framer-KtnZr .framer-beeoe, .framer-KtnZr .framer-1ax7urw { padding: 56px 40px 56px 40px; } .framer-KtnZr .framer-1de4lio { padding: 0px 40px 0px 40px; } .framer-KtnZr .framer-tp6urz-container { height: var(--framer-aspect-ratio-supported, 410px); } .framer-KtnZr .framer-1yrpm0b { padding: 72px 40px 72px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KtnZr .framer-nenoko { gap: 0px; } .framer-KtnZr .framer-nenoko > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-KtnZr .framer-nenoko > :first-child { margin-top: 0px; } .framer-KtnZr .framer-nenoko > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-KtnZr.framer-72rtr7 { width: 390px; } .framer-KtnZr .framer-1z0vb1j-container { height: auto; width: 100%; } .framer-KtnZr .framer-10w50w5 { gap: 48px; padding: 44px 20px 0px 20px; } .framer-KtnZr .framer-ko7p5d { flex-direction: column; gap: 12px; } .framer-KtnZr .framer-nenoko, .framer-KtnZr .framer-beeoe { gap: 32px; padding: 44px 0px 44px 0px; } .framer-KtnZr .framer-1hu283k { gap: 0px; } .framer-KtnZr .framer-103ihga { flex-direction: column; padding: 44px 20px 44px 20px; } .framer-KtnZr .framer-g98yru-container { flex: none; width: 100%; } .framer-KtnZr .framer-1de4lio { padding: 0px 20px 0px 20px; } .framer-KtnZr .framer-tp6urz-container { height: var(--framer-aspect-ratio-supported, 218px); } .framer-KtnZr .framer-4zrtr6 { flex-direction: column; } .framer-KtnZr .framer-1yrpm0b { flex: none; flex-direction: column; padding: 48px 0px 48px 0px; width: 100%; } .framer-KtnZr .framer-tsvgl8 { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-KtnZr .framer-1b6gsgd { flex: 1 0 0px; width: 1px; } .framer-KtnZr .framer-7iq4sm-container { position: relative; right: unset; top: unset; width: 100%; } .framer-KtnZr .framer-1ax7urw { padding: 44px 20px 44px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KtnZr .framer-10w50w5, .framer-KtnZr .framer-ko7p5d, .framer-KtnZr .framer-nenoko, .framer-KtnZr .framer-1hu283k, .framer-KtnZr .framer-103ihga, .framer-KtnZr .framer-beeoe, .framer-KtnZr .framer-4zrtr6, .framer-KtnZr .framer-1yrpm0b { gap: 0px; } .framer-KtnZr .framer-10w50w5 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-KtnZr .framer-10w50w5 > :first-child, .framer-KtnZr .framer-ko7p5d > :first-child, .framer-KtnZr .framer-nenoko > :first-child, .framer-KtnZr .framer-1hu283k > :first-child, .framer-KtnZr .framer-103ihga > :first-child, .framer-KtnZr .framer-beeoe > :first-child, .framer-KtnZr .framer-4zrtr6 > :first-child, .framer-KtnZr .framer-1yrpm0b > :first-child { margin-top: 0px; } .framer-KtnZr .framer-10w50w5 > :last-child, .framer-KtnZr .framer-ko7p5d > :last-child, .framer-KtnZr .framer-nenoko > :last-child, .framer-KtnZr .framer-1hu283k > :last-child, .framer-KtnZr .framer-103ihga > :last-child, .framer-KtnZr .framer-beeoe > :last-child, .framer-KtnZr .framer-4zrtr6 > :last-child, .framer-KtnZr .framer-1yrpm0b > :last-child { margin-bottom: 0px; } .framer-KtnZr .framer-ko7p5d > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-KtnZr .framer-nenoko > *, .framer-KtnZr .framer-beeoe > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-KtnZr .framer-1hu283k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KtnZr .framer-103ihga > *, .framer-KtnZr .framer-1yrpm0b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KtnZr .framer-4zrtr6 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5373\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XhM55gPOl\":{\"layout\":[\"fixed\",\"auto\"]},\"CfRPGFzs1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Q4K5IAW5v\":{\"pattern\":\":Q4K5IAW5v\",\"name\":\"\"},\"AitRnBNg2\":{\"pattern\":\":AitRnBNg2\",\"name\":\"\"},\"IeOx1oFZx\":{\"pattern\":\":IeOx1oFZx\",\"name\":\"\"},\"iCZqCB6_f\":{\"pattern\":\":iCZqCB6_f\",\"name\":\"\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-KtnZr\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5373,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVPSTAyLFyeg_IDWvOJmVES_Ew1D3s6ZKAi.woff2\",weight:\"400\"}]},...NavigationFonts,...AshishButtonFonts,...TickerFonts,...TabsFonts,...MainSectionFonts,...YouTubeFonts,...CarouselFonts,...Ticker1Fonts,...AshishBlogSectionFonts,...AshishFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XhM55gPOl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CfRPGFzs1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"Q4K5IAW5v\\\":{\\\"pattern\\\":\\\":Q4K5IAW5v\\\",\\\"name\\\":\\\"\\\"},\\\"AitRnBNg2\\\":{\\\"pattern\\\":\\\":AitRnBNg2\\\",\\\"name\\\":\\\"\\\"},\\\"IeOx1oFZx\\\":{\\\"pattern\\\":\\\":IeOx1oFZx\\\",\\\"name\\\":\\\"\\\"},\\\"iCZqCB6_f\\\":{\\\"pattern\\\":\\\":iCZqCB6_f\\\",\\\"name\\\":\\\"\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"5373\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "pxRqs5Y0c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaprjojqg", "args", "onTap2fzb4g", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "FramerjzRtNNs7S", "withCSS", "jzRtNNs7S_default", "addPropertyControls", "ControlType", "addFonts", "TabChangeFonts", "getFonts", "jzRtNNs7S_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "negate", "value", "convertFromBoolean", "activeLocale", "convertFromBoolean1", "convertFromBoolean2", "toNumber", "parsedNumber", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "mobile", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "OezcbaZkP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "pxRqs5Y0c1p3xq54", "args", "pxRqs5Y0ccjw311", "scopingClassNames", "cx", "visible", "stackDirection", "stackAlignment", "gap", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "SVG", "css", "Framerab0QIGND1", "withCSS", "ab0QIGND1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click8", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PqU5FbjCl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1e6m5j3", "args", "onTap1mf0tle", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramerrxmZz1Neg", "withCSS", "rxmZz1Neg_default", "addPropertyControls", "ControlType", "addFonts", "ToggleFonts", "getFonts", "rxmZz1Neg_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "negate", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tablet", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xZpcPyAwE", "kJcx9OWT6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "PqU5FbjCl8c5ou7", "args", "PqU5FbjCl5nl41d", "PqU5FbjCl15iwb1v", "PqU5FbjClm4qslr", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "visible", "isDisplayed10", "isDisplayed11", "isDisplayed12", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "SVG", "css", "FramerB0_rAZ1Jt", "withCSS", "B0_rAZ1Jt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AshishButtonFonts", "getFonts", "oSv1d1O90_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "QueryData1", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "QueryData2", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ifFRvci3xD1rNxXZti", "UUm2FcEOzD1rNxXZti", "Yj3p4mfJDD1rNxXZti", "XEqcXJ2zCD1rNxXZti", "Bw5iV2qEsD1rNxXZti", "idD1rNxXZti", "Bw5iV2qEsRWXzBbq8h", "ifFRvci3xRWXzBbq8h", "XEqcXJ2zCRWXzBbq8h", "Yj3p4mfJDRWXzBbq8h", "UUm2FcEOzRWXzBbq8h", "idRWXzBbq8h", "Bw5iV2qEssfO5V6_AT", "ifFRvci3xsfO5V6_AT", "XEqcXJ2zCsfO5V6_AT", "Yj3p4mfJDsfO5V6_AT", "UUm2FcEOzsfO5V6_AT", "idsfO5V6_AT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "activeLocaleCode", "useLocaleCode", "router", "useRouter", "isDisplayed", "isDisplayed1", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "RichText2", "SVG", "ChildrenCanSuspend", "QueryData", "SbkgNiwD9_default", "collection", "l", "index", "textContent", "toDateString", "PathVariablesContext", "Image2", "toResponsiveImage", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "oSv1d1O90_default", "QueryData1", "collection1", "paginationInfo1", "loadMore1", "index1", "textContent1", "Link", "collection2", "paginationInfo2", "loadMore2", "index2", "textContent2", "getLoadingLazyAtYPosition", "css", "Framero9rTAVTRD", "withCSS", "o9rTAVTRD_default", "addPropertyControls", "ControlType", "addFonts", "AshishButtonFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "ItwjKYGRy_default", "AshishButtonFonts", "oSv1d1O90_default", "TickerFonts", "Ticker", "TabsFonts", "ab0QIGND1_default", "MainSectionFonts", "B0_rAZ1Jt_default", "YouTubeFonts", "Youtube", "CarouselFonts", "Carousel", "Ticker1Fonts", "AshishBlogSectionFonts", "o9rTAVTRD_default", "AshishFooterFonts", "JYO_ss3zy_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "Image2", "RichText2", "x", "Link", "SVG", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
