{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/72O11ApITvgaMZRvyQex/Ticker.js", "ssg:https://framerusercontent.com/modules/84bh8XLLSDfpQiYLFivr/lG43ExE2pNQKmP89nAS5/aRwuA0_Tr.js", "ssg:https://framerusercontent.com/modules/nhddiEpd8HyHInN3TfOD/PcpdEsksbwyn171tMhbN/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (3f65431)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{TruncatedText}from\"https://framerusercontent.com/modules/lpU6otTzcQXpaYKhP0cF/b6t3P9N7dSk8b0e6jY1d/Truncate_text.js\";const RichTextTruncatedText=TruncatedText(RichText);const cycleOrder=[\"hx0FhXg9S\",\"puNQUK8Gy\"];const serializationHash=\"framer-RPKvu\";const variantClassNames={hx0FhXg9S:\"framer-v-1ahysiu\",puNQUK8Gy:\"framer-v-1a071c9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"hx0FhXg9S\",Mobile:\"puNQUK8Gy\"};const getProps=({areaOfActivity,featureImage,height,id,link,name1,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,e8j5HRFcE:(_ref=name1!==null&&name1!==void 0?name1:props.e8j5HRFcE)!==null&&_ref!==void 0?_ref:\"Collen Chandler\",erytocJwA:(_ref1=areaOfActivity!==null&&areaOfActivity!==void 0?areaOfActivity:props.erytocJwA)!==null&&_ref1!==void 0?_ref1:\"Video Editor | Motion Graphic Designer\",Q6PxW8Qe6:featureImage!==null&&featureImage!==void 0?featureImage:props.Q6PxW8Qe6,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"hx0FhXg9S\",yyap_OK7D:link!==null&&link!==void 0?link:props.yyap_OK7D};};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,yyap_OK7D,Q6PxW8Qe6,erytocJwA,e8j5HRFcE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hx0FhXg9S\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:yyap_OK7D,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ahysiu\",className,classNames)} framer-6j19fh`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hx0FhXg9S\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({puNQUK8Gy:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:3840,pixelHeight:2560,pixelWidth:3840,sizes:\"280px\",...toResponsiveImage(Q6PxW8Qe6)},className:\"framer-fqfavw\",layoutDependency:layoutDependency,layoutId:\"YGkNE83em\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({puNQUK8Gy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:3840,pixelHeight:2560,pixelWidth:3840,sizes:\"150px\",...toResponsiveImage(Q6PxW8Qe6)}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9dj7ry\",layoutDependency:layoutDependency,layoutId:\"jcn7l7YZu\",style:{backgroundColor:\"rgba(173, 173, 173, 0.7)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichTextTruncatedText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-tcooor, rgb(255, 255, 255))\"},children:\"Animator And Video Editor\"})}),className:\"framer-6j4k6o\",\"data-framer-name\":\"Lines: 1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ljOTA8CcY\",style:{\"--extracted-tcooor\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:erytocJwA,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({puNQUK8Gy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--framer-font-size\":\"9px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-tcooor, rgb(255, 255, 255))\"},children:\"Video Editor | Motion Graphic Designer\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kf5cix\",layoutDependency:layoutDependency,layoutId:\"pVeEP0wwj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-tcooor, rgb(255, 255, 255))\"},children:\"Name\"})}),className:\"framer-1gupuwo\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"sauVYQ_oT\",style:{\"--extracted-tcooor\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:e8j5HRFcE,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({puNQUK8Gy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-tcooor, rgb(255, 255, 255))\"},children:\"Collen Chandler\"})})}},baseVariant,gestureVariant)})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RPKvu.framer-6j19fh, .framer-RPKvu .framer-6j19fh { display: block; }\",\".framer-RPKvu.framer-1ahysiu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-RPKvu .framer-fqfavw { flex: none; height: 320px; position: relative; width: 280px; }\",\".framer-RPKvu .framer-9dj7ry { align-content: center; align-items: center; bottom: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; left: 8px; max-width: 250px; overflow: hidden; padding: 0px 5px 0px 5px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-RPKvu .framer-6j4k6o { flex: none; height: 100%; overflow: hidden; position: relative; white-space: pre; width: auto; }\",\".framer-RPKvu .framer-kf5cix { align-content: center; align-items: center; bottom: 29px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; left: 8px; overflow: hidden; padding: 0px; position: absolute; width: min-content; }\",\".framer-RPKvu .framer-1gupuwo { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 216px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RPKvu.framer-1ahysiu, .framer-RPKvu .framer-9dj7ry, .framer-RPKvu .framer-kf5cix { gap: 0px; } .framer-RPKvu.framer-1ahysiu > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-RPKvu.framer-1ahysiu > :first-child, .framer-RPKvu .framer-9dj7ry > :first-child, .framer-RPKvu .framer-kf5cix > :first-child { margin-left: 0px; } .framer-RPKvu.framer-1ahysiu > :last-child, .framer-RPKvu .framer-9dj7ry > :last-child, .framer-RPKvu .framer-kf5cix > :last-child { margin-right: 0px; } .framer-RPKvu .framer-9dj7ry > *, .framer-RPKvu .framer-kf5cix > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-RPKvu.framer-v-1a071c9 .framer-fqfavw { height: 180px; width: 150px; }\",\".framer-RPKvu.framer-v-1a071c9 .framer-9dj7ry { height: 16px; left: calc(49.33333333333336% - min(250px, 133px) / 2); width: 133px; }\",\".framer-RPKvu.framer-v-1a071c9 .framer-6j4k6o { flex: 1 0 0px; height: auto; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-RPKvu.framer-v-1a071c9 .framer-kf5cix { bottom: 23px; left: calc(48.00000000000002% - 128px / 2); width: 128px; }\",\".framer-RPKvu.framer-v-1a071c9 .framer-1gupuwo { flex: 1 0 0px; width: 1px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 320\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"puNQUK8Gy\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"yyap_OK7D\":\"link\",\"Q6PxW8Qe6\":\"featureImage\",\"erytocJwA\":\"areaOfActivity\",\"e8j5HRFcE\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraRwuA0_Tr=withCSS(Component,css,\"framer-RPKvu\");export default FrameraRwuA0_Tr;FrameraRwuA0_Tr.displayName=\"Ticker expert tile\";FrameraRwuA0_Tr.defaultProps={height:320,width:280};addPropertyControls(FrameraRwuA0_Tr,{variant:{options:[\"hx0FhXg9S\",\"puNQUK8Gy\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},yyap_OK7D:{title:\"Link\",type:ControlType.Link},Q6PxW8Qe6:{title:\"feature image\",type:ControlType.ResponsiveImage},erytocJwA:{defaultValue:\"Video Editor | Motion Graphic Designer\",title:\"Area_of_activity\",type:ControlType.String},e8j5HRFcE:{defaultValue:\"Collen Chandler\",title:\"Name\",type:ControlType.String}});addFonts(FrameraRwuA0_Tr,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraRwuA0_Tr\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"puNQUK8Gy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"280\",\"framerIntrinsicHeight\":\"320\",\"framerVariables\":\"{\\\"yyap_OK7D\\\":\\\"link\\\",\\\"Q6PxW8Qe6\\\":\\\"featureImage\\\",\\\"erytocJwA\\\":\\\"areaOfActivity\\\",\\\"e8j5HRFcE\\\":\\\"name1\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aRwuA0_Tr.map", "// Generated by Framer (de48785)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useMetadata,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/72O11ApITvgaMZRvyQex/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/PH5dKwV7X6kCySScDT2G/Ticker.js\";import LoadMore from\"https://framerusercontent.com/modules/DeOFaQSEkzad7IWREtaG/uSF4wTJztPxXXCcQVP6B/g3OPvNRkB.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/UZwNJjzc8oCt2JJx3RmF/Cookies.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import TickerExpertTile from\"#framer/local/canvasComponent/aRwuA0_Tr/aRwuA0_Tr.js\";import New_testimonial from\"#framer/local/canvasComponent/gZURapr7_/gZURapr7_.js\";import Footer from\"#framer/local/canvasComponent/HRM4TpjKi/HRM4TpjKi.js\";import Button2 from\"#framer/local/canvasComponent/iRnlB4RZs/iRnlB4RZs.js\";import Header from\"#framer/local/canvasComponent/lmNHZZ9dB/lmNHZZ9dB.js\";import ServiceName from\"#framer/local/canvasComponent/oYraydwew/oYraydwew.js\";import MainButton,*as MainButtonInfo from\"#framer/local/canvasComponent/PgNHyoLLm/PgNHyoLLm.js\";import ListCopy from\"#framer/local/canvasComponent/tlJHRF52V/tlJHRF52V.js\";import ExpertsHomePage from\"#framer/local/canvasComponent/X_dpZNbfi/X_dpZNbfi.js\";import HowItWorks3 from\"#framer/local/canvasComponent/Y7rshxoSK/Y7rshxoSK.js\";import{TruncatedText}from\"#framer/local/codeFile/ZlcR_3i/Truncate_text.js\";import{withQueryParams}from\"#framer/local/codeFile/D7h1t32/URL_paramter.js\";import Services from\"#framer/local/collection/mSVTNWXCI/mSVTNWXCI.js\";import Experts from\"#framer/local/collection/TQgEdGFTA/TQgEdGFTA.js\";import Portfolio from\"#framer/local/collection/ZNnVUGseT/ZNnVUGseT.js\";import*as sharedStyle from\"#framer/local/css/DNEtrq3GO/DNEtrq3GO.js\";import*as sharedStyle1 from\"#framer/local/css/Ie_GK4CWv/Ie_GK4CWv.js\";import*as sharedStyle2 from\"#framer/local/css/wCOkIsEsq/wCOkIsEsq.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const PhosphorFonts=getFonts(Phosphor);const MotionAWithQueryParams1ta9i6=withCodeBoundaryForOverrides(motion.a,{nodeId:\"M4_itVWdB\",override:withQueryParams,scopeId:\"augiA20Il\"});const TickerExpertTileFonts=getFonts(TickerExpertTile);const TickerFonts=getFonts(Ticker);const New_testimonialFonts=getFonts(New_testimonial);const ExpertsHomePageFonts=getFonts(ExpertsHomePage);const HowItWorks3Fonts=getFonts(HowItWorks3);const MotionDivWithFX=withFX(motion.div);const ListCopyFonts=getFonts(ListCopy);const Ticker1Fonts=getFonts(Ticker1);const ContainerWithFX=withFX(Container);const RichTextTruncatedTextrktl3q=withCodeBoundaryForOverrides(RichText,{nodeId:\"PYqmkJU36\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText4k93e7=withCodeBoundaryForOverrides(RichText,{nodeId:\"ez9ljA1af\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedTextoz5dmy=withCodeBoundaryForOverrides(RichText,{nodeId:\"h_LsouNqF\",override:TruncatedText,scopeId:\"augiA20Il\"});const YouTubeFonts=getFonts(YouTube);const Button2Fonts=getFonts(Button2);const LoadMoreFonts=getFonts(LoadMore);const RichTextTruncatedTexto0hkrs=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"WpAV9PnAN\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedTextsokvz9=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"W5Vt6XLU5\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText1snryn1=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"sR27AC3Dn\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedTextdz9e11=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"kBaDzOxof\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText15261yi=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"LZjJPZqTv\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedTextwivij8=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"ZCF1cRWp5\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedTextqbcr8f=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"AXuq0rnW_\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedTextpwymza=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"yHxYMBmrU\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText1rkd9fu=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"mpQpQi0oZ\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedTextnvimi2=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"vtwyx4B6O\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText19f4u7i=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"DkRF4Q1sM\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText9wn8ym=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"c9Kdt3d6N\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText1hk1e4c=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"dmV3xXiA2\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText1834tir=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"DJXGoYI7p\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText18ojdvk=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"Q533eE4TN\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText17bxmu9=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"CLPWMyjvL\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedTextrz5moh=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"PRE4XMFt0\",override:TruncatedText,scopeId:\"augiA20Il\"});const RichTextTruncatedText2by9fi=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"sewkUAyNt\",override:TruncatedText,scopeId:\"augiA20Il\"});const SlideshowFonts=getFonts(Slideshow);const ServiceNameFonts=getFonts(ServiceName);const MainButtonFonts=getFonts(MainButton);const MainButtonWithQueryParams1qf4naqWithMappedReactProps1c38ihi=withMappedReactProps(withCodeBoundaryForOverrides(MainButton,{nodeId:\"cHRqhscxJ\",override:withQueryParams,scopeId:\"augiA20Il\"}),MainButtonInfo);const CookieBannerFonts=getFonts(CookieBanner);const FooterFonts=getFonts(Footer);const breakpoints={ghr6cOOOP:\"(max-width: 809px)\",M3xywJC7w:\"(min-width: 1200px) and (max-width: 1365px)\",p5BN8G00K:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1366px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-rIrYg\";const variantClassNames={ghr6cOOOP:\"framer-v-ldcjxb\",M3xywJC7w:\"framer-v-1cs83ms\",p5BN8G00K:\"framer-v-1umocsy\",WQLkyLRf1:\"framer-v-72rtr7\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition1={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:100};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:80,delay:.4,mass:1,stiffness:200,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const contains=(a,b)=>{if(typeof a===\"string\"&&typeof b===\"string\"){return a.toLowerCase().includes(b.toLowerCase());}if(Array.isArray(a)&&typeof b===\"string\"){return a.includes(b);}return false;};const loaderVariants=(repeaterState,variants,currentVariant)=>{if(repeaterState.currentPage>=repeaterState.totalPages)return variants.disabled??currentVariant;if(repeaterState.isLoading)return variants.loading??currentVariant;return currentVariant;};const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"X53O4dV9f\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"M3xywJC7w\",Desktop:\"WQLkyLRf1\",Phone:\"ghr6cOOOP\",Tablet:\"p5BN8G00K\"};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,aB74T1Y0OKHnw75zjd,V9thMQe1dKHnw75zjd,zSJwF3NMFKHnw75zjd,WF80f_TL7KHnw75zjd,idKHnw75zjd,aB74T1Y0Ozxvwg7i6e,V9thMQe1dzxvwg7i6e,zSJwF3NMFzxvwg7i6e,WF80f_TL7zxvwg7i6e,idzxvwg7i6e,tGTL5vNnPTpv_P4wlV,jBtd1weY3Tpv_P4wlV,idTpv_P4wlV,d33LyBhofX53O4dV9f,RNkzw3bawX53O4dV9f,aB74T1Y0OmDVH1bhoD,uOb3RW6QimDVH1bhoD,WF80f_TL7mDVH1bhoD,zSJwF3NMFmDVH1bhoD,idmDVH1bhoD,FvyUM26WSX53O4dV9f,Lhrctp4TgX53O4dV9f,PVommSLjkX53O4dV9f,idX53O4dV9f,Lhrctp4Tgu2ag7q4iA,RNkzw3bawu2ag7q4iA,aB74T1Y0OiKfHoJ_cV,uOb3RW6QiiKfHoJ_cV,WF80f_TL7iKfHoJ_cV,zSJwF3NMFiKfHoJ_cV,idiKfHoJ_cV,FvyUM26WSu2ag7q4iA,idu2ag7q4iA,Lhrctp4TgjyoGOhwJs,RNkzw3bawjyoGOhwJs,aB74T1Y0OtkvW5FYZw,uOb3RW6QitkvW5FYZw,WF80f_TL7tkvW5FYZw,zSJwF3NMFtkvW5FYZw,idtkvW5FYZw,FvyUM26WSjyoGOhwJs,idjyoGOhwJs,Lhrctp4TgCdeJMTr19,RNkzw3bawCdeJMTr19,aB74T1Y0OeyoCXfALd,uOb3RW6QieyoCXfALd,WF80f_TL7eyoCXfALd,zSJwF3NMFeyoCXfALd,ideyoCXfALd,FvyUM26WSCdeJMTr19,idCdeJMTr19,Lhrctp4TgQZ914nHgX,RNkzw3bawQZ914nHgX,aB74T1Y0OvUrdYbJFt,uOb3RW6QivUrdYbJFt,WF80f_TL7vUrdYbJFt,zSJwF3NMFvUrdYbJFt,idvUrdYbJFt,FvyUM26WSQZ914nHgX,idQZ914nHgX,Lhrctp4TgAlaoq3aGJ,RNkzw3bawAlaoq3aGJ,aB74T1Y0OXLq01ABf9,uOb3RW6QiXLq01ABf9,WF80f_TL7XLq01ABf9,zSJwF3NMFXLq01ABf9,idXLq01ABf9,FvyUM26WSAlaoq3aGJ,idAlaoq3aGJ,Lhrctp4TgCP26i8J3l,RNkzw3bawCP26i8J3l,aB74T1Y0OLp9fAPTRT,uOb3RW6QiLp9fAPTRT,WF80f_TL7Lp9fAPTRT,zSJwF3NMFLp9fAPTRT,idLp9fAPTRT,FvyUM26WSCP26i8J3l,idCP26i8J3l,jBtd1weY3j_1weDM34,tGTL5vNnPj_1weDM34,idj_1weDM34,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const Wld3NDzSj1b86s49=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{loadMore();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ghr6cOOOP\")return false;return true;};const elementId=useRouteElementId(\"HWzSF4MmK\");const ref1=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(ResolveLinks,{links:[{href:{hash:\":bhkQhAUpo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":bhkQhAUpo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":bhkQhAUpo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":bhkQhAUpo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:`min(${componentViewport?.width||\"100vw\"}, 1366px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tdbcns-container\",\"data-framer-name\":\"Header\",name:\"Header\",nodeId:\"GpQ4usL2F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{rkQPM_zQi:resolvedLinks[2],variant:\"xo9vv9WT8\"},M3xywJC7w:{rkQPM_zQi:resolvedLinks[3]},p5BN8G00K:{rkQPM_zQi:resolvedLinks[1],variant:\"xo9vv9WT8\"}},children:/*#__PURE__*/_jsx(Header,{FbcXFEKx_:\"rgba(255, 255, 255, 0)\",FjRI64uHk:false,height:\"100%\",id:\"GpQ4usL2F\",JlPYokZns:\"rgb(0, 0, 0)\",layoutId:\"GpQ4usL2F\",name:\"Header\",rkQPM_zQi:resolvedLinks[0],S_rLfSSX3:\"var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, rgb(0, 0, 0))\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"T9BZ1mmoW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bivpm0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hf6pdt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\"},children:[\"Hire Vetted Video Experts \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\"},children:\"Risk-Free\"}),\" within Minutes\"]})})},p5BN8G00K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:[\"Hire Vetted Video Experts \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\"},children:\"Risk-Free\"}),\" within Minutes\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"1.3em\"},children:[\"Hire Vetted Video Experts \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\"},children:\"Risk-Free\"}),\" within Minutes\"]})}),className:\"framer-r3zm7l\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(64, 64, 64))\"},children:\"Match with the best video experts at a fixed monthly or weekly rate, with optional free trials.\"})})},p5BN8G00K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(64, 64, 64))\"},children:\"Match with the best video experts at a fixed monthly or weekly rate, with optional free trials.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(64, 64, 64))\"},children:\"Match with the best video experts at a fixed monthly or weekly rate, with optional free trials.\"})}),className:\"framer-1r9cot5\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-cj41bb hidden-ldcjxb\",children:[/*#__PURE__*/_jsxs(\"li\",{className:\"framer-15olbkt\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x5cwf0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DvcIrdqQy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7ebddd0d-9c9f-4254-8ba7-a204905ef79e, rgb(87, 161, 58))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"DvcIrdqQy\",layoutId:\"DvcIrdqQy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\"},children:\"Unlimited Requests & Revisions*\"})}),className:\"framer-1q872w3\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"li\",{className:\"framer-s66gwa\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11wcbmu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ePKmnbG0K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7ebddd0d-9c9f-4254-8ba7-a204905ef79e, rgb(87, 161, 58))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"ePKmnbG0K\",layoutId:\"ePKmnbG0K\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\"},children:\"Free Trials*\"})}),className:\"framer-1isgljn\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"li\",{className:\"framer-kpqvne\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ez6ic1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NL57HdiL6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7ebddd0d-9c9f-4254-8ba7-a204905ef79e, rgb(87, 161, 58))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"NL57HdiL6\",layoutId:\"NL57HdiL6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\"},children:\"Fast Turnaround\"})}),className:\"framer-158at9z\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"li\",{className:\"framer-u4nwlp\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qv04ew-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AvKivxNRs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7ebddd0d-9c9f-4254-8ba7-a204905ef79e, rgb(87, 161, 58))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"AvKivxNRs\",layoutId:\"AvKivxNRs\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\"},children:\"Free Footage Storage\"})}),className:\"framer-1q47mdh\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"li\",{className:\"framer-1llmqji\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rp9hkd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Iyzyc6NWk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7ebddd0d-9c9f-4254-8ba7-a204905ef79e, rgb(87, 161, 58))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"Iyzyc6NWk\",layoutId:\"Iyzyc6NWk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\"},children:\"Task Management & Review Tool\"})}),className:\"framer-g9t20j\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"li\",{className:\"framer-rsvdu2\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-upuw4v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ssLH2a8L5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7ebddd0d-9c9f-4254-8ba7-a204905ef79e, rgb(87, 161, 58))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"ssLH2a8L5\",layoutId:\"ssLH2a8L5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\"},children:\"1-on-1 Chat\"})}),className:\"framer-jniamw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d8v0zv\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{jBtd1weY3:\"youtube-video-editing\"},unresolvedPathSlugs:{jBtd1weY3:{collectionId:\"mSVTNWXCI\",collectionItemId:\"ipGh05Es5\"}},webPageId:\"hVg8K5bb1\"},motionChild:true,nodeId:\"v9Hd12MJV\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1eje3tj framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore Talent ->\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore experts ->\"})}),className:\"framer-mpscri\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://app.indiedoers.com/?action=signup\",motionChild:true,nodeId:\"M4_itVWdB\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithQueryParams1ta9i6,{className:\"framer-1ta9i6 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, rgb(0, 0, 0))\"},children:\"Post your requirement\"})}),className:\"framer-k32edh\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j51fmc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ngxg78\",\"data-framer-name\":\"Expert collection list ticket 1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KHnw75zjd\",data:Experts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"KHnw75zjd\",name:\"aB74T1Y0O\",type:\"Identifier\"},{collection:\"KHnw75zjd\",name:\"V9thMQe1d\",type:\"Identifier\"},{collection:\"KHnw75zjd\",name:\"zSJwF3NMF\",type:\"Identifier\"},{collection:\"KHnw75zjd\",name:\"WF80f_TL7\",type:\"Identifier\"},{collection:\"KHnw75zjd\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{collection:\"KHnw75zjd\",name:\"zSJwF3NMF\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"KHnw75zjd\",name:\"zSJwF3NMF\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"KHnw75zjd\",name:\"uOb3RW6Qi\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"KHnw75zjd\",name:\"uOb3RW6Qi\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"KHnw75zjd\",name:\"ZsK1Lb4gp\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e_rIw9YgH\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({aB74T1Y0O:aB74T1Y0OKHnw75zjd,id:idKHnw75zjd,V9thMQe1d:V9thMQe1dKHnw75zjd,WF80f_TL7:WF80f_TL7KHnw75zjd,zSJwF3NMF:zSJwF3NMFKHnw75zjd},index)=>{aB74T1Y0OKHnw75zjd??=\"\";zSJwF3NMFKHnw75zjd??=\"\";WF80f_TL7KHnw75zjd??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`KHnw75zjd-${idKHnw75zjd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aB74T1Y0O:aB74T1Y0OKHnw75zjd},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OKHnw75zjd},webPageId:\"SFq5kCNlc\"},implicitPathVariables:undefined},{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OKHnw75zjd},webPageId:\"SFq5kCNlc\"},implicitPathVariables:undefined},{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OKHnw75zjd},webPageId:\"SFq5kCNlc\"},implicitPathVariables:undefined},{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OKHnw75zjd},webPageId:\"SFq5kCNlc\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p5BN8G00K:{width:\"280px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19lpk81-container\",nodeId:\"DxcEVMUfq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{variant:\"puNQUK8Gy\",yyap_OK7D:resolvedLinks1[2]},M3xywJC7w:{yyap_OK7D:resolvedLinks1[3]},p5BN8G00K:{style:{width:\"100%\"},yyap_OK7D:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(TickerExpertTile,{e8j5HRFcE:WF80f_TL7KHnw75zjd,erytocJwA:zSJwF3NMFKHnw75zjd,height:\"100%\",id:\"DxcEVMUfq\",layoutId:\"DxcEVMUfq\",Q6PxW8Qe6:toResponsiveImage(V9thMQe1dKHnw75zjd),variant:\"hx0FhXg9S\",width:\"100%\",yyap_OK7D:resolvedLinks1[0]})})})})})})})},idKHnw75zjd);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q8a977\",\"data-framer-name\":\"Expert collection list ticket 2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"zxvwg7i6e\",data:Experts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:16},select:[{collection:\"zxvwg7i6e\",name:\"aB74T1Y0O\",type:\"Identifier\"},{collection:\"zxvwg7i6e\",name:\"V9thMQe1d\",type:\"Identifier\"},{collection:\"zxvwg7i6e\",name:\"zSJwF3NMF\",type:\"Identifier\"},{collection:\"zxvwg7i6e\",name:\"WF80f_TL7\",type:\"Identifier\"},{collection:\"zxvwg7i6e\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{collection:\"zxvwg7i6e\",name:\"zSJwF3NMF\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"zxvwg7i6e\",name:\"zSJwF3NMF\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"zxvwg7i6e\",name:\"uOb3RW6Qi\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"zxvwg7i6e\",name:\"uOb3RW6Qi\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"zxvwg7i6e\",name:\"ZsK1Lb4gp\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"e_rIw9YgH\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({aB74T1Y0O:aB74T1Y0Ozxvwg7i6e,id:idzxvwg7i6e,V9thMQe1d:V9thMQe1dzxvwg7i6e,WF80f_TL7:WF80f_TL7zxvwg7i6e,zSJwF3NMF:zSJwF3NMFzxvwg7i6e},index1)=>{aB74T1Y0Ozxvwg7i6e??=\"\";zSJwF3NMFzxvwg7i6e??=\"\";WF80f_TL7zxvwg7i6e??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`zxvwg7i6e-${idzxvwg7i6e}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aB74T1Y0O:aB74T1Y0Ozxvwg7i6e},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OKHnw75zjd},webPageId:\"SFq5kCNlc\"},implicitPathVariables:undefined},{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OKHnw75zjd},webPageId:\"SFq5kCNlc\"},implicitPathVariables:undefined},{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OKHnw75zjd},webPageId:\"SFq5kCNlc\"},implicitPathVariables:undefined},{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OKHnw75zjd},webPageId:\"SFq5kCNlc\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ozoygw-container\",nodeId:\"PsBFDTgpX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{variant:\"puNQUK8Gy\",yyap_OK7D:resolvedLinks2[2]},M3xywJC7w:{yyap_OK7D:resolvedLinks2[3]},p5BN8G00K:{yyap_OK7D:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(TickerExpertTile,{e8j5HRFcE:WF80f_TL7zxvwg7i6e,erytocJwA:zSJwF3NMFzxvwg7i6e,height:\"100%\",id:\"PsBFDTgpX\",layoutId:\"PsBFDTgpX\",Q6PxW8Qe6:toResponsiveImage(V9thMQe1dzxvwg7i6e),variant:\"hx0FhXg9S\",width:\"100%\",yyap_OK7D:resolvedLinks2[0]})})})})})})},idzxvwg7i6e);})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7dtcys\",\"data-framer-name\":\"Ticker\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-obz7do-container\",isModuleExternal:true,nodeId:\"TNCldh1yb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"TNCldh1yb\",layoutId:\"TNCldh1yb\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6v2ke1\",\"data-framer-name\":\"Ticker Content\",children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-kg9gy1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Tpv_P4wlV\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},select:[{collection:\"Tpv_P4wlV\",name:\"tGTL5vNnP\",type:\"Identifier\"},{collection:\"Tpv_P4wlV\",name:\"jBtd1weY3\",type:\"Identifier\"},{collection:\"Tpv_P4wlV\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idTpv_P4wlV,jBtd1weY3:jBtd1weY3Tpv_P4wlV,tGTL5vNnP:tGTL5vNnPTpv_P4wlV},index2)=>{tGTL5vNnPTpv_P4wlV??=\"\";jBtd1weY3Tpv_P4wlV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Tpv_P4wlV-${idTpv_P4wlV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jBtd1weY3:jBtd1weY3Tpv_P4wlV},children:/*#__PURE__*/_jsxs(motion.li,{className:\"framer-h8zo70\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c6hh1\",\"data-framer-name\":\"Elipse\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Name\"})}),className:\"framer-s8ud2g\",\"data-framer-name\":\"Comedy\",fonts:[\"Inter-SemiBold\"],text:tGTL5vNnPTpv_P4wlV,verticalAlignment:\"top\",withExternalLayout:true})]})})},idTpv_P4wlV);})})})})})})],speed:55,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:522,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u6djp2-container\",nodeId:\"CYTIFXdNn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{variant:\"tr9xyTxsp\"},p5BN8G00K:{variant:\"xvRJ_JqVZ\"}},children:/*#__PURE__*/_jsx(New_testimonial,{height:\"100%\",hfHJ1D8iY:\"rgb(247, 247, 247)\",id:\"CYTIFXdNn\",layoutId:\"CYTIFXdNn\",style:{width:\"100%\"},variant:\"cygtGvi6G\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1096uwx\",\"data-framer-name\":\"first scroll\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1auvmfi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"Creating Great videos solo is \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(217, 15, 15)\",\"--framer-text-decoration\":\"underline\"},children:\"hard!\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"We're here to make it easier\"})]})})},p5BN8G00K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:[\"Creating Great videos solo is \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(217, 15, 15)\",\"--framer-text-decoration\":\"underline\"},children:\"hard!\"}),/*#__PURE__*/_jsx(\"br\",{}),\"We're here to make it easier\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:[\"Creating Great videos solo is \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(217, 15, 15)\",\"--framer-text-decoration\":\"underline\"},children:\"hard!\"}),/*#__PURE__*/_jsx(\"br\",{}),\"We're here to make it easier\"]})}),className:\"framer-qhdik5\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-173q0vg\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d6e5lm\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5a14mi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p5BN8G00K:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2880,pixelHeight:2700,pixelWidth:3600,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 1200px)`,src:\"https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png\",srcSet:\"https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png 3600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2880,pixelHeight:2700,pixelWidth:3600,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px)`,src:\"https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png\",srcSet:\"https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/67d265BzChwWBtokVJGvmxniZ3k.png 3600w\"},className:\"framer-hqnkwe\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lygvpr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i25bli\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\",\"--framer-text-transform\":\"uppercase\"},children:\"Fixed Pricing\"})}),className:\"framer-1xrpvsg\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Predictable Risk Free Pricing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Predictable Risk Free Pricing\"})}),className:\"framer-12nno1d\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Receive expert proposals at monthly or weekly rates with optional free trials. Ensures you get the right candidate for your project before any commitment. No fuzz, no contracts, cancel anytime.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Receive expert proposals at monthly or weekly rates with optional free trials. Ensures you get the right candidate for your project before any commitment. No fuzz, no contracts, cancel anytime.\"})}),className:\"framer-1wxk4pv\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1waxbdm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3xhc6q\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ueslbc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\",\"--framer-text-transform\":\"uppercase\"},children:\"Task Management\"})}),className:\"framer-nhlpif\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Manage Your Complete Post-Production Workflow\"})})},p5BN8G00K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Manage Your Complete Post-Production Workflow\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Manage Your Complete Post-Production Workflow\"})}),className:\"framer-fbkb9q\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Streamline Your Creativity, One Platform for Your Entire Video Production Journey. Manage and perfect each step, from the first idea to the final cut, with our project management tool.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Streamline Your Creativity, One Platform for Your Entire Video Production Journey. Manage and perfect each step, from the first idea to the final cut, with our project management tool.\"})}),className:\"framer-iwzzd6\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p5BN8G00K:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2880,pixelHeight:2700,pixelWidth:3600,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 1200px)`,src:\"https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png\",srcSet:\"https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png 3600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2880,pixelHeight:2700,pixelWidth:3600,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px)`,src:\"https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png\",srcSet:\"https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aHPqVGafhhEMbGztrjrosBM1dZg.png 3600w\"},className:\"framer-4wxt8l\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pt2jsn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p5BN8G00K:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2880,pixelHeight:2700,pixelWidth:3600,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 1200px)`,src:\"https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png\",srcSet:\"https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png?scale-down-to=512 512w,https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png 3600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2880,pixelHeight:2700,pixelWidth:3600,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px)`,src:\"https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png\",srcSet:\"https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png?scale-down-to=512 512w,https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/egAEKUfk9f7M0OhmfXFi2bCeji8.png 3600w\"},className:\"framer-56l5o4\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ed952v\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3o3o0n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\",\"--framer-text-transform\":\"uppercase\"},children:\"Creative Collaboration\"})}),className:\"framer-hukp6v\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Reviews & Approvals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Reviews & Approvals\"})}),className:\"framer-ahlyu6\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Receive detailed, actionable feedback to streamline review processes and accelerate approval timelines.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Receive detailed, actionable feedback to streamline review processes and accelerate approval timelines.\"})}),className:\"framer-r1tr9d\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-agmj03\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, rgb(0, 0, 0))\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\"},children:\"Handpicked\"}),\" Video Experts At your Fingertip\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, rgb(0, 0, 0))\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\"},children:\"Handpicked\"}),\" Video Experts At your Fingertip\"]})}),className:\"framer-7fv4fs\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15yb2vu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 300px)`},p5BN8G00K:{width:`min(${componentViewport?.width||\"100vw\"}, 600px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1293,width:`min(${componentViewport?.width||\"100vw\"}, 1280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xqc5dw-container\",nodeId:\"M2kVyW7OI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p5BN8G00K:{iNPlqSYyA:\"center\"}},children:/*#__PURE__*/_jsx(ExpertsHomePage,{height:\"100%\",id:\"M2kVyW7OI\",iNPlqSYyA:\"flex-start\",layoutId:\"M2kVyW7OI\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"wy71nTVNh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{jBtd1weY3:\"youtube-video-editing\"},unresolvedPathSlugs:{jBtd1weY3:{collectionId:\"mSVTNWXCI\",collectionItemId:\"ipGh05Es5\"}},webPageId:\"hVg8K5bb1\"},motionChild:true,nodeId:\"ERNoaQqtQ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-i8tsq9 framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"View all experts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"View all experts\"})}),className:\"framer-15ecczs\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-kb4u1n\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dxzns0\",\"data-framer-name\":\"Layout / 28 /\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y8w9u3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, rgb(0, 0, 0))\"},children:\"HOW IT WORKS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, rgb(0, 0, 0))\"},children:\"HOW IT WORKS\"})}),className:\"framer-134ovnz\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:[\"Find Perfect Video Creative Expert, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\"},children:\"Fast and Easy\"}),\" with IndieDoers\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:[\"Find Perfect Video Creative Expert, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\"},children:\"Fast and Easy\"}),\" with IndieDoers\"]})}),className:\"framer-1oa4dbo\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"IndieDoers offers two easy ways to hire experts - you can either post a job or direct purchase expert's service packages\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"IndieDoers offers two easy ways to hire experts - you can either post a job or direct purchase expert's service packages\"})}),className:\"framer-tumlbk\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px)`},M3xywJC7w:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1280px)`},p5BN8G00K:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"1238px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rf4s5l-container\",nodeId:\"cbSpfZiaN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{variant:\"UqEOZFT1D\"},p5BN8G00K:{variant:\"UqEOZFT1D\"}},children:/*#__PURE__*/_jsx(HowItWorks3,{height:\"100%\",id:\"cbSpfZiaN\",layoutId:\"cbSpfZiaN\",style:{width:\"100%\"},variant:\"B_fZcFycT\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1isya6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tez7ge\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15iaft6\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"We've helped all sorts of Video Creators meet their needs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItODAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"We've helped all sorts of Video Creators meet their needs.\"})}),className:\"framer-vchohe\",fonts:[\"GF;Inter-800\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11xnqde-container\",isModuleExternal:true,nodeId:\"zjo8s1y3T\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.5,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"zjo8s1y3T\",layoutId:\"zjo8s1y3T\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-duostd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ratzfb-container\",inComponentSlot:true,nodeId:\"HnT8_xxQF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListCopy,{BxIfyR1tY:\"Beauty & Fashion\",GQcl1it4F:\"rgba(255, 255, 255, 0.2)\",height:\"100%\",id:\"HnT8_xxQF\",JQsM7qtYB:true,layoutId:\"HnT8_xxQF\",q2nPHW7TA:\"CheckCircle\",uuoAbae5k:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",variant:\"KTMuemfoY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v8de26-container\",inComponentSlot:true,nodeId:\"Z0CFwAO85\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListCopy,{BxIfyR1tY:\"Business & Marketing\",GQcl1it4F:\"rgba(255, 255, 255, 0.2)\",height:\"100%\",id:\"Z0CFwAO85\",JQsM7qtYB:true,layoutId:\"Z0CFwAO85\",q2nPHW7TA:\"CheckCircle\",uuoAbae5k:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",variant:\"KTMuemfoY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19n8mxe-container\",inComponentSlot:true,nodeId:\"xuafLNEZN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListCopy,{BxIfyR1tY:\"Coaching & Education\",GQcl1it4F:\"rgba(255, 255, 255, 0.2)\",height:\"100%\",id:\"xuafLNEZN\",JQsM7qtYB:true,layoutId:\"xuafLNEZN\",q2nPHW7TA:\"CheckCircle\",uuoAbae5k:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",variant:\"KTMuemfoY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17x2tsu-container\",inComponentSlot:true,nodeId:\"v4Y9GgZ56\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListCopy,{BxIfyR1tY:\"Crowdfunding\",GQcl1it4F:\"rgba(255, 255, 255, 0.2)\",height:\"100%\",id:\"v4Y9GgZ56\",JQsM7qtYB:true,layoutId:\"v4Y9GgZ56\",q2nPHW7TA:\"CheckCircle\",uuoAbae5k:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",variant:\"KTMuemfoY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lz1pi4-container\",inComponentSlot:true,nodeId:\"zoZE5ibwD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListCopy,{BxIfyR1tY:\"Health & Wellness\",GQcl1it4F:\"rgba(255, 255, 255, 0.2)\",height:\"100%\",id:\"zoZE5ibwD\",JQsM7qtYB:true,layoutId:\"zoZE5ibwD\",q2nPHW7TA:\"CheckCircle\",uuoAbae5k:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",variant:\"KTMuemfoY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y1ptqb-container\",inComponentSlot:true,nodeId:\"nzj5KMMVN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListCopy,{BxIfyR1tY:\"Lifestyle\",GQcl1it4F:\"rgba(255, 255, 255, 0.2)\",height:\"100%\",id:\"nzj5KMMVN\",JQsM7qtYB:true,layoutId:\"nzj5KMMVN\",q2nPHW7TA:\"CheckCircle\",uuoAbae5k:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",variant:\"KTMuemfoY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16owe6v-container\",inComponentSlot:true,nodeId:\"GTEevJrQx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListCopy,{BxIfyR1tY:\"Podcast\",GQcl1it4F:\"rgba(255, 255, 255, 0.2)\",height:\"100%\",id:\"GTEevJrQx\",JQsM7qtYB:true,layoutId:\"GTEevJrQx\",q2nPHW7TA:\"CheckCircle\",uuoAbae5k:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",variant:\"KTMuemfoY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ktxt0-container\",inComponentSlot:true,nodeId:\"fhY7Eg9Sd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListCopy,{BxIfyR1tY:\"Entertainment\",GQcl1it4F:\"rgba(255, 255, 255, 0.2)\",height:\"100%\",id:\"fhY7Eg9Sd\",JQsM7qtYB:true,layoutId:\"fhY7Eg9Sd\",q2nPHW7TA:\"CheckCircle\",uuoAbae5k:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",variant:\"KTMuemfoY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cmgjdg-container\",inComponentSlot:true,nodeId:\"ZKwoi01yn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListCopy,{BxIfyR1tY:\"Finance\",GQcl1it4F:\"rgba(255, 255, 255, 0.2)\",height:\"100%\",id:\"ZKwoi01yn\",JQsM7qtYB:true,layoutId:\"ZKwoi01yn\",q2nPHW7TA:\"CheckCircle\",uuoAbae5k:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",variant:\"KTMuemfoY\",width:\"100%\"})})})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yosrkh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1stzlo1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:[\"Real Projects, Real \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\"},children:\"Results\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:[\"Real Projects, Real \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0a7349ba-84e3-4523-91e9-a8e09103933c, rgb(14, 101, 240))\"},children:\"Results\"})]})}),className:\"framer-wcbqlu\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"Explore our gallery of projects created by our experts. Each project is a snapshot of creativity and success, demonstrating how our talent can impact your content.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"Explore our gallery of projects created by our experts. Each project is a snapshot of creativity and success, demonstrating how our talent can impact your content.\"})}),className:\"framer-zakhpq\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ruhhg4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:\"Long-Form Content\"})}),fonts:[\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-jimuks\",\"data-styles-preset\":\"DNEtrq3GO\",style:{\"--framer-text-alignment\":\"center\"},children:\"Long-Form Content\"})}),className:\"framer-162bxy2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"ul\",{\"aria-label\":\"projectlist\",className:\"framer-1owjbdx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:9,query:{from:{alias:\"X53O4dV9f\",data:Portfolio,type:\"Collection\"},select:[{collection:\"X53O4dV9f\",name:\"d33LyBhof\",type:\"Identifier\"},{collection:\"X53O4dV9f\",name:\"RNkzw3baw\",type:\"Identifier\"},{collection:\"X53O4dV9f\",name:\"FvyUM26WS\",type:\"Identifier\"},{collection:\"X53O4dV9f\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{collection:\"X53O4dV9f\",name:\"PVommSLjk\",type:\"Identifier\"},{collection:\"X53O4dV9f\",name:\"id\",type:\"Identifier\"},{alias:\"mDVH1bhoD\",arguments:[{from:{alias:\"mDVH1bhoD\",data:Experts,type:\"Collection\"},select:[{collection:\"mDVH1bhoD\",name:\"aB74T1Y0O\",type:\"Identifier\"},{collection:\"mDVH1bhoD\",name:\"uOb3RW6Qi\",type:\"Identifier\"},{collection:\"mDVH1bhoD\",name:\"WF80f_TL7\",type:\"Identifier\"},{collection:\"mDVH1bhoD\",name:\"zSJwF3NMF\",type:\"Identifier\"},{collection:\"mDVH1bhoD\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"mDVH1bhoD\",name:\"BoABWOqFz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X53O4dV9f\",name:\"cG3L_sPEV\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{left:{left:{collection:\"X53O4dV9f\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"X53O4dV9f\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"X53O4dV9f\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"X53O4dV9f\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"X53O4dV9f\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"youtu\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"X53O4dV9f\",name:\"vaHxZqHm0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GIfFwPhrP\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection4?.map(({d33LyBhof:d33LyBhofX53O4dV9f,FvyUM26WS:FvyUM26WSX53O4dV9f,id:idX53O4dV9f,Lhrctp4Tg:Lhrctp4TgX53O4dV9f,mDVH1bhoD:collection3,PVommSLjk:PVommSLjkX53O4dV9f,RNkzw3baw:RNkzw3bawX53O4dV9f},index4)=>{RNkzw3bawX53O4dV9f??=\"\";FvyUM26WSX53O4dV9f??=\"\";Lhrctp4TgX53O4dV9f??=\"\";PVommSLjkX53O4dV9f??=\"\";const visible=contains(Lhrctp4TgX53O4dV9f,\"youtu\");return /*#__PURE__*/_jsx(LayoutGroup,{id:`X53O4dV9f-${idX53O4dV9f}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FvyUM26WS:FvyUM26WSX53O4dV9f},children:/*#__PURE__*/_jsxs(\"li\",{\"aria-label\":\"project-item\",className:\"framer-pdqshg\",children:[/*#__PURE__*/_jsx(Overlay,{enabled:isDisplayed(),children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ev4f9e\",\"data-border\":true,\"data-framer-name\":\"Portfolio card\",id:`${FvyUM26WSX53O4dV9f}-1ev4f9e`,onTap:onTap3bnx0g({loadMore:loadMore3,overlay}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{background:{alt:\"\",fit:\"fill\",sizes:\"312px\",...toResponsiveImage(d33LyBhofX53O4dV9f)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"350px\",...toResponsiveImage(d33LyBhofX53O4dV9f)},className:\"framer-13tqg47\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ezb48\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k9vok9\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichTextTruncatedTextrktl3q,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Project name\"})}),className:\"framer-rktl3q\",\"data-framer-name\":\"Lines:2\",fonts:[\"Inter-SemiBold\"],text:RNkzw3bawX53O4dV9f,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oakjkx\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x3dw0z\",children:collection3?.map(({aB74T1Y0O:aB74T1Y0OmDVH1bhoD,id:idmDVH1bhoD,uOb3RW6Qi:uOb3RW6QimDVH1bhoD,WF80f_TL7:WF80f_TL7mDVH1bhoD,zSJwF3NMF:zSJwF3NMFmDVH1bhoD},index3)=>{aB74T1Y0OmDVH1bhoD??=\"\";WF80f_TL7mDVH1bhoD??=\"\";zSJwF3NMFmDVH1bhoD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mDVH1bhoD-${idmDVH1bhoD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aB74T1Y0O:aB74T1Y0OmDVH1bhoD},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OmDVH1bhoD},webPageId:\"SFq5kCNlc\"},motionChild:true,nodeId:\"qT4bu_vmZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1njybaj framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"35px\",...toResponsiveImage(uOb3RW6QimDVH1bhoD)},className:\"framer-6115iq\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k80ipj\",children:[/*#__PURE__*/_jsx(RichTextTruncatedText4k93e7,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Name\"})}),className:\"framer-4k93e7\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-SemiBold\"],text:WF80f_TL7mDVH1bhoD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextTruncatedTextoz5dmy,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"Area_of_activity\"})}),className:\"framer-oz5dmy\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-Medium\"],text:zSJwF3NMFmDVH1bhoD,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idmDVH1bhoD);})})}),isDisplayed()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:`${cx(scopingClassNames,\"framer-1r9hpwo\")} hidden-ldcjxb`,\"data-framer-portal-id\":`${FvyUM26WSX53O4dV9f}-1ev4f9e`,exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"pwKzwhMj7\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"80vw\",...toResponsiveImage(d33LyBhofX53O4dV9f)},className:cx(scopingClassNames,\"framer-x80seu\"),\"data-framer-portal-id\":`${FvyUM26WSX53O4dV9f}-1ev4f9e`,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ieo8qe-container\",isModuleExternal:true,nodeId:\"APQMmRy23\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"APQMmRy23\",isMixedBorderRadius:false,isRed:false,layoutId:\"APQMmRy23\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:Lhrctp4TgX53O4dV9f,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:PVommSLjkX53O4dV9f,implicitPathVariables:{FvyUM26WS:FvyUM26WSX53O4dV9f}},{href:PVommSLjkX53O4dV9f,implicitPathVariables:{FvyUM26WS:FvyUM26WSX53O4dV9f}},{href:PVommSLjkX53O4dV9f,implicitPathVariables:{FvyUM26WS:FvyUM26WSX53O4dV9f}}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-9gtwsq-container\"),\"data-framer-portal-id\":`${FvyUM26WSX53O4dV9f}-1ev4f9e`,nodeId:\"fCrWHqZhi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3xywJC7w:{gHeOvXgAq:resolvedLinks3[2]},p5BN8G00K:{gHeOvXgAq:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button2,{gHeOvXgAq:resolvedLinks3[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"External View\",id:\"fCrWHqZhi\",layoutId:\"fCrWHqZhi\",Uwhubicpx:true,variant:\"fjaDVoOag\",width:\"100%\"})})})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-slx9er\",id:`${FvyUM26WSX53O4dV9f}-slx9er`,onTap:onTap3bnx0g({loadMore:loadMore3,overlay:overlay1}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-15zwr08\"),\"data-framer-portal-id\":`${FvyUM26WSX53O4dV9f}-slx9er`,exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"SEIpD9mAS\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{background:{alt:\"\",fit:\"fill\",sizes:\"80vw\",...toResponsiveImage(d33LyBhofX53O4dV9f)}},p5BN8G00K:{background:{alt:\"\",fit:\"fill\",sizes:\"80vw\",...toResponsiveImage(d33LyBhofX53O4dV9f)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"80.0146vw\",...toResponsiveImage(d33LyBhofX53O4dV9f)},className:cx(scopingClassNames,\"framer-15gshsy\"),\"data-framer-portal-id\":`${FvyUM26WSX53O4dV9f}-slx9er`,children:visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fgo4zx-container\",isModuleExternal:true,nodeId:\"maT0lCulc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"maT0lCulc\",isMixedBorderRadius:false,isRed:false,layoutId:\"maT0lCulc\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:Lhrctp4TgX53O4dV9f,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:PVommSLjkX53O4dV9f,implicitPathVariables:{FvyUM26WS:FvyUM26WSX53O4dV9f}},{href:PVommSLjkX53O4dV9f,implicitPathVariables:{FvyUM26WS:FvyUM26WSX53O4dV9f}},{href:PVommSLjkX53O4dV9f,implicitPathVariables:{FvyUM26WS:FvyUM26WSX53O4dV9f}},{href:PVommSLjkX53O4dV9f,implicitPathVariables:{FvyUM26WS:FvyUM26WSX53O4dV9f}}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1gk4oyg-container\"),\"data-framer-portal-id\":`${FvyUM26WSX53O4dV9f}-slx9er`,nodeId:\"UtxbIkraL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{gHeOvXgAq:resolvedLinks4[2]},M3xywJC7w:{gHeOvXgAq:resolvedLinks4[3]},p5BN8G00K:{gHeOvXgAq:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button2,{gHeOvXgAq:resolvedLinks4[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"External View\",id:\"UtxbIkraL\",layoutId:\"UtxbIkraL\",Uwhubicpx:true,variant:\"fjaDVoOag\",width:\"100%\"})})})})})]}),getContainer())})})})})})]})})},idX53O4dV9f);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{as:\"li\",className:\"framer-1m3lfa6-container\",isModuleExternal:true,nodeId:\"Q0VSt9ViF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LoadMore,{height:\"100%\",id:\"Q0VSt9ViF\",layoutId:\"Q0VSt9ViF\",variant:loaderVariants(paginationInfo3,{disabled:\"RY1CAqXo3\",loading:\"HjxzgyO9l\"},\"fRQluzpqn\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore:loadMore3})})})})]})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-no63vz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"capitalize\"},children:\"Short-Form Content\"})}),fonts:[\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-jimuks\",\"data-styles-preset\":\"DNEtrq3GO\",style:{\"--framer-text-alignment\":\"center\"},children:\"Short-Form Content\"})}),className:\"framer-1m9d1sb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ao5vw7-container\",isModuleExternal:true,nodeId:\"UVNZQckxS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{itemAmount:1,padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0},M3xywJC7w:{itemAmount:2},p5BN8G00K:{itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgb(110, 98, 98)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"UVNZQckxS\",intervalControl:1.5,itemAmount:3,layoutId:\"UVNZQckxS\",padding:32,paddingBottom:32,paddingLeft:32,paddingPerSide:false,paddingRight:32,paddingTop:32,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgb(94, 93, 93)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.ul,{\"aria-label\":\"projectlist\",className:\"framer-5y4arv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"u2ag7q4iA\",data:Portfolio,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"u2ag7q4iA\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"u2ag7q4iA\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{collection:\"u2ag7q4iA\",name:\"RNkzw3baw\",type:\"Identifier\"},{collection:\"u2ag7q4iA\",name:\"FvyUM26WS\",type:\"Identifier\"},{collection:\"u2ag7q4iA\",name:\"id\",type:\"Identifier\"},{alias:\"iKfHoJ_cV\",arguments:[{from:{alias:\"iKfHoJ_cV\",data:Experts,type:\"Collection\"},select:[{collection:\"iKfHoJ_cV\",name:\"aB74T1Y0O\",type:\"Identifier\"},{collection:\"iKfHoJ_cV\",name:\"uOb3RW6Qi\",type:\"Identifier\"},{collection:\"iKfHoJ_cV\",name:\"WF80f_TL7\",type:\"Identifier\"},{collection:\"iKfHoJ_cV\",name:\"zSJwF3NMF\",type:\"Identifier\"},{collection:\"iKfHoJ_cV\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"iKfHoJ_cV\",name:\"BoABWOqFz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"u2ag7q4iA\",name:\"cG3L_sPEV\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{left:{left:{left:{collection:\"u2ag7q4iA\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"u2ag7q4iA\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"u2ag7q4iA\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"u2ag7q4iA\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"u2ag7q4iA\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"youtu\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"u2ag7q4iA\",name:\"vaHxZqHm0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GIfFwPhrP\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"u2ag7q4iA\",name:\"RNkzw3baw\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"short\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({FvyUM26WS:FvyUM26WSu2ag7q4iA,id:idu2ag7q4iA,iKfHoJ_cV:collection5,Lhrctp4Tg:Lhrctp4Tgu2ag7q4iA,RNkzw3baw:RNkzw3bawu2ag7q4iA},index6)=>{Lhrctp4Tgu2ag7q4iA??=\"\";RNkzw3bawu2ag7q4iA??=\"\";FvyUM26WSu2ag7q4iA??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`u2ag7q4iA-${idu2ag7q4iA}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FvyUM26WS:FvyUM26WSu2ag7q4iA},children:/*#__PURE__*/_jsx(motion.li,{\"aria-label\":\"project-item\",className:\"framer-1eqva02\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1suioqi\",\"data-border\":true,\"data-framer-name\":\"Portfolio card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kitpu7-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"tWyamzhu0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"tWyamzhu0\",isMixedBorderRadius:false,isRed:false,layoutId:\"tWyamzhu0\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:Lhrctp4Tgu2ag7q4iA,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yt0t0h\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nsrgn3\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichTextTruncatedTexto0hkrs,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Project name\"})}),className:\"framer-o0hkrs\",\"data-framer-name\":\"Lines:2\",fonts:[\"Inter-SemiBold\"],text:RNkzw3bawu2ag7q4iA,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t33pn0\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fznsx\",children:collection5?.map(({aB74T1Y0O:aB74T1Y0OiKfHoJ_cV,id:idiKfHoJ_cV,uOb3RW6Qi:uOb3RW6QiiKfHoJ_cV,WF80f_TL7:WF80f_TL7iKfHoJ_cV,zSJwF3NMF:zSJwF3NMFiKfHoJ_cV},index5)=>{aB74T1Y0OiKfHoJ_cV??=\"\";WF80f_TL7iKfHoJ_cV??=\"\";zSJwF3NMFiKfHoJ_cV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iKfHoJ_cV-${idiKfHoJ_cV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aB74T1Y0O:aB74T1Y0OiKfHoJ_cV},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OiKfHoJ_cV},webPageId:\"SFq5kCNlc\"},motionChild:true,nodeId:\"EpCcVroSc\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1nkxjlv framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"35px\",...toResponsiveImage(uOb3RW6QiiKfHoJ_cV)},className:\"framer-17au5dx\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13und1m\",children:[/*#__PURE__*/_jsx(RichTextTruncatedTextsokvz9,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Name\"})}),className:\"framer-sokvz9\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-SemiBold\"],text:WF80f_TL7iKfHoJ_cV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextTruncatedText1snryn1,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"Area_of_activity\"})}),className:\"framer-1snryn1\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-Medium\"],text:zSJwF3NMFiKfHoJ_cV,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idiKfHoJ_cV);})})})]})})})},idu2ag7q4iA);})})})})}),/*#__PURE__*/_jsx(motion.ul,{\"aria-label\":\"projectlist\",className:\"framer-i4yncb\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jyoGOhwJs\",data:Portfolio,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:9},select:[{collection:\"jyoGOhwJs\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{collection:\"jyoGOhwJs\",name:\"RNkzw3baw\",type:\"Identifier\"},{collection:\"jyoGOhwJs\",name:\"FvyUM26WS\",type:\"Identifier\"},{collection:\"jyoGOhwJs\",name:\"id\",type:\"Identifier\"},{alias:\"tkvW5FYZw\",arguments:[{from:{alias:\"tkvW5FYZw\",data:Experts,type:\"Collection\"},select:[{collection:\"tkvW5FYZw\",name:\"aB74T1Y0O\",type:\"Identifier\"},{collection:\"tkvW5FYZw\",name:\"uOb3RW6Qi\",type:\"Identifier\"},{collection:\"tkvW5FYZw\",name:\"WF80f_TL7\",type:\"Identifier\"},{collection:\"tkvW5FYZw\",name:\"zSJwF3NMF\",type:\"Identifier\"},{collection:\"tkvW5FYZw\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"tkvW5FYZw\",name:\"BoABWOqFz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"jyoGOhwJs\",name:\"cG3L_sPEV\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{left:{left:{left:{collection:\"jyoGOhwJs\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"jyoGOhwJs\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"jyoGOhwJs\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"jyoGOhwJs\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"jyoGOhwJs\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"youtu\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"jyoGOhwJs\",name:\"vaHxZqHm0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GIfFwPhrP\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"jyoGOhwJs\",name:\"RNkzw3baw\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"short\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection8,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({FvyUM26WS:FvyUM26WSjyoGOhwJs,id:idjyoGOhwJs,Lhrctp4Tg:Lhrctp4TgjyoGOhwJs,RNkzw3baw:RNkzw3bawjyoGOhwJs,tkvW5FYZw:collection7},index8)=>{Lhrctp4TgjyoGOhwJs??=\"\";RNkzw3bawjyoGOhwJs??=\"\";FvyUM26WSjyoGOhwJs??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jyoGOhwJs-${idjyoGOhwJs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FvyUM26WS:FvyUM26WSjyoGOhwJs},children:/*#__PURE__*/_jsx(motion.li,{\"aria-label\":\"project-item\",className:\"framer-1yrzk4z\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gm6xap\",\"data-border\":true,\"data-framer-name\":\"Portfolio card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wjlgsn-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"cHOa63Mrx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"cHOa63Mrx\",isMixedBorderRadius:false,isRed:false,layoutId:\"cHOa63Mrx\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:Lhrctp4TgjyoGOhwJs,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aaawt5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jpownp\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichTextTruncatedTextdz9e11,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Project name\"})}),className:\"framer-dz9e11\",\"data-framer-name\":\"Lines:2\",fonts:[\"Inter-SemiBold\"],text:RNkzw3bawjyoGOhwJs,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15172pi\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-135bnrv\",children:collection7?.map(({aB74T1Y0O:aB74T1Y0OtkvW5FYZw,id:idtkvW5FYZw,uOb3RW6Qi:uOb3RW6QitkvW5FYZw,WF80f_TL7:WF80f_TL7tkvW5FYZw,zSJwF3NMF:zSJwF3NMFtkvW5FYZw},index7)=>{aB74T1Y0OtkvW5FYZw??=\"\";WF80f_TL7tkvW5FYZw??=\"\";zSJwF3NMFtkvW5FYZw??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tkvW5FYZw-${idtkvW5FYZw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aB74T1Y0O:aB74T1Y0OtkvW5FYZw},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OtkvW5FYZw},webPageId:\"SFq5kCNlc\"},motionChild:true,nodeId:\"yYZGp6k8J\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-cwob5n framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"35px\",...toResponsiveImage(uOb3RW6QitkvW5FYZw)},className:\"framer-1adtnjx\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6h1ymz\",children:[/*#__PURE__*/_jsx(RichTextTruncatedText15261yi,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Name\"})}),className:\"framer-15261yi\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-SemiBold\"],text:WF80f_TL7tkvW5FYZw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextTruncatedTextwivij8,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"Area_of_activity\"})}),className:\"framer-wivij8\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-Medium\"],text:zSJwF3NMFtkvW5FYZw,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idtkvW5FYZw);})})})]})})})},idjyoGOhwJs);})})})})}),/*#__PURE__*/_jsx(motion.ul,{\"aria-label\":\"projectlist\",className:\"framer-1jgdr8a\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CdeJMTr19\",data:Portfolio,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"CdeJMTr19\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{collection:\"CdeJMTr19\",name:\"RNkzw3baw\",type:\"Identifier\"},{collection:\"CdeJMTr19\",name:\"FvyUM26WS\",type:\"Identifier\"},{collection:\"CdeJMTr19\",name:\"id\",type:\"Identifier\"},{alias:\"eyoCXfALd\",arguments:[{from:{alias:\"eyoCXfALd\",data:Experts,type:\"Collection\"},select:[{collection:\"eyoCXfALd\",name:\"aB74T1Y0O\",type:\"Identifier\"},{collection:\"eyoCXfALd\",name:\"uOb3RW6Qi\",type:\"Identifier\"},{collection:\"eyoCXfALd\",name:\"WF80f_TL7\",type:\"Identifier\"},{collection:\"eyoCXfALd\",name:\"zSJwF3NMF\",type:\"Identifier\"},{collection:\"eyoCXfALd\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"eyoCXfALd\",name:\"BoABWOqFz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"CdeJMTr19\",name:\"cG3L_sPEV\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{left:{left:{left:{collection:\"CdeJMTr19\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"CdeJMTr19\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"CdeJMTr19\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"CdeJMTr19\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"CdeJMTr19\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"youtu\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"CdeJMTr19\",name:\"vaHxZqHm0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GIfFwPhrP\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"CdeJMTr19\",name:\"RNkzw3baw\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"short\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({eyoCXfALd:collection9,FvyUM26WS:FvyUM26WSCdeJMTr19,id:idCdeJMTr19,Lhrctp4Tg:Lhrctp4TgCdeJMTr19,RNkzw3baw:RNkzw3bawCdeJMTr19},index10)=>{Lhrctp4TgCdeJMTr19??=\"\";RNkzw3bawCdeJMTr19??=\"\";FvyUM26WSCdeJMTr19??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CdeJMTr19-${idCdeJMTr19}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FvyUM26WS:FvyUM26WSCdeJMTr19},children:/*#__PURE__*/_jsx(motion.li,{\"aria-label\":\"project-item\",className:\"framer-131gy33\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ff7l2m\",\"data-border\":true,\"data-framer-name\":\"Portfolio card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-75gnso-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"o8QGLTzsv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"o8QGLTzsv\",isMixedBorderRadius:false,isRed:false,layoutId:\"o8QGLTzsv\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:Lhrctp4TgCdeJMTr19,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11gka44\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-le9o2v\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichTextTruncatedTextqbcr8f,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Project name\"})}),className:\"framer-qbcr8f\",\"data-framer-name\":\"Lines:2\",fonts:[\"Inter-SemiBold\"],text:RNkzw3bawCdeJMTr19,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lv7owy\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i2acd3\",children:collection9?.map(({aB74T1Y0O:aB74T1Y0OeyoCXfALd,id:ideyoCXfALd,uOb3RW6Qi:uOb3RW6QieyoCXfALd,WF80f_TL7:WF80f_TL7eyoCXfALd,zSJwF3NMF:zSJwF3NMFeyoCXfALd},index9)=>{aB74T1Y0OeyoCXfALd??=\"\";WF80f_TL7eyoCXfALd??=\"\";zSJwF3NMFeyoCXfALd??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`eyoCXfALd-${ideyoCXfALd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aB74T1Y0O:aB74T1Y0OeyoCXfALd},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OeyoCXfALd},webPageId:\"SFq5kCNlc\"},motionChild:true,nodeId:\"BbgmQEr0i\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-alab0a framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"35px\",...toResponsiveImage(uOb3RW6QieyoCXfALd)},className:\"framer-klfjxj\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q9sn3c\",children:[/*#__PURE__*/_jsx(RichTextTruncatedTextpwymza,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Name\"})}),className:\"framer-pwymza\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-SemiBold\"],text:WF80f_TL7eyoCXfALd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextTruncatedText1rkd9fu,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"Area_of_activity\"})}),className:\"framer-1rkd9fu\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-Medium\"],text:zSJwF3NMFeyoCXfALd,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},ideyoCXfALd);})})})]})})})},idCdeJMTr19);})})})})}),/*#__PURE__*/_jsx(motion.ul,{\"aria-label\":\"projectlist\",className:\"framer-12pg2g8\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QZ914nHgX\",data:Portfolio,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"QZ914nHgX\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{collection:\"QZ914nHgX\",name:\"RNkzw3baw\",type:\"Identifier\"},{collection:\"QZ914nHgX\",name:\"FvyUM26WS\",type:\"Identifier\"},{collection:\"QZ914nHgX\",name:\"id\",type:\"Identifier\"},{alias:\"vUrdYbJFt\",arguments:[{from:{alias:\"vUrdYbJFt\",data:Experts,type:\"Collection\"},select:[{collection:\"vUrdYbJFt\",name:\"aB74T1Y0O\",type:\"Identifier\"},{collection:\"vUrdYbJFt\",name:\"uOb3RW6Qi\",type:\"Identifier\"},{collection:\"vUrdYbJFt\",name:\"WF80f_TL7\",type:\"Identifier\"},{collection:\"vUrdYbJFt\",name:\"zSJwF3NMF\",type:\"Identifier\"},{collection:\"vUrdYbJFt\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"vUrdYbJFt\",name:\"BoABWOqFz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QZ914nHgX\",name:\"cG3L_sPEV\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{left:{left:{left:{collection:\"QZ914nHgX\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"QZ914nHgX\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"QZ914nHgX\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"QZ914nHgX\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"QZ914nHgX\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"youtu\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"QZ914nHgX\",name:\"vaHxZqHm0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GIfFwPhrP\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"QZ914nHgX\",name:\"RNkzw3baw\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"short\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection12,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection12?.map(({FvyUM26WS:FvyUM26WSQZ914nHgX,id:idQZ914nHgX,Lhrctp4Tg:Lhrctp4TgQZ914nHgX,RNkzw3baw:RNkzw3bawQZ914nHgX,vUrdYbJFt:collection11},index12)=>{Lhrctp4TgQZ914nHgX??=\"\";RNkzw3bawQZ914nHgX??=\"\";FvyUM26WSQZ914nHgX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QZ914nHgX-${idQZ914nHgX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FvyUM26WS:FvyUM26WSQZ914nHgX},children:/*#__PURE__*/_jsx(motion.li,{\"aria-label\":\"project-item\",className:\"framer-3jzzn1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lj1djd\",\"data-border\":true,\"data-framer-name\":\"Portfolio card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1puplmd-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"YMoooAOjt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"YMoooAOjt\",isMixedBorderRadius:false,isRed:false,layoutId:\"YMoooAOjt\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:Lhrctp4TgQZ914nHgX,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3gluys\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18wxeza\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichTextTruncatedTextnvimi2,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Project name\"})}),className:\"framer-nvimi2\",\"data-framer-name\":\"Lines:2\",fonts:[\"Inter-SemiBold\"],text:RNkzw3bawQZ914nHgX,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v4xhwu\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14h87lj\",children:collection11?.map(({aB74T1Y0O:aB74T1Y0OvUrdYbJFt,id:idvUrdYbJFt,uOb3RW6Qi:uOb3RW6QivUrdYbJFt,WF80f_TL7:WF80f_TL7vUrdYbJFt,zSJwF3NMF:zSJwF3NMFvUrdYbJFt},index11)=>{aB74T1Y0OvUrdYbJFt??=\"\";WF80f_TL7vUrdYbJFt??=\"\";zSJwF3NMFvUrdYbJFt??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vUrdYbJFt-${idvUrdYbJFt}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aB74T1Y0O:aB74T1Y0OvUrdYbJFt},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OvUrdYbJFt},webPageId:\"SFq5kCNlc\"},motionChild:true,nodeId:\"IwSbFGxRz\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-12uz0xb framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"35px\",...toResponsiveImage(uOb3RW6QivUrdYbJFt)},className:\"framer-a63hep\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1waq14p\",children:[/*#__PURE__*/_jsx(RichTextTruncatedText19f4u7i,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Name\"})}),className:\"framer-19f4u7i\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-SemiBold\"],text:WF80f_TL7vUrdYbJFt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextTruncatedText9wn8ym,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"Area_of_activity\"})}),className:\"framer-9wn8ym\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-Medium\"],text:zSJwF3NMFvUrdYbJFt,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idvUrdYbJFt);})})})]})})})},idQZ914nHgX);})})})})}),/*#__PURE__*/_jsx(motion.ul,{\"aria-label\":\"projectlist\",className:\"framer-uibu3b\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Alaoq3aGJ\",data:Portfolio,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"Alaoq3aGJ\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{collection:\"Alaoq3aGJ\",name:\"RNkzw3baw\",type:\"Identifier\"},{collection:\"Alaoq3aGJ\",name:\"FvyUM26WS\",type:\"Identifier\"},{collection:\"Alaoq3aGJ\",name:\"id\",type:\"Identifier\"},{alias:\"XLq01ABf9\",arguments:[{from:{alias:\"XLq01ABf9\",data:Experts,type:\"Collection\"},select:[{collection:\"XLq01ABf9\",name:\"aB74T1Y0O\",type:\"Identifier\"},{collection:\"XLq01ABf9\",name:\"uOb3RW6Qi\",type:\"Identifier\"},{collection:\"XLq01ABf9\",name:\"WF80f_TL7\",type:\"Identifier\"},{collection:\"XLq01ABf9\",name:\"zSJwF3NMF\",type:\"Identifier\"},{collection:\"XLq01ABf9\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"XLq01ABf9\",name:\"BoABWOqFz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"Alaoq3aGJ\",name:\"cG3L_sPEV\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{left:{left:{left:{collection:\"Alaoq3aGJ\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Alaoq3aGJ\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"Alaoq3aGJ\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Alaoq3aGJ\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"Alaoq3aGJ\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"youtu\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Alaoq3aGJ\",name:\"vaHxZqHm0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GIfFwPhrP\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"Alaoq3aGJ\",name:\"RNkzw3baw\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"Insta\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection14,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection14?.map(({FvyUM26WS:FvyUM26WSAlaoq3aGJ,id:idAlaoq3aGJ,Lhrctp4Tg:Lhrctp4TgAlaoq3aGJ,RNkzw3baw:RNkzw3bawAlaoq3aGJ,XLq01ABf9:collection13},index14)=>{Lhrctp4TgAlaoq3aGJ??=\"\";RNkzw3bawAlaoq3aGJ??=\"\";FvyUM26WSAlaoq3aGJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Alaoq3aGJ-${idAlaoq3aGJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FvyUM26WS:FvyUM26WSAlaoq3aGJ},children:/*#__PURE__*/_jsx(motion.li,{\"aria-label\":\"project-item\",className:\"framer-ke6g1j\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9zm7fs\",\"data-border\":true,\"data-framer-name\":\"Portfolio card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yveb2r-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"iBWKq5awG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"iBWKq5awG\",isMixedBorderRadius:false,isRed:false,layoutId:\"iBWKq5awG\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:Lhrctp4TgAlaoq3aGJ,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18fii1q\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lhpauc\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichTextTruncatedText1hk1e4c,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Project name\"})}),className:\"framer-1hk1e4c\",\"data-framer-name\":\"Lines:2\",fonts:[\"Inter-SemiBold\"],text:RNkzw3bawAlaoq3aGJ,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7h2nn5\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hd375i\",children:collection13?.map(({aB74T1Y0O:aB74T1Y0OXLq01ABf9,id:idXLq01ABf9,uOb3RW6Qi:uOb3RW6QiXLq01ABf9,WF80f_TL7:WF80f_TL7XLq01ABf9,zSJwF3NMF:zSJwF3NMFXLq01ABf9},index13)=>{aB74T1Y0OXLq01ABf9??=\"\";WF80f_TL7XLq01ABf9??=\"\";zSJwF3NMFXLq01ABf9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XLq01ABf9-${idXLq01ABf9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aB74T1Y0O:aB74T1Y0OXLq01ABf9},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OXLq01ABf9},webPageId:\"SFq5kCNlc\"},motionChild:true,nodeId:\"KOoCowyZY\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-16ti4gg framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"35px\",...toResponsiveImage(uOb3RW6QiXLq01ABf9)},className:\"framer-q01h06\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oio3d5\",children:[/*#__PURE__*/_jsx(RichTextTruncatedText1834tir,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Name\"})}),className:\"framer-1834tir\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-SemiBold\"],text:WF80f_TL7XLq01ABf9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextTruncatedText18ojdvk,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"Area_of_activity\"})}),className:\"framer-18ojdvk\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-Medium\"],text:zSJwF3NMFXLq01ABf9,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idXLq01ABf9);})})})]})})})},idAlaoq3aGJ);})})})})}),/*#__PURE__*/_jsx(motion.ul,{\"aria-label\":\"projectlist\",className:\"framer-1jvczux\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CP26i8J3l\",data:Portfolio,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"CP26i8J3l\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{collection:\"CP26i8J3l\",name:\"RNkzw3baw\",type:\"Identifier\"},{collection:\"CP26i8J3l\",name:\"FvyUM26WS\",type:\"Identifier\"},{collection:\"CP26i8J3l\",name:\"id\",type:\"Identifier\"},{alias:\"Lp9fAPTRT\",arguments:[{from:{alias:\"Lp9fAPTRT\",data:Experts,type:\"Collection\"},select:[{collection:\"Lp9fAPTRT\",name:\"aB74T1Y0O\",type:\"Identifier\"},{collection:\"Lp9fAPTRT\",name:\"uOb3RW6Qi\",type:\"Identifier\"},{collection:\"Lp9fAPTRT\",name:\"WF80f_TL7\",type:\"Identifier\"},{collection:\"Lp9fAPTRT\",name:\"zSJwF3NMF\",type:\"Identifier\"},{collection:\"Lp9fAPTRT\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"Lp9fAPTRT\",name:\"BoABWOqFz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"CP26i8J3l\",name:\"cG3L_sPEV\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{left:{left:{left:{collection:\"CP26i8J3l\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"CP26i8J3l\",name:\"d33LyBhof\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"CP26i8J3l\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"CP26i8J3l\",name:\"PVommSLjk\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"CP26i8J3l\",name:\"Lhrctp4Tg\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"youtu\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"CP26i8J3l\",name:\"vaHxZqHm0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"GIfFwPhrP\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{arguments:[{collection:\"CP26i8J3l\",name:\"RNkzw3baw\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"Insta\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection16,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection16?.map(({FvyUM26WS:FvyUM26WSCP26i8J3l,id:idCP26i8J3l,Lhrctp4Tg:Lhrctp4TgCP26i8J3l,Lp9fAPTRT:collection15,RNkzw3baw:RNkzw3bawCP26i8J3l},index16)=>{Lhrctp4TgCP26i8J3l??=\"\";RNkzw3bawCP26i8J3l??=\"\";FvyUM26WSCP26i8J3l??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CP26i8J3l-${idCP26i8J3l}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FvyUM26WS:FvyUM26WSCP26i8J3l},children:/*#__PURE__*/_jsx(motion.li,{\"aria-label\":\"project-item\",className:\"framer-1lc0rs2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fvppae\",\"data-border\":true,\"data-framer-name\":\"Portfolio card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1npihzg-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ZEJx8n8WO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ZEJx8n8WO\",isMixedBorderRadius:false,isRed:false,layoutId:\"ZEJx8n8WO\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:Lhrctp4TgCP26i8J3l,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vu7tbm\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vkr851\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichTextTruncatedText17bxmu9,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Project name\"})}),className:\"framer-17bxmu9\",\"data-framer-name\":\"Lines:2\",fonts:[\"Inter-SemiBold\"],text:RNkzw3bawCP26i8J3l,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1puaz1p\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-acn51q\",children:collection15?.map(({aB74T1Y0O:aB74T1Y0OLp9fAPTRT,id:idLp9fAPTRT,uOb3RW6Qi:uOb3RW6QiLp9fAPTRT,WF80f_TL7:WF80f_TL7Lp9fAPTRT,zSJwF3NMF:zSJwF3NMFLp9fAPTRT},index15)=>{aB74T1Y0OLp9fAPTRT??=\"\";WF80f_TL7Lp9fAPTRT??=\"\";zSJwF3NMFLp9fAPTRT??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Lp9fAPTRT-${idLp9fAPTRT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aB74T1Y0O:aB74T1Y0OLp9fAPTRT},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aB74T1Y0O:aB74T1Y0OLp9fAPTRT},webPageId:\"SFq5kCNlc\"},motionChild:true,nodeId:\"F08Wwr_kT\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ldg0zc framer-lux5qc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"35px\",...toResponsiveImage(uOb3RW6QiLp9fAPTRT)},className:\"framer-1cs1x02\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qzy8zx\",children:[/*#__PURE__*/_jsx(RichTextTruncatedTextrz5moh,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(26, 26, 26)\"},children:\"Name\"})}),className:\"framer-rz5moh\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-SemiBold\"],text:WF80f_TL7Lp9fAPTRT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextTruncatedText2by9fi,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-ea8c816e-ed86-4553-af65-3aec263b07f9, rgb(101, 99, 92))\"},children:\"Area_of_activity\"})}),className:\"framer-2by9fi\",\"data-framer-name\":\"Lines:1\",fonts:[\"Inter-Medium\"],text:zSJwF3NMFLp9fAPTRT,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idLp9fAPTRT);})})})]})})})},idCP26i8J3l);})})})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bk0x56\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lrifwx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Browse Indiedoers Talent Pool\"})}),fonts:[\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-wewzfi\",\"data-styles-preset\":\"Ie_GK4CWv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Browse Indiedoers Talent Pool\"})}),className:\"framer-5378q1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Discover a World of Creative Expertise: Your Perfect Collaborator is Just a Click Away\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ey24\",\"data-styles-preset\":\"wCOkIsEsq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover a World of Creative Expertise: Your Perfect Collaborator is Just a Click Away\"})}),className:\"framer-2e0h5e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ih4lj2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"j_1weDM34\",data:Services,type:\"Collection\"},select:[{collection:\"j_1weDM34\",name:\"jBtd1weY3\",type:\"Identifier\"},{collection:\"j_1weDM34\",name:\"tGTL5vNnP\",type:\"Identifier\"},{collection:\"j_1weDM34\",name:\"id\",type:\"Identifier\"}]},children:(collection17,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection17?.map(({id:idj_1weDM34,jBtd1weY3:jBtd1weY3j_1weDM34,tGTL5vNnP:tGTL5vNnPj_1weDM34},index17)=>{jBtd1weY3j_1weDM34??=\"\";tGTL5vNnPj_1weDM34??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`j_1weDM34-${idj_1weDM34}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jBtd1weY3:jBtd1weY3j_1weDM34},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jBtd1weY3:jBtd1weY3j_1weDM34},webPageId:\"hVg8K5bb1\"},implicitPathVariables:undefined},{href:{pathVariables:{jBtd1weY3:jBtd1weY3j_1weDM34},webPageId:\"hVg8K5bb1\"},implicitPathVariables:undefined},{href:{pathVariables:{jBtd1weY3:jBtd1weY3j_1weDM34},webPageId:\"hVg8K5bb1\"},implicitPathVariables:undefined},{href:{pathVariables:{jBtd1weY3:jBtd1weY3j_1weDM34},webPageId:\"hVg8K5bb1\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{width:`max(min(${componentViewport?.width||\"100vw\"} - 64px, 1200px), 50px)`},p5BN8G00K:{width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 32px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 64px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1udc0er-container\",nodeId:\"TNnHQV7eW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{jYe8KZGtn:resolvedLinks5[2]},M3xywJC7w:{jYe8KZGtn:resolvedLinks5[3]},p5BN8G00K:{jYe8KZGtn:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ServiceName,{height:\"100%\",id:\"TNnHQV7eW\",jYe8KZGtn:resolvedLinks5[0],layoutId:\"TNnHQV7eW\",style:{width:\"100%\"},width:\"100%\",WjDIEtWmt:tGTL5vNnPj_1weDM34})})})})})})})},idj_1weDM34);})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ibhbo6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8zoj6v\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ro9iau\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Looking for Video Creative Work?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Looking for Video Creative Work?\"})}),className:\"framer-1eg76ab\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Enjoy the financial stability of a regular job with the flexibility of a freelance career.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Enjoy the financial stability of a regular job with the flexibility of a freelance career.\"})}),className:\"framer-1igjaq3\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qf4naq-container\",nodeId:\"cHRqhscxJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{kHKpBXhE3:\"Become a doer\",rtkt_xF9v:\"https://indiedoers.com/auth?action=signup&role=seller\"},p5BN8G00K:{kHKpBXhE3:\"Become a doer\",rtkt_xF9v:\"https://indiedoers.com/auth?action=signup&role=seller\"}},children:/*#__PURE__*/_jsx(MainButtonWithQueryParams1qf4naqWithMappedReactProps1c38ihi,{height:\"100%\",id:\"cHRqhscxJ\",kHKpBXhE3:\"Become a Doer\",layoutId:\"cHRqhscxJ\",N_pC9IpGP:\"var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, rgb(0, 0, 0))\",rtkt_xF9v:\"https://app.indiedoers.com?action=signup\",sPC7dvZxw:false,variant:\"I4N3bQ6hu\",width:\"100%\",zOuBsMYpH:\"rgb(255, 255, 255)\"})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vv1K9tB0L\"},implicitPathVariables:undefined},{href:{webPageId:\"vv1K9tB0L\"},implicitPathVariables:undefined},{href:{webPageId:\"vv1K9tB0L\"},implicitPathVariables:undefined},{href:{webPageId:\"vv1K9tB0L\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x9zmkt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ilKvtECCz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:false,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks6[2],prefix:\"Read our\"},euTitle:\"Cookie Settings\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldTitle:\"Cookie Settings\",worldType:\"simple\"}},M3xywJC7w:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:false,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks6[3],prefix:\"Read our\"},euTitle:\"Cookie Settings\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldTitle:\"Cookie Settings\",worldType:\"simple\"}},p5BN8G00K:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:false,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks6[1],prefix:\"Read our\"},euTitle:\"Cookie Settings\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldTitle:\"Cookie Settings\",worldType:\"simple\"}}},children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-left\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"}},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:false,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks6[0],prefix:\"Read our\"},euTitle:\"Cookie Settings\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"\",height:\"100%\",id:\"ilKvtECCz\",layoutId:\"ilKvtECCz\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:false,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"\",textFont:{},type:\"none\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:277,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dcgxg8-container\",nodeId:\"No3cb4Sx2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghr6cOOOP:{variant:\"jfUmlBjtX\"}},children:/*#__PURE__*/_jsx(Footer,{g4_3dVsud:\"var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, rgb(0, 0, 0))\",height:\"100%\",id:\"No3cb4Sx2\",layoutId:\"No3cb4Sx2\",style:{width:\"100%\"},variant:\"Q2UrzN_CF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rIrYg.framer-lux5qc, .framer-rIrYg .framer-lux5qc { display: block; }\",\".framer-rIrYg.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: center; overflow: hidden; padding: 0px; position: relative; width: 1366px; }\",\".framer-rIrYg .framer-tdbcns-container { flex: none; height: auto; max-width: 1366px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1bivpm0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 1366px; overflow: visible; padding: 0px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1hf6pdt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 668px; justify-content: center; max-width: 600px; min-width: 400px; overflow: visible; padding: 0px 0px 32px 0px; position: relative; width: 1px; }\",\".framer-rIrYg .framer-r3zm7l, .framer-rIrYg .framer-1r9cot5, .framer-rIrYg .framer-vchohe, .framer-rIrYg .framer-162bxy2, .framer-rIrYg .framer-1m9d1sb, .framer-rIrYg .framer-5378q1, .framer-rIrYg .framer-2e0h5e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-cj41bb { display: grid; flex: none; gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); height: min-content; justify-content: center; list-style: none; margin: 0px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-15olbkt, .framer-rIrYg .framer-s66gwa, .framer-rIrYg .framer-kpqvne, .framer-rIrYg .framer-u4nwlp, .framer-rIrYg .framer-1llmqji, .framer-rIrYg .framer-rsvdu2 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: auto; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rIrYg .framer-1x5cwf0-container, .framer-rIrYg .framer-11wcbmu-container, .framer-rIrYg .framer-rp9hkd-container, .framer-rIrYg .framer-upuw4v-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 22px; }\",\".framer-rIrYg .framer-1q872w3, .framer-rIrYg .framer-158at9z, .framer-rIrYg .framer-1q47mdh, .framer-rIrYg .framer-g9t20j, .framer-rIrYg .framer-jniamw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 260px; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-1isgljn, .framer-rIrYg .framer-134ovnz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rIrYg .framer-1ez6ic1-container, .framer-rIrYg .framer-1qv04ew-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 22px; }\",\".framer-rIrYg .framer-1d8v0zv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1eje3tj { align-content: center; align-items: center; background-color: var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, #000000); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.3010936508871964px 0.3010936508871964px -1.3333333333333333px rgba(0, 0, 0, 0.76), 0px 1.1442666516217286px 1.1442666516217286px -2.6666666666666665px rgba(0, 0, 0, 0.66), 0px 5px 5px -4px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 230px; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rIrYg .framer-mpscri, .framer-rIrYg .framer-k32edh, .framer-rIrYg .framer-15ecczs { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-rIrYg .framer-1ta9i6 { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.3010936508871964px 0.3010936508871964px -1.3333333333333333px rgba(0, 0, 0, 0.76), 0px 1.1442666516217286px 1.1442666516217286px -2.6666666666666665px rgba(0, 0, 0, 0.66), 0px 5px 5px -4px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 230px; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rIrYg .framer-1j51fmc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rIrYg .framer-ngxg78 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 280px; }\",\".framer-rIrYg .framer-19lpk81-container, .framer-rIrYg .framer-1ozoygw-container, .framer-rIrYg .framer-ratzfb-container, .framer-rIrYg .framer-1v8de26-container, .framer-rIrYg .framer-19n8mxe-container, .framer-rIrYg .framer-17x2tsu-container, .framer-rIrYg .framer-lz1pi4-container, .framer-rIrYg .framer-1y1ptqb-container, .framer-rIrYg .framer-16owe6v-container, .framer-rIrYg .framer-7ktxt0-container, .framer-rIrYg .framer-cmgjdg-container, .framer-rIrYg .framer-1m3lfa6-container, .framer-rIrYg .framer-1qf4naq-container, .framer-rIrYg .framer-x9zmkt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rIrYg .framer-1q8a977 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-rIrYg .framer-7dtcys { align-content: center; align-items: center; background-color: var(--token-aa555382-03e5-4ce1-9d21-e9a2657ecf00, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 108px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-obz7do-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-6v2ke1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rIrYg .framer-kg9gy1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; list-style: none; margin: 0px; padding: 0px; position: relative; width: min-content; }\",\".framer-rIrYg .framer-h8zo70 { 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; min-width: 200px; padding: 0px; position: relative; width: min-content; }\",\".framer-rIrYg .framer-c6hh1 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-rIrYg .framer-s8ud2g { --framer-paragraph-spacing: 36px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rIrYg .framer-u6djp2-container, .framer-rIrYg .framer-1dcgxg8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1096uwx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 106px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 40px 48px 40px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1auvmfi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-qhdik5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 869px; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-173q0vg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-d6e5lm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rIrYg .framer-5a14mi, .framer-rIrYg .framer-pt2jsn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-hqnkwe, .framer-rIrYg .framer-4wxt8l, .framer-rIrYg .framer-56l5o4 { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 420px); overflow: visible; position: relative; width: 1px; }\",\".framer-rIrYg .framer-1lygvpr, .framer-rIrYg .framer-3xhc6q, .framer-rIrYg .framer-ed952v { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-rIrYg .framer-i25bli, .framer-rIrYg .framer-1ueslbc, .framer-rIrYg .framer-3o3o0n, .framer-rIrYg .framer-no63vz, .framer-rIrYg .framer-1lrifwx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1xrpvsg, .framer-rIrYg .framer-12nno1d, .framer-rIrYg .framer-nhlpif, .framer-rIrYg .framer-fbkb9q, .framer-rIrYg .framer-hukp6v, .framer-rIrYg .framer-ahlyu6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-1wxk4pv, .framer-rIrYg .framer-iwzzd6, .framer-rIrYg .framer-r1tr9d { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-1waxbdm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-agmj03 { align-content: center; align-items: center; background-color: #ebf4ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-7fv4fs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-15yb2vu, .framer-rIrYg .framer-1stzlo1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1xqc5dw-container { flex: none; height: auto; max-width: 1280px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-i8tsq9 { align-content: center; align-items: center; background-color: var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, #000000); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.3010936508871964px 0.3010936508871964px -1.3333333333333333px rgba(0, 0, 0, 0.76), 0px 1.1442666516217286px 1.1442666516217286px -2.6666666666666665px rgba(0, 0, 0, 0.66), 0px 5px 5px -4px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rIrYg .framer-kb4u1n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 96px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-dxzns0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1y8w9u3 { 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-rIrYg .framer-1oa4dbo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 832px; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-tumlbk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1032px; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-1rf4s5l-container { flex: none; height: auto; position: relative; width: 1238px; }\",\".framer-rIrYg .framer-1isya6 { align-content: center; align-items: center; background-color: var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1tez7ge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-15iaft6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-11xnqde-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-duostd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: min-content; }\",\".framer-rIrYg .framer-1yosrkh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-wcbqlu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 878px; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-zakhpq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-ruhhg4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1owjbdx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 42px; height: min-content; justify-content: center; list-style: none; margin: 0px; max-width: 1134px; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-pdqshg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 350px; justify-content: flex-start; padding: 0px; position: relative; width: 350px; }\",\".framer-rIrYg .framer-1ev4f9e { --border-bottom-width: 1px; --border-color: #e4e4e7; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1); cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rIrYg .framer-13tqg47 { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-4ezb48, .framer-rIrYg .framer-yt0t0h, .framer-rIrYg .framer-1aaawt5, .framer-rIrYg .framer-11gka44, .framer-rIrYg .framer-3gluys, .framer-rIrYg .framer-18fii1q, .framer-rIrYg .framer-vu7tbm { 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: center; overflow: visible; padding: 16px 32px 16px 32px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1k9vok9, .framer-rIrYg .framer-1nsrgn3, .framer-rIrYg .framer-jpownp, .framer-rIrYg .framer-le9o2v, .framer-rIrYg .framer-18wxeza, .framer-rIrYg .framer-lhpauc, .framer-rIrYg .framer-vkr851 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-rktl3q, .framer-rIrYg .framer-o0hkrs, .framer-rIrYg .framer-dz9e11, .framer-rIrYg .framer-qbcr8f, .framer-rIrYg .framer-nvimi2, .framer-rIrYg .framer-1hk1e4c, .framer-rIrYg .framer-17bxmu9 { --framer-paragraph-spacing: 0px; flex: none; height: 42px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-oakjkx, .framer-rIrYg .framer-t33pn0, .framer-rIrYg .framer-15172pi, .framer-rIrYg .framer-lv7owy, .framer-rIrYg .framer-1v4xhwu, .framer-rIrYg .framer-7h2nn5, .framer-rIrYg .framer-1puaz1p { --border-bottom-width: 0px; --border-color: #e0e0e0; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 16px 32px 16px 32px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1x3dw0z, .framer-rIrYg .framer-fznsx, .framer-rIrYg .framer-135bnrv, .framer-rIrYg .framer-1i2acd3, .framer-rIrYg .framer-14h87lj, .framer-rIrYg .framer-hd375i, .framer-rIrYg .framer-acn51q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1njybaj, .framer-rIrYg .framer-1nkxjlv, .framer-rIrYg .framer-cwob5n, .framer-rIrYg .framer-alab0a, .framer-rIrYg .framer-12uz0xb, .framer-rIrYg .framer-16ti4gg, .framer-rIrYg .framer-ldg0zc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-rIrYg .framer-6115iq, .framer-rIrYg .framer-17au5dx, .framer-rIrYg .framer-1adtnjx, .framer-rIrYg .framer-klfjxj, .framer-rIrYg .framer-a63hep, .framer-rIrYg .framer-q01h06, .framer-rIrYg .framer-1cs1x02 { border-bottom-left-radius: 360px; border-bottom-right-radius: 360px; border-top-left-radius: 360px; border-top-right-radius: 360px; flex: none; height: 35px; position: relative; width: 35px; }\",\".framer-rIrYg .framer-1k80ipj, .framer-rIrYg .framer-13und1m, .framer-rIrYg .framer-6h1ymz, .framer-rIrYg .framer-1q9sn3c, .framer-rIrYg .framer-1waq14p, .framer-rIrYg .framer-1oio3d5, .framer-rIrYg .framer-1qzy8zx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-rIrYg .framer-4k93e7, .framer-rIrYg .framer-oz5dmy, .framer-rIrYg .framer-sokvz9, .framer-rIrYg .framer-1snryn1, .framer-rIrYg .framer-15261yi, .framer-rIrYg .framer-wivij8, .framer-rIrYg .framer-pwymza, .framer-rIrYg .framer-1rkd9fu, .framer-rIrYg .framer-19f4u7i, .framer-rIrYg .framer-9wn8ym, .framer-rIrYg .framer-1834tir, .framer-rIrYg .framer-18ojdvk, .framer-rIrYg .framer-rz5moh, .framer-rIrYg .framer-2by9fi { --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-rIrYg.framer-1r9hpwo { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-rIrYg.framer-x80seu { flex: none; height: 70vh; left: 81px; position: fixed; top: 161px; width: 80%; }\",\".framer-rIrYg .framer-1ieo8qe-container { flex: none; height: 70%; left: calc(50.00000000000002% - 79.94143484626647% / 2); position: absolute; top: calc(50.00000000000002% - 70% / 2); width: 80%; }\",\".framer-rIrYg.framer-9gtwsq-container { bottom: 38px; flex: none; height: auto; left: 48%; position: fixed; transform: translateX(-50%); width: auto; }\",\".framer-rIrYg .framer-slx9er { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-rIrYg.framer-15zwr08 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 4; }\",\".framer-rIrYg.framer-15gshsy { flex: none; height: 70vh; left: 109px; position: fixed; top: 71px; width: 80%; z-index: 4; }\",\".framer-rIrYg .framer-fgo4zx-container { flex: none; height: 100%; left: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-rIrYg.framer-1gk4oyg-container { bottom: 38px; flex: none; height: auto; left: 48%; position: fixed; transform: translateX(-50%); width: auto; z-index: 4; }\",\".framer-rIrYg .framer-1ao5vw7-container { flex: none; height: 854px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-5y4arv, .framer-rIrYg .framer-i4yncb, .framer-rIrYg .framer-1jgdr8a, .framer-rIrYg .framer-12pg2g8, .framer-rIrYg .framer-uibu3b, .framer-rIrYg .framer-1jvczux { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; list-style: none; margin: 0px; padding: 0px; position: relative; width: 350px; }\",\".framer-rIrYg .framer-1eqva02, .framer-rIrYg .framer-1yrzk4z, .framer-rIrYg .framer-131gy33, .framer-rIrYg .framer-3jzzn1, .framer-rIrYg .framer-ke6g1j, .framer-rIrYg .framer-1lc0rs2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 350px; }\",\".framer-rIrYg .framer-1suioqi, .framer-rIrYg .framer-gm6xap, .framer-rIrYg .framer-1ff7l2m, .framer-rIrYg .framer-lj1djd, .framer-rIrYg .framer-9zm7fs, .framer-rIrYg .framer-fvppae { --border-bottom-width: 1px; --border-color: #e4e4e7; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rIrYg .framer-1kitpu7-container, .framer-rIrYg .framer-wjlgsn-container, .framer-rIrYg .framer-75gnso-container, .framer-rIrYg .framer-1puplmd-container, .framer-rIrYg .framer-yveb2r-container, .framer-rIrYg .framer-1npihzg-container { flex: none; height: 600px; position: relative; width: 100%; z-index: 1; }\",\".framer-rIrYg .framer-1bk0x56 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-ih4lj2 { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1udc0er-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1ibhbo6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 96px 120px 96px 120px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-8zoj6v { align-content: center; align-items: center; background-color: var(--token-73937c05-325a-4a9d-aa6d-56a6ac7286d0, #000000); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 60px 80px 60px 80px; position: relative; width: 1px; }\",\".framer-rIrYg .framer-1ro9iau { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rIrYg .framer-1eg76ab { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 750px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rIrYg .framer-1igjaq3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; opacity: 0.9; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-rIrYg[data-border=\"true\"]::after, .framer-rIrYg [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-rIrYg.framer-72rtr7 { width: 810px; } .framer-rIrYg .framer-tdbcns-container, .framer-rIrYg .framer-dxzns0 { order: 0; } .framer-rIrYg .framer-1bivpm0 { align-content: center; align-items: center; flex-direction: column; gap: 32px; justify-content: center; order: 1; padding: 42px 32px 42px 32px; } .framer-rIrYg .framer-1hf6pdt { flex: none; height: min-content; min-width: 300px; order: 0; width: 100%; } .framer-rIrYg .framer-1x5cwf0-container, .framer-rIrYg .framer-11wcbmu-container, .framer-rIrYg .framer-rp9hkd-container, .framer-rIrYg .framer-upuw4v-container { height: var(--framer-aspect-ratio-supported, 25px); } .framer-rIrYg .framer-1ez6ic1-container, .framer-rIrYg .framer-1qv04ew-container { height: var(--framer-aspect-ratio-supported, 24px); } .framer-rIrYg .framer-1d8v0zv { justify-content: center; } .framer-rIrYg .framer-1j51fmc { gap: 15px; order: 1; width: 100%; } .framer-rIrYg .framer-19lpk81-container, .framer-rIrYg .framer-qhdik5, .framer-rIrYg .framer-1oa4dbo, .framer-rIrYg .framer-tumlbk, .framer-rIrYg .framer-1rf4s5l-container, .framer-rIrYg .framer-wcbqlu { width: 100%; } .framer-rIrYg .framer-7dtcys { order: 2; padding: 0px 40px 0px 40px; } .framer-rIrYg .framer-u6djp2-container { order: 3; } .framer-rIrYg .framer-1096uwx { gap: 62px; order: 4; padding: 96px 20px 48px 20px; } .framer-rIrYg .framer-173q0vg { padding: 60px 40px 60px 40px; } .framer-rIrYg .framer-hqnkwe, .framer-rIrYg .framer-4wxt8l { height: var(--framer-aspect-ratio-supported, 229px); } .framer-rIrYg .framer-56l5o4 { height: var(--framer-aspect-ratio-supported, 228px); } .framer-rIrYg .framer-agmj03 { order: 5; padding: 96px 0px 60px 0px; } .framer-rIrYg .framer-1xqc5dw-container { max-width: 600px; } .framer-rIrYg .framer-kb4u1n { gap: 62px; order: 6; padding: 62px 40px 62px 40px; } .framer-rIrYg .framer-134ovnz { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-rIrYg .framer-1isya6 { order: 8; } .framer-rIrYg .framer-1yosrkh { order: 9; } .framer-rIrYg .framer-1owjbdx { flex-direction: column; } .framer-rIrYg.framer-15gshsy { left: 81px; top: 161px; width: 80%; } .framer-rIrYg .framer-fgo4zx-container { bottom: 0px; height: unset; top: 0px; width: 100%; } .framer-rIrYg .framer-no63vz { align-content: flex-start; align-items: flex-start; } .framer-rIrYg .framer-1ao5vw7-container { width: 575px; } .framer-rIrYg .framer-1bk0x56 { order: 13; } .framer-rIrYg .framer-ih4lj2 { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-rIrYg .framer-1ibhbo6 { order: 14; padding: 100px 40px 100px 40px; } .framer-rIrYg .framer-x9zmkt-container { order: 17; } .framer-rIrYg .framer-1dcgxg8-container { order: 18; }}\",\"@media (max-width: 809px) { .framer-rIrYg.framer-72rtr7 { width: 390px; } .framer-rIrYg .framer-1bivpm0 { align-content: center; align-items: center; flex-direction: column; gap: 35px; justify-content: center; max-width: unset; padding: 32px; } .framer-rIrYg .framer-1hf6pdt { align-content: center; align-items: center; flex: none; gap: 18px; height: min-content; max-width: unset; min-width: unset; order: 0; padding: 0px; width: 100%; } .framer-rIrYg .framer-r3zm7l, .framer-rIrYg .framer-1r9cot5 { max-width: 600px; } .framer-rIrYg .framer-1d8v0zv { flex-direction: column; gap: 24px; justify-content: center; } .framer-rIrYg .framer-1eje3tj, .framer-rIrYg .framer-1ta9i6, .framer-rIrYg .framer-qhdik5, .framer-rIrYg .framer-1oa4dbo, .framer-rIrYg .framer-tumlbk, .framer-rIrYg .framer-1rf4s5l-container, .framer-rIrYg .framer-wcbqlu { width: 100%; } .framer-rIrYg .framer-1j51fmc { align-content: flex-start; align-items: flex-start; gap: 18px; max-width: 1200px; order: 1; } .framer-rIrYg .framer-ngxg78, .framer-rIrYg .framer-1q8a977 { gap: 12px; width: 154px; } .framer-rIrYg .framer-7dtcys { padding: 0px 20px 0px 20px; } .framer-rIrYg .framer-1096uwx { gap: 62px; padding: 48px 20px 48px 20px; } .framer-rIrYg .framer-1auvmfi { gap: 24px; } .framer-rIrYg .framer-173q0vg { gap: 20px; padding: 32px 20px 32px 20px; } .framer-rIrYg .framer-d6e5lm { gap: 60px; } .framer-rIrYg .framer-5a14mi, .framer-rIrYg .framer-1waxbdm, .framer-rIrYg .framer-pt2jsn { flex-direction: column; gap: 24px; } .framer-rIrYg .framer-hqnkwe, .framer-rIrYg .framer-56l5o4 { flex: none; height: var(--framer-aspect-ratio-supported, 150px); width: 100%; } .framer-rIrYg .framer-1lygvpr, .framer-rIrYg .framer-ed952v { flex: none; width: 100%; } .framer-rIrYg .framer-3xhc6q { flex: none; order: 1; width: 100%; } .framer-rIrYg .framer-4wxt8l { flex: none; height: var(--framer-aspect-ratio-supported, 150px); order: 0; width: 100%; } .framer-rIrYg .framer-agmj03 { gap: 24px; padding: 48px 32px 48px 32px; } .framer-rIrYg .framer-1xqc5dw-container { max-width: 300px; } .framer-rIrYg .framer-kb4u1n { gap: 62px; padding: 48px 0px 48px 0px; } .framer-rIrYg .framer-dxzns0 { gap: 0px; order: 0; padding: 0px 20px 0px 20px; } .framer-rIrYg .framer-134ovnz { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-rIrYg .framer-1isya6 { padding: 48px 20px 48px 20px; } .framer-rIrYg .framer-1yosrkh { gap: 32px; padding: 48px 32px 48px 32px; } .framer-rIrYg .framer-1stzlo1 { gap: 12px; } .framer-rIrYg .framer-ruhhg4 { gap: 32px; } .framer-rIrYg .framer-pdqshg { width: 312px; } .framer-rIrYg.framer-15gshsy { left: 39px; top: 126px; width: 80%; } .framer-rIrYg .framer-fgo4zx-container { top: 0px; width: 100%; } .framer-rIrYg .framer-1bk0x56 { padding: 32px; } .framer-rIrYg .framer-ih4lj2 { gap: 16px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-rIrYg .framer-1ibhbo6 { padding: 96px 20px 96px 20px; } .framer-rIrYg .framer-8zoj6v { gap: 20px; padding: 40px; }}\",\"@media (min-width: 1200px) and (max-width: 1365px) { .framer-rIrYg.framer-72rtr7 { width: 1200px; } .framer-rIrYg .framer-1r9cot5 { max-width: 90%; } .framer-rIrYg .framer-1x5cwf0-container, .framer-rIrYg .framer-11wcbmu-container, .framer-rIrYg .framer-1ez6ic1-container, .framer-rIrYg .framer-1qv04ew-container, .framer-rIrYg .framer-rp9hkd-container, .framer-rIrYg .framer-upuw4v-container { height: var(--framer-aspect-ratio-supported, 22px); } .framer-rIrYg .framer-1d8v0zv { align-content: flex-start; align-items: flex-start; gap: 16px; } .framer-rIrYg .framer-1j51fmc { align-self: stretch; height: auto; } .framer-rIrYg .framer-hqnkwe, .framer-rIrYg .framer-4wxt8l, .framer-rIrYg .framer-56l5o4 { height: var(--framer-aspect-ratio-supported, 150px); } .framer-rIrYg .framer-1rf4s5l-container { width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10696\n * @framerIntrinsicWidth 1366\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p5BN8G00K\":{\"layout\":[\"fixed\",\"auto\"]},\"ghr6cOOOP\":{\"layout\":[\"fixed\",\"auto\"]},\"M3xywJC7w\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"HWzSF4MmK\":{\"pattern\":\":HWzSF4MmK\",\"name\":\"learn-more\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-rIrYg\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10696,width:1366};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZ1rib2Bg-4.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...HeaderFonts,...PhosphorFonts,...TickerExpertTileFonts,...TickerFonts,...New_testimonialFonts,...ExpertsHomePageFonts,...HowItWorks3Fonts,...ListCopyFonts,...Ticker1Fonts,...YouTubeFonts,...Button2Fonts,...LoadMoreFonts,...SlideshowFonts,...ServiceNameFonts,...MainButtonFonts,...CookieBannerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p5BN8G00K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ghr6cOOOP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M3xywJC7w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1366\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"10696\",\"framerScrollSections\":\"{\\\"HWzSF4MmK\\\":{\\\"pattern\\\":\\\":HWzSF4MmK\\\",\\\"name\\\":\\\"learn-more\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "RichTextTruncatedText", "TruncatedText", "RichText", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "areaOfActivity", "featureImage", "height", "id", "link", "name1", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "yyap_OK7D", "Q6PxW8Qe6", "erytocJwA", "e8j5HRFcE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "Image2", "css", "FrameraRwuA0_Tr", "withCSS", "aRwuA0_Tr_default", "addPropertyControls", "ControlType", "addFonts", "HeaderFonts", "getFonts", "lmNHZZ9dB_default", "PhosphorFonts", "Icon", "MotionAWithQueryParams1ta9i6", "withCodeBoundaryForOverrides", "motion", "withQueryParams", "TickerExpertTileFonts", "aRwuA0_Tr_default", "TickerFonts", "Ticker", "New_testimonialFonts", "gZURapr7_default", "ExpertsHomePageFonts", "X_dpZNbfi_default", "HowItWorks3Fonts", "Y7rshxoSK_default", "MotionDivWithFX", "withFX", "ListCopyFonts", "tlJHRF52V_default", "Ticker1Fonts", "ContainerWithFX", "Container", "RichTextTruncatedTextrktl3q", "RichText", "TruncatedText", "RichTextTruncatedText4k93e7", "RichTextTruncatedTextoz5dmy", "YouTubeFonts", "Youtube", "Button2Fonts", "iRnlB4RZs_default", "LoadMoreFonts", "g3OPvNRkB_default", "RichTextTruncatedTexto0hkrs", "RichTextTruncatedTextsokvz9", "RichTextTruncatedText1snryn1", "RichTextTruncatedTextdz9e11", "RichTextTruncatedText15261yi", "RichTextTruncatedTextwivij8", "RichTextTruncatedTextqbcr8f", "RichTextTruncatedTextpwymza", "RichTextTruncatedText1rkd9fu", "RichTextTruncatedTextnvimi2", "RichTextTruncatedText19f4u7i", "RichTextTruncatedText9wn8ym", "RichTextTruncatedText1hk1e4c", "RichTextTruncatedText1834tir", "RichTextTruncatedText18ojdvk", "RichTextTruncatedText17bxmu9", "RichTextTruncatedTextrz5moh", "RichTextTruncatedText2by9fi", "SlideshowFonts", "Slideshow", "ServiceNameFonts", "oYraydwew_default", "MainButtonFonts", "PgNHyoLLm_default", "MainButtonWithQueryParams1qf4naqWithMappedReactProps1c38ihi", "withMappedReactProps", "PgNHyoLLm_exports", "CookieBannerFonts", "CookieBanner", "FooterFonts", "HRM4TpjKi_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "contains", "a", "b", "loaderVariants", "repeaterState", "variants", "currentVariant", "QueryData1", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "HTMLStyle", "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", "aB74T1Y0OKHnw75zjd", "V9thMQe1dKHnw75zjd", "zSJwF3NMFKHnw75zjd", "WF80f_TL7KHnw75zjd", "idKHnw75zjd", "aB74T1Y0Ozxvwg7i6e", "V9thMQe1dzxvwg7i6e", "zSJwF3NMFzxvwg7i6e", "WF80f_TL7zxvwg7i6e", "idzxvwg7i6e", "tGTL5vNnPTpv_P4wlV", "jBtd1weY3Tpv_P4wlV", "idTpv_P4wlV", "d33LyBhofX53O4dV9f", "RNkzw3bawX53O4dV9f", "aB74T1Y0OmDVH1bhoD", "uOb3RW6QimDVH1bhoD", "WF80f_TL7mDVH1bhoD", "zSJwF3NMFmDVH1bhoD", "idmDVH1bhoD", "FvyUM26WSX53O4dV9f", "Lhrctp4TgX53O4dV9f", "PVommSLjkX53O4dV9f", "idX53O4dV9f", "Lhrctp4Tgu2ag7q4iA", "RNkzw3bawu2ag7q4iA", "aB74T1Y0OiKfHoJ_cV", "uOb3RW6QiiKfHoJ_cV", "WF80f_TL7iKfHoJ_cV", "zSJwF3NMFiKfHoJ_cV", "idiKfHoJ_cV", "FvyUM26WSu2ag7q4iA", "idu2ag7q4iA", "Lhrctp4TgjyoGOhwJs", "RNkzw3bawjyoGOhwJs", "aB74T1Y0OtkvW5FYZw", "uOb3RW6QitkvW5FYZw", "WF80f_TL7tkvW5FYZw", "zSJwF3NMFtkvW5FYZw", "idtkvW5FYZw", "FvyUM26WSjyoGOhwJs", "idjyoGOhwJs", "Lhrctp4TgCdeJMTr19", "RNkzw3bawCdeJMTr19", "aB74T1Y0OeyoCXfALd", "uOb3RW6QieyoCXfALd", "WF80f_TL7eyoCXfALd", "zSJwF3NMFeyoCXfALd", "ideyoCXfALd", "FvyUM26WSCdeJMTr19", "idCdeJMTr19", "Lhrctp4TgQZ914nHgX", "RNkzw3bawQZ914nHgX", "aB74T1Y0OvUrdYbJFt", "uOb3RW6QivUrdYbJFt", "WF80f_TL7vUrdYbJFt", "zSJwF3NMFvUrdYbJFt", "idvUrdYbJFt", "FvyUM26WSQZ914nHgX", "idQZ914nHgX", "Lhrctp4TgAlaoq3aGJ", "RNkzw3bawAlaoq3aGJ", "aB74T1Y0OXLq01ABf9", "uOb3RW6QiXLq01ABf9", "WF80f_TL7XLq01ABf9", "zSJwF3NMFXLq01ABf9", "idXLq01ABf9", "FvyUM26WSAlaoq3aGJ", "idAlaoq3aGJ", "Lhrctp4TgCP26i8J3l", "RNkzw3bawCP26i8J3l", "aB74T1Y0OLp9fAPTRT", "uOb3RW6QiLp9fAPTRT", "WF80f_TL7Lp9fAPTRT", "zSJwF3NMFLp9fAPTRT", "idLp9fAPTRT", "FvyUM26WSCP26i8J3l", "idCP26i8J3l", "jBtd1weY3j_1weDM34", "tGTL5vNnPj_1weDM34", "idj_1weDM34", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "args", "Wld3NDzSj1b86s49", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "x", "Link", "ChildrenCanSuspend", "TQgEdGFTA_default", "collection", "l", "index", "PathVariablesContext", "resolvedLinks1", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "mSVTNWXCI_default", "collection2", "paginationInfo2", "loadMore2", "index2", "SVG", "Image2", "ZNnVUGseT_default", "collection4", "paginationInfo3", "loadMore3", "collection3", "index4", "index3", "AnimatePresence", "Ga", "resolvedLinks3", "overlay1", "resolvedLinks4", "collection6", "paginationInfo4", "loadMore4", "collection5", "index6", "index5", "collection8", "paginationInfo5", "loadMore5", "collection7", "index8", "index7", "collection10", "paginationInfo6", "loadMore6", "collection9", "index10", "index9", "collection12", "paginationInfo7", "loadMore7", "collection11", "index12", "index11", "collection14", "paginationInfo8", "loadMore8", "collection13", "index14", "index13", "collection16", "paginationInfo9", "loadMore9", "collection15", "index16", "index15", "collection17", "paginationInfo10", "loadMore10", "index17", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
