{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/D61PRhVcx1W3T2Sgt2c4/VViYLlVcZVlJeumrZJjt/i6ouWaTWP.js", "ssg:https://framerusercontent.com/modules/NBZsy2sVbAE3Ifj9CqjU/SZZNhd5dRCALuCAU2gl0/XhHNQBMeI.js", "ssg:https://framerusercontent.com/modules/aYqBWHCLrOD61YOixKXS/P8sBHlg6uPsyTAcPAav8/l8sPPduKg.js", "ssg:https://framerusercontent.com/modules/bmv0hIBfDZtANPW07xgp/yQocToPi6O0X9bugXhZb/Flip.js", "ssg:https://framerusercontent.com/modules/gXEivX3XKohsQque57QN/lIt4AHSTIxgU3sIGzpgu/sgrWE0DyH.js", "ssg:https://framerusercontent.com/modules/74aLNv868WtAINXELVdr/lg5833SsEUNIXPI4HVIU/Ur6Ah5Pql.js", "ssg:https://framerusercontent.com/modules/WeSPAmsxV9KrB0BBRem4/pTAMvZu78qJXcCBsBoRQ/Zs4QTaX0G.js", "ssg:https://framerusercontent.com/modules/jF4uNlfDqwpiItdtwJZo/fjgUpvZBd8IE91sMo1N7/rZ7OiB5XT.js", "ssg:https://framerusercontent.com/modules/FJkFwB1W9sDOXEtjfj6y/Yfg0oosx9Grkn1ryCZTB/YLaDItZ6w.js", "ssg:https://framerusercontent.com/modules/FwDccaCnbnHRqlKgjeKa/J1ZfxgXxpK7qgwt7mbdx/HBKwf3lOY.js", "ssg:https://framerusercontent.com/modules/tS3td5GkRJQ2I1AivZLm/fzChJ1GLMsRoHuUKzJY7/j5P3ZA7dV.js", "ssg:https://framerusercontent.com/modules/8H3C5sRoSTX6oZbMQZAL/3CdMEfL93p4zLdBLObYN/Wso5FPOzB.js", "ssg:https://framerusercontent.com/modules/x27rChdNKRDSYYOuZqPM/qKKOrcAHrkeE4d0X1qpJ/d9Cnb39Sa.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (915daba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-hgaVG .framer-styles-preset-m9813:not(.rich-text-wrapper), .framer-hgaVG .framer-styles-preset-m9813.rich-text-wrapper a { --framer-link-current-text-color: rgba(255, 255, 255, 0.6); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-hgaVG\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6421805)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-KcPWr .framer-styles-preset-5ftogo:not(.rich-text-wrapper), .framer-KcPWr .framer-styles-preset-5ftogo.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-KcPWr\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/D61PRhVcx1W3T2Sgt2c4/VViYLlVcZVlJeumrZJjt/i6ouWaTWP.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1M6dNW23JGjM6Wy6Xspc/Naj4SYD0URC0pPR0hckU/lwcxPFRxN.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/NBZsy2sVbAE3Ifj9CqjU/SZZNhd5dRCALuCAU2gl0/XhHNQBMeI.js\";const enabledGestures={myRZWAisy:{hover:true},SNwAPAVTb:{hover:true}};const cycleOrder=[\"myRZWAisy\",\"SNwAPAVTb\"];const serializationHash=\"framer-mvE3Y\";const variantClassNames={myRZWAisy:\"framer-v-1p6n64d\",SNwAPAVTb:\"framer-v-krpqin\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={default:\"myRZWAisy\",white:\"SNwAPAVTb\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,cXlyg9xQQ:text??props.cXlyg9xQQ??\"Case Studies\",QF9iNnT_g:link??props.QF9iNnT_g,variant:humanReadableVariantMap[props.variant]??props.variant??\"myRZWAisy\"};};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,cXlyg9xQQ,QF9iNnT_g,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"myRZWAisy\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1p6n64d\",className,classNames),\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"myRZWAisy\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"myRZWAisy-hover\":{\"data-framer-name\":undefined},\"SNwAPAVTb-hover\":{\"data-framer-name\":undefined},SNwAPAVTb:{\"data-framer-name\":\"white\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-96vjrt\",\"data-framer-name\":\"underline\",layoutDependency:layoutDependency,layoutId:\"QxWm6EMqQ\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\"},variants:{SNwAPAVTb:{backgroundColor:\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:/*#__PURE__*/_jsx(Link,{href:QF9iNnT_g,motionChild:true,nodeId:\"vj5VnV5i7\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-703ge1\",\"data-styles-preset\":\"lwcxPFRxN\",children:\"Case Studies\"})})})}),className:\"framer-50x6es\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vj5VnV5i7\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:cXlyg9xQQ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SNwAPAVTb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:/*#__PURE__*/_jsx(Link,{href:QF9iNnT_g,motionChild:true,nodeId:\"vj5VnV5i7\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-m9813\",\"data-styles-preset\":\"i6ouWaTWP\",children:\"Case Studies\"})})})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mvE3Y.framer-aws8nr, .framer-mvE3Y .framer-aws8nr { display: block; }\",\".framer-mvE3Y.framer-1p6n64d { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 0px 2px 0px; position: relative; width: min-content; }\",\".framer-mvE3Y .framer-96vjrt { bottom: 0px; flex: none; height: 2px; left: 0px; overflow: visible; position: absolute; width: 0%; z-index: 1; }\",\".framer-mvE3Y .framer-50x6es { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvE3Y.framer-1p6n64d { gap: 0px; } .framer-mvE3Y.framer-1p6n64d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mvE3Y.framer-1p6n64d > :first-child { margin-left: 0px; } .framer-mvE3Y.framer-1p6n64d > :last-child { margin-right: 0px; } }\",\".framer-mvE3Y.framer-v-1p6n64d.hover .framer-96vjrt, .framer-mvE3Y.framer-v-krpqin.hover .framer-96vjrt { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 99\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"SNwAPAVTb\":{\"layout\":[\"auto\",\"auto\"]},\"RBLurzqSX\":{\"layout\":[\"auto\",\"auto\"]},\"AAWCGO7ga\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"cXlyg9xQQ\":\"text\",\"QF9iNnT_g\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerl8sPPduKg=withCSS(Component,css,\"framer-mvE3Y\");export default Framerl8sPPduKg;Framerl8sPPduKg.displayName=\"link-item\";Framerl8sPPduKg.defaultProps={height:28,width:99};addPropertyControls(Framerl8sPPduKg,{variant:{options:[\"myRZWAisy\",\"SNwAPAVTb\"],optionTitles:[\"default\",\"white\"],title:\"Variant\",type:ControlType.Enum},cXlyg9xQQ:{defaultValue:\"Case Studies\",displayTextArea:false,title:\"Text\",type:ControlType.String},QF9iNnT_g:{title:\"Link\",type:ControlType.Link}});addFonts(Framerl8sPPduKg,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerl8sPPduKg\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"cXlyg9xQQ\\\":\\\"text\\\",\\\"QF9iNnT_g\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"28\",\"framerIntrinsicWidth\":\"99\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SNwAPAVTb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RBLurzqSX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AAWCGO7ga\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{Children,cloneElement}from\"react\";/**\n *\n * FLIP\n * By Benjamin\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Flip(props){var ref,ref1;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(props.children)>0;const hasOneChild=Children.count(props.children)===1;const variants={initial:{rotateY:0},hover:{rotateY:180}};/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2602\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add two layers to flip between on hover.\"})]});}if(hasOneChild){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2705\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"One more!\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add two layers to flip between on hover.\"})]});}return /*#__PURE__*/ _jsx(motion.div,{style:{width:\"100%\",height:\"100%\",position:\"relative\",perspective:1200,...props.style},whileHover:\"hover\",children:/*#__PURE__*/ _jsxs(motion.div,{style:{width:\"100%\",height:\"100%\",position:\"absolute\",userSelect:\"none\",transformStyle:\"preserve-3d\"},variants:variants,transition:props.hoverTransition,children:[/*#__PURE__*/ _jsx(\"div\",{style:{...childStyles},children:/*#__PURE__*/ cloneElement(props.children[0],{...props.children[0].props,style:{...(ref=props.children[0].props)===null||ref===void 0?void 0:ref.style,width:\"100%\",height:\"100%\"}})}),/*#__PURE__*/ _jsx(\"div\",{style:{...childStyles,transform:\"rotateY(180deg)\"},children:/*#__PURE__*/ cloneElement(props.children[1],{...props.children[1].props,style:{...(ref1=props.children[1].props)===null||ref1===void 0?void 0:ref1.style,width:\"100%\",height:\"100%\"}})})]})});};Flip.displayName=\"Flip\";addPropertyControls(Flip,{children:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance},maxCount:2},hoverTransition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{spring:350,damping:30}}});const childStyles={width:\"100%\",height:\"100%\",position:\"absolute\",backfaceVisibility:\"hidden\"};/* Placeholder 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:120,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Flip\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Flip.map", "// Generated by Framer (b62c1c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-2WNEl .framer-styles-preset-1nzfjqm:not(.rich-text-wrapper), .framer-2WNEl .framer-styles-preset-1nzfjqm.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 14px; --framer-text-alignment: start; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-2WNEl\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6421805)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-GZyGs .framer-styles-preset-1udziqd:not(.rich-text-wrapper), .framer-GZyGs .framer-styles-preset-1udziqd.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-GZyGs\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-Z4lkO .framer-styles-preset-1crhnii:not(.rich-text-wrapper), .framer-Z4lkO .framer-styles-preset-1crhnii.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 36px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-Z4lkO\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Flip from\"https://framerusercontent.com/modules/bmv0hIBfDZtANPW07xgp/yQocToPi6O0X9bugXhZb/Flip.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/gXEivX3XKohsQque57QN/lIt4AHSTIxgU3sIGzpgu/sgrWE0DyH.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/74aLNv868WtAINXELVdr/lg5833SsEUNIXPI4HVIU/Ur6Ah5Pql.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/NBZsy2sVbAE3Ifj9CqjU/SZZNhd5dRCALuCAU2gl0/XhHNQBMeI.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/WeSPAmsxV9KrB0BBRem4/pTAMvZu78qJXcCBsBoRQ/Zs4QTaX0G.js\";const MotionDivWithFX=withFX(motion.div);const FlipFonts=getFonts(Flip);const cycleOrder=[\"N_CgUOZvM\",\"jcWbpnpNF\",\"fkqSax7bb\"];const serializationHash=\"framer-92Ghi\";const variantClassNames={fkqSax7bb:\"framer-v-1opqt9d\",jcWbpnpNF:\"framer-v-n2fgfb\",N_CgUOZvM:\"framer-v-exrh5n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:40,y:0};const transition2={damping:40,delay:.2,mass:4,stiffness:240,type:\"spring\"};const animation1={opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:40,y:0};const transition3={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:-8};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"layout-desktop\":\"N_CgUOZvM\",\"layout-mobile\":\"fkqSax7bb\",\"layout-tablet\":\"jcWbpnpNF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"N_CgUOZvM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"N_CgUOZvM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-exrh5n\",className,classNames),\"data-framer-name\":\"layout-desktop\",layoutDependency:layoutDependency,layoutId:\"N_CgUOZvM\",ref:refBinding,style:{...style},...addPropertyOverrides({fkqSax7bb:{\"data-framer-name\":\"layout-mobile\"},jcWbpnpNF:{\"data-framer-name\":\"layout-tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lbvu5i-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"J5bswe6u4-container\",nodeId:\"J5bswe6u4\",rendersWithMotion:true,scopeId:\"rZ7OiB5XT\",children:/*#__PURE__*/_jsxs(Flip,{height:\"100%\",hoverTransition:{damping:30,delay:0,mass:2,stiffness:300,type:\"spring\"},id:\"J5bswe6u4\",layoutId:\"J5bswe6u4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f4j7p3\",\"data-border\":true,\"data-framer-name\":\"Inbound - A\",layoutDependency:layoutDependency,layoutId:\"b0YGJIFT4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, rgb(238, 238, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 2px 2px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ll30ru\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"d7anpXb4P\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, rgb(238, 238, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d4effdc-e867-45bc-b2ec-d456fbfc7b55, rgb(247, 247, 245))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4pHKlbvN5zu7RKMddq5MAbB5kI.png\"},className:\"framer-12s8jvf\",\"data-framer-name\":\"img-claymation\",layoutDependency:layoutDependency,layoutId:\"oiCLP02pT\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k3nt1e\",layoutDependency:layoutDependency,layoutId:\"lV99CkbAS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"left\"},children:\"Inbound\"})}),className:\"framer-tr39ph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YniQLVasI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"We help make the data from your marketing initiatives actionable. By aggregating, enriching, and creating workflows from your growth data, we make sure it gets taken to the next step automatically. We can turn your paid ads, webinars, conferences, marketing email campaigns and more into sales data that converts. \"})}),className:\"framer-1g2o8wt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fwgAGuKIr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-12ou2x4\",\"data-border\":true,\"data-framer-name\":\"Inbound - B\",layoutDependency:layoutDependency,layoutId:\"qhaGWGzox\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, rgb(238, 238, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-44ue0p\",layoutDependency:layoutDependency,layoutId:\"aX83WjirU\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1udziqd\",\"data-styles-preset\":\"Ur6Ah5Pql\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Inbound \"})})}),className:\"framer-1te0ydk\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"EYSluMT65\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nq3e5f\",layoutDependency:layoutDependency,layoutId:\"cIQquSRZC\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-epagy2\",\"data-framer-name\":\"list\",layoutDependency:layoutDependency,layoutId:\"FseBsTzxt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-33zzae\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"tMT_RucK1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11xyl2d\",layoutDependency:layoutDependency,layoutId:\"plHYnqKqg\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sij4nw\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"qbEiznghA\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Inbound lead connection and aggregation\"})}),className:\"framer-1vi1zvl\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"oI8lfnHDw\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4d01aj\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"qcr_IzGrD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-b8bhau\",layoutDependency:layoutDependency,layoutId:\"yEGz7Zh2Z\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tw3kks\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"WCnN2l_W6\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Complex and automated lead scoring\"})}),className:\"framer-fpn4ql\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"i8_rCztHA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gya0mf\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"FUto9sCBP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ip662c\",layoutDependency:layoutDependency,layoutId:\"gU854P6Y2\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1plspn3\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"KEydvInsE\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Deep enrichment\"})}),className:\"framer-1rtne26\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"N_8TkvzuF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-65xq8x\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"U4u4zyMnL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8kxsvu\",layoutDependency:layoutDependency,layoutId:\"UatxhZDL6\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-au8meg\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"lZcup4doE\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Inbound-led outbound campaigns\"})}),className:\"framer-1j6w2av\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"Jry9LTpBB\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jwotsw\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"BilehtCUd\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j76s7u\",layoutDependency:layoutDependency,layoutId:\"jzwqniJ78\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eztih6\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"pvR4Y_f6y\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Lead qualification and normalization\"})}),className:\"framer-u3cifp\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"lER5KKlwj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qlo6c0\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"RU8ZSoxUU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cw03s4\",layoutDependency:layoutDependency,layoutId:\"rKo7d2GwD\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ya2vhy\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"xVEAQmYoX\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nzfjqm\",\"data-styles-preset\":\"sgrWE0DyH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Inbound flow strategy and assessment\"})}),className:\"framer-1mn69fd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V8kRvZUD3\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a6dd7p\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"XvO0rZngn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-er6l03\",layoutDependency:layoutDependency,layoutId:\"BiRAQORxk\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7pwgie\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"BO2DOj4gB\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Custom inbound requests\"})}),className:\"framer-1iz8xid\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"NuW3_BRa3\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PeOLGPUFq\"},motionChild:true,nodeId:\"RJ6_bwwwN\",openInNewTab:false,scopeId:\"rZ7OiB5XT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-eko3dz framer-oogbwn\",\"data-framer-name\":\"Button - primary\",layoutDependency:layoutDependency,layoutId:\"RJ6_bwwwN\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},whileHover:animation2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Talk with us\"})})}),className:\"framer-1bmnx93\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"JhQ7HN4mK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fvwh08\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"TjIDihEVB\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1amr6bu\",\"data-framer-name\":\"ArrowUpRight\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qbyXjhupP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18.64 6 L 18.64 15.75 C 18.64 15.898 18.598 16.044 18.519 16.167 C 18.439 16.29 18.327 16.387 18.195 16.444 C 18.064 16.5 17.919 16.515 17.779 16.486 C 17.639 16.457 17.511 16.386 17.41 16.281 L 13.24 11.935 L 6.909 18.531 C 6.774 18.671 6.591 18.75 6.4 18.75 C 6.209 18.75 6.025 18.671 5.89 18.531 C 5.755 18.39 5.679 18.199 5.679 18 C 5.679 17.801 5.755 17.61 5.89 17.469 L 12.222 10.875 L 8.05 6.531 C 7.95 6.426 7.881 6.292 7.853 6.146 C 7.825 6.001 7.84 5.85 7.894 5.713 C 7.949 5.576 8.041 5.459 8.159 5.376 C 8.278 5.294 8.417 5.25 8.56 5.25 L 17.92 5.25 C 18.111 5.25 18.294 5.329 18.429 5.47 C 18.564 5.61 18.64 5.801 18.64 6 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11835598828,withExternalLayout:true})})]})})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-108f8fd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VEOU8sfnT-container\",nodeId:\"VEOU8sfnT\",rendersWithMotion:true,scopeId:\"rZ7OiB5XT\",children:/*#__PURE__*/_jsxs(Flip,{height:\"100%\",hoverTransition:{damping:30,delay:0,mass:2,stiffness:300,type:\"spring\"},id:\"VEOU8sfnT\",layoutId:\"VEOU8sfnT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s0tsf6\",\"data-border\":true,\"data-framer-name\":\"Outbound - A\",layoutDependency:layoutDependency,layoutId:\"kqoTGZyN4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, rgb(238, 238, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 2px 2px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i3hxlk\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"KDrENzRYK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, rgb(238, 238, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d4effdc-e867-45bc-b2ec-d456fbfc7b55, rgb(247, 247, 245))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/tXXQQBAJgd9dNConxgXnA3a5ifw.png\"},className:\"framer-1tiwxum\",\"data-framer-name\":\"img-claymation\",layoutDependency:layoutDependency,layoutId:\"wVVIV9SoL\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-102aqya\",layoutDependency:layoutDependency,layoutId:\"SjldJf1nn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"left\"},children:\"Outbound\"})}),className:\"framer-3fdtgg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FCvv6DicP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"At The Kiln, we take outbound to the next level by using Clay and other tech to scale the campaigns you could only send manually before. We help build advanced workflow automations, campaigns that run by themselves, and help supercharge your sales team with the best top-of-funnel possible. \"})}),className:\"framer-10lm4b0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LxWoBy7NP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1wvg4i6\",\"data-border\":true,\"data-framer-name\":\"Outbound - B\",layoutDependency:layoutDependency,layoutId:\"RkhANFK5u\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, rgb(238, 238, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9ppfpn\",layoutDependency:layoutDependency,layoutId:\"G0As6fpmw\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1udziqd\",\"data-styles-preset\":\"Ur6Ah5Pql\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Outbound \"})})}),className:\"framer-j870f2\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"hAWfYohrK\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lo5sor\",layoutDependency:layoutDependency,layoutId:\"X2Xfw2YQF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1blhcpl\",\"data-framer-name\":\"list\",layoutDependency:layoutDependency,layoutId:\"jAY1xHLpY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mzod45\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"gVTb7LfyI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bkni79\",layoutDependency:layoutDependency,layoutId:\"cDdVATzH1\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tjiz6v\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"f3bQhr0zZ\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Automated outbound campaigns\"})}),className:\"framer-1iwc8ws\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"bqJz1F0NG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hrsffv\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"e2vDhfX0f\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bnmdql\",layoutDependency:layoutDependency,layoutId:\"uVbkXs0_W\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1crsnly\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"C7ztZm4mD\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Sales enablement flows\"})}),className:\"framer-vfeu3z\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"K00GGwUEQ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m5lwh7\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"OMtKidifi\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-de1hk5\",layoutDependency:layoutDependency,layoutId:\"NbfMWm9Ti\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mvu4w8\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"hq3NN6dxb\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Deliverability consulting and optimization\"})}),className:\"framer-qgme2y\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"VwaVjycxi\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tc66pd\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"A5Lr16Yam\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i1tdqq\",layoutDependency:layoutDependency,layoutId:\"WSPZklEXp\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t9fewv\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"zZ6YC1gKd\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"High-level outbound strategy\"})}),className:\"framer-vpg2yi\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"K9dw7eTlr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19iydx6\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"wAwRHuHeT\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vlj6m7\",layoutDependency:layoutDependency,layoutId:\"z_D_fPxBA\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-di8a81\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"Aylz9XRN4\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Bespoke personalization at scale\"})}),className:\"framer-nzs208\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"xxBAnQ99Y\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u72qd4\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"dM216stxe\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ol6gzs\",layoutDependency:layoutDependency,layoutId:\"JVoWy2sXQ\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ufxx4j\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"fBweLpeet\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nzfjqm\",\"data-styles-preset\":\"sgrWE0DyH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Fully automated outbound research\"})}),className:\"framer-r676tq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CRrDuOPoI\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ow7ejx\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"vaio4SQw0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lufr8g\",layoutDependency:layoutDependency,layoutId:\"as7rqRrn4\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xoju8v\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"QYLxlkPYW\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Custom outbound requests\"})}),className:\"framer-131jhq9\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"Mnffrb4fj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PeOLGPUFq\"},motionChild:true,nodeId:\"pgxugPsZH\",openInNewTab:false,scopeId:\"rZ7OiB5XT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1x3be17 framer-oogbwn\",\"data-framer-name\":\"Button - primary\",layoutDependency:layoutDependency,layoutId:\"pgxugPsZH\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},whileHover:animation2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Talk with us\"})})}),className:\"framer-9negdj\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"cGodgzC09\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yuz0fj\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"EpbQXT744\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1edlw51\",\"data-framer-name\":\"ArrowUpRight\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tKoWS5Jwv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18.64 6 L 18.64 15.75 C 18.64 15.898 18.598 16.044 18.519 16.167 C 18.439 16.29 18.327 16.387 18.195 16.444 C 18.064 16.5 17.919 16.515 17.779 16.486 C 17.639 16.457 17.511 16.386 17.41 16.281 L 13.24 11.935 L 6.909 18.531 C 6.774 18.671 6.591 18.75 6.4 18.75 C 6.209 18.75 6.025 18.671 5.89 18.531 C 5.755 18.39 5.679 18.199 5.679 18 C 5.679 17.801 5.755 17.61 5.89 17.469 L 12.222 10.875 L 8.05 6.531 C 7.95 6.426 7.881 6.292 7.853 6.146 C 7.825 6.001 7.84 5.85 7.894 5.713 C 7.949 5.576 8.041 5.459 8.159 5.376 C 8.278 5.294 8.417 5.25 8.56 5.25 L 17.92 5.25 C 18.111 5.25 18.294 5.329 18.429 5.47 C 18.564 5.61 18.64 5.801 18.64 6 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11835598828,withExternalLayout:true})})]})})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4yp04f-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RvnC1mpAF-container\",nodeId:\"RvnC1mpAF\",rendersWithMotion:true,scopeId:\"rZ7OiB5XT\",children:/*#__PURE__*/_jsxs(Flip,{height:\"100%\",hoverTransition:{damping:30,delay:0,mass:2,stiffness:300,type:\"spring\"},id:\"RvnC1mpAF\",layoutId:\"RvnC1mpAF\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tbhurz\",\"data-border\":true,\"data-framer-name\":\"RevOps - A\",layoutDependency:layoutDependency,layoutId:\"JNgRFqdg6\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, rgb(238, 238, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 2px 2px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vprtrf\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"va5Dx0OPx\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, rgb(238, 238, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7d4effdc-e867-45bc-b2ec-d456fbfc7b55, rgb(247, 247, 245))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/xE056aX7YuIChK3qjwj5JfLTSf0.png\"},className:\"framer-1nq6ct2\",\"data-framer-name\":\"img-claymation\",layoutDependency:layoutDependency,layoutId:\"QXvY0SGuz\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tywlxk\",layoutDependency:layoutDependency,layoutId:\"NirQl8U_l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"left\"},children:\"RevOps\"})}),className:\"framer-74shzi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"brjDJXW0f\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"We help companies use a modern tech stack to create seamless marketing and sales automations, as well as integrate your existing tech to apply it company-wide. We configure systems, manage leads, organize and clean data, and ensure that your organization never deals with stale data again. \"})}),className:\"framer-njnusm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Xi6sxPJ91\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-xojt6d\",\"data-border\":true,\"data-framer-name\":\"Revops - B\",layoutDependency:layoutDependency,layoutId:\"MyG4m_TCt\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, rgb(238, 238, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sxdity\",layoutDependency:layoutDependency,layoutId:\"K9zdD58m2\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1udziqd\",\"data-styles-preset\":\"Ur6Ah5Pql\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"RevOps \"})})}),className:\"framer-1b5g99d\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"MI_UmCIIZ\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18a29c4\",layoutDependency:layoutDependency,layoutId:\"W84FXwV85\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ibhg2f\",\"data-framer-name\":\"list\",layoutDependency:layoutDependency,layoutId:\"ivFHtQwDq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-151y6zs\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"GV3sNDweW\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-91opwt\",layoutDependency:layoutDependency,layoutId:\"dPUwZhpfN\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7j3iit\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"RqTCO1zTt\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"CRM data cleaning\"})}),className:\"framer-1dqzd58\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"IUtk8k66H\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qwvlqe\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"MWCpdP_WG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ki9zg8\",layoutDependency:layoutDependency,layoutId:\"JBDOmwlSn\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-glcv0j\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"UagbUzP4j\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Automated CRM enrichment\"})}),className:\"framer-1b1uywl\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"L_EiZsdCp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s5bw5t\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"Kx_78S0zK\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11bofd8\",layoutDependency:layoutDependency,layoutId:\"m2T9cw8pn\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e4ekf8\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"RzDizsjZb\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Data normalization\"})}),className:\"framer-1ygypl7\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"SR2kZEMIn\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lhad6f\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"v0qlK5BgB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-iyrmss\",layoutDependency:layoutDependency,layoutId:\"yBjIuepWJ\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1igdori\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"EbDI3n6LT\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Account, contact, and lead research\"})}),className:\"framer-15rp7xf\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"CPmAtVf1g\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v7bac3\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"ZZlSNHmjy\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ddmhw8\",layoutDependency:layoutDependency,layoutId:\"ndpqDS120\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b9hdvh\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"MdipASdiS\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Automated campaign updates\"})}),className:\"framer-aonz4t\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"T9nltPeUI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rq6nqp\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"qbmL3R07t\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wpzgdy\",layoutDependency:layoutDependency,layoutId:\"CaG_1VlQf\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19x1ny9\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"ZrOaGEYc7\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"CRM lead scoring\"})}),className:\"framer-1lm080f\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"mXNss0IoV\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-519g8u\",\"data-framer-name\":\"list-item\",layoutDependency:layoutDependency,layoutId:\"A38Z8JdVN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-156tw3c\",layoutDependency:layoutDependency,layoutId:\"nkpji1oPZ\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fubtl2\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"iZqXt6mQa\",style:{backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\"},children:\"Custom RevOps requests\"})}),className:\"framer-1xv35iq\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"HC_my0lWq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PeOLGPUFq\"},motionChild:true,nodeId:\"iv1mlFTnO\",openInNewTab:false,scopeId:\"rZ7OiB5XT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1vc3372 framer-oogbwn\",\"data-framer-name\":\"Button - primary\",layoutDependency:layoutDependency,layoutId:\"iv1mlFTnO\",style:{backgroundColor:\"rgb(3, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},whileHover:animation2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Talk with us\"})})}),className:\"framer-wpy7og\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"gFwgUbvHi\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-umb5ib\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"nVaSXdTg7\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u073zu\",\"data-framer-name\":\"ArrowUpRight\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Q1c0zvrEN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18.64 6 L 18.64 15.75 C 18.64 15.898 18.598 16.044 18.519 16.167 C 18.439 16.29 18.327 16.387 18.195 16.444 C 18.064 16.5 17.919 16.515 17.779 16.486 C 17.639 16.457 17.511 16.386 17.41 16.281 L 13.24 11.935 L 6.909 18.531 C 6.774 18.671 6.591 18.75 6.4 18.75 C 6.209 18.75 6.025 18.671 5.89 18.531 C 5.755 18.39 5.679 18.199 5.679 18 C 5.679 17.801 5.755 17.61 5.89 17.469 L 12.222 10.875 L 8.05 6.531 C 7.95 6.426 7.881 6.292 7.853 6.146 C 7.825 6.001 7.84 5.85 7.894 5.713 C 7.949 5.576 8.041 5.459 8.159 5.376 C 8.278 5.294 8.417 5.25 8.56 5.25 L 17.92 5.25 C 18.111 5.25 18.294 5.329 18.429 5.47 C 18.564 5.61 18.64 5.801 18.64 6 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11835598828,withExternalLayout:true})})]})})]})]})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-92Ghi.framer-oogbwn, .framer-92Ghi .framer-oogbwn { display: block; }\",\".framer-92Ghi.framer-exrh5n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 560px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1040px; }\",\".framer-92Ghi .framer-lbvu5i-container, .framer-92Ghi .framer-108f8fd-container, .framer-92Ghi .framer-4yp04f-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-92Ghi .framer-1f4j7p3, .framer-92Ghi .framer-s0tsf6, .framer-92Ghi .framer-tbhurz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 560px; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 336px; will-change: var(--framer-will-change-override, transform); }\",\".framer-92Ghi .framer-1ll30ru, .framer-92Ghi .framer-1vprtrf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-92Ghi .framer-12s8jvf, .framer-92Ghi .framer-1nq6ct2 { aspect-ratio: 1.44594590153635 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 222px); position: relative; width: 100%; }\",\".framer-92Ghi .framer-1k3nt1e, .framer-92Ghi .framer-102aqya, .framer-92Ghi .framer-tywlxk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-92Ghi .framer-tr39ph, .framer-92Ghi .framer-1g2o8wt, .framer-92Ghi .framer-1te0ydk, .framer-92Ghi .framer-3fdtgg, .framer-92Ghi .framer-10lm4b0, .framer-92Ghi .framer-j870f2, .framer-92Ghi .framer-74shzi, .framer-92Ghi .framer-njnusm, .framer-92Ghi .framer-1b5g99d { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-92Ghi .framer-12ou2x4, .framer-92Ghi .framer-1wvg4i6, .framer-92Ghi .framer-xojt6d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 560px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 336px; will-change: var(--framer-will-change-override, transform); }\",\".framer-92Ghi .framer-44ue0p, .framer-92Ghi .framer-9ppfpn, .framer-92Ghi .framer-1sxdity { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-92Ghi .framer-1nq3e5f, .framer-92Ghi .framer-1lo5sor, .framer-92Ghi .framer-18a29c4 { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-92Ghi .framer-epagy2, .framer-92Ghi .framer-1blhcpl, .framer-92Ghi .framer-1ibhg2f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-92Ghi .framer-33zzae, .framer-92Ghi .framer-4d01aj, .framer-92Ghi .framer-1gya0mf, .framer-92Ghi .framer-65xq8x, .framer-92Ghi .framer-jwotsw, .framer-92Ghi .framer-1qlo6c0, .framer-92Ghi .framer-a6dd7p, .framer-92Ghi .framer-mzod45, .framer-92Ghi .framer-hrsffv, .framer-92Ghi .framer-1m5lwh7, .framer-92Ghi .framer-tc66pd, .framer-92Ghi .framer-19iydx6, .framer-92Ghi .framer-1u72qd4, .framer-92Ghi .framer-1ow7ejx, .framer-92Ghi .framer-151y6zs, .framer-92Ghi .framer-qwvlqe, .framer-92Ghi .framer-1s5bw5t, .framer-92Ghi .framer-1lhad6f, .framer-92Ghi .framer-v7bac3, .framer-92Ghi .framer-1rq6nqp, .framer-92Ghi .framer-519g8u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-92Ghi .framer-11xyl2d, .framer-92Ghi .framer-b8bhau, .framer-92Ghi .framer-ip662c, .framer-92Ghi .framer-8kxsvu, .framer-92Ghi .framer-1j76s7u, .framer-92Ghi .framer-cw03s4, .framer-92Ghi .framer-er6l03, .framer-92Ghi .framer-bkni79, .framer-92Ghi .framer-1bnmdql, .framer-92Ghi .framer-de1hk5, .framer-92Ghi .framer-1i1tdqq, .framer-92Ghi .framer-vlj6m7, .framer-92Ghi .framer-ol6gzs, .framer-92Ghi .framer-1lufr8g, .framer-92Ghi .framer-91opwt, .framer-92Ghi .framer-ki9zg8, .framer-92Ghi .framer-11bofd8, .framer-92Ghi .framer-iyrmss, .framer-92Ghi .framer-1ddmhw8, .framer-92Ghi .framer-1wpzgdy, .framer-92Ghi .framer-156tw3c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 8px; }\",\".framer-92Ghi .framer-1sij4nw, .framer-92Ghi .framer-tw3kks, .framer-92Ghi .framer-1plspn3, .framer-92Ghi .framer-au8meg, .framer-92Ghi .framer-eztih6, .framer-92Ghi .framer-ya2vhy, .framer-92Ghi .framer-7pwgie, .framer-92Ghi .framer-tjiz6v, .framer-92Ghi .framer-1crsnly, .framer-92Ghi .framer-1mvu4w8, .framer-92Ghi .framer-t9fewv, .framer-92Ghi .framer-di8a81, .framer-92Ghi .framer-1ufxx4j, .framer-92Ghi .framer-xoju8v, .framer-92Ghi .framer-7j3iit, .framer-92Ghi .framer-glcv0j, .framer-92Ghi .framer-1e4ekf8, .framer-92Ghi .framer-1igdori, .framer-92Ghi .framer-1b9hdvh, .framer-92Ghi .framer-19x1ny9, .framer-92Ghi .framer-1fubtl2 { flex: none; height: 4px; overflow: visible; position: relative; width: 4px; }\",\".framer-92Ghi .framer-1vi1zvl, .framer-92Ghi .framer-fpn4ql, .framer-92Ghi .framer-1rtne26, .framer-92Ghi .framer-1j6w2av, .framer-92Ghi .framer-u3cifp, .framer-92Ghi .framer-1mn69fd, .framer-92Ghi .framer-1iz8xid, .framer-92Ghi .framer-1iwc8ws, .framer-92Ghi .framer-vfeu3z, .framer-92Ghi .framer-qgme2y, .framer-92Ghi .framer-vpg2yi, .framer-92Ghi .framer-nzs208, .framer-92Ghi .framer-r676tq, .framer-92Ghi .framer-131jhq9, .framer-92Ghi .framer-1dqzd58, .framer-92Ghi .framer-1b1uywl, .framer-92Ghi .framer-1ygypl7, .framer-92Ghi .framer-15rp7xf, .framer-92Ghi .framer-aonz4t, .framer-92Ghi .framer-1lm080f, .framer-92Ghi .framer-1xv35iq { flex: 1 0 0px; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-92Ghi .framer-eko3dz, .framer-92Ghi .framer-1x3be17, .framer-92Ghi .framer-1vc3372 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-92Ghi .framer-1bmnx93, .framer-92Ghi .framer-9negdj, .framer-92Ghi .framer-wpy7og { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-92Ghi .framer-fvwh08, .framer-92Ghi .framer-1yuz0fj, .framer-92Ghi .framer-umb5ib { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-92Ghi .framer-1amr6bu, .framer-92Ghi .framer-1edlw51, .framer-92Ghi .framer-1u073zu { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-92Ghi .framer-i3hxlk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-92Ghi .framer-1tiwxum { aspect-ratio: 1.2125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 264px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-92Ghi.framer-exrh5n, .framer-92Ghi .framer-1f4j7p3, .framer-92Ghi .framer-1ll30ru, .framer-92Ghi .framer-1k3nt1e, .framer-92Ghi .framer-12ou2x4, .framer-92Ghi .framer-44ue0p, .framer-92Ghi .framer-epagy2, .framer-92Ghi .framer-33zzae, .framer-92Ghi .framer-11xyl2d, .framer-92Ghi .framer-4d01aj, .framer-92Ghi .framer-b8bhau, .framer-92Ghi .framer-1gya0mf, .framer-92Ghi .framer-ip662c, .framer-92Ghi .framer-65xq8x, .framer-92Ghi .framer-8kxsvu, .framer-92Ghi .framer-jwotsw, .framer-92Ghi .framer-1j76s7u, .framer-92Ghi .framer-1qlo6c0, .framer-92Ghi .framer-cw03s4, .framer-92Ghi .framer-a6dd7p, .framer-92Ghi .framer-er6l03, .framer-92Ghi .framer-s0tsf6, .framer-92Ghi .framer-i3hxlk, .framer-92Ghi .framer-102aqya, .framer-92Ghi .framer-1wvg4i6, .framer-92Ghi .framer-9ppfpn, .framer-92Ghi .framer-1blhcpl, .framer-92Ghi .framer-mzod45, .framer-92Ghi .framer-bkni79, .framer-92Ghi .framer-hrsffv, .framer-92Ghi .framer-1bnmdql, .framer-92Ghi .framer-1m5lwh7, .framer-92Ghi .framer-de1hk5, .framer-92Ghi .framer-tc66pd, .framer-92Ghi .framer-1i1tdqq, .framer-92Ghi .framer-19iydx6, .framer-92Ghi .framer-vlj6m7, .framer-92Ghi .framer-1u72qd4, .framer-92Ghi .framer-ol6gzs, .framer-92Ghi .framer-1ow7ejx, .framer-92Ghi .framer-1lufr8g, .framer-92Ghi .framer-tbhurz, .framer-92Ghi .framer-1vprtrf, .framer-92Ghi .framer-tywlxk, .framer-92Ghi .framer-xojt6d, .framer-92Ghi .framer-1sxdity, .framer-92Ghi .framer-1ibhg2f, .framer-92Ghi .framer-151y6zs, .framer-92Ghi .framer-91opwt, .framer-92Ghi .framer-qwvlqe, .framer-92Ghi .framer-ki9zg8, .framer-92Ghi .framer-1s5bw5t, .framer-92Ghi .framer-11bofd8, .framer-92Ghi .framer-1lhad6f, .framer-92Ghi .framer-iyrmss, .framer-92Ghi .framer-v7bac3, .framer-92Ghi .framer-1ddmhw8, .framer-92Ghi .framer-1rq6nqp, .framer-92Ghi .framer-1wpzgdy, .framer-92Ghi .framer-519g8u, .framer-92Ghi .framer-156tw3c { gap: 0px; } .framer-92Ghi.framer-exrh5n > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-92Ghi.framer-exrh5n > :first-child, .framer-92Ghi .framer-33zzae > :first-child, .framer-92Ghi .framer-11xyl2d > :first-child, .framer-92Ghi .framer-4d01aj > :first-child, .framer-92Ghi .framer-b8bhau > :first-child, .framer-92Ghi .framer-1gya0mf > :first-child, .framer-92Ghi .framer-ip662c > :first-child, .framer-92Ghi .framer-65xq8x > :first-child, .framer-92Ghi .framer-8kxsvu > :first-child, .framer-92Ghi .framer-jwotsw > :first-child, .framer-92Ghi .framer-1j76s7u > :first-child, .framer-92Ghi .framer-1qlo6c0 > :first-child, .framer-92Ghi .framer-cw03s4 > :first-child, .framer-92Ghi .framer-a6dd7p > :first-child, .framer-92Ghi .framer-er6l03 > :first-child, .framer-92Ghi .framer-mzod45 > :first-child, .framer-92Ghi .framer-bkni79 > :first-child, .framer-92Ghi .framer-hrsffv > :first-child, .framer-92Ghi .framer-1bnmdql > :first-child, .framer-92Ghi .framer-1m5lwh7 > :first-child, .framer-92Ghi .framer-de1hk5 > :first-child, .framer-92Ghi .framer-tc66pd > :first-child, .framer-92Ghi .framer-1i1tdqq > :first-child, .framer-92Ghi .framer-19iydx6 > :first-child, .framer-92Ghi .framer-vlj6m7 > :first-child, .framer-92Ghi .framer-1u72qd4 > :first-child, .framer-92Ghi .framer-ol6gzs > :first-child, .framer-92Ghi .framer-1ow7ejx > :first-child, .framer-92Ghi .framer-1lufr8g > :first-child, .framer-92Ghi .framer-151y6zs > :first-child, .framer-92Ghi .framer-91opwt > :first-child, .framer-92Ghi .framer-qwvlqe > :first-child, .framer-92Ghi .framer-ki9zg8 > :first-child, .framer-92Ghi .framer-1s5bw5t > :first-child, .framer-92Ghi .framer-11bofd8 > :first-child, .framer-92Ghi .framer-1lhad6f > :first-child, .framer-92Ghi .framer-iyrmss > :first-child, .framer-92Ghi .framer-v7bac3 > :first-child, .framer-92Ghi .framer-1ddmhw8 > :first-child, .framer-92Ghi .framer-1rq6nqp > :first-child, .framer-92Ghi .framer-1wpzgdy > :first-child, .framer-92Ghi .framer-519g8u > :first-child, .framer-92Ghi .framer-156tw3c > :first-child { margin-left: 0px; } .framer-92Ghi.framer-exrh5n > :last-child, .framer-92Ghi .framer-33zzae > :last-child, .framer-92Ghi .framer-11xyl2d > :last-child, .framer-92Ghi .framer-4d01aj > :last-child, .framer-92Ghi .framer-b8bhau > :last-child, .framer-92Ghi .framer-1gya0mf > :last-child, .framer-92Ghi .framer-ip662c > :last-child, .framer-92Ghi .framer-65xq8x > :last-child, .framer-92Ghi .framer-8kxsvu > :last-child, .framer-92Ghi .framer-jwotsw > :last-child, .framer-92Ghi .framer-1j76s7u > :last-child, .framer-92Ghi .framer-1qlo6c0 > :last-child, .framer-92Ghi .framer-cw03s4 > :last-child, .framer-92Ghi .framer-a6dd7p > :last-child, .framer-92Ghi .framer-er6l03 > :last-child, .framer-92Ghi .framer-mzod45 > :last-child, .framer-92Ghi .framer-bkni79 > :last-child, .framer-92Ghi .framer-hrsffv > :last-child, .framer-92Ghi .framer-1bnmdql > :last-child, .framer-92Ghi .framer-1m5lwh7 > :last-child, .framer-92Ghi .framer-de1hk5 > :last-child, .framer-92Ghi .framer-tc66pd > :last-child, .framer-92Ghi .framer-1i1tdqq > :last-child, .framer-92Ghi .framer-19iydx6 > :last-child, .framer-92Ghi .framer-vlj6m7 > :last-child, .framer-92Ghi .framer-1u72qd4 > :last-child, .framer-92Ghi .framer-ol6gzs > :last-child, .framer-92Ghi .framer-1ow7ejx > :last-child, .framer-92Ghi .framer-1lufr8g > :last-child, .framer-92Ghi .framer-151y6zs > :last-child, .framer-92Ghi .framer-91opwt > :last-child, .framer-92Ghi .framer-qwvlqe > :last-child, .framer-92Ghi .framer-ki9zg8 > :last-child, .framer-92Ghi .framer-1s5bw5t > :last-child, .framer-92Ghi .framer-11bofd8 > :last-child, .framer-92Ghi .framer-1lhad6f > :last-child, .framer-92Ghi .framer-iyrmss > :last-child, .framer-92Ghi .framer-v7bac3 > :last-child, .framer-92Ghi .framer-1ddmhw8 > :last-child, .framer-92Ghi .framer-1rq6nqp > :last-child, .framer-92Ghi .framer-1wpzgdy > :last-child, .framer-92Ghi .framer-519g8u > :last-child, .framer-92Ghi .framer-156tw3c > :last-child { margin-right: 0px; } .framer-92Ghi .framer-1f4j7p3 > *, .framer-92Ghi .framer-44ue0p > *, .framer-92Ghi .framer-s0tsf6 > *, .framer-92Ghi .framer-9ppfpn > *, .framer-92Ghi .framer-tbhurz > *, .framer-92Ghi .framer-1sxdity > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-92Ghi .framer-1f4j7p3 > :first-child, .framer-92Ghi .framer-1ll30ru > :first-child, .framer-92Ghi .framer-1k3nt1e > :first-child, .framer-92Ghi .framer-12ou2x4 > :first-child, .framer-92Ghi .framer-44ue0p > :first-child, .framer-92Ghi .framer-epagy2 > :first-child, .framer-92Ghi .framer-s0tsf6 > :first-child, .framer-92Ghi .framer-i3hxlk > :first-child, .framer-92Ghi .framer-102aqya > :first-child, .framer-92Ghi .framer-1wvg4i6 > :first-child, .framer-92Ghi .framer-9ppfpn > :first-child, .framer-92Ghi .framer-1blhcpl > :first-child, .framer-92Ghi .framer-tbhurz > :first-child, .framer-92Ghi .framer-1vprtrf > :first-child, .framer-92Ghi .framer-tywlxk > :first-child, .framer-92Ghi .framer-xojt6d > :first-child, .framer-92Ghi .framer-1sxdity > :first-child, .framer-92Ghi .framer-1ibhg2f > :first-child { margin-top: 0px; } .framer-92Ghi .framer-1f4j7p3 > :last-child, .framer-92Ghi .framer-1ll30ru > :last-child, .framer-92Ghi .framer-1k3nt1e > :last-child, .framer-92Ghi .framer-12ou2x4 > :last-child, .framer-92Ghi .framer-44ue0p > :last-child, .framer-92Ghi .framer-epagy2 > :last-child, .framer-92Ghi .framer-s0tsf6 > :last-child, .framer-92Ghi .framer-i3hxlk > :last-child, .framer-92Ghi .framer-102aqya > :last-child, .framer-92Ghi .framer-1wvg4i6 > :last-child, .framer-92Ghi .framer-9ppfpn > :last-child, .framer-92Ghi .framer-1blhcpl > :last-child, .framer-92Ghi .framer-tbhurz > :last-child, .framer-92Ghi .framer-1vprtrf > :last-child, .framer-92Ghi .framer-tywlxk > :last-child, .framer-92Ghi .framer-xojt6d > :last-child, .framer-92Ghi .framer-1sxdity > :last-child, .framer-92Ghi .framer-1ibhg2f > :last-child { margin-bottom: 0px; } .framer-92Ghi .framer-1ll30ru > *, .framer-92Ghi .framer-i3hxlk > *, .framer-92Ghi .framer-1vprtrf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-92Ghi .framer-1k3nt1e > *, .framer-92Ghi .framer-epagy2 > *, .framer-92Ghi .framer-102aqya > *, .framer-92Ghi .framer-1blhcpl > *, .framer-92Ghi .framer-tywlxk > *, .framer-92Ghi .framer-1ibhg2f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-92Ghi .framer-12ou2x4 > *, .framer-92Ghi .framer-1wvg4i6 > *, .framer-92Ghi .framer-xojt6d > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-92Ghi .framer-33zzae > *, .framer-92Ghi .framer-4d01aj > *, .framer-92Ghi .framer-1gya0mf > *, .framer-92Ghi .framer-65xq8x > *, .framer-92Ghi .framer-jwotsw > *, .framer-92Ghi .framer-1qlo6c0 > *, .framer-92Ghi .framer-a6dd7p > *, .framer-92Ghi .framer-mzod45 > *, .framer-92Ghi .framer-hrsffv > *, .framer-92Ghi .framer-1m5lwh7 > *, .framer-92Ghi .framer-tc66pd > *, .framer-92Ghi .framer-19iydx6 > *, .framer-92Ghi .framer-1u72qd4 > *, .framer-92Ghi .framer-1ow7ejx > *, .framer-92Ghi .framer-151y6zs > *, .framer-92Ghi .framer-qwvlqe > *, .framer-92Ghi .framer-1s5bw5t > *, .framer-92Ghi .framer-1lhad6f > *, .framer-92Ghi .framer-v7bac3 > *, .framer-92Ghi .framer-1rq6nqp > *, .framer-92Ghi .framer-519g8u > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-92Ghi .framer-11xyl2d > *, .framer-92Ghi .framer-b8bhau > *, .framer-92Ghi .framer-ip662c > *, .framer-92Ghi .framer-8kxsvu > *, .framer-92Ghi .framer-1j76s7u > *, .framer-92Ghi .framer-cw03s4 > *, .framer-92Ghi .framer-er6l03 > *, .framer-92Ghi .framer-bkni79 > *, .framer-92Ghi .framer-1bnmdql > *, .framer-92Ghi .framer-de1hk5 > *, .framer-92Ghi .framer-1i1tdqq > *, .framer-92Ghi .framer-vlj6m7 > *, .framer-92Ghi .framer-ol6gzs > *, .framer-92Ghi .framer-1lufr8g > *, .framer-92Ghi .framer-91opwt > *, .framer-92Ghi .framer-ki9zg8 > *, .framer-92Ghi .framer-11bofd8 > *, .framer-92Ghi .framer-iyrmss > *, .framer-92Ghi .framer-1ddmhw8 > *, .framer-92Ghi .framer-1wpzgdy > *, .framer-92Ghi .framer-156tw3c > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-92Ghi.framer-v-n2fgfb.framer-exrh5n { flex-direction: column; height: 1400px; width: 650px; }\",\".framer-92Ghi.framer-v-n2fgfb .framer-lbvu5i-container, .framer-92Ghi.framer-v-n2fgfb .framer-108f8fd-container, .framer-92Ghi.framer-v-n2fgfb .framer-4yp04f-container, .framer-92Ghi.framer-v-1opqt9d .framer-lbvu5i-container, .framer-92Ghi.framer-v-1opqt9d .framer-108f8fd-container, .framer-92Ghi.framer-v-1opqt9d .framer-4yp04f-container { height: 1px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-92Ghi.framer-v-n2fgfb.framer-exrh5n { gap: 0px; } .framer-92Ghi.framer-v-n2fgfb.framer-exrh5n > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-92Ghi.framer-v-n2fgfb.framer-exrh5n > :first-child { margin-top: 0px; } .framer-92Ghi.framer-v-n2fgfb.framer-exrh5n > :last-child { margin-bottom: 0px; } }\",\".framer-92Ghi.framer-v-1opqt9d.framer-exrh5n { flex-direction: column; height: 1680px; width: 360px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-92Ghi.framer-v-1opqt9d.framer-exrh5n { gap: 0px; } .framer-92Ghi.framer-v-1opqt9d.framer-exrh5n > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-92Ghi.framer-v-1opqt9d.framer-exrh5n > :first-child { margin-top: 0px; } .framer-92Ghi.framer-v-1opqt9d.framer-exrh5n > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-92Ghi[data-border=\"true\"]::after, .framer-92Ghi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 560\n * @framerIntrinsicWidth 1040\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jcWbpnpNF\":{\"layout\":[\"fixed\",\"fixed\"]},\"fkqSax7bb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrZ7OiB5XT=withCSS(Component,css,\"framer-92Ghi\");export default FramerrZ7OiB5XT;FramerrZ7OiB5XT.displayName=\"Services\";FramerrZ7OiB5XT.defaultProps={height:560,width:1040};addPropertyControls(FramerrZ7OiB5XT,{variant:{options:[\"N_CgUOZvM\",\"jcWbpnpNF\",\"fkqSax7bb\"],optionTitles:[\"layout-desktop\",\"layout-tablet\",\"layout-mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrZ7OiB5XT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...FlipFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrZ7OiB5XT\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1040\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jcWbpnpNF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fkqSax7bb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"560\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rZ7OiB5XT.map", "// Generated by Framer (6421805)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gXEivX3XKohsQque57QN/lIt4AHSTIxgU3sIGzpgu/sgrWE0DyH.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/NBZsy2sVbAE3Ifj9CqjU/SZZNhd5dRCALuCAU2gl0/XhHNQBMeI.js\";const enabledGestures={aBcwORHVX:{hover:true},e3Rc2vqdO:{hover:true},miNYh3gPq:{hover:true}};const cycleOrder=[\"miNYh3gPq\",\"e3Rc2vqdO\",\"aBcwORHVX\"];const serializationHash=\"framer-WxlvU\";const variantClassNames={aBcwORHVX:\"framer-v-d0z3ta\",e3Rc2vqdO:\"framer-v-9tewzg\",miNYh3gPq:\"framer-v-p775nk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={navbar:\"aBcwORHVX\",primary:\"miNYh3gPq\",secondary:\"e3Rc2vqdO\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,BI3GclLuy:link??props.BI3GclLuy,FYxXrMdiK:text??props.FYxXrMdiK??\"Talk with us\",variant:humanReadableVariantMap[props.variant]??props.variant??\"miNYh3gPq\"};};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,FYxXrMdiK,BI3GclLuy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"miNYh3gPq\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:BI3GclLuy,motionChild:true,nodeId:\"miNYh3gPq\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-p775nk\",className,classNames)} framer-189okmb`,\"data-framer-name\":\"primary\",layoutDependency:layoutDependency,layoutId:\"miNYh3gPq\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"miNYh3gPq-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},aBcwORHVX:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},e3Rc2vqdO:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"aBcwORHVX-hover\":{\"data-framer-name\":undefined},\"e3Rc2vqdO-hover\":{\"data-framer-name\":undefined},\"miNYh3gPq-hover\":{\"data-framer-name\":undefined},aBcwORHVX:{\"data-framer-name\":\"navbar\"},e3Rc2vqdO:{\"data-border\":true,\"data-framer-name\":\"secondary\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Talk with us\"})})}),className:\"framer-zrcghk\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"NGIwWp9Ni\",style:{\"--extracted-r6o4lv\":\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:FYxXrMdiK,variants:{e3Rc2vqdO:{\"--extracted-r6o4lv\":\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aBcwORHVX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nzfjqm\",\"data-styles-preset\":\"sgrWE0DyH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Talk with us\"})})})},e3Rc2vqdO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Talk with us\"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j0eafs\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"BVfTXXxpb\",style:{filter:\"none\",WebkitFilter:\"none\"},variants:{\"miNYh3gPq-hover\":{filter:\"none\",WebkitFilter:\"none\"},aBcwORHVX:{filter:\"none\",WebkitFilter:\"none\"},e3Rc2vqdO:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-u4j7c2\",\"data-framer-name\":\"HandWaving\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"VgfTYUjkM\",style:{rotate:0},svg:'<svg width=\"25\" height=\"24\" viewBox=\"0 0 25 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.7751 2.80594C17.8006 2.71076 17.8446 2.62152 17.9045 2.54334C17.9645 2.46515 18.0392 2.39954 18.1246 2.35027C18.2099 2.30099 18.3041 2.26901 18.4018 2.25615C18.4995 2.24328 18.5987 2.2498 18.6939 2.27531C20.1845 2.67563 21.4126 3.59813 22.1495 4.875C22.249 5.04731 22.2759 5.25207 22.2244 5.44423C22.1729 5.6364 22.0471 5.80023 21.8748 5.89969C21.7025 5.99914 21.4978 6.02608 21.3056 5.97456C21.1134 5.92305 20.9496 5.79731 20.8501 5.625C20.3139 4.695 19.4101 4.02 18.3058 3.72469C18.2106 3.69923 18.1213 3.65527 18.0432 3.59531C17.965 3.53535 17.8994 3.46058 17.8501 3.37525C17.8008 3.28993 17.7688 3.19574 17.756 3.09805C17.7431 3.00037 17.7496 2.90111 17.7751 2.80594ZM7.96045 21.1613C7.08107 20.4675 6.34607 19.5825 5.64951 18.375C5.60026 18.2897 5.5347 18.2149 5.45655 18.1549C5.3784 18.0949 5.28921 18.0509 5.19406 18.0254C5.09891 17.9999 4.99966 17.9934 4.90199 18.0063C4.80432 18.0191 4.71014 18.0511 4.62482 18.1003C4.53951 18.1496 4.46472 18.2151 4.40474 18.2933C4.34477 18.3714 4.30077 18.4606 4.27526 18.5558C4.24975 18.6509 4.24324 18.7502 4.25608 18.8478C4.26893 18.9455 4.30089 19.0397 4.35014 19.125C5.14607 20.5031 5.99732 21.5241 7.03139 22.3388C7.18778 22.4591 7.38529 22.5129 7.58111 22.4886C7.77693 22.4643 7.95528 22.3638 8.07751 22.2089C8.19974 22.054 8.25599 21.8571 8.23408 21.661C8.21216 21.4649 8.11385 21.2854 7.96045 21.1613ZM18.8926 5.47688C18.7955 5.30373 18.6649 5.15159 18.5085 5.02928C18.3521 4.90697 18.173 4.81692 17.9816 4.76436C17.7901 4.7118 17.5901 4.69778 17.3932 4.72309C17.1963 4.74841 17.0064 4.81256 16.8344 4.91184C16.6625 5.01112 16.512 5.14354 16.3916 5.30143C16.2712 5.45932 16.1834 5.63954 16.1332 5.83163C16.083 6.02372 16.0714 6.22386 16.0992 6.42046C16.1269 6.61705 16.1934 6.80618 16.2948 6.97688L17.7948 9.57469C17.8441 9.66 17.8761 9.75418 17.8889 9.85186C17.9018 9.94953 17.8953 10.0488 17.8698 10.1439C17.8442 10.2391 17.8002 10.3283 17.7403 10.4064C17.6803 10.4846 17.6055 10.5501 17.5201 10.5994C16.8312 10.9972 16.3285 11.6525 16.1226 12.4209C15.9168 13.1894 16.0246 14.0082 16.4223 14.6972C16.5218 14.8695 16.5487 15.0743 16.4972 15.2664C16.4457 15.4586 16.3199 15.6224 16.1476 15.7219C15.9753 15.8213 15.7706 15.8483 15.5784 15.7968C15.3862 15.7452 15.2224 15.6195 15.1229 15.4472C14.5925 14.5255 14.405 13.4459 14.5937 12.3994C14.7825 11.3529 15.3352 10.4068 16.1542 9.72844L12.3714 3.18C12.1725 2.83538 11.8448 2.5839 11.4605 2.48087C11.0761 2.37785 10.6666 2.43171 10.322 2.63063C9.9774 2.82954 9.72591 3.1572 9.62288 3.54153C9.51986 3.92587 9.57372 4.33538 9.77264 4.68L12.7726 9.87656C12.8659 10.0484 12.8884 10.2498 12.8354 10.438C12.7824 10.6261 12.658 10.7861 12.4887 10.8839C12.3194 10.9817 12.1186 11.0095 11.9291 10.9614C11.7396 10.9134 11.5764 10.7932 11.4742 10.6266L7.7242 4.13063C7.52529 3.78601 7.19762 3.53453 6.81329 3.4315C6.42896 3.32847 6.01944 3.38234 5.67482 3.58125C5.33021 3.78016 5.07872 4.10783 4.9757 4.49216C4.87267 4.87649 4.92654 5.28601 5.12545 5.63063L9.25045 12.7753C9.30281 12.8607 9.33754 12.9557 9.35259 13.0547C9.36764 13.1537 9.36271 13.2547 9.33808 13.3518C9.31346 13.4489 9.26964 13.5401 9.20921 13.6199C9.14878 13.6998 9.07296 13.7668 8.98624 13.8169C8.89951 13.867 8.80363 13.8992 8.70425 13.9116C8.60488 13.924 8.50401 13.9165 8.40762 13.8893C8.31122 13.8621 8.22124 13.8159 8.14299 13.7534C8.06474 13.6909 7.9998 13.6133 7.95201 13.5253L5.32701 8.97937C5.22852 8.80874 5.09738 8.65917 4.94109 8.53922C4.7848 8.41926 4.6064 8.33126 4.4161 8.28025C4.2258 8.22923 4.02731 8.2162 3.83198 8.2419C3.63664 8.26759 3.44827 8.33151 3.27764 8.43C3.107 8.52849 2.95743 8.65963 2.83748 8.81592C2.71752 8.97222 2.62952 9.15061 2.57851 9.34091C2.52749 9.53121 2.51446 9.7297 2.54016 9.92504C2.56585 10.1204 2.62977 10.3087 2.72826 10.4794L6.85326 17.6241C7.94981 19.5139 9.75128 20.8916 11.8624 21.4549C13.9735 22.0181 16.2218 21.7209 18.1141 20.6284C20.0063 19.5359 21.3879 17.7374 21.9557 15.6275C22.5234 13.5176 22.231 11.2686 21.1426 9.37406L18.8926 5.47688Z\" fill=\"white\"/>\\n</svg>\\n',variants:{\"aBcwORHVX-hover\":{rotate:30},\"e3Rc2vqdO-hover\":{rotate:30},\"miNYh3gPq-hover\":{rotate:30}},withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WxlvU.framer-189okmb, .framer-WxlvU .framer-189okmb { display: block; }\",\".framer-WxlvU.framer-p775nk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-WxlvU .framer-zrcghk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WxlvU .framer-1j0eafs { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-WxlvU .framer-u4j7c2 { aspect-ratio: 1 / 1; flex: none; height: 24px; position: relative; width: var(--framer-aspect-ratio-supported, 24px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WxlvU.framer-p775nk, .framer-WxlvU .framer-1j0eafs { gap: 0px; } .framer-WxlvU.framer-p775nk > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-WxlvU.framer-p775nk > :first-child, .framer-WxlvU .framer-1j0eafs > :first-child { margin-left: 0px; } .framer-WxlvU.framer-p775nk > :last-child, .framer-WxlvU .framer-1j0eafs > :last-child { margin-right: 0px; } .framer-WxlvU .framer-1j0eafs > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-WxlvU.framer-v-d0z3ta.framer-p775nk { padding: 8px 16px 8px 16px; }\",\".framer-WxlvU.framer-v-d0z3ta .framer-1j0eafs { height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\".framer-WxlvU.framer-v-d0z3ta .framer-u4j7c2 { height: 20px; width: var(--framer-aspect-ratio-supported, 20px); }\",...sharedStyle.css,...sharedStyle1.css,'.framer-WxlvU[data-border=\"true\"]::after, .framer-WxlvU [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 171.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"e3Rc2vqdO\":{\"layout\":[\"auto\",\"auto\"]},\"aBcwORHVX\":{\"layout\":[\"auto\",\"auto\"]},\"mSMCN30Ix\":{\"layout\":[\"auto\",\"auto\"]},\"VwR6eJKiO\":{\"layout\":[\"auto\",\"auto\"]},\"hf39hayMv\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"FYxXrMdiK\":\"text\",\"BI3GclLuy\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYLaDItZ6w=withCSS(Component,css,\"framer-WxlvU\");export default FramerYLaDItZ6w;FramerYLaDItZ6w.displayName=\"button\";FramerYLaDItZ6w.defaultProps={height:48,width:171.5};addPropertyControls(FramerYLaDItZ6w,{variant:{options:[\"miNYh3gPq\",\"e3Rc2vqdO\",\"aBcwORHVX\"],optionTitles:[\"primary\",\"secondary\",\"navbar\"],title:\"Variant\",type:ControlType.Enum},FYxXrMdiK:{defaultValue:\"Talk with us\",displayTextArea:false,title:\"Text\",type:ControlType.String},BI3GclLuy:{title:\"Link\",type:ControlType.Link}});addFonts(FramerYLaDItZ6w,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYLaDItZ6w\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"e3Rc2vqdO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aBcwORHVX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mSMCN30Ix\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VwR6eJKiO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hf39hayMv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"171.5\",\"framerVariables\":\"{\\\"FYxXrMdiK\\\":\\\"text\\\",\\\"BI3GclLuy\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7e4cc89)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-700\",\"GF;DM Sans-900\",\"GF;DM Sans-900italic\",\"GF;DM Sans-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAC5thS2f3ZGMZpg.woff2\",weight:\"900\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8gCm32RmYJpso5.woff2\",weight:\"900\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"}]}];export const css=['.framer-6HxXE .framer-styles-preset-1dsf1nd:not(.rich-text-wrapper), .framer-6HxXE .framer-styles-preset-1dsf1nd.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 64px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-6HxXE .framer-styles-preset-1dsf1nd:not(.rich-text-wrapper), .framer-6HxXE .framer-styles-preset-1dsf1nd.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 56px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-6HxXE .framer-styles-preset-1dsf1nd:not(.rich-text-wrapper), .framer-6HxXE .framer-styles-preset-1dsf1nd.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 40px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-6HxXE\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7e4cc89)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-1w9Ru .framer-styles-preset-1mc2qgk:not(.rich-text-wrapper), .framer-1w9Ru .framer-styles-preset-1mc2qgk.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 64px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-1w9Ru .framer-styles-preset-1mc2qgk:not(.rich-text-wrapper), .framer-1w9Ru .framer-styles-preset-1mc2qgk.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 56px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-1w9Ru .framer-styles-preset-1mc2qgk:not(.rich-text-wrapper), .framer-1w9Ru .framer-styles-preset-1mc2qgk.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 40px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-1w9Ru\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6421805)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-wN6Ha .framer-styles-preset-qzq7z7:not(.rich-text-wrapper), .framer-wN6Ha .framer-styles-preset-qzq7z7.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-wN6Ha\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ad88b1a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS,withFX}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 Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Navigation from\"#framer/local/canvasComponent/GEaQpm1Sx/GEaQpm1Sx.js\";import LinkItem from\"#framer/local/canvasComponent/l8sPPduKg/l8sPPduKg.js\";import Services from\"#framer/local/canvasComponent/rZ7OiB5XT/rZ7OiB5XT.js\";import Vfairs_logo from\"#framer/local/canvasComponent/XPkDkuJSq/XPkDkuJSq.js\";import Button from\"#framer/local/canvasComponent/YLaDItZ6w/YLaDItZ6w.js\";import Integral_logo from\"#framer/local/canvasComponent/ZlfiNNe6s/ZlfiNNe6s.js\";import*as sharedStyle from\"#framer/local/css/HBKwf3lOY/HBKwf3lOY.js\";import*as sharedStyle3 from\"#framer/local/css/j5P3ZA7dV/j5P3ZA7dV.js\";import*as sharedStyle5 from\"#framer/local/css/MjFz_RSp9/MjFz_RSp9.js\";import*as sharedStyle2 from\"#framer/local/css/rNmRS82K_/rNmRS82K_.js\";import*as sharedStyle7 from\"#framer/local/css/Uap6Y9eIp/Uap6Y9eIp.js\";import*as sharedStyle1 from\"#framer/local/css/Wso5FPOzB/Wso5FPOzB.js\";import*as sharedStyle6 from\"#framer/local/css/XhHNQBMeI/XhHNQBMeI.js\";import*as sharedStyle4 from\"#framer/local/css/Zs4QTaX0G/Zs4QTaX0G.js\";import metadataProvider from\"#framer/local/webPageMetadata/d9Cnb39Sa/d9Cnb39Sa.js\";const ButtonFonts=getFonts(Button);const ImageWithFX=withFX(Image);const Vfairs_logoFonts=getFonts(Vfairs_logo);const Integral_logoFonts=getFonts(Integral_logo);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const ServicesFonts=getFonts(Services);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const Ticker1Fonts=getFonts(Ticker1);const LinkItemFonts=getFonts(LinkItem);const EmbedFonts=getFonts(Embed);const NavigationFonts=getFonts(Navigation);const breakpoints={jyGnRbIPr:\"(min-width: 1200px)\",UsHI1lDkw:\"(min-width: 810px) and (max-width: 1199px)\",z0dMFkpq8:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AqE5V\";const variantClassNames={jyGnRbIPr:\"framer-v-7usvz2\",UsHI1lDkw:\"framer-v-71pbkc\",z0dMFkpq8:\"framer-v-cng6u2\"};const transition1={damping:48,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,y:-4};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:64};const transition2={damping:64,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition3={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition4={damping:40,delay:.2,mass:4,stiffness:240,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition5={damping:40,delay:0,mass:4,stiffness:240,type:\"spring\"};const animation5={opacity:1,rotate:-4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition6={damping:40,delay:.4,mass:4,stiffness:240,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:64};const animation7={opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-80,y:80};const animation8={opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:-80,y:80};const animation9={opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:80,y:80};const animation10={opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:80,y:80};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition7={bounce:.2,delay:.4,duration:1,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};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 animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:80};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"jyGnRbIPr\",Phone:\"z0dMFkpq8\",Tablet:\"UsHI1lDkw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jyGnRbIPr\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"z0dMFkpq8\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if([\"UsHI1lDkw\",\"z0dMFkpq8\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"z0dMFkpq8\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"jyGnRbIPr\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-7usvz2\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzwi9s\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f0yzv0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b07lzc\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1dsf1nd\",\"data-styles-preset\":\"HBKwf3lOY\",children:[\"We help the world's leading GTM teams scale their \",/*#__PURE__*/_jsx(\"em\",{children:\"most creative ideas\"})]})}),className:\"framer-a4xbow\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qzq7z7\",\"data-styles-preset\":\"Wso5FPOzB\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Kiln is a team of GTM experts, data scientists, and early Clay employees that help build inbound, outbound, and RevOps systems that scale.\"})}),className:\"framer-r1k4o4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-372qug hidden-cng6u2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:93,intrinsicWidth:181,svg:'<svg width=\"181\" height=\"93\" viewBox=\"0 0 181 93\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M150.363 56.1445C147.655 52.6657 144.711 49.6294 141.232 48.0537C138.741 46.9053 135.914 46.7213 133.296 47.5373C132.495 47.7953 131.742 48.1797 131.063 48.6759C130.361 49.1884 129.778 49.845 129.351 50.6017L124.25 47.9158C125.252 46.0683 125.76 43.9937 125.727 41.8922C125.693 39.7908 125.118 37.7335 124.057 35.9192C123.438 34.8893 122.661 33.9624 121.756 33.172C119.914 31.5571 117.644 30.5094 115.22 30.155C114.627 30.0697 114.03 30.0302 113.431 30.0368C113.135 30.0337 112.84 30.0483 112.546 30.0804L112.108 30.1193L111.721 30.1902C110.648 30.397 109.627 30.8202 108.722 31.4339C108.28 31.7265 107.87 32.0642 107.498 32.4414C107.33 32.6201 107.173 32.8085 107.027 33.0057L106.819 33.2893C106.768 33.3872 106.716 33.4832 106.66 33.5777L106.576 33.7184L106.522 33.8603C106.485 33.954 106.445 34.0462 106.401 34.137C106.383 34.2286 106.361 34.3181 106.335 34.4064L106.294 34.5381L106.285 34.6674C106.238 35.0018 106.252 35.3421 106.328 35.6713L106.367 35.9985C106.458 36.772 106.258 37.5518 105.807 38.1868C105.356 38.8217 104.685 39.2664 103.925 39.4348C103.164 39.6032 102.369 39.4832 101.692 39.098C101.015 38.7129 100.505 38.0901 100.261 37.3503C98.3933 31.6841 93.1726 27.1075 87.3374 25.458C84.4881 24.608 81.4619 24.5442 78.5793 25.2733C77.2028 25.6334 75.8938 26.2143 74.7034 26.9934C73.4923 27.7874 72.4049 28.7557 71.4763 29.8669C69.2426 32.5394 67.8503 35.8135 67.4752 39.2763C67.1061 42.6903 67.8745 46.089 69.7675 48.6489C70.2678 49.3258 70.5108 50.1587 70.453 50.9985C70.3952 51.8383 70.0402 52.63 69.4518 53.2319C68.8633 53.8338 68.0798 54.2065 67.2416 54.2833C66.4033 54.3602 65.5651 54.136 64.8771 53.6511L64.847 53.6287C61.6727 51.3785 57.9993 49.9331 54.1428 49.4166C50.36 48.9309 46.5613 49.53 43.5248 51.3636C40.6826 53.0253 38.5755 56.2928 37.8911 59.7503C37.5374 61.4218 37.557 63.1507 37.9482 64.8138C38.3061 66.3356 39.0999 67.7201 40.2327 68.7976L35.3679 73.9509C33.6213 72.3639 31.4157 71.3728 29.0693 71.1206C26.6795 70.8214 25.6929 71.2497 23.5503 72.3497L23.2439 72.5027C23.1433 72.556 23.0538 72.6245 22.9575 72.6835L22.3822 73.0413L21.8512 73.4507L21.5813 73.6514C21.4956 73.7233 21.4191 73.8056 21.3366 73.8814L20.8401 74.3377L20.3883 74.8498L20.1569 75.1036L19.9537 75.3844L19.5376 75.944L19.175 76.55L18.9884 76.8519L18.8339 77.1745L18.5151 77.8187L18.2556 78.495L18.1219 78.8336L18.0218 79.1842L17.8131 79.8863L17.6687 80.606L17.5926 80.9665L17.5517 81.3313C17.3562 82.928 15.8488 84.5376 15.9058 86.1453C15.9064 86.3196 15.907 86.4892 15.9075 86.654C15.9108 86.8194 15.9293 86.9752 15.935 87.134C15.9546 87.4474 15.9478 87.7629 15.9598 88.0576C15.9823 88.3465 15.9944 88.6303 15.9975 88.9085C15.9967 89.0512 15.996 89.189 15.9954 89.3218C16.0005 89.455 16.0054 89.5835 16.0103 89.7074C16.0481 91.1904 15.4781 91.8273 14.175 91.1293C13.9961 91.0325 13.8232 90.9249 13.6573 90.8073C13.4727 90.6584 13.2966 90.4993 13.1297 90.3308C12.9467 90.1491 12.7561 89.945 12.558 89.7184C12.3615 89.4705 12.1786 89.2121 12.01 88.9444C11.116 87.5479 10.5266 85.9786 10.2803 84.3389C9.85358 81.7653 9.53214 79.1281 10.2803 76.6289C11.0285 74.1297 12.8266 71.8345 14.5974 69.9187C16.2381 68.2025 18.2279 66.8581 20.4324 65.9763C22.5689 65.1202 24.8454 64.667 27.1469 64.6398C29.4303 64.6044 31.7013 64.9826 33.85 65.7561C36.042 66.5397 38.0477 67.7691 39.7408 69.3667L39.7598 69.3848C40.2958 69.8955 40.6069 70.5983 40.6248 71.3385C40.6427 72.0787 40.3657 72.7957 39.855 73.3317C39.602 73.5971 39.2993 73.8101 38.9641 73.9585C38.6289 74.107 38.2677 74.1879 37.9012 74.1967C37.161 74.2146 36.444 73.9377 35.908 73.4269C34.5483 72.1436 33.4528 70.6065 32.6834 68.9024C31.939 67.2414 31.4819 65.466 31.3317 63.652C31.1408 61.0173 31.4713 58.3708 32.3042 55.8639C33.1371 53.3571 34.4561 51.039 36.1857 49.0424C37.3724 47.6795 38.7661 46.5117 40.3157 45.5817L41.4605 44.9288C41.8416 44.7086 42.2517 44.5523 42.6478 44.3633C43.4456 44.0021 44.2643 43.6891 45.0996 43.4259C46.7597 42.9205 48.4699 42.5975 50.2 42.4627C53.3253 42.2053 56.4716 42.4976 59.4961 43.3264C62.4576 44.1019 65.259 45.3942 67.7712 47.1438L68.8888 47.9484L64.1361 52.7582C63.4361 51.7131 62.832 50.6069 62.3313 49.4529C61.8524 48.3085 61.4754 47.1239 61.2048 45.9132C60.6984 43.5422 60.5828 41.1043 60.8626 38.696C61.4065 33.9564 63.3183 29.4776 66.3647 25.8061C67.1302 24.8827 67.9733 24.0264 68.8847 23.2466C69.801 22.4509 70.7884 21.7411 71.8346 21.1261C72.8874 20.5007 73.998 19.9783 75.1511 19.5661C76.2899 19.1575 77.4623 18.8494 78.6548 18.6454C83.358 17.894 88.1786 18.6038 92.4656 20.6789C95.5597 22.1383 98.3459 24.1763 100.674 26.6829C103.048 29.2164 104.836 32.2408 105.911 35.542L100.552 37.0252C100.293 35.841 100.277 34.6168 100.506 33.4264C100.745 32.2966 101.187 31.2194 101.809 30.2466C102.386 29.3468 103.086 28.5321 103.888 27.8262C104.271 27.4832 104.672 27.162 105.091 26.8639C105.515 26.5877 105.933 26.2962 106.381 26.0643C107.71 25.3158 109.158 24.8 110.662 24.5394L111.43 24.4209L112.159 24.3634C114.084 24.2301 116.017 24.4249 117.877 24.9395C120.461 25.6391 122.863 26.8929 124.914 28.6139C126.979 30.3542 128.6 32.562 129.641 35.054C130.151 36.2831 130.525 37.5638 130.759 38.8736C130.977 40.1768 131.058 41.4993 131.001 42.8194C130.89 45.4809 130.173 48.082 128.904 50.4242L128.899 50.4344C128.6 50.998 128.09 51.4199 127.481 51.6074C126.871 51.7949 126.212 51.7326 125.648 51.4342C125.085 51.1357 124.663 50.6256 124.475 50.016C124.288 49.4065 124.35 48.7474 124.649 48.1838C125.514 46.5503 126.767 45.1537 128.297 44.1164C129.753 43.1346 131.382 42.4388 133.097 42.0662C136.416 41.3334 139.879 41.632 143.022 42.9222C145.949 44.2045 148.601 46.0408 150.83 48.3299C152.936 50.4826 154.881 52.7872 156.65 55.2251L153.161 55.7277C153.895 53.9303 154.953 52.2828 156.281 50.8671C158.008 49.0477 160.147 47.6712 162.518 46.8541C164.794 46.0579 167.238 45.872 169.607 46.3151C171.699 46.7064 173.669 47.587 175.355 48.8851C177.041 50.1832 178.396 51.8619 179.309 53.7839C179.608 54.372 179.753 55.0263 179.73 55.6856C179.69 56.1319 179.524 56.3675 179.274 56.4143C178.749 56.5117 178.056 55.8314 176.927 54.6307C175.296 52.9184 173.21 51.7065 170.915 51.137C168.719 50.5833 166.4 50.7794 164.328 51.6941C161.657 52.829 159.262 55.0304 158.216 57.6795L158.201 57.7193C157.98 58.2784 157.615 58.7687 157.142 59.14C156.669 59.5113 156.107 59.7502 155.511 59.8322C154.916 59.9142 154.309 59.8363 153.754 59.6065C153.198 59.3767 152.714 59.0034 152.351 58.5247C151.725 57.7001 151.1 56.8908 150.467 56.1138L150.363 56.1445Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PeOLGPUFq\"},implicitPathVariables:undefined},{href:{webPageId:\"PeOLGPUFq\"},implicitPathVariables:undefined},{href:{webPageId:\"PeOLGPUFq\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+0+160+0+0+268},z0dMFkpq8:{y:(componentViewport?.y||0)+0+0+120+0+0+268}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+80+256.75+0+268,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n1nsn9-container\",nodeId:\"KgNXNRbMo\",rendersWithMotion:true,scopeId:\"d9Cnb39Sa\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{BI3GclLuy:resolvedLinks[1]},z0dMFkpq8:{BI3GclLuy:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{BI3GclLuy:resolvedLinks[0],FYxXrMdiK:\"Talk with us\",height:\"100%\",id:\"KgNXNRbMo\",layoutId:\"KgNXNRbMo\",variant:\"miNYh3gPq\",width:\"100%\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+236),pixelHeight:1280,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/y6qm7leGDMvqlDRbxQyrICgk.png\",srcSet:\"https://framerusercontent.com/images/y6qm7leGDMvqlDRbxQyrICgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/y6qm7leGDMvqlDRbxQyrICgk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y6qm7leGDMvqlDRbxQyrICgk.png 1280w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+236),pixelHeight:1280,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"240px\",src:\"https://framerusercontent.com/images/y6qm7leGDMvqlDRbxQyrICgk.png\",srcSet:\"https://framerusercontent.com/images/y6qm7leGDMvqlDRbxQyrICgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/y6qm7leGDMvqlDRbxQyrICgk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y6qm7leGDMvqlDRbxQyrICgk.png 1280w\"},className:\"framer-1or6s0e hidden-cng6u2\",\"data-framer-name\":\"Image\",style:{rotate:8}})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-k80as1 hidden-71pbkc hidden-cng6u2\",\"data-framer-name\":\"Scribble\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tl2sim\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:163,intrinsicWidth:168,svg:'<svg width=\"168\" height=\"163\" viewBox=\"0 0 168 163\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M90.3615 134.216C88.3382 134.729 86.367 135.42 84.4491 136.219C83.4824 136.605 82.5548 137.071 81.6175 137.517C80.7056 138.01 79.7835 138.487 78.9077 139.039L78.2418 139.439L77.597 139.87C77.1722 140.164 76.7277 140.432 76.3176 140.746L75.075 141.672C74.6684 141.985 74.2792 142.304 73.9116 142.624C72.4316 143.901 71.3315 145.272 70.947 146.595C70.7421 147.245 70.7039 147.941 70.7879 148.683C70.8904 149.424 71.122 150.196 71.4951 150.937C71.8541 151.682 72.3533 152.384 72.9147 153.015C73.4958 153.652 74.1605 154.213 74.8942 154.687C77.8305 156.603 81.8679 157.046 85.5517 156.152C87.3981 155.71 89.1698 154.945 90.7116 153.897C91.4859 153.364 92.1875 152.799 92.8389 152.103C93.1649 151.754 93.5135 151.425 93.7998 151.038C94.0996 150.664 94.4154 150.303 94.6729 149.893C96.8888 146.734 98.0969 142.807 98.3784 138.794C98.5209 136.785 98.4376 134.747 98.1402 132.742C97.8455 130.747 97.3185 128.746 96.632 126.79C95.2561 122.874 93.2107 119.14 90.8239 115.579C88.297 111.804 85.3643 108.183 82.3492 104.657C79.3226 101.14 76.1162 97.7816 72.7516 94.5988C66.0116 88.2442 58.5658 82.6693 50.4446 78.3129C44.9977 75.3728 39.2901 72.71 33.6588 69.714C30.8454 68.2075 28.0441 66.6269 25.321 64.8562C22.6049 63.0772 19.9464 61.1372 17.5085 58.8659C15.0575 56.6207 12.8448 54.0225 11.0557 51.1153C10.1828 49.6481 9.40235 48.1179 8.77406 46.5214C8.16722 44.915 7.63347 43.2954 7.32634 41.5886C6.64185 38.1953 6.62602 34.6979 7.1742 31.3267C7.72313 27.9506 8.8569 24.7094 10.3908 21.6959C11.9316 18.6829 13.8953 15.8961 16.2111 13.424C16.4886 13.1039 16.7945 12.8102 17.1002 12.5163L18.0144 11.6316C18.6372 11.0558 19.3018 10.5228 19.9459 9.96908C20.6213 9.46503 21.2886 8.9488 21.9779 8.46539L23.031 7.76916C23.3821 7.53718 23.7309 7.30092 24.098 7.0968C29.8695 3.62346 36.3749 1.61013 42.9303 0.795792C46.2139 0.39103 49.5213 0.273661 52.8128 0.416794C56.1065 0.559655 59.4011 0.971711 62.6432 1.68528C65.883 2.41061 69.0745 3.44568 72.1336 4.84601C75.1884 6.24797 78.1184 8.0164 80.7419 10.2175L81.7004 11.0734C82.0171 11.3622 82.3467 11.6359 82.639 11.9523L83.5383 12.8757C83.686 13.0317 83.8418 13.18 83.9824 13.3427L84.3997 13.8356C85.5307 15.1108 86.5929 16.5668 87.451 18.08C89.1879 21.1153 90.3416 24.4412 90.8714 27.8725C91.3893 31.3019 91.3199 34.8539 90.4659 38.3011C90.0383 40.0218 89.4184 41.7125 88.5912 43.3172C87.7688 44.9238 86.711 46.4284 85.4783 47.7767C84.272 49.1039 82.7589 50.3711 81.1175 51.2802C79.4726 52.1978 77.7065 52.8384 75.9112 53.2292C72.3134 54.013 68.6082 53.8041 65.1235 52.7695C63.3799 52.2506 61.6892 51.4983 60.119 50.4937C58.5537 49.489 57.0887 48.2462 55.8985 46.721C54.7072 45.2026 53.7859 43.4268 53.2573 41.5437C53.1349 41.0731 53.0286 40.5938 52.9362 40.1202L52.7552 38.7071C52.6949 37.7626 52.6634 36.8104 52.7583 35.875C52.9123 34.0003 53.3659 32.1859 54.0198 30.4923C54.6857 28.8029 55.5533 27.2394 56.5328 25.7816C57.512 24.3216 58.6188 22.9765 59.8206 21.7415C61.0198 20.5031 62.2998 19.3553 63.6601 18.309C66.3371 16.2684 69.2344 14.5308 72.2676 13.0989C75.3125 11.6942 78.4854 10.5904 81.7205 9.7932C84.9591 9.01208 88.2524 8.50756 91.5534 8.27674C94.855 8.05605 98.1623 8.08247 101.444 8.34003C104.724 8.60992 107.978 9.10058 111.185 9.79208C114.39 10.4947 117.545 11.4047 120.634 12.5007C128.239 15.226 135.38 19.1137 141.806 23.9784C148.221 28.847 153.924 34.7281 158.378 41.528C162.831 48.3172 165.975 56.0479 167.145 64.2092C168.289 72.4203 167.188 80.8007 164.293 88.4762C162.846 92.3195 160.921 95.9873 158.568 99.3821C157.39 101.079 156.081 102.689 154.692 104.231C153.284 105.758 151.763 107.187 150.156 108.523C148.528 109.836 146.803 111.034 144.996 112.112C143.17 113.158 141.267 114.078 139.295 114.842C137.309 115.568 135.281 116.177 133.193 116.581C131.11 116.99 128.989 117.205 126.859 117.229C122.605 117.275 118.275 116.556 114.244 114.84C112.235 113.98 110.301 112.88 108.557 111.512C106.809 110.161 105.263 108.585 103.931 106.886C101.261 103.479 99.4258 99.6431 98.0827 95.7685C97.4112 93.8256 96.8634 91.8646 96.403 89.8943C95.9441 87.9223 95.5709 85.9141 95.3219 83.8699C94.8247 79.7903 94.8395 75.5214 95.7825 71.3103C96.0124 70.2592 96.3184 69.2181 96.6689 68.1903C96.8426 67.6749 97.0652 67.1582 97.2645 66.6439C97.4871 66.1376 97.7283 65.6399 97.9653 65.1407C98.9735 63.1748 100.239 61.346 101.744 59.7087C103.25 58.0736 105 56.6271 106.98 55.4836C108.955 54.3406 111.176 53.5055 113.512 53.1669C115.838 52.8067 118.281 52.9404 120.559 53.5634C122.841 54.181 124.946 55.2552 126.777 56.6035C130.443 59.3209 133.075 63.0289 134.714 67.0859C135.128 68.1018 135.454 69.1521 135.741 70.2134C136.004 71.2823 136.217 72.366 136.343 73.468C136.458 74.571 136.533 75.6838 136.484 76.8062C136.482 77.086 136.464 77.3666 136.44 77.6472C136.416 77.9253 136.404 78.2142 136.368 78.4828L136.138 80.0881C135.762 82.2105 135.218 84.311 134.4 86.2805C134.302 86.5287 134.212 86.7811 134.107 87.0255L133.774 87.7488C133.546 88.2272 133.342 88.7209 133.091 89.1852L132.339 90.5781C132.094 91.0468 131.798 91.4776 131.528 91.9287C130.996 92.8365 130.371 93.6681 129.781 94.5299C129.143 95.3453 128.533 96.1914 127.85 96.963C126.532 98.5554 125.094 100.019 123.618 101.428C122.14 102.838 120.578 104.134 118.994 105.396C117.4 106.651 115.736 107.763 114.093 108.918C110.73 111.105 107.286 113.184 103.659 114.904L102.311 115.571C101.864 115.8 101.395 115.98 100.939 116.187L98.1808 117.389C97.2536 117.77 96.3091 118.109 95.3738 118.47L93.9674 119.003C93.4981 119.179 93.0163 119.32 92.5412 119.48L89.6809 120.411C88.719 120.694 87.7483 120.947 86.7822 121.215L85.3313 121.611C84.8452 121.734 84.3535 121.834 83.8649 121.946L80.9284 122.6L77.9647 123.12L76.4822 123.376L74.9893 123.565L72.0025 123.936L69.0006 124.165L67.4995 124.276L65.9942 124.317L62.9836 124.393L59.9715 124.327C59.4697 124.313 58.9673 124.311 58.4658 124.287L56.9626 124.179C55.9608 124.103 54.9576 124.043 53.9572 123.953L50.9642 123.585C48.9624 123.36 46.9998 122.99 45.067 122.641C41.2027 121.922 37.4537 121.129 33.7628 120.635C31.5399 120.343 29.3268 120.132 27.1599 120.129C25.0167 120.124 22.8714 120.308 20.7986 120.727C18.7301 121.155 16.7338 121.808 14.907 122.708C13.0937 123.628 11.4705 124.807 10.1335 126.224C7.48394 129.043 6.10065 133.051 6.07078 137.091C6.06301 138.097 6.13832 139.12 6.28964 140.101C6.44264 141.065 6.69419 142.024 7.03252 142.959C7.70948 144.829 8.73167 146.6 10.0113 148.135C11.2384 149.604 12.6432 150.795 14.1091 151.654C15.5756 152.515 17.0997 153.038 18.5814 153.239C19.3227 153.344 20.0548 153.358 20.7679 153.302L21.0351 153.285L21.2769 153.249C21.4367 153.22 21.6016 153.219 21.7573 153.173C21.9158 153.137 22.0733 153.102 22.2298 153.067C22.3841 153.018 22.5374 152.969 22.6897 152.92C23.9071 152.504 25.0039 151.785 25.9198 150.925C26.8442 150.07 27.5756 149.069 28.1624 148.062C28.7352 147.044 29.144 146.003 29.4078 144.993C29.9374 142.969 29.8598 141.074 29.3257 139.54C29.2328 139.259 29.1172 139.005 29.0197 138.758C28.898 138.527 28.7968 138.297 28.6842 138.095C28.5648 137.898 28.4557 137.711 28.3571 137.536C28.2459 137.373 28.1431 137.224 28.0543 137.083C27.6861 136.535 27.4773 136.206 27.5443 136.03C27.6042 135.863 27.9142 135.881 28.5009 136.116C29.0544 136.385 29.9 136.9 30.7212 137.925C31.5399 138.935 32.3125 140.457 32.6019 142.371C32.8899 144.276 32.7377 146.539 31.9006 148.889C31.4818 150.062 30.8932 151.258 30.0905 152.421C29.2842 153.577 28.2756 154.72 26.9711 155.687C25.6726 156.646 24.0888 157.468 22.2736 157.837C22.0506 157.88 21.8144 157.939 21.5977 157.966C21.3795 157.994 21.1603 158.023 20.94 158.051C20.4985 158.098 20.0485 158.128 19.5952 158.135C18.6864 158.159 17.7626 158.074 16.8365 157.928C14.4902 157.54 12.2653 156.603 10.31 155.325C8.3497 154.044 6.63877 152.428 5.20829 150.593C3.77964 148.756 2.62232 146.695 1.8213 144.468C1.42057 143.354 1.1081 142.2 0.901091 141.015C0.704219 139.844 0.584568 138.684 0.559257 137.506C0.538158 136.331 0.598763 135.153 0.743609 133.981C0.893525 132.81 1.14129 131.647 1.47069 130.504C1.79598 129.359 2.23555 128.24 2.7601 127.159C3.28458 126.079 3.90117 125.033 4.62785 124.061C4.97675 123.565 5.38715 123.121 5.76786 122.653C6.16629 122.201 6.60176 121.786 7.02015 121.356C7.46963 120.963 7.91349 120.56 8.37669 120.188C8.85506 119.84 9.31581 119.46 9.81201 119.146C11.7718 117.837 13.8838 116.861 16.0272 116.148C17.2599 115.725 18.5161 115.423 19.7738 115.153C21.0357 114.92 22.3016 114.718 23.5718 114.618C24.841 114.492 26.1123 114.468 27.3816 114.469C28.6375 114.492 29.8844 114.549 31.1174 114.662C36.0601 115.087 40.7749 116.122 45.3763 117.001C46.5275 117.222 47.6713 117.434 48.811 117.628L50.5169 117.906L52.2229 118.121C54.4924 118.453 56.7839 118.594 59.0724 118.749C63.6583 118.959 68.2603 118.775 72.8243 118.266L74.5343 118.057C75.1043 117.987 75.6757 117.926 76.2399 117.817L79.6362 117.234L83.0014 116.494L83.8426 116.308L84.6736 116.081L86.3357 115.628C90.7545 114.383 95.0973 112.845 99.2641 110.92C103.427 108.99 107.437 106.744 111.243 104.198C115.071 101.661 118.601 98.7858 121.715 95.5482C124.807 92.3071 127.407 88.6489 129.08 84.6643C129.917 82.6743 130.468 80.5956 130.747 78.4933C130.782 78.2318 130.83 77.9651 130.854 77.7082L130.91 76.9466C130.924 76.4356 130.936 75.9243 130.908 75.4101C130.861 74.3829 130.725 73.353 130.508 72.3359C130.066 70.3015 129.283 68.3272 128.237 66.5181C127.175 64.7198 125.845 63.0864 124.29 61.7697C122.731 60.4626 120.953 59.4827 119.081 58.9816C117.21 58.4574 115.248 58.4931 113.35 58.9424C113.11 58.9817 112.88 59.0716 112.645 59.1414C112.413 59.2208 112.174 59.2722 111.947 59.3709C111.491 59.5617 111.027 59.7278 110.59 59.9713C109.694 60.401 108.855 60.9727 108.051 61.5871C106.462 62.8521 105.058 64.4061 103.972 66.166C101.743 69.6333 100.846 73.9045 100.796 78.2256C100.773 82.5601 101.588 87.0118 102.836 91.3189C103.456 93.4642 104.219 95.5448 105.143 97.5168C106.059 99.4938 107.165 101.343 108.455 103.003C108.627 103.238 108.812 103.461 109.002 103.677C109.192 103.895 109.373 104.121 109.568 104.333C109.967 104.745 110.352 105.174 110.781 105.552C111.188 105.955 111.639 106.303 112.076 106.668C112.297 106.847 112.536 107.001 112.764 107.169C112.999 107.329 113.215 107.514 113.465 107.653C115.388 108.871 117.527 109.813 119.808 110.368C124.362 111.512 129.338 111.355 133.951 110.111C138.593 108.874 142.896 106.536 146.563 103.466C150.238 100.397 153.289 96.6254 155.664 92.5465C159.447 86.0214 161.577 78.4643 161.674 70.9041C161.692 69.0143 161.578 67.1285 161.353 65.258C161.11 63.401 160.721 61.5175 160.251 59.6727C159.276 55.9825 157.866 52.396 156.07 48.9937C152.479 42.1807 147.41 36.1163 141.486 31.0454C135.556 25.9723 128.761 21.8593 121.513 18.9007C114.27 15.9619 106.519 14.1693 98.7324 13.8206C90.9613 13.4738 83.1094 14.5706 76.0534 17.5527C74.2884 18.2893 72.5896 19.164 70.95 20.1294C70.1241 20.604 69.3375 21.1382 68.5443 21.6621C67.7751 22.2205 66.9956 22.7726 66.2852 23.36C63.4135 25.7075 60.9496 28.6062 59.5085 31.8049C58.7912 33.4001 58.3462 35.0619 58.256 36.7093L58.232 37.0184L58.2411 37.3259L58.2534 37.9409C58.266 38.3505 58.3486 38.7524 58.3845 39.1598C58.5302 39.9416 58.7407 40.6988 59.0648 41.417C60.3317 44.3058 63.2479 46.4898 66.5681 47.5353C69.0399 48.3164 71.7418 48.5141 74.2806 48.0713C75.55 47.852 76.7776 47.4681 77.8996 46.9136C78.4582 46.6336 79.0023 46.3283 79.5025 45.9679L79.8796 45.7002C80.0042 45.6096 80.1159 45.5043 80.2354 45.4079L80.5899 45.1135L80.9378 44.7789C81.8647 43.8864 82.6747 42.8728 83.353 41.7661C84.0266 40.6562 84.5644 39.4532 84.9701 38.1962C85.7796 35.6803 86.0608 32.9494 85.8355 30.2457C85.6153 27.5411 84.9166 24.8584 83.7837 22.391C83.2161 21.1582 82.5442 19.9757 81.7596 18.8821C81.554 18.614 81.3698 18.3387 81.1489 18.075L80.4848 17.2837C80.0613 16.74 79.5584 16.2625 79.0828 15.762C75.1851 11.8181 70.0217 9.12371 64.5488 7.49081C59.0589 5.85547 53.2126 5.24266 47.4321 5.49882C41.6598 5.77601 35.9307 6.98036 30.7299 9.29858C28.1324 10.4562 25.674 11.8929 23.4379 13.6058C21.2169 15.3054 19.2341 17.3096 17.5533 19.5509C14.2062 24.0289 12.0475 29.4311 11.7384 34.9138C11.5976 37.3583 11.8444 39.7867 12.4641 42.1463C13.1004 44.5149 14.0626 46.7902 15.3709 48.886C16.6764 50.9833 18.2775 52.9202 20.0791 54.6976C21.8844 56.4741 23.8987 58.0807 26.0129 59.579C30.2525 62.5735 34.9103 65.1027 39.656 67.5461C44.4051 69.9931 49.2677 72.3436 54.0425 75.0151C63.6358 80.4121 72.2383 87.3601 79.8565 95.1485C81.7598 97.0998 83.6028 99.1054 85.3966 101.151C87.1749 103.213 88.9217 105.288 90.5977 107.439C92.2747 109.59 93.8984 111.803 95.3985 114.119C96.8937 116.438 98.2699 118.857 99.4482 121.392C100.613 123.932 101.568 126.593 102.23 129.342C102.889 132.115 103.172 134.972 103.103 137.823C103.042 140.675 102.55 143.53 101.649 146.275C100.758 149.022 99.3606 151.642 97.4972 153.921C97.055 154.509 96.5225 155.024 96.0194 155.562C95.5066 156.096 94.925 156.592 94.3408 157.056C93.1555 157.975 91.8711 158.748 90.5254 159.377C87.8256 160.614 84.8848 161.284 81.9077 161.3C78.9396 161.318 75.901 160.67 73.2156 159.187C70.5422 157.711 68.2664 155.406 66.994 152.541C66.3546 151.115 65.9679 149.528 65.9741 147.88C65.9837 147.058 66.0995 146.223 66.3191 145.42C66.5404 144.62 66.8656 143.861 67.2563 143.163C68.0412 141.762 69.066 140.614 70.1286 139.612C70.6619 139.111 71.2097 138.645 71.761 138.202C72.3138 137.763 72.8798 137.356 73.4391 136.932C77.9802 133.643 83.1264 131.241 88.4974 129.745C99.2488 126.755 110.9 127.282 121.317 131.235C123.391 132.028 125.419 132.932 127.349 134.006C129.281 135.071 131.154 136.238 132.895 137.57C134.649 138.892 136.299 140.307 137.834 141.878C139.36 143.456 140.775 145.21 141.824 147.25C142.345 148.268 142.767 149.358 143.031 150.502C143.29 151.644 143.415 152.825 143.279 154.071C143.141 155.288 142.772 156.446 142.227 157.504C141.681 158.562 140.957 159.529 140.054 160.338C139.154 161.144 138.057 161.795 136.821 162.119C135.588 162.446 134.241 162.413 133.044 162.016C131.834 161.625 130.782 160.897 129.972 160.025C129.157 159.151 128.56 158.139 128.146 157.08C127.733 156.02 127.508 154.903 127.468 153.775C127.453 153.214 127.482 152.637 127.561 152.088C127.64 151.547 127.75 151.013 127.899 150.494C128.487 148.41 129.55 146.581 130.727 144.947C131.915 143.306 133.213 141.845 134.526 140.404C135.846 138.968 137.23 137.594 138.708 136.336C140.183 135.078 141.751 133.932 143.422 132.975C145.091 132.02 146.876 131.278 148.713 130.805C152.407 129.837 156.331 130.299 159.554 131.914C161.035 132.661 162.175 133.556 162.962 134.451C163.741 135.353 164.24 136.183 164.493 136.875C164.782 137.552 164.837 138.079 164.848 138.389C164.857 138.7 164.786 138.817 164.645 138.748C164.504 138.681 164.292 138.436 164.029 138.026C163.73 137.631 163.342 137.085 162.761 136.464C162.156 135.863 161.386 135.167 160.309 134.535C159.229 133.919 157.872 133.336 156.233 133.012C155.078 132.765 153.882 132.7 152.708 132.755C152.117 132.771 151.539 132.87 150.961 132.956L150.114 133.153C149.831 133.218 149.537 133.329 149.249 133.413C148.096 133.793 146.973 134.296 145.889 134.902C144.805 135.51 143.768 136.236 142.764 137.027C140.754 138.611 138.917 140.514 137.168 142.548C136.298 143.563 135.427 144.634 134.639 145.679C133.854 146.729 133.146 147.786 132.592 148.855C132.035 149.923 131.641 150.999 131.457 152.058C131.425 152.19 131.42 152.323 131.4 152.455C131.381 152.588 131.363 152.721 131.364 152.833C131.36 152.952 131.348 153.068 131.347 153.187L131.361 153.55C131.402 154.033 131.469 154.528 131.626 155C131.913 155.947 132.435 156.81 133.05 157.374C133.36 157.649 133.68 157.86 134.005 157.998C134.332 158.121 134.674 158.18 135.006 158.19C135.655 158.166 136.364 157.914 137.031 157.316C137.705 156.755 138.252 155.896 138.593 155.008C138.742 154.559 138.876 154.1 138.902 153.655C138.941 153.429 138.919 153.217 138.926 153.002C138.931 152.898 138.903 152.756 138.896 152.634C138.882 152.508 138.879 152.382 138.85 152.255C138.779 151.749 138.634 151.243 138.466 150.735C138.271 150.23 138.066 149.722 137.78 149.222C136.886 147.569 135.529 145.986 133.98 144.506C132.399 143.027 130.697 141.637 128.889 140.395C127.081 139.149 125.151 138.067 123.158 137.108C121.16 136.157 119.092 135.327 116.957 134.683C112.698 133.378 108.235 132.637 103.756 132.55C99.2784 132.432 94.7906 132.964 90.4912 134.089C90.4512 134.131 90.413 134.17 90.3615 134.216Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+724-240),pixelHeight:1280,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png\",srcSet:\"https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png 1280w\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+684-220),pixelHeight:1280,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png\",srcSet:\"https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png 1280w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1037.5-240),pixelHeight:1280,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"240px\",src:\"https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png\",srcSet:\"https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AQg9nyDn3FdY7l0jPwEte6TTxQ.png 1280w\"},className:\"framer-h8vckp\",\"data-framer-name\":\"Image\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-uflky1 hidden-71pbkc hidden-cng6u2\",\"data-framer-name\":\"Scribble\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t7yl8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:167,intrinsicWidth:170,svg:'<svg width=\"170\" height=\"167\" viewBox=\"0 0 170 167\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M80.3352 18.2801C80.1347 15.927 80.2183 13.3676 81.0006 10.8117L81.3544 9.86711L81.5365 9.39697C81.6062 9.24312 81.6869 9.0927 81.7627 8.94075L82.2323 8.03594C82.4039 7.74304 82.6033 7.46589 82.791 7.18246C83.1593 6.61733 83.5969 6.068 84.0721 5.57524C84.3021 5.31874 84.5578 5.0949 84.8025 4.85647C85.0606 4.63842 85.3116 4.40651 85.5806 4.20646C86.6432 3.37951 87.7944 2.71425 88.987 2.20837C90.1784 1.69478 91.4095 1.32971 92.658 1.09551C95.1558 0.636936 97.7034 0.663863 100.142 1.1657C102.586 1.6457 104.917 2.59482 107.029 3.90851C109.122 5.24234 111.011 6.98372 112.442 9.02433C115.321 13.082 116.63 18.1333 115.98 23.0793C115.651 25.579 114.862 27.7165 114.298 29.6567C113.717 31.5948 113.34 33.3463 113.519 34.8566C113.655 36.3277 114.384 37.8009 115.476 38.9963C116.567 40.1897 118.021 41.1187 119.561 41.5247C121.083 41.9384 122.806 41.8949 124.437 41.4294C126.074 40.9631 127.625 40.0731 128.895 38.9111C129.216 38.6233 129.509 38.3087 129.792 37.9886L130.197 37.4909L130.59 36.9457C131.106 36.1893 131.592 35.3384 132.085 34.4334C133.082 32.6316 134.048 30.5687 135.687 28.5826C136.552 27.5405 137.645 26.5381 138.943 25.8052C140.243 25.0376 141.682 24.6338 143.035 24.4319C145.719 24.0468 148.41 24.3472 150.912 25.1759C153.41 26.0067 155.679 27.3546 157.604 29.03C159.534 30.7057 161.159 32.6869 162.421 34.8756C163.678 37.0661 164.59 39.46 165.062 41.9673C165.291 43.222 165.408 44.503 165.399 45.7905C165.403 46.1122 165.394 46.4341 165.369 46.7565C165.35 47.0786 165.336 47.4032 165.285 47.7133C165.197 48.3396 165.125 48.9698 165.015 49.5915C164.547 52.0794 163.629 54.4528 162.422 56.6299C161.21 58.8083 159.694 60.7906 157.968 62.547C155.651 64.8793 152.962 66.8175 150.029 68.2949C147.106 69.762 143.83 70.7053 140.686 71.1646C137.525 71.6537 134.44 71.7853 131.461 71.9897C128.487 72.1875 125.61 72.4494 122.911 73.0876C117.56 74.3754 112.58 77.3222 108.846 81.3918C106.956 83.4064 105.41 85.7172 104.223 88.1785C103.647 89.3567 103.249 90.5731 103.046 91.7658C102.953 92.3567 102.901 92.9395 102.926 93.4774C102.955 94.013 103.045 94.5038 103.191 94.928C103.331 95.3589 103.557 95.6922 103.824 95.9991C103.945 96.164 104.128 96.2769 104.275 96.423C104.357 96.4853 104.45 96.5286 104.533 96.5878L104.66 96.6737L104.804 96.7348C105.531 97.108 106.584 97.2007 107.756 97.0605C108.934 96.9001 110.197 96.5406 111.446 96.0283C112.073 95.7843 112.694 95.4873 113.316 95.1871L115.294 94.1832C117.92 92.8237 120.504 91.3816 123.038 89.8598C124.305 89.099 125.561 88.3181 126.803 87.5179L130.59 85.0397C131.904 84.2001 133.289 83.3664 134.797 82.6393C135.551 82.2777 136.336 81.9442 137.15 81.6549C137.965 81.3672 138.82 81.1281 139.675 80.9461C143.116 80.2036 146.697 80.4848 149.96 81.4521C153.238 82.422 156.221 84.0871 158.824 86.167C161.425 88.2549 163.657 90.785 165.37 93.6647C166.22 95.0963 166.968 96.6454 167.506 98.209C167.777 98.9863 168.059 99.7608 168.253 100.559L168.573 101.748C168.662 102.148 168.736 102.55 168.818 102.951C169.453 106.163 169.609 109.43 169.403 112.634C168.959 119.054 167.139 125.193 164.617 130.922C163.998 132.35 163.286 133.833 162.355 135.304C161.419 136.765 160.218 138.25 158.556 139.416C157.728 139.998 156.804 140.471 155.791 140.813C154.783 141.134 153.744 141.295 152.722 141.317C151.697 141.345 150.698 141.21 149.74 140.978C148.782 140.744 147.862 140.407 147.002 139.962C146.141 139.52 145.321 138.999 144.575 138.374C143.832 137.755 143.137 137.021 142.568 136.283C141.424 134.777 140.598 133.09 140.079 131.374C139.545 129.656 139.3 127.907 139.241 126.178C139.215 125.322 139.251 124.419 139.3 123.663L139.436 121.451C139.508 120.053 139.49 118.743 139.264 117.782C139.147 117.313 138.989 116.957 138.822 116.708C138.773 116.655 138.737 116.591 138.693 116.535C138.638 116.492 138.59 116.445 138.545 116.392C138.499 116.34 138.423 116.312 138.37 116.263C138.316 116.208 138.253 116.183 138.194 116.154C137.958 116.032 137.715 115.967 137.373 115.961C137.034 115.957 136.607 116.029 136.146 116.186C135.216 116.498 134.196 117.148 133.333 117.919C133.225 118.022 133.123 118.108 133.009 118.222L132.667 118.57C132.432 118.796 132.223 119.047 132.001 119.287C131.781 119.528 131.583 119.789 131.371 120.037L130.781 120.821C130.021 121.887 129.364 123.028 128.822 124.221C128.279 125.413 127.851 126.657 127.561 127.928C127.26 129.219 127.124 130.419 127.021 131.935C126.966 132.675 126.91 133.466 126.815 134.292C126.724 135.114 126.59 135.99 126.355 136.906C126.25 137.358 126.085 137.835 125.92 138.305L125.613 139.021C125.513 139.259 125.366 139.499 125.24 139.736C124.697 140.676 123.959 141.598 123.057 142.298C122.841 142.488 122.601 142.626 122.371 142.787C122.139 142.942 121.904 143.096 121.648 143.226C121.146 143.492 120.627 143.704 120.106 143.869C119.585 144.034 119.062 144.15 118.542 144.229C118.007 144.313 117.547 144.319 117.058 144.349C115.117 144.425 113.187 144.035 111.47 143.375C109.744 142.718 108.205 141.813 106.82 140.811C105.439 139.803 104.204 138.694 103.056 137.549C101.9 136.393 100.876 135.234 99.8756 134.127C98.8758 133.017 97.9025 131.949 96.9123 130.978C96.3025 130.382 95.6848 129.828 95.0583 129.315C94.4301 128.808 93.7878 128.361 93.135 127.963C92.8059 127.774 92.4772 127.586 92.1403 127.429L91.8914 127.306L91.6604 127.215C91.5041 127.158 91.3603 127.079 91.1962 127.034C90.5605 126.811 89.8733 126.685 89.1854 126.606C88.4924 126.543 87.7989 126.57 87.1292 126.652C86.465 126.755 85.842 126.939 85.2847 127.178C84.7328 127.426 84.2868 127.755 83.9231 128.109C83.5454 128.458 83.3282 128.888 83.1366 129.353C82.9622 129.828 82.8845 130.339 82.9077 130.906C82.9312 131.472 83.0585 132.087 83.2846 132.715C83.7454 133.973 84.5745 135.249 85.5888 136.335C85.7211 136.468 85.8407 136.6 85.9816 136.738L86.4189 137.153C86.7216 137.428 87.0319 137.702 87.3569 137.973C88.0074 138.518 88.7046 139.057 89.4313 139.612C90.8821 140.724 92.4637 141.885 93.9911 143.328C94.3712 143.691 94.7482 144.065 95.1144 144.464C95.4799 144.864 95.8722 145.318 96.2033 145.773C96.8866 146.688 97.4739 147.668 97.9555 148.719C98.4376 149.768 98.8048 150.898 99.0116 152.106C99.2161 153.311 99.2536 154.608 99.012 155.924C98.9813 156.089 98.955 156.253 98.9171 156.417L98.7783 156.907L98.6311 157.395L98.4365 157.872L98.2329 158.346C98.1598 158.502 98.0705 158.65 97.988 158.801L97.7304 159.248L97.6649 159.36L97.6078 159.445L97.4943 159.611C96.9075 160.506 96.2207 161.374 95.4449 162.195C94.6672 163.014 93.783 163.782 92.7863 164.437C91.7916 165.093 90.6843 165.629 89.5269 165.996C87.2 166.745 84.764 166.774 82.5884 166.421C80.3962 166.069 78.4006 165.381 76.5337 164.581C72.8064 162.958 69.5443 160.879 66.3933 158.809L61.7655 155.716C60.2475 154.713 58.7371 153.74 57.2645 152.945C56.5315 152.55 55.8067 152.205 55.1446 151.959C54.8217 151.847 54.5063 151.746 54.2468 151.695C53.8985 151.639 53.4974 151.552 53.1265 151.518C51.6129 151.332 50.1177 151.404 48.5918 151.725C47.0655 152.036 45.5036 152.609 43.8463 153.286C42.1817 153.962 40.4262 154.757 38.443 155.399C37.4547 155.719 36.4155 155.998 35.3323 156.195C34.2457 156.385 33.1203 156.485 31.9918 156.48C30.8607 156.486 29.736 156.343 28.6431 156.138L27.8292 155.963C27.5613 155.897 27.2995 155.819 27.0346 155.747L26.6387 155.635L26.2906 155.528L25.6046 155.31C23.7636 154.713 21.7756 154.013 19.8249 152.828C18.8535 152.24 17.9042 151.516 17.053 150.664C16.2037 149.814 15.4715 148.838 14.8831 147.797C13.6997 145.707 13.1304 143.385 13.0121 141.15C12.8883 138.904 13.2061 136.725 13.7917 134.66C14.378 132.592 15.2647 130.639 16.3933 128.822C16.9572 127.913 17.5892 127.041 18.2927 126.217C18.9879 125.391 19.7889 124.603 20.5466 123.939C23.6382 121.184 27.1583 119.165 30.6238 117.502C34.0955 115.826 37.5605 114.436 40.8101 112.907C42.4501 112.138 43.9634 111.359 45.4362 110.462C46.9034 109.572 48.3073 108.595 49.5814 107.512C52.1303 105.361 54.2502 102.814 55.3189 100.01L55.6645 98.9507C55.7725 98.5966 55.8222 98.2326 55.9106 97.8755C55.9292 97.7857 55.9536 97.6966 55.9686 97.6063L55.9958 97.3329L56.0551 96.7871C56.1092 96.4141 56.1164 96.0812 56.1105 95.7467C56.0974 95.0806 55.9915 94.458 55.8212 93.9592C55.6428 93.4639 55.4194 93.1106 55.1662 92.88C54.8769 92.6297 54.5964 92.4757 54.1904 92.3881C53.7876 92.3008 53.2466 92.302 52.6374 92.4168C51.4128 92.6402 49.995 93.2897 48.7433 94.1454C48.5835 94.2491 48.4278 94.3578 48.2777 94.4739C48.1248 94.5879 47.9794 94.6912 47.7952 94.8396L46.7273 95.687C46.0002 96.2679 45.2322 96.8772 44.4036 97.4748C43.5736 98.0722 42.6793 98.6644 41.6702 99.1933C40.6625 99.718 39.5309 100.188 38.2602 100.448C37.942 100.508 37.6154 100.554 37.2926 100.601C36.9662 100.639 36.6295 100.647 36.298 100.664C35.6307 100.667 34.9647 100.627 34.2766 100.486C32.9159 100.227 31.6244 99.6591 30.5357 98.9011C29.4467 98.1382 28.5661 97.1987 27.8471 96.1939C27.1313 95.185 26.5705 94.1029 26.185 92.969C25.7935 91.8368 25.5459 90.6597 25.4561 89.4517C25.433 88.8432 25.4157 88.2349 25.4757 87.6159C25.4909 87.2994 25.5322 87.014 25.576 86.7309C25.6179 86.4451 25.6579 86.1586 25.724 85.8803C26.1715 83.6153 27.1296 81.5803 28.2337 79.7733C30.4762 76.1721 33.4359 73.4361 35.9661 70.882C37.2382 69.5974 38.4304 68.3365 39.4363 67.0355C40.4242 65.752 41.3183 64.3345 41.7081 63.1442C41.9134 62.5371 42.0075 61.9686 41.9972 61.4656C41.992 60.9589 41.8774 60.5171 41.6607 60.0826C41.2507 59.2184 40.2944 58.3529 39.0611 57.7583C38.4503 57.4574 37.7798 57.2163 37.0973 57.0597C36.4174 56.8972 35.7208 56.8149 35.1016 56.8277C34.3983 56.853 33.6183 56.931 32.8575 57.0778C32.0872 57.23 31.3036 57.434 30.5076 57.6805C28.911 58.1864 27.2681 58.8588 25.5425 59.567C24.6799 59.9209 23.7896 60.2803 22.8744 60.6273C21.9724 60.9741 20.9612 61.3123 19.9723 61.5913C17.9716 62.1459 15.8618 62.5216 13.6216 62.5114C12.5069 62.5176 11.3491 62.3843 10.1947 62.1303C9.03953 61.8809 7.87542 61.4539 6.79169 60.8521C4.59833 59.6873 2.82734 57.7318 1.74684 55.5732C1.59318 55.3075 1.49662 55.0301 1.37911 54.7562C1.26945 54.4812 1.14812 54.2062 1.05346 53.9294L0.802461 53.0957L0.680586 52.6778L0.592796 52.2614L0.424276 51.4273C0.371899 51.1494 0.349631 50.8756 0.312503 50.5993C0.232124 50.0448 0.207945 49.5013 0.185481 48.9571C0.105492 46.7815 0.371899 44.6907 0.834283 42.6731C0.949684 42.1683 1.07195 41.6656 1.22144 41.172C1.35568 40.6733 1.5185 40.184 1.68534 39.6958C1.84208 39.1926 2.03841 38.7616 2.21492 38.2934L2.75975 36.9152C4.60617 32.5177 7.14877 28.44 10.1079 24.7433C10.4624 24.2673 10.869 23.8367 11.2508 23.3847C11.641 22.94 12.0203 22.485 12.4206 22.0503L13.6463 20.7708L14.26 20.132L14.9004 19.5219L16.185 18.3066C16.615 17.9039 17.0719 17.5324 17.5142 17.1444C17.9648 16.7663 18.3961 16.3644 18.8627 16.0072L20.249 14.9196C23.9624 12.0416 28.0033 9.63927 32.1964 7.62613C34.2774 6.61066 36.4709 5.68823 38.8285 5.00147C41.1778 4.32255 43.7355 3.91259 46.3533 4.11598C46.6677 4.14845 46.9718 4.16762 47.2891 4.21468C47.6073 4.26706 47.9262 4.31122 48.2372 4.37555C48.5457 4.44772 48.8533 4.51763 49.1559 4.59609C49.4535 4.68894 49.7494 4.7812 50.0439 4.87308C51.2057 5.28079 52.2848 5.82318 53.2673 6.47944C54.2491 7.13597 55.135 7.90856 55.8925 8.78528C56.65 9.66158 57.26 10.6621 57.6934 11.7158C57.8025 11.9795 57.9107 12.2405 57.9834 12.5164C58.0594 12.7896 58.1527 13.0551 58.2043 13.3308C58.2533 13.6065 58.3018 13.8805 58.3502 14.1528C58.3856 14.4318 58.3982 14.7225 58.417 15.0034C58.4458 16.1245 58.2668 17.1276 58.0299 18.0311C57.5399 19.8374 56.8129 21.2735 56.1288 22.5928C54.7259 25.1925 53.3729 27.2716 52.4031 29.18C51.4266 31.0752 50.8202 32.7745 50.82 34.3007C50.8097 34.5801 50.8471 34.8356 50.857 35.0864C50.9036 35.325 50.9274 35.5608 50.9771 35.7726C51.0329 35.9874 51.0843 36.1845 51.131 36.3642C51.1963 36.5389 51.2534 36.7024 51.3022 36.8536C51.5162 37.4458 51.6393 37.8048 51.5339 37.9603C51.438 38.1097 51.1464 38.032 50.6376 37.6839C50.1729 37.3087 49.4634 36.6132 48.9874 35.3875C48.8744 35.0835 48.7541 34.7542 48.6869 34.3989C48.5935 34.0416 48.5547 33.6682 48.5136 33.2698C48.4622 32.4841 48.49 31.6193 48.6398 30.739C48.9257 28.9685 49.5848 27.09 50.4154 25.1299C51.2312 23.1681 52.2631 21.0829 53.0226 18.907C53.4023 17.8256 53.6628 16.7225 53.6879 15.7611C53.678 15.5304 53.6815 15.2951 53.6415 15.0891L53.6236 14.9279L53.5792 14.7547L53.4988 14.4053C53.3402 13.9488 53.16 13.4863 52.8716 13.046C52.1618 11.9279 51.0036 10.946 49.6379 10.286C48.9531 9.96046 48.2222 9.71218 47.4801 9.55616C47.2946 9.51352 47.109 9.47573 46.9221 9.4566C46.7346 9.43255 46.5552 9.39766 46.3493 9.38952C45.9513 9.35211 45.5467 9.34396 45.1391 9.3447C43.5068 9.35956 41.8032 9.70733 40.0909 10.2524C38.3783 10.8042 36.6481 11.539 34.9222 12.4035C28.007 15.7747 21.6291 20.3976 16.577 25.9137C13.688 29.1005 11.1989 32.6267 9.23765 36.4129C9.00077 36.8896 8.78213 37.3749 8.5525 37.8553C8.32895 38.3381 8.08384 38.8124 7.90105 39.3117C7.51046 40.2983 7.08637 41.2931 6.79103 42.2481C6.19441 44.1923 5.81661 46.2109 5.80214 48.1587C5.7993 49.1277 5.85795 50.0883 6.06095 50.9742C6.25158 51.8631 6.52427 52.7105 6.94894 53.4266C7.36827 54.1445 7.8512 54.8055 8.50379 55.303C9.12611 55.8282 9.85011 56.22 10.6551 56.494C12.2667 57.0432 14.21 57.0814 16.1726 56.7695C17.156 56.6113 18.1476 56.3714 19.1305 56.0689C20.1015 55.771 21.1089 55.3883 22.1353 54.9817C24.1859 54.1709 26.3065 53.2346 28.6286 52.4919C29.7887 52.1219 31 51.8023 32.2628 51.591C32.5764 51.5332 32.8946 51.4873 33.218 51.4539C33.5385 51.4134 33.8605 51.3779 34.1884 51.363C34.8121 51.3093 35.5742 51.3071 36.2521 51.3656C37.6318 51.4832 38.9457 51.789 40.2129 52.2668C40.847 52.5018 41.467 52.786 42.0705 53.1195C42.6755 53.4471 43.2616 53.8328 43.8205 54.2756C44.3814 54.7127 44.9119 55.2185 45.3905 55.7909C45.8726 56.3568 46.3017 56.9972 46.6372 57.6973C46.979 58.3913 47.2354 59.1438 47.37 59.9108C47.4545 60.2935 47.4761 60.6784 47.513 61.0632C47.5145 61.4422 47.5387 61.8313 47.497 62.2004C47.3868 63.6998 46.9567 65.0792 46.3834 66.2932C46.2341 66.5901 46.0848 66.8932 45.9311 67.1831L45.4556 68.0068C45.1256 68.5446 44.7796 69.0667 44.4189 69.572C42.9682 71.5889 41.3116 73.3139 39.6999 74.9381C38.0833 76.5656 36.4999 78.087 35.1434 79.6851C33.7817 81.2825 32.6117 82.9651 31.8608 84.7196C31.4853 85.5956 31.217 86.4857 31.0745 87.3794C30.9999 87.8434 30.9679 88.2339 30.9729 88.6568C30.9744 89.0759 31.0161 89.5029 31.0936 89.9248C31.3913 91.6142 32.2899 93.2545 33.4884 94.1939C34.0851 94.666 34.7335 94.9607 35.4116 95.0714C36.1076 95.188 36.8608 95.1365 37.6371 94.8979C39.2133 94.415 40.8893 93.2254 42.5938 91.866L43.909 90.8141L44.5997 90.2697C44.8598 90.078 45.1142 89.878 45.3806 89.6955C46.4399 88.9577 47.5683 88.3143 48.799 87.7955C50.0297 87.2822 51.369 86.8823 52.8633 86.7681C53.2284 86.7263 53.6275 86.7512 54.0082 86.7493C54.3999 86.7754 54.7994 86.8202 55.1963 86.887C55.9948 87.056 56.8117 87.3084 57.546 87.7421C57.7296 87.8483 57.9183 87.9493 58.0927 88.067L58.5934 88.4494C58.9268 88.7 59.2378 88.9988 59.5152 89.3133C60.0757 89.9425 60.512 90.6469 60.8353 91.3596C61.4811 92.7937 61.7119 94.2365 61.7524 95.6139C61.7614 95.9594 61.7566 96.3022 61.7412 96.643C61.7184 96.9771 61.6784 97.2997 61.6456 97.6286C61.6075 97.9553 61.582 98.2846 61.5298 98.6089L61.3276 99.5739C61.0604 100.862 60.6045 102.095 60.0768 103.276C59.0011 105.637 57.4731 107.694 55.7726 109.489C54.0655 111.287 52.1702 112.833 50.1819 114.195L49.4345 114.703L48.6713 115.181L47.9059 115.656L47.1269 116.102C46.6106 116.406 46.082 116.684 45.5522 116.96C45.0211 117.247 44.4993 117.495 43.9751 117.754C41.879 118.774 39.7814 119.692 37.7282 120.606C33.6296 122.428 29.6786 124.27 26.3755 126.744C25.5455 127.355 24.7729 128.017 24.0382 128.708C23.3207 129.376 22.7149 130.079 22.1419 130.862C21.0098 132.417 20.1391 134.196 19.598 136.036C19.3007 137.051 19.1027 138.088 19.0191 139.114C18.945 140.14 18.9897 141.152 19.1605 142.109C19.3397 143.064 19.6553 143.955 20.0925 144.752C20.5453 145.54 21.1166 146.237 21.814 146.828C23.2163 148.014 25.2459 148.821 27.5636 149.537L28.4404 149.806L29.1947 150.011L29.9472 150.168C30.1977 150.214 30.4477 150.24 30.6973 150.28C31.6967 150.398 32.6877 150.385 33.6956 150.239C35.7123 149.959 37.799 149.142 40.1065 148.161C42.405 147.199 44.9666 146.101 47.852 145.584C49.285 145.323 50.7757 145.211 52.2477 145.273C52.9847 145.3 53.7146 145.379 54.4339 145.485C54.7989 145.548 55.1323 145.599 55.5212 145.678C55.9501 145.77 56.3483 145.882 56.7291 146.004C58.2324 146.505 59.4548 147.144 60.6173 147.795C61.777 148.449 62.8459 149.134 63.8919 149.82C67.2066 152.017 70.2989 154.267 73.481 156.222C75.0671 157.198 76.6671 158.106 78.2827 158.859C79.8955 159.612 81.5297 160.216 83.1162 160.532C84.7029 160.848 86.2196 160.863 87.5593 160.473C88.9023 160.094 90.1174 159.316 91.1948 158.191C91.7311 157.63 92.2373 157 92.6956 156.304C92.7664 156.209 92.7862 156.158 92.8207 156.098L92.9235 155.922C93.0008 155.809 93.0294 155.672 93.0936 155.551C93.1922 155.296 93.2648 155.023 93.3107 154.732C93.4975 153.567 93.1789 152.092 92.497 150.739C91.2299 148.034 88.2574 145.967 85.0957 143.519C84.3047 142.899 83.4992 142.245 82.7081 141.526C81.9291 140.822 81.1091 139.985 80.4108 139.093C79.014 137.305 77.8655 135.232 77.3747 132.769C77.1369 131.543 77.0916 130.213 77.3433 128.891C77.4189 128.563 77.4943 128.234 77.584 127.91C77.6943 127.591 77.8084 127.273 77.9293 126.958C78.0784 126.651 78.2326 126.346 78.3918 126.044C78.4661 125.89 78.5562 125.746 78.6569 125.606L78.9502 125.185C79.7555 124.081 80.7947 123.173 81.9154 122.522C83.0406 121.881 84.2281 121.459 85.4197 121.197C87.8067 120.707 90.2122 120.821 92.5124 121.506C92.7988 121.6 93.0883 121.675 93.3701 121.789L94.2143 122.134C94.7374 122.383 95.2472 122.627 95.7318 122.916C96.7108 123.474 97.6285 124.105 98.4707 124.783C101.858 127.495 104.291 130.725 106.84 133.324C107.474 133.975 108.129 134.582 108.793 135.162C109.462 135.731 110.148 136.256 110.848 136.728C111.552 137.182 112.268 137.591 112.994 137.91C113.721 138.215 114.453 138.455 115.185 138.592C115.917 138.709 116.647 138.758 117.375 138.692C118.046 138.644 118.617 138.467 119.079 138.208C119.567 137.917 119.936 137.581 120.238 137.11C120.543 136.641 120.78 136.009 120.948 135.256C121.295 133.74 121.334 131.871 121.542 129.795C121.767 127.65 122.27 125.522 123.032 123.506C123.795 121.488 124.808 119.565 126.053 117.799C126.677 116.917 127.348 116.065 128.087 115.27C128.447 114.861 128.834 114.493 129.228 114.1C129.655 113.701 130.094 113.317 130.564 112.968C131.497 112.264 132.516 111.647 133.668 111.168C134.821 110.701 136.137 110.368 137.598 110.405C139.05 110.421 140.635 110.979 141.81 111.895C142.119 112.107 142.391 112.373 142.657 112.646C142.937 112.908 143.151 113.215 143.376 113.517C143.809 114.126 144.117 114.777 144.355 115.416C144.814 116.698 144.952 117.906 145.006 119.025C145.055 120.146 145.008 121.196 144.947 122.199C144.888 123.191 144.803 124.172 144.773 125.023C144.743 125.861 144.777 126.697 144.876 127.514C145.074 129.148 145.544 130.709 146.304 132.029C147.071 133.371 148.072 134.382 149.372 135.074C149.848 135.328 150.349 135.524 150.855 135.675C151.363 135.821 151.877 135.89 152.378 135.914C152.881 135.944 153.362 135.871 153.82 135.766C154.277 135.661 154.701 135.474 155.132 135.221C155.978 134.718 156.767 133.939 157.462 132.95C158.161 131.966 158.776 130.819 159.351 129.584C161.683 124.577 163.38 119.251 163.986 113.861C164.286 111.169 164.305 108.465 163.971 105.824L163.844 104.834L163.654 103.858C163.587 103.533 163.535 103.205 163.458 102.883L163.202 101.926C163.11 101.609 163.048 101.282 162.933 100.973L162.611 100.038C162.404 99.4034 162.167 98.8173 161.894 98.2316C159.737 93.5535 155.787 89.5675 151.105 87.3666C148.764 86.2729 146.237 85.6439 143.739 85.6359C142.49 85.631 141.252 85.7793 140.054 86.0868C138.865 86.3929 137.679 86.8787 136.505 87.47C134.154 88.6625 131.839 90.3213 129.333 91.909C126.854 93.4891 124.327 94.9938 121.755 96.4202C120.47 97.1333 119.173 97.8271 117.866 98.5007L115.898 99.4964C115.246 99.825 114.508 100.169 113.792 100.472C112.334 101.073 110.806 101.595 109.132 101.889C108.707 101.95 108.292 102.027 107.847 102.051C107.626 102.066 107.411 102.09 107.186 102.095L106.506 102.095C105.594 102.065 104.639 101.953 103.69 101.627C103.213 101.495 102.754 101.258 102.297 101.04C102.074 100.917 101.861 100.772 101.646 100.635L101.326 100.423C101.226 100.345 101.13 100.261 101.033 100.18C100.231 99.5607 99.5828 98.7295 99.0827 97.853C98.5775 96.9682 98.2816 96.0123 98.1224 95.0877C97.9573 94.1581 97.9283 93.247 97.9939 92.3777C98.051 91.5039 98.1896 90.6618 98.392 89.8527C98.5861 89.039 98.8403 88.2556 99.1418 87.4956C99.2861 87.1125 99.456 86.7415 99.622 86.3687L100.148 85.3233C100.483 84.6188 100.901 83.9619 101.286 83.2863C104.188 78.5552 108.304 74.6352 113.094 71.8677C115.498 70.4949 118.081 69.4251 120.768 68.7024C123.458 67.9626 126.171 67.6426 128.805 67.4222C131.443 67.2126 134.018 67.113 136.519 66.9075C139.009 66.6916 141.452 66.3869 143.716 65.7287C148.249 64.4561 152.453 61.8306 155.581 58.3175C157.143 56.5612 158.433 54.5784 159.335 52.4508C159.59 51.9286 159.753 51.3763 159.938 50.8312C160.147 50.2919 160.248 49.7265 160.386 49.1701C160.547 48.6166 160.584 48.044 160.673 47.4792C160.715 47.1959 160.759 46.9121 160.766 46.6346C160.785 46.3558 160.804 46.0767 160.799 45.7956C160.845 41.298 158.84 36.7193 155.616 33.4497C154.005 31.8135 152.079 30.5014 149.985 29.7093C148.939 29.3133 147.853 29.0458 146.753 28.9285C145.664 28.8127 144.517 28.8342 143.483 29.013C142.965 29.102 142.475 29.2354 142.023 29.4111C141.57 29.5814 141.167 29.8242 140.762 30.0963C139.968 30.6538 139.262 31.4297 138.616 32.3572C137.31 34.2159 136.31 36.5982 134.81 38.9591C134.067 40.137 133.117 41.3368 132.03 42.3252C130.944 43.3219 129.727 44.1727 128.406 44.8309C125.777 46.1494 122.713 46.7592 119.693 46.2988C116.637 45.8228 113.895 44.2311 111.886 41.991C110.885 40.8642 110.052 39.5637 109.514 38.1172C108.966 36.6836 108.73 35.0763 108.789 33.5887C108.84 32.0882 109.144 30.6859 109.489 29.3709C109.843 28.0627 110.25 26.8293 110.593 25.6437C110.932 24.4584 111.221 23.3199 111.337 22.2092C111.46 21.0852 111.449 19.9409 111.31 18.8089C111.031 16.5449 110.24 14.3302 109.012 12.4078C107.789 10.4801 106.118 8.87685 104.139 7.70781C102.166 6.53803 99.9149 5.80467 97.6275 5.59154C95.3431 5.37612 93.0083 5.68342 90.9499 6.56096C89.9208 6.99226 88.974 7.57263 88.1688 8.27619C87.7704 8.6314 87.3947 9.00842 87.076 9.42467C86.9158 9.63411 86.7781 9.86544 86.625 10.0826C86.5531 10.1945 86.4676 10.2985 86.4051 10.4161L86.2244 10.7728C85.9539 11.2329 85.7904 11.75 85.5937 12.2516C85.4605 12.7827 85.2998 13.3038 85.2337 13.8645C85.0614 14.9689 85.021 16.128 85.1101 17.3132C85.1842 18.4957 85.3503 19.6977 85.5855 20.9091C85.8089 22.1193 86.095 23.3385 86.3992 24.5688L87.3363 28.3091C87.651 29.5866 87.9182 30.8798 88.1499 32.1816C89.0674 37.3765 89.2917 42.8297 88.121 48.1397C88.0597 48.4026 88.0108 48.6698 87.9388 48.9288L87.7165 49.7031L87.2698 51.2485C87.1411 51.7675 86.9139 52.2639 86.7273 52.7686L86.1404 54.2745L85.4143 55.7305L85.048 56.4556C84.9311 56.6993 84.7649 56.921 84.6255 57.1543L83.7478 58.5331C83.4261 58.9746 83.075 59.3979 82.7385 59.8287C81.3417 61.5123 79.6863 63.0091 77.8012 64.1499C75.9138 65.2823 73.8387 66.0819 71.6886 66.4707C70.614 66.6762 69.5238 66.7706 68.3948 66.7548C67.8311 66.7367 67.224 66.6886 66.6457 66.5567C66.0622 66.4442 65.5061 66.2536 64.9642 66.0423C62.8209 65.1433 61.0383 63.5988 59.8847 61.6307C59.3055 60.6502 58.891 59.5501 58.7352 58.3836C58.6432 57.8042 58.6491 57.2067 58.6897 56.6164C58.7619 56.0275 58.8719 55.4387 59.0803 54.8848C59.4744 53.7679 60.1349 52.7803 60.9151 51.9827C61.6968 51.1807 62.589 50.5551 63.5059 50.0419C63.986 49.7722 64.3826 49.5724 64.7989 49.3555C65.2163 49.1448 65.6198 48.9151 66.0281 48.6928C66.8414 48.2438 67.6325 47.7678 68.411 47.2792C69.9495 46.2832 71.4303 45.2147 72.7181 43.9914C74.0052 42.7781 75.145 41.4136 75.8021 39.8927C76.4758 38.3875 76.5707 36.708 75.8412 35.3047C75.1314 33.8955 73.7057 32.8464 72.1232 32.3318C70.5354 31.8118 68.7688 31.7749 67.1608 32.2743C66.3538 32.5158 65.5949 32.9031 64.9046 33.3879C64.2183 33.8795 63.615 34.4868 63.1047 35.1658C62.8472 35.5041 62.62 35.8652 62.4103 36.2366C62.1805 36.612 61.9508 36.9867 61.7218 37.3607C61.1805 38.0517 60.6106 38.7378 59.851 39.1757C59.7681 39.2305 59.686 39.2848 59.6048 39.3387C59.5154 39.3788 59.4267 39.4187 59.3389 39.4582C59.1626 39.534 58.9937 39.6173 58.8217 39.6812C58.461 39.7645 58.1272 39.8872 57.7837 39.8924C57.11 39.9836 56.4859 39.8629 55.9394 39.7467C54.8467 39.4466 54.0587 38.9408 53.5194 38.498C52.9887 38.0387 52.6786 37.6527 52.5631 37.3845C52.4406 37.1216 52.4612 36.9926 52.6092 36.9864C52.7625 36.9752 53.0032 37.0948 53.4215 37.2867C53.8355 37.4719 54.4106 37.7539 55.1562 37.9621C55.895 38.1709 56.7998 38.2704 57.631 38.051C57.7388 38.0337 57.8313 37.9704 57.9355 37.9381C58.0376 37.9005 58.1448 37.8713 58.2379 37.7996C58.3352 37.7397 58.4352 37.6834 58.5393 37.6306C58.6345 37.5525 58.7288 37.468 58.8292 37.3913C58.8787 37.3512 58.9311 37.3166 58.9813 37.2738L59.1209 37.1146C59.2175 37.0114 59.3159 36.9067 59.4157 36.8002C59.5052 36.6693 59.5961 36.5363 59.6884 36.4013L59.8326 36.2019C59.8798 36.1325 59.916 36.0448 59.9592 35.9668L60.3368 35.2556C60.5092 34.9037 60.6925 34.5553 60.9028 34.2158C61.3191 33.5368 61.8117 32.887 62.3826 32.2961C63.5208 31.1093 64.9883 30.1938 66.574 29.6731C68.162 29.149 69.8581 29.0055 71.513 29.2341C73.1663 29.4637 74.8008 30.0637 76.2364 31.115C76.9514 31.6408 77.6126 32.2842 78.1614 33.0434C78.7068 33.8043 79.1297 34.6836 79.3771 35.6102C79.627 36.5364 79.6982 37.5012 79.6192 38.4178C79.5417 39.3368 79.3211 40.2061 79.0218 41.0083C78.4181 42.6173 77.5191 43.9662 76.5378 45.1495C75.552 46.3353 74.4701 47.3705 73.3449 48.3109C71.0876 50.1833 68.6664 51.7076 66.1922 53.0723C64.0392 54.1788 62.9315 55.5491 62.8487 56.9802C62.8058 57.706 63.0193 58.5187 63.4588 59.2991C63.9151 60.0691 64.5734 60.7973 65.3553 61.3209C65.7436 61.5847 66.1547 61.805 66.5731 61.974C66.9936 62.1347 67.4184 62.2395 67.8332 62.2908C68.2268 62.3504 68.7633 62.3252 69.2904 62.3011L70.1052 62.2088L70.9249 62.0574C72.7229 61.6746 74.4501 60.9156 75.9733 59.8639C77.5015 58.8098 78.8208 57.4394 79.936 55.8671L80.7095 54.6289C80.7737 54.5254 80.8417 54.4247 80.9035 54.3192L81.0669 53.9851L81.3962 53.3182C81.878 52.4566 82.1855 51.4779 82.5623 50.5423C82.6627 50.3112 82.7322 50.0634 82.7994 49.8144L83.0102 49.0718C83.1469 48.5764 83.304 48.0829 83.428 47.5865C83.656 46.5947 83.8411 45.5883 83.9662 44.5667C84.4701 40.4775 84.1507 36.211 83.3139 31.9942C83.1111 30.9357 82.8653 29.8918 82.6025 28.8279L81.7671 25.526C81.2093 23.2866 80.6944 20.9379 80.4421 18.4487C80.4066 18.3964 80.3735 18.3465 80.3356 18.2801L80.3352 18.2801Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wg0zev-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oohQh_hbn\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:40,overflow:false},gap:88,height:\"100%\",hoverFactor:1,id:\"oohQh_hbn\",layoutId:\"oohQh_hbn\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:115,pixelWidth:508,src:\"https://framerusercontent.com/images/0jqvWHoPrBcuasoBzB5k0OoMmpE.png\"},className:\"framer-13lxoih\",\"data-framer-name\":\"logo-rafay\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:215,pixelHeight:71,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/afigeWKLldE5WIo2rHgk3rH8s.png\"},className:\"framer-fl8f2a\",\"data-framer-name\":\"logo-clay\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:324,pixelHeight:144,pixelWidth:648,sizes:\"113px\",src:\"https://framerusercontent.com/images/mt0BKI7cTU77kaSXBMldcf9s8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mt0BKI7cTU77kaSXBMldcf9s8.png?scale-down-to=512 512w,https://framerusercontent.com/images/mt0BKI7cTU77kaSXBMldcf9s8.png 648w\"},className:\"framer-13iqe0b\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:60,intrinsicWidth:295,pixelHeight:704,pixelWidth:2620,sizes:\"128px\",src:\"https://framerusercontent.com/images/8Sc7GFYc4DkiB28sXsnfBSa0PxA.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/8Sc7GFYc4DkiB28sXsnfBSa0PxA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/8Sc7GFYc4DkiB28sXsnfBSa0PxA.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Sc7GFYc4DkiB28sXsnfBSa0PxA.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Sc7GFYc4DkiB28sXsnfBSa0PxA.svg 2620w\"},className:\"framer-1f85nce\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:745,pixelWidth:3416,sizes:\"128px\",src:\"https://framerusercontent.com/images/DpgxFJkUXdURCSkdTTYbuc7XY.png\",srcSet:\"https://framerusercontent.com/images/DpgxFJkUXdURCSkdTTYbuc7XY.png?scale-down-to=512 512w,https://framerusercontent.com/images/DpgxFJkUXdURCSkdTTYbuc7XY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DpgxFJkUXdURCSkdTTYbuc7XY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DpgxFJkUXdURCSkdTTYbuc7XY.png 3416w\"},className:\"framer-1s4pryk\",\"data-framer-name\":\"logo-archive\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:664,pixelHeight:511,pixelWidth:1328,sizes:\"91px\",src:\"https://framerusercontent.com/images/pRAI1yi1mqRCJmV2d0LtzU3xA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pRAI1yi1mqRCJmV2d0LtzU3xA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pRAI1yi1mqRCJmV2d0LtzU3xA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/pRAI1yi1mqRCJmV2d0LtzU3xA.webp 1328w\"},className:\"framer-8ag1x1\",\"data-framer-name\":\"troc_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:673.5,intrinsicWidth:2076,pixelHeight:1347,pixelWidth:4152,sizes:\"120px\",src:\"https://framerusercontent.com/images/EzauR721WGBnG3thkPhE0UEY.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/EzauR721WGBnG3thkPhE0UEY.png?scale-down-to=512 512w,https://framerusercontent.com/images/EzauR721WGBnG3thkPhE0UEY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EzauR721WGBnG3thkPhE0UEY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EzauR721WGBnG3thkPhE0UEY.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/EzauR721WGBnG3thkPhE0UEY.png 4152w\"},className:\"framer-uct1ba\",\"data-framer-name\":\"hologram_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:138,pixelWidth:802,positionX:\"center\",positionY:\"center\",sizes:\"146px\",src:\"https://framerusercontent.com/images/9b7wlb6KuG4JXf38bZdCLg6twmI.png\",srcSet:\"https://framerusercontent.com/images/9b7wlb6KuG4JXf38bZdCLg6twmI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9b7wlb6KuG4JXf38bZdCLg6twmI.png 802w\"},className:\"framer-jqoxcz\",\"data-framer-name\":\"logo-venturecap\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:124,pixelWidth:415,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OHR2MUmWomhKlAb2CF9S8mk0xA.png\"},className:\"framer-6aocw7\",\"data-framer-name\":\"logo-venturecap\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"100px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7deky-container\",inComponentSlot:true,nodeId:\"evt9NssAh\",rendersWithMotion:true,scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(Vfairs_logo,{height:\"100%\",id:\"evt9NssAh\",layoutId:\"evt9NssAh\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:48,pixelWidth:200,src:\"https://framerusercontent.com/images/d5W6AaL7OyTNotbSh3SpIXx0.webp\"},className:\"framer-1vl01a7\",\"data-framer-name\":\"logo-terraboost\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:289.5,intrinsicWidth:969,pixelHeight:579,pixelWidth:1938,sizes:\"127px\",src:\"https://framerusercontent.com/images/qJ7URplL38Yxhy9qzEGEgZmpDc.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qJ7URplL38Yxhy9qzEGEgZmpDc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qJ7URplL38Yxhy9qzEGEgZmpDc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJ7URplL38Yxhy9qzEGEgZmpDc.webp 1938w\"},className:\"framer-179r7og\",\"data-framer-name\":\"lendingone_logo\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:\"109px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-iwr2kg-container\",inComponentSlot:true,nodeId:\"dwk5ufjgA\",rendersWithMotion:true,scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(Integral_logo,{height:\"100%\",id:\"dwk5ufjgA\",layoutId:\"dwk5ufjgA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:315,pixelWidth:600,sizes:\"101px\",src:\"https://framerusercontent.com/images/Eg5kFWYdBj69Eh0A94wl93ruUg.png\",srcSet:\"https://framerusercontent.com/images/Eg5kFWYdBj69Eh0A94wl93ruUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Eg5kFWYdBj69Eh0A94wl93ruUg.png 600w\"},className:\"framer-156dccd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55.5,intrinsicWidth:227,pixelHeight:111,pixelWidth:454,src:\"https://framerusercontent.com/images/AR1AYTcggg8IUEL8q43g2jUUO1I.png\"},className:\"framer-2wr49z\",\"data-framer-name\":\"spotailogo_removebg_preview\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:146.5,intrinsicWidth:703,pixelHeight:293,pixelWidth:1406,sizes:\"101px\",src:\"https://framerusercontent.com/images/FjVM5Lc2ZbvkXNxJYHHmQpQTd1M.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FjVM5Lc2ZbvkXNxJYHHmQpQTd1M.webp?scale-down-to=512 512w,https://framerusercontent.com/images/FjVM5Lc2ZbvkXNxJYHHmQpQTd1M.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjVM5Lc2ZbvkXNxJYHHmQpQTd1M.webp 1406w\"},className:\"framer-vfcfoy\",\"data-framer-name\":\"recess_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:83.5,intrinsicWidth:320,pixelHeight:167,pixelWidth:640,sizes:\"111px\",src:\"https://framerusercontent.com/images/SDPYLvoGNc5t4HVxVZiNUWcE.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SDPYLvoGNc5t4HVxVZiNUWcE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SDPYLvoGNc5t4HVxVZiNUWcE.webp 640w\"},className:\"framer-orsl7l\",\"data-framer-name\":\"redocs_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:166,intrinsicWidth:400,pixelHeight:332,pixelWidth:800,sizes:\"89px\",src:\"https://framerusercontent.com/images/81omAMBafGKOVnEsYn8xJi0kpIs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/81omAMBafGKOVnEsYn8xJi0kpIs.png?scale-down-to=512 512w,https://framerusercontent.com/images/81omAMBafGKOVnEsYn8xJi0kpIs.png 800w\"},className:\"framer-bmpy0q\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:71.5,intrinsicWidth:288,pixelHeight:143,pixelWidth:576,sizes:\"133px\",src:\"https://framerusercontent.com/images/AJ6WmRMtDgK8gqZNsUJX7qag0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/AJ6WmRMtDgK8gqZNsUJX7qag0.png?scale-down-to=512 512w,https://framerusercontent.com/images/AJ6WmRMtDgK8gqZNsUJX7qag0.png 576w\"},className:\"framer-1nytzog\",\"data-framer-name\":\"Clientelllogo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320.5,intrinsicWidth:1280,pixelHeight:641,pixelWidth:2560,sizes:\"104px\",src:\"https://framerusercontent.com/images/0N3SXH8jevhlNmxm4YpWWEAqRY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0N3SXH8jevhlNmxm4YpWWEAqRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/0N3SXH8jevhlNmxm4YpWWEAqRY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0N3SXH8jevhlNmxm4YpWWEAqRY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0N3SXH8jevhlNmxm4YpWWEAqRY.png 2560w\"},className:\"framer-1j03jme\",\"data-framer-name\":\"Daxko logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:151.5,intrinsicWidth:411.5,pixelHeight:170,pixelWidth:667,sizes:\"161px\",src:\"https://framerusercontent.com/images/ax0l8iL0OjJbtknsp4QrRYzuX8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ax0l8iL0OjJbtknsp4QrRYzuX8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ax0l8iL0OjJbtknsp4QrRYzuX8.png 667w\"},className:\"framer-1otdbfn\",\"data-framer-name\":\"Materialize w_background-removebg-preview\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:53,intrinsicWidth:256,pixelHeight:106,pixelWidth:512,src:\"https://framerusercontent.com/images/ZZ914T3KoqyuRHWBLMXggoqh3ZI.png\"},className:\"framer-22tms1\",\"data-framer-name\":\"Density logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:63.5,intrinsicWidth:198,pixelHeight:127,pixelWidth:396,src:\"https://framerusercontent.com/images/5hUpTcdykMRR53khRZViBahj8ik.png\"},className:\"framer-5c0gks\",\"data-framer-name\":\"Arcade-removebg-preview\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:1211,pixelHeight:512,pixelWidth:2422,sizes:\"170px\",src:\"https://framerusercontent.com/images/mHrAxEOHpAcUx8Z9hs3yi41DZU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/mHrAxEOHpAcUx8Z9hs3yi41DZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mHrAxEOHpAcUx8Z9hs3yi41DZU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mHrAxEOHpAcUx8Z9hs3yi41DZU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mHrAxEOHpAcUx8Z9hs3yi41DZU.png 2422w\"},className:\"framer-1shsvb1\",\"data-framer-name\":\"Image\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tedi5j\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-47ykjp\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ok618e\",\"data-styles-preset\":\"rNmRS82K_\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(17, 17, 17, 0.4) 100%)\"},children:\"Services\"})})}),className:\"framer-gxf48v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1mc2qgk\",\"data-styles-preset\":\"j5P3ZA7dV\",children:[\"Services that \",/*#__PURE__*/_jsx(\"em\",{children:\"grow\"}),\" with you\"]})}),className:\"framer-z6d454\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{height:1680,width:`min(360px, ${componentViewport?.width||\"100vw\"})`,y:(componentViewport?.y||0)+0+724+80+176},z0dMFkpq8:{height:1760,width:`min(${componentViewport?.width||\"100vw\"} - 48px, (${componentViewport?.width||\"100vw\"} - 48px) * 3.6)`,y:(componentViewport?.y||0)+0+684+80+176}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px, 1120px)`,y:(componentViewport?.y||0)+0+1037.5+80+176,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l54xik-container\",nodeId:\"VE5dkYCel\",rendersWithMotion:true,scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{variant:\"fkqSax7bb\"},z0dMFkpq8:{variant:\"fkqSax7bb\"}},children:/*#__PURE__*/_jsx(Services,{height:\"100%\",id:\"VE5dkYCel\",layoutId:\"VE5dkYCel\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"N_CgUOZvM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-98ohxc\",\"data-framer-name\":\"Group 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:220,intrinsicWidth:219,svg:'<svg width=\"219\" height=\"220\" viewBox=\"0 0 219 220\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M162.378 161.199L163.623 159.749L164.814 158.255L165.41 157.508L165.98 156.742L167.116 155.206C168.569 153.117 169.99 150.999 171.236 148.781C173.787 144.376 175.87 139.716 177.45 134.878C179.03 130.034 180.081 125.033 180.583 119.963L180.753 118.055C180.806 117.419 180.886 116.784 180.889 116.144L181.008 112.308L180.917 108.467C180.863 107.187 180.729 105.91 180.64 104.631C179.603 93.7215 176.427 83.1232 171.293 73.4412C167.89 67.0108 163.639 61.0664 158.654 55.767L156.773 53.8057L154.792 51.9514L153.8 51.026C153.474 50.7113 153.11 50.4424 152.768 50.1479L150.683 48.4169C149.99 47.8391 149.238 47.3372 148.52 46.7931L147.43 45.9912C147.248 45.859 147.07 45.7203 146.884 45.5936L146.316 45.2276L144.047 43.7616L143.48 43.3945C143.289 43.2758 143.089 43.1724 142.894 43.0608L141.718 42.4012C138.593 40.6322 135.329 39.1193 131.959 37.8774L129.405 37.045L128.129 36.6268L126.828 36.2965L124.226 35.6385C123.353 35.4442 122.467 35.3138 121.588 35.1468C119.837 34.7729 118.049 34.6433 116.273 34.439C115.387 34.3113 114.489 34.3248 113.596 34.2802C112.702 34.251 111.809 34.2041 110.915 34.1864L108.23 34.2766C107.335 34.2837 106.44 34.3362 105.55 34.4338C103.768 34.634 101.978 34.7515 100.211 35.088C96.6633 35.6705 93.1649 36.523 89.7466 37.6382C86.3284 38.7695 82.9935 40.1385 79.7663 41.735C78.9676 42.1502 78.1537 42.5362 77.3669 42.9733L75.0136 44.298L72.7163 45.7169C71.9437 46.179 71.2208 46.7179 70.47 47.2133C67.5109 49.2574 64.6992 51.507 62.0556 53.9454C56.7999 58.8142 52.3425 64.4792 48.8467 70.7328C45.4226 76.9362 43.2159 83.7369 42.3451 90.7689C41.8632 95.0667 41.9319 99.4085 42.5495 103.689C43.1975 107.964 44.4017 112.135 46.1313 116.098C49.6708 124.101 54.9835 131.194 61.6678 136.842C68.3097 142.491 76.2259 146.657 84.65 148.49C93.2043 150.349 102.066 150.274 110.587 148.27C114.794 147.292 118.854 145.763 122.661 143.723C126.403 141.716 129.795 139.114 132.703 136.019C135.554 132.938 137.824 129.367 139.403 125.478C139.613 124.998 139.796 124.506 139.95 124.006L140.459 122.518L140.854 120.996C141 120.492 141.12 119.981 141.213 119.465C141.389 118.43 141.624 117.405 141.697 116.355L141.862 114.789L141.911 113.214C141.984 112.164 141.88 111.115 141.854 110.065C141.854 109.539 141.753 109.021 141.704 108.498C141.639 107.977 141.593 107.453 141.517 106.934C141.18 104.861 140.663 102.822 139.973 100.839C138.597 96.8636 136.513 93.1701 133.822 89.937C128.437 83.4786 120.694 78.893 112.459 77.5479C107.495 76.7048 102.401 77.0789 97.6128 78.6383C96.4495 79.0052 95.319 79.4689 94.2331 80.0246C93.169 80.5619 92.1569 81.1967 91.2099 81.9207C90.29 82.6238 89.4467 83.4218 88.694 84.3015C88.3295 84.733 87.9893 85.1845 87.675 85.6539C87.5313 85.8901 87.3748 86.1326 87.2411 86.364C87.1225 86.5919 86.9902 86.8116 86.8884 87.0546C86.0998 88.8264 85.7144 90.7512 85.76 92.69C85.7732 94.3292 86.0786 95.953 86.6618 97.4851C87.5122 99.7606 89.171 101.643 91.3214 102.773C92.626 103.455 93.4461 103.801 93.4962 104.23C93.5245 104.433 93.3677 104.628 93.0061 104.81C92.4661 105.054 91.8825 105.186 91.2903 105.198C90.2875 105.244 89.2848 105.108 88.3302 104.798C86.9685 104.356 85.7119 103.639 84.6381 102.692C82.1852 100.56 80.2294 96.8883 79.9229 92.4335C79.696 89.4865 80.2304 86.5307 81.4747 83.8496C82.7821 81.2057 84.6406 78.8725 86.9249 77.0067C89.1311 75.1947 91.6163 73.7521 94.2839 72.7351C96.8311 71.7543 99.4851 71.0775 102.191 70.7187C103.724 70.5117 105.268 70.3991 106.814 70.3816C108.355 70.3755 109.894 70.4607 111.424 70.6369C114.468 70.9893 117.461 71.6907 120.344 72.7272C126.071 74.8023 131.294 78.0684 135.666 82.3101C136.755 83.3635 137.789 84.4719 138.764 85.631C139.732 86.7976 140.639 88.0142 141.48 89.2756C141.915 89.8972 142.295 90.5554 142.695 91.2C143.073 91.8572 143.417 92.5343 143.777 93.2013L144.309 94.2073L144.768 95.248C145.064 95.9458 145.397 96.6293 145.66 97.3397C146.73 100.177 147.513 103.115 147.996 106.108C148.422 109.108 148.553 112.142 148.388 115.168C148.167 118.192 147.643 121.186 146.825 124.105C146.621 124.835 146.354 125.546 146.119 126.267L145.751 127.344L145.309 128.393C145.004 129.087 144.74 129.801 144.397 130.478L143.353 132.503C143.183 132.843 142.995 133.174 142.788 133.492L142.19 134.462L141.589 135.432C141.395 135.759 141.15 136.052 140.933 136.364L139.585 138.204C139.098 138.785 138.624 139.379 138.121 139.946C136.107 142.207 133.869 144.259 131.442 146.069C126.602 149.629 121.189 152.334 115.436 154.067C109.743 155.799 103.839 156.742 97.8896 156.871C91.2112 157.067 84.5444 156.195 78.1414 154.287C71.8175 152.324 65.8899 149.26 60.6316 145.235C56.5667 142.135 52.864 138.586 49.5935 134.657C46.3254 130.725 43.529 126.423 41.2614 121.84C40.1267 119.542 39.138 117.175 38.301 114.752C37.4734 112.317 36.8072 109.831 36.3065 107.308C35.319 102.253 35.0421 97.0842 35.4839 91.9524C35.9194 86.8389 37.0118 81.8027 38.7341 76.9683C40.4591 72.1683 42.7437 67.5883 45.5406 63.3231C51.1014 54.8489 58.3105 47.5804 66.7387 41.9503C72.9463 37.7603 79.6918 34.4287 86.7919 32.0458C90.3514 30.8681 93.9868 29.9337 97.673 29.2492L100.455 28.8153L101.15 28.7083L101.852 28.6397L103.255 28.5028L106.062 28.2322L108.883 28.149L110.295 28.1119L111 28.0939C111.235 28.0934 111.471 28.1108 111.706 28.1186L114.529 28.241L115.941 28.306L117.345 28.4653L120.154 28.7877C120.624 28.8283 121.085 28.9281 121.549 29.0119L122.939 29.2701L124.329 29.5296C124.791 29.6205 125.258 29.6888 125.711 29.82L128.448 30.5285L129.815 30.8874L131.155 31.333L133.834 32.2281C134.721 32.5437 135.58 32.9289 136.454 33.2771L137.759 33.8133L138.411 34.0827L139.045 34.3918L141.577 35.6305C142.432 36.0228 143.238 36.5049 144.054 36.9693L146.495 38.3696L148.844 39.9134L150.017 40.6867C150.413 40.9382 150.773 41.2389 151.152 41.5128C161.961 49.3759 170.576 59.9375 176.596 71.7107C182.641 83.5365 186.001 96.551 186.436 109.825C186.632 116.452 186.039 123.078 184.671 129.565C183.941 132.798 183.019 135.985 181.908 139.108C180.779 142.218 179.461 145.257 177.96 148.207C171.949 159.998 163.1 170.196 152.628 178.126C148.512 181.244 144.126 183.989 139.522 186.327C135.097 188.592 130.475 190.45 125.714 191.88C121.178 193.255 116.526 194.215 111.817 194.747C107.381 195.226 102.917 195.38 98.4586 195.207C94.491 195.055 92.6523 194.479 92.9373 193.986C93.2208 193.464 95.6224 193.033 100.109 192.618C106.53 192.067 112.883 190.891 119.075 189.106C125.339 187.265 131.382 184.745 137.096 181.588C146.504 176.456 155.34 169.6 162.394 161.34C162.386 161.293 162.381 161.246 162.378 161.199Z\" fill=\"black\"/>\\n<path d=\"M107.757 185.673C106.218 186.531 104.674 187.388 103.154 188.285C102.336 188.742 101.551 189.254 100.805 189.819C98.8613 191.379 96.947 192.984 95.0169 194.583L93.5654 195.779L92.8365 196.375L92.7908 196.412C92.8079 196.402 92.8243 196.391 92.8396 196.378C92.8835 196.345 92.9243 196.313 92.9631 196.278C93.2062 196.067 93.3925 195.798 93.5052 195.496C93.5532 195.367 93.5892 195.235 93.6127 195.101C93.625 195.024 93.6342 194.959 93.6414 194.86C93.6495 194.755 93.6492 194.65 93.6407 194.546C93.6159 194.16 93.5041 193.785 93.3136 193.449C93.1984 193.255 93.0591 193.077 92.8989 192.919C92.9131 192.921 92.9566 192.942 93.0233 192.97L93.4182 193.155L94.2821 193.566C97.1048 194.929 99.8238 196.363 102.515 197.71C105.137 199.054 107.828 200.259 110.577 201.321C111.394 201.671 112.167 202.117 112.879 202.649C113.588 203.138 113.872 204.099 113.915 205.298C113.985 207.038 113.055 208.618 111.642 208.657C110.756 208.641 109.886 208.419 109.101 208.007C105.614 206.265 102.015 204.757 98.3276 203.492C97.3172 203.16 96.2256 202.899 95.4346 202.228C94.1818 201.211 92.818 200.338 91.3691 199.628L90.3081 199.09L90.0307 198.95C89.9003 198.884 89.7656 198.814 89.6202 198.73C89.2815 198.538 88.961 198.316 88.6626 198.066C88.2047 197.684 87.8238 197.219 87.5403 196.694C87.143 195.955 86.9846 195.11 87.0868 194.276C87.1712 193.609 87.4096 192.971 87.7831 192.413C88.0387 192.028 88.3523 191.686 88.7128 191.398C88.7727 191.349 88.8374 191.302 88.9007 191.256C88.9197 191.241 88.9395 191.227 88.96 191.215L88.9924 191.195C91.0413 189.952 92.9194 188.445 94.9272 187.117C98.5046 184.741 102.153 182.442 105.808 180.174C107.293 179.192 109.094 178.81 110.849 179.103C111.749 179.254 112.572 180.542 112.14 181.253C111.533 182.239 110.804 183.146 109.973 183.952C109.262 184.557 108.504 185.102 107.704 185.583L107.757 185.673Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+724+104),pixelHeight:1e3,pixelWidth:1e3,sizes:\"200px\",src:\"https://framerusercontent.com/images/rSWmdNZLe5V4Vftr9oomcksRLlk.png\",srcSet:\"https://framerusercontent.com/images/rSWmdNZLe5V4Vftr9oomcksRLlk.png?scale-down-to=512 512w,https://framerusercontent.com/images/rSWmdNZLe5V4Vftr9oomcksRLlk.png 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1037.5+104),pixelHeight:1e3,pixelWidth:1e3,sizes:\"320px\",src:\"https://framerusercontent.com/images/rSWmdNZLe5V4Vftr9oomcksRLlk.png\",srcSet:\"https://framerusercontent.com/images/rSWmdNZLe5V4Vftr9oomcksRLlk.png?scale-down-to=512 512w,https://framerusercontent.com/images/rSWmdNZLe5V4Vftr9oomcksRLlk.png 1000w\"},className:\"framer-izt4lb hidden-cng6u2\",\"data-framer-name\":\"Image\",style:{rotate:-16}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-54515d\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-453g6l\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mc2qgk\",\"data-styles-preset\":\"j5P3ZA7dV\",children:\"How we work\"})}),className:\"framer-1tso4xm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qzq7z7\",\"data-styles-preset\":\"Wso5FPOzB\",style:{\"--framer-text-alignment\":\"center\"},children:\"We combine deep technical expertise with focused, bespoke execution\u2014dedicating our GTM engineers to a select few clients to tackle complex, custom projects.\"})}),className:\"framer-5so1or\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yntn3f\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h4onke\",\"data-border\":true,style:{rotate:-4},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:42,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2740+80+292+0+0+64+0),pixelHeight:83,pixelWidth:84,src:\"https://framerusercontent.com/images/v3NlRVDjuoIfT3lMfcCLAERzg54.png\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:42,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2780+80+292+0+0+64+0),pixelHeight:83,pixelWidth:84,src:\"https://framerusercontent.com/images/v3NlRVDjuoIfT3lMfcCLAERzg54.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:42,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1933.5+80+292+0+64+0),pixelHeight:83,pixelWidth:84,src:\"https://framerusercontent.com/images/v3NlRVDjuoIfT3lMfcCLAERzg54.png\"},className:\"framer-7hrsg6\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"center\"},children:\"We invest deep time,\\u2028\\u2028not just hours\"})}),className:\"framer-qagt1m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vumqzh\",\"data-styles-preset\":\"MjFz_RSp9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\"},children:\"We actually spend time on clients. Our GTM engineers only work on a few clients at a time to increase the time being spent on your projects.\"})}),className:\"framer-168ju50\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wpu9yl\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:42,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2740+80+292+0+365.5+64+0),pixelHeight:83,pixelWidth:84,src:\"https://framerusercontent.com/images/EClIQ2707mAIbJBiMzlsuk9LE.png\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:42,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2780+80+292+0+365.5+64+0),pixelHeight:83,pixelWidth:84,src:\"https://framerusercontent.com/images/EClIQ2707mAIbJBiMzlsuk9LE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:42,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1933.5+80+292+0+64+0),pixelHeight:83,pixelWidth:84,src:\"https://framerusercontent.com/images/EClIQ2707mAIbJBiMzlsuk9LE.png\"},className:\"framer-1j4d49y\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"center\"},children:\"Strategy that ships\\u2028\\u2028real solutions\"})}),className:\"framer-4404o6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vumqzh\",\"data-styles-preset\":\"MjFz_RSp9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\"},children:\"Our team is highly technical. While we're great at strategy, our team has the technical ability to make projects actually happen instead of staying theoretical.\"})}),className:\"framer-1jwtbxb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ioqgnz\",\"data-border\":true,style:{rotate:4},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:42,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2740+80+292+0+731+64+0),pixelHeight:83,pixelWidth:84,src:\"https://framerusercontent.com/images/Dkw8sKYVk8seWswDyxHytQHE.png\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:42,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2780+80+292+0+731+64+0),pixelHeight:83,pixelWidth:84,src:\"https://framerusercontent.com/images/Dkw8sKYVk8seWswDyxHytQHE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:42,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1933.5+80+292+0+64+0),pixelHeight:83,pixelWidth:84,src:\"https://framerusercontent.com/images/Dkw8sKYVk8seWswDyxHytQHE.png\"},className:\"framer-ygs03i\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"center\"},children:\"Custom is our comfort zone\"})}),className:\"framer-nuj56q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vumqzh\",\"data-styles-preset\":\"MjFz_RSp9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\"},children:\"We love complex, bespoke projects. Unlike more templatized agencies, we love to work on the custom projects that nobody else could complete.\"})}),className:\"framer-pbm8wo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5kaaiu\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-egqnei\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ok618e\",\"data-styles-preset\":\"rNmRS82K_\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(17, 17, 17, 0.4) 100%)\"},children:\"Services\"})})}),className:\"framer-19qbkha\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1mc2qgk\",\"data-styles-preset\":\"j5P3ZA7dV\",style:{\"--framer-text-alignment\":\"center\"},children:\"A full-suite of services to unlock your growth\"})}),className:\"framer-1cfyhg5\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qzq7z7\",\"data-styles-preset\":\"Wso5FPOzB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Leverage new sales tech the smart way.\"})}),className:\"framer-7xzjh1\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-50n0n1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qjxe8a\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1emi0bd\",\"data-framer-name\":\"Package\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+0+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/QDxWjAjuuBKtxwRqerxGI4OIcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QDxWjAjuuBKtxwRqerxGI4OIcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/QDxWjAjuuBKtxwRqerxGI4OIcM.png 800w\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4328.5+80+356+0+0+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/QDxWjAjuuBKtxwRqerxGI4OIcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QDxWjAjuuBKtxwRqerxGI4OIcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/QDxWjAjuuBKtxwRqerxGI4OIcM.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+0+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/QDxWjAjuuBKtxwRqerxGI4OIcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QDxWjAjuuBKtxwRqerxGI4OIcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/QDxWjAjuuBKtxwRqerxGI4OIcM.png 800w\"},className:\"framer-cr34f1\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6n4k0k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"center\"},children:\"Create systems that allow you to sell, not prepare to sell\"})}),className:\"framer-hr0z93\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a14691af-d083-4b2d-aaa3-06c7eaddb969, rgb(102, 102, 102))\"},children:\"The Kiln helps create sales enablement processes that give your sales team more time to close deals. Done are the days of researching, copywriting, and alternating between different tools. \"})}),className:\"framer-1r06sx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tp5vl3 hidden-cng6u2\",\"data-framer-name\":\"Package\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1od8exb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cj2waw\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q6kv8j\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+0+0+141+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+0+0+141+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"},className:\"framer-15z94hr\",\"data-framer-name\":\"Image\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-108qiml hidden-cng6u2\",\"data-framer-name\":\"Package\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svx3g8\",\"data-framer-name\":\"Stack\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9wvkw8 hidden-cng6u2\",\"data-framer-name\":\"Package\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fc6xog hidden-cng6u2\",\"data-framer-name\":\"Package\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19agxu0\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d692bw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+338+0+141+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+338+0+141+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"},className:\"framer-1j5iuza\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ngl008\",\"data-framer-name\":\"Package\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+338+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/my8o3MW6KcC2z4FMJgcfoUYQI1M.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/my8o3MW6KcC2z4FMJgcfoUYQI1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/my8o3MW6KcC2z4FMJgcfoUYQI1M.png 800w\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4328.5+80+356+0+426+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/my8o3MW6KcC2z4FMJgcfoUYQI1M.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/my8o3MW6KcC2z4FMJgcfoUYQI1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/my8o3MW6KcC2z4FMJgcfoUYQI1M.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+338+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/my8o3MW6KcC2z4FMJgcfoUYQI1M.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/my8o3MW6KcC2z4FMJgcfoUYQI1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/my8o3MW6KcC2z4FMJgcfoUYQI1M.png 800w\"},className:\"framer-13uxap2\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eo60u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ensure your data is actually usable\"})}),className:\"framer-1yldnp1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a14691af-d083-4b2d-aaa3-06c7eaddb969, rgb(102, 102, 102))\"},children:\"CRMs are useless if the data in them is stale or messy. Our systems help clean and normalize data to make your CRM a true source of truth again.\"})}),className:\"framer-133rlxy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rknq3q\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13a5alq\",\"data-framer-name\":\"Package\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+676+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/SuqHjchWgpryZCf7NKuGonRV34.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SuqHjchWgpryZCf7NKuGonRV34.png?scale-down-to=512 512w,https://framerusercontent.com/images/SuqHjchWgpryZCf7NKuGonRV34.png 800w\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4328.5+80+356+0+852+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/SuqHjchWgpryZCf7NKuGonRV34.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SuqHjchWgpryZCf7NKuGonRV34.png?scale-down-to=512 512w,https://framerusercontent.com/images/SuqHjchWgpryZCf7NKuGonRV34.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+676+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/SuqHjchWgpryZCf7NKuGonRV34.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SuqHjchWgpryZCf7NKuGonRV34.png?scale-down-to=512 512w,https://framerusercontent.com/images/SuqHjchWgpryZCf7NKuGonRV34.png 800w\"},className:\"framer-se8iup\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j7ocki\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"center\"},children:\"Deeply researched enrichment beyond conventional data providers\"})}),className:\"framer-xvq9gs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a14691af-d083-4b2d-aaa3-06c7eaddb969, rgb(102, 102, 102))\"},children:\"If the information you\u2019re looking for can be found somewhere, we can help you find it at scale. We help create custom AI agents that scrape unstructured data with shocking accuracy. \"})}),className:\"framer-tzo25z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hbm1da hidden-cng6u2\",\"data-framer-name\":\"Package\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1co01mj\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xpcd2x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+676+0+216+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+676+0+216+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"},className:\"framer-rfokq0\",\"data-framer-name\":\"Image\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ka5dst hidden-cng6u2\",\"data-framer-name\":\"Package\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e6graq\",\"data-framer-name\":\"Stack\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t13txz hidden-cng6u2\",\"data-framer-name\":\"Package\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13t7nol hidden-cng6u2\",\"data-framer-name\":\"Package\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12kjtde\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10j6mi5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+1164+0+141+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+1164+0+141+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"},className:\"framer-18m3o19\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zgxsf7\",\"data-framer-name\":\"Package\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+1164+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/52A6en3V1ymt8dq5MRHBWA5L4I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/52A6en3V1ymt8dq5MRHBWA5L4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/52A6en3V1ymt8dq5MRHBWA5L4I.png 800w\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4328.5+80+356+0+1428+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/52A6en3V1ymt8dq5MRHBWA5L4I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/52A6en3V1ymt8dq5MRHBWA5L4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/52A6en3V1ymt8dq5MRHBWA5L4I.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+1164+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/52A6en3V1ymt8dq5MRHBWA5L4I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/52A6en3V1ymt8dq5MRHBWA5L4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/52A6en3V1ymt8dq5MRHBWA5L4I.png 800w\"},className:\"framer-vyar8e\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-td0uy7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"center\"},children:\"Make inbound leads actionable before they fall off the vine\"})}),className:\"framer-nf2tjv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a14691af-d083-4b2d-aaa3-06c7eaddb969, rgb(102, 102, 102))\"},children:\"We can aggregate leads from your marketing initiatives, score them on just about any criteria, and then create processes that actually take action on them.\"})}),className:\"framer-nnh09h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bmvzr0\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1api9ha\",\"data-framer-name\":\"Package\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+1502+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/W4TOUYglKMU3XgEE3XLfZ0X5LaQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/W4TOUYglKMU3XgEE3XLfZ0X5LaQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/W4TOUYglKMU3XgEE3XLfZ0X5LaQ.png 800w\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4328.5+80+356+0+1854+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/W4TOUYglKMU3XgEE3XLfZ0X5LaQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/W4TOUYglKMU3XgEE3XLfZ0X5LaQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/W4TOUYglKMU3XgEE3XLfZ0X5LaQ.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+1502+0+0+0),pixelHeight:600,pixelWidth:800,sizes:\"160px\",src:\"https://framerusercontent.com/images/W4TOUYglKMU3XgEE3XLfZ0X5LaQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/W4TOUYglKMU3XgEE3XLfZ0X5LaQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/W4TOUYglKMU3XgEE3XLfZ0X5LaQ.png 800w\"},className:\"framer-1coq0rx\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vao51d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"center\"},children:\"Take full advantage of the new GTM tool stack\"})}),className:\"framer-whi4c9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a14691af-d083-4b2d-aaa3-06c7eaddb969, rgb(102, 102, 102))\"},children:\"Tools like Clay are powerful and complex. The Kiln helps spark new ideas on how to use them effectively, while integrating the existing stack you\u2019ve worked so hard to build.\"})}),className:\"framer-15htra5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cxtnl7 hidden-cng6u2\",\"data-framer-name\":\"Package\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-iggga5\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a02jpp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+1502+0+141+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+1502+0+141+12),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/qOE0frZztyNDTWEHEkLKKGkRAtI.png\"},className:\"framer-dkj5lv\",\"data-framer-name\":\"Image\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dfuzgm hidden-cng6u2\",\"data-framer-name\":\"Package\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-8nlfto hidden-cng6u2\",\"data-framer-name\":\"Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hbtvca\",\"data-framer-name\":\"Package\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nwpscg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13u7w81\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+80+244+0+1840+0+160-64+8),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/QRPwHLqPSZbKEFhJRsA4Af6rtNk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+80+244+0+1840+0+160-64+8),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/QRPwHLqPSZbKEFhJRsA4Af6rtNk.png\"},className:\"framer-11mgshi\",\"data-framer-name\":\"Image\"})})})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-u7p1ez hidden-71pbkc hidden-cng6u2\",\"data-framer-name\":\"Scribble\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:274,intrinsicWidth:275,svg:'<svg width=\"275\" height=\"274\" viewBox=\"0 0 275 274\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1427_1214)\">\\n<path d=\"M129.387 44.5509L126.413 43.6235C125.419 43.3259 124.416 43.0553 123.418 42.7701L117.416 41.0833C116.381 40.8121 115.23 40.5235 113.925 40.3875C113.273 40.3208 112.58 40.2953 111.86 40.3454C111.143 40.3914 110.387 40.5296 109.692 40.742C108.284 41.1617 107.081 41.8538 106.065 42.5958C105.042 43.3414 104.188 44.1469 103.405 44.9304C97.4047 51.0472 92.6128 57.9846 88.2522 65.0176C86.0706 68.539 83.9935 72.08 81.9195 75.6132C79.8425 79.1481 77.785 82.694 75.7365 86.2449C71.6415 93.3476 67.5978 100.479 63.5895 107.63C59.3386 115.211 55.1199 122.831 50.9103 130.451C48.8061 134.261 46.7022 138.071 44.5998 141.878C43.5475 143.78 42.4956 145.682 41.4443 147.583L39.8654 150.431L39.0708 151.864C38.7975 152.362 38.5176 152.888 38.2522 153.455C37.857 154.304 37.479 155.251 37.2717 156.358C37.056 157.446 37.0546 158.749 37.4313 159.966C37.8004 161.185 38.4669 162.199 39.147 162.988C39.8323 163.783 40.5455 164.414 41.206 164.973L45.0128 168.12C46.2781 169.165 47.5406 170.213 48.8209 171.239L52.6485 174.334L56.5024 177.397C59.0661 179.446 61.6684 181.445 64.2601 183.459C74.6596 191.47 85.2786 199.197 96.0791 206.662C106.9 214.096 117.888 221.293 129.085 228.154L133.288 230.721L137.512 233.252L139.627 234.514L140.71 235.157C141.11 235.387 141.573 235.642 142.134 235.875C142.692 236.105 143.367 236.322 144.164 236.39C144.952 236.468 145.865 236.339 146.583 236.066C147.315 235.798 147.892 235.433 148.362 235.085C148.836 234.734 149.212 234.389 149.541 234.083C154.387 229.511 158.889 224.627 163.044 219.438C164.039 218.196 163.832 216.38 162.582 215.382C162.547 215.355 162.513 215.328 162.478 215.303L162.458 215.289C145.936 203.364 129.413 191.438 112.887 179.511L88.2681 161.746C88.1493 161.651 88.1324 161.606 88.2016 161.702C88.2672 161.784 88.402 162.082 88.4097 162.328C88.4266 162.577 88.3719 162.704 88.3817 162.682C88.3855 162.667 88.4435 162.541 88.5534 162.365L90.5869 159.282L94.7882 152.956C97.6014 148.747 100.419 144.54 103.261 140.351C111.245 128.561 119.347 116.851 127.565 105.223L133.751 96.5172L136.861 92.1758L138.42 90.0084C138.938 89.291 139.468 88.5412 139.953 87.8941C140.929 86.5837 141.94 85.4529 142.888 84.8472C143.36 84.5413 143.786 84.3653 144.187 84.2881C144.394 84.2663 144.585 84.2318 144.805 84.2473C145.026 84.2589 145.273 84.295 145.546 84.3596C146.634 84.6006 148.127 85.3887 149.744 86.2252C151.321 87.0427 152.909 87.8374 154.471 88.6835C167.025 95.3331 179.183 102.732 190.86 110.824C196.699 114.87 202.417 119.089 208.004 123.475C209.406 124.564 210.78 125.689 212.17 126.795C213.552 127.909 214.913 129.05 216.285 130.177C217.651 131.304 218.864 132.358 219.693 133.415C220.106 133.94 220.427 134.451 220.613 134.93C220.803 135.414 220.897 135.85 220.9 136.353C220.898 136.856 220.807 137.423 220.619 138.046C220.425 138.671 220.141 139.342 219.797 140.039C219.11 141.415 218.15 143.015 217.289 144.552C215.527 147.64 213.757 150.724 211.965 153.795C208.386 159.939 204.749 166.05 201.053 172.125C197.359 178.202 193.603 184.24 189.794 190.246L188.362 192.495L187.675 193.565C187.472 193.869 187.289 194.116 187.145 194.274C186.999 194.441 186.903 194.501 186.891 194.509C186.879 194.511 186.959 194.487 186.961 194.488C186.968 194.486 186.894 194.497 186.72 194.448C186.548 194.402 186.302 194.309 186.016 194.172C185.727 194.036 185.406 193.861 185.033 193.649L183.864 192.986L181.526 191.66L176.85 189.008L139.503 167.824C138.855 167.445 138.373 167.067 138.196 166.846C138.104 166.737 138.087 166.689 138.082 166.683C138.081 166.673 138.08 166.687 138.081 166.608C138.071 166.465 138.222 165.954 138.545 165.336C138.704 165.024 138.903 164.671 139.128 164.278L139.783 163.131C141.532 160.075 143.33 157.046 145.211 154.069C148.959 148.106 152.952 142.296 157.189 136.669C160.841 131.803 164.673 127.047 168.644 122.411L164.523 122.879C173.575 129.267 182.472 135.864 191.059 142.61C191.844 143.236 192.706 143.88 193.265 144.371C193.55 144.624 193.789 144.861 193.95 145.062C194.112 145.263 194.206 145.423 194.256 145.538C194.301 145.654 194.324 145.735 194.328 145.883C194.333 146.025 194.294 146.236 194.212 146.487C194.046 146.996 193.695 147.632 193.272 148.324C191.515 151.212 189.965 153.84 188.602 156.226C185.876 160.998 183.899 164.804 182.521 167.806C180.515 172.177 181.151 172.57 183.912 169.482C185.292 167.938 187.204 165.524 189.581 162.302C190.77 160.691 192.076 158.878 193.49 156.871C194.192 155.864 194.926 154.811 195.691 153.715C196.07 153.164 196.457 152.602 196.851 152.03C197.242 151.451 197.635 150.904 198.09 150.18C198.61 149.325 199.193 148.297 199.459 146.884C199.584 146.182 199.596 145.382 199.441 144.607C199.289 143.833 198.984 143.112 198.624 142.52C197.893 141.33 197.03 140.55 196.275 139.891C195.918 139.594 195.56 139.297 195.202 138.998C194.854 138.712 194.506 138.425 194.157 138.137C191.361 135.845 188.5 133.557 185.601 131.292C179.8 126.765 173.837 122.338 167.926 118.144L167.889 118.117C166.724 117.291 165.13 117.507 164.222 118.565C163.671 119.211 163.142 119.832 162.615 120.45C156.934 127.161 151.597 134.152 146.627 141.39C144.142 145.008 141.749 148.688 139.45 152.426C138.3 154.294 137.174 156.176 136.074 158.074C135.515 159.017 134.982 159.976 134.439 160.928C134.167 161.412 133.905 161.859 133.613 162.404C133.326 162.95 133.03 163.544 132.786 164.252C132.544 164.95 132.348 165.783 132.365 166.721C132.372 167.657 132.653 168.663 133.114 169.474C133.574 170.286 134.161 170.91 134.727 171.397C135.296 171.884 135.863 172.264 136.396 172.587C136.664 172.752 136.921 172.899 137.173 173.042L137.887 173.446L139.312 174.251L142.162 175.861L153.553 182.308C161.142 186.615 168.728 190.92 176.314 195.225L181.999 198.46C182.463 198.723 183 199.035 183.606 199.321C184.21 199.608 184.905 199.886 185.732 200.058C186.154 200.138 186.602 200.192 187.082 200.185C187.563 200.171 188.064 200.111 188.55 199.965C189.536 199.683 190.371 199.116 190.957 198.552C191.56 197.982 191.98 197.409 192.34 196.888C192.701 196.356 192.968 195.921 193.266 195.46L195.022 192.713L198.511 187.203C203.14 179.844 207.696 172.439 212.165 164.982C214.4 161.254 216.616 157.514 218.811 153.762L222.09 148.126L223.716 145.301C224.256 144.365 224.832 143.359 225.361 142.262C225.885 141.159 226.371 139.95 226.66 138.575C226.797 137.886 226.896 137.166 226.896 136.413C226.893 135.664 226.826 134.891 226.643 134.145C226.294 132.647 225.596 131.312 224.804 130.213C224.01 129.101 223.122 128.188 222.246 127.365C221.363 126.539 220.497 125.82 219.663 125.124L217.135 123.01C215.441 121.612 213.734 120.228 212.021 118.852C208.229 115.827 204.336 112.848 200.38 109.926C196.405 107.029 192.383 104.167 188.29 101.437C184.197 98.7069 180.076 96.0467 175.914 93.5471C173.848 92.2732 171.748 91.0793 169.68 89.8657C167.586 88.6968 165.523 87.5058 163.435 86.4025C161.776 85.5069 160.115 84.6135 158.438 83.7521L155.929 82.4456L153.401 81.1737L150.858 79.8978C149.97 79.4656 148.984 79.0071 147.841 78.6505C146.705 78.2971 145.368 78.0483 143.946 78.1686C142.541 78.2861 141.195 78.7698 140.087 79.4127C138.966 80.0559 138.074 80.8428 137.293 81.6347C136.515 82.4315 135.854 83.25 135.248 84.0543C134.95 84.4539 134.657 84.8588 134.385 85.2424L133.575 86.3832L131.954 88.6645C129.8 91.7119 127.646 94.7602 125.491 97.8091C116.896 110.022 108.393 122.314 100.009 134.693C95.8175 140.882 91.656 147.093 87.5283 153.325L84.439 158.004L84.0532 158.589L83.6356 159.231C83.3311 159.735 82.9489 160.36 82.7156 161.328C82.6043 161.808 82.5494 162.389 82.6316 162.994C82.7088 163.599 82.9371 164.198 83.2144 164.667C83.7857 165.613 84.4279 166.099 84.8978 166.468L94.0939 173.078C106.296 181.807 118.492 190.531 130.674 199.246C140.191 206.041 149.721 212.845 159.296 219.682L158.784 216.055C156.288 219.198 153.654 222.234 150.889 225.149C149.505 226.605 148.093 228.035 146.646 229.43C146.291 229.769 145.9 230.154 145.595 230.429C145.287 230.709 145.021 230.907 144.85 230.997C144.765 231.043 144.707 231.064 144.677 231.073C144.644 231.08 144.646 231.079 144.614 231.08C144.56 231.082 144.372 231.051 144.082 230.923C143.528 230.685 142.522 230.046 141.665 229.549L139.019 227.981C137.251 226.943 135.496 225.883 133.745 224.816C130.23 222.703 126.751 220.529 123.27 218.359C116.323 213.995 109.455 209.501 102.653 204.914C99.2467 202.628 95.8782 200.287 92.506 197.954C89.1557 195.588 85.8012 193.23 82.4859 190.82C74.4517 185.011 66.5338 179.042 58.7387 172.917C56.7823 171.396 54.8483 169.846 52.9154 168.295C50.9747 166.753 49.0554 165.185 47.1389 163.614L44.2774 161.27C43.3781 160.524 42.6503 159.804 42.2769 159.154C42.097 158.828 41.9892 158.547 41.9495 158.233C41.9068 157.919 41.9207 157.561 42.0026 157.152C42.169 156.329 42.6166 155.359 43.1692 154.337C52.6806 137.028 62.2197 119.672 71.9752 102.49C76.8532 93.8941 81.7919 85.3356 86.8196 76.8319C91.8481 68.3322 96.8596 59.8676 103.149 52.497C103.54 52.0355 103.933 51.5761 104.34 51.1308C104.745 50.683 105.141 50.2265 105.561 49.7938C106.39 48.9124 107.214 48.0322 108.05 47.3097C108.886 46.5796 109.749 45.9809 110.62 45.6291C111.057 45.4514 111.487 45.3379 111.933 45.2813C112.384 45.2295 112.864 45.2253 113.376 45.2788C114.398 45.3771 115.515 45.6675 116.708 45.9979L120.272 47.0113L123.836 48.0246C124.432 48.1879 125.023 48.3662 125.611 48.5565L127.378 49.1123L130.913 50.224L132.681 50.7796C133.269 50.9698 133.85 51.1795 134.435 51.3783C136.769 52.1896 139.111 52.9777 141.439 53.8077L148.379 56.4163C150.681 57.3134 152.96 58.2715 155.253 59.196C157.089 59.9173 158.875 60.74 160.672 61.5169C161.569 61.9089 162.464 62.3002 163.358 62.6907L164.697 63.2752L166.02 63.8901C167.781 64.7126 169.534 65.5316 171.28 66.3473L172.589 66.9569L173.879 67.5991C174.738 68.0268 175.595 68.4533 176.45 68.879C177.306 69.3039 178.16 69.7279 179.012 70.1508L180.289 70.7837L181.546 71.4482C183.221 72.3317 184.889 73.2112 186.548 74.0862L187.792 74.7401L189.017 75.4221C189.832 75.8775 190.645 76.3317 191.456 76.7849C192.267 77.2371 193.077 77.688 193.884 78.1379C194.691 78.5876 195.502 79.0285 196.287 79.5051C209.012 86.8856 220.783 94.6646 231.543 102.498C236.434 106.17 238.949 107.634 238.885 107.016C238.854 106.706 238.176 105.875 236.827 104.538C236.153 103.87 235.311 103.075 234.298 102.155C233.79 101.698 233.246 101.201 232.647 100.688C232.038 100.187 231.389 99.6533 230.699 99.0857C215.089 86.1931 197.233 74.4405 178.437 64.7082C174.597 62.6583 170.62 60.8181 166.653 58.9163C162.632 57.1326 158.61 55.3003 154.494 53.6716L151.42 52.4152C150.398 51.9904 149.352 51.6242 148.318 51.2259C146.243 50.4511 144.177 49.6487 142.093 48.8975C140 48.1728 137.907 47.4484 135.817 46.7246L134.248 46.1858L132.667 45.6855C131.614 45.3514 130.561 45.0177 129.509 44.6842C129.472 44.6403 129.436 44.5994 129.387 44.5509Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1427_1214\">\\n<rect width=\"201.031\" height=\"200\" fill=\"white\" transform=\"matrix(0.866025 0.5 0.5 -0.866025 0.435547 173.345)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4288.5+160),pixelHeight:1e3,pixelWidth:1e3,sizes:\"200px\",src:\"https://framerusercontent.com/images/s3qgtRbAaZbmnFwFFB0yIZkfAc0.png\",srcSet:\"https://framerusercontent.com/images/s3qgtRbAaZbmnFwFFB0yIZkfAc0.png?scale-down-to=512 512w,https://framerusercontent.com/images/s3qgtRbAaZbmnFwFFB0yIZkfAc0.png 1000w\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4328.5+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"160px\",src:\"https://framerusercontent.com/images/s3qgtRbAaZbmnFwFFB0yIZkfAc0.png\",srcSet:\"https://framerusercontent.com/images/s3qgtRbAaZbmnFwFFB0yIZkfAc0.png?scale-down-to=512 512w,https://framerusercontent.com/images/s3qgtRbAaZbmnFwFFB0yIZkfAc0.png 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2751+160),pixelHeight:1e3,pixelWidth:1e3,sizes:\"320px\",src:\"https://framerusercontent.com/images/s3qgtRbAaZbmnFwFFB0yIZkfAc0.png\",srcSet:\"https://framerusercontent.com/images/s3qgtRbAaZbmnFwFFB0yIZkfAc0.png?scale-down-to=512 512w,https://framerusercontent.com/images/s3qgtRbAaZbmnFwFFB0yIZkfAc0.png 1000w\"},className:\"framer-80f2mw\",\"data-framer-name\":\"Image\",style:{rotate:-16}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nl5vqp\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bem3eg\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ok618e\",\"data-styles-preset\":\"rNmRS82K_\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(17, 17, 17, 0.4) 100%)\"},children:\"Testimonials\"})})}),className:\"framer-qiyctp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mc2qgk\",\"data-styles-preset\":\"j5P3ZA7dV\",style:{\"--framer-text-alignment\":\"center\"},children:\"Leading GTM teams love The Kiln\"})}),className:\"framer-1jn0muk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s2wxxc-container\",isModuleExternal:true,nodeId:\"pXbkaYdOF\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:16,height:\"100%\",hoverFactor:0,id:\"pXbkaYdOF\",layoutId:\"pXbkaYdOF\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n7dizv\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"The Kiln crushed it. We hired them to scale campaigns we were setting up manually, and it would take days to launch. They automated everything\u2026 it was magical to see. Patrick and Mathias are rockstars at this. If you have the chance to work with them, hire them!\"})}),className:\"framer-vkr7dh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tk2y0a\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:800,pixelWidth:800,sizes:\"50px\",src:\"https://framerusercontent.com/images/fs2YTluJ290XBNvBQTTJlEBdjs0.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fs2YTluJ290XBNvBQTTJlEBdjs0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/fs2YTluJ290XBNvBQTTJlEBdjs0.jpeg 800w\"},className:\"framer-1wdvm44\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y02e33\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Luiz Cent\"})})}),className:\"framer-16end85\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"GTM at Terraboost\"})}),className:\"framer-whrm3l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13g1iyj\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"The Kiln team was incredibly flexible and met us exactly where we needed. They hit our major asks in less than 48 hours! Highly recommend working with this skilled & collaborative team\"})}),className:\"framer-jeuv0m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bb0mzf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/Hb3Fk2puxFqF8RySnFHQQJJjuCU.jpeg\"},className:\"framer-ek9ql5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/hYwpQrUuDglPpaE8njic6n9y0.png\"},className:\"framer-y6oybk\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1and4u4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Taylor Bond\"})})}),className:\"framer-revw79\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Senior Director of Operations, NewStore\"})}),className:\"framer-vfzi6d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jtb5n2\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Working with The Kiln team was great - their work was fast and effective. They helped us set up several detailed waterfall tables in Clay and recorded detailed SOPs for our team to use after the engagement. They made everything so easy.\"})}),className:\"framer-bipolc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u0soa5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/kRiTonGZJYeiarcncT2epmnlSk0.png\"},className:\"framer-162b41n\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c6v96r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Jon Caldwell\"})})}),className:\"framer-1yrt3l0\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Growth at Bunker\"})}),className:\"framer-1smr8sl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i2ei95\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"They took my whole TAM, put them into a Clay table and used AI to write 50,000 emails that people actually answer! Worth every dime.\"})}),className:\"framer-ucxy3d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tpseqq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:800,pixelWidth:800,sizes:\"50px\",src:\"https://framerusercontent.com/images/BneCgfyVVG987fwGSIcaPtbeAgw.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BneCgfyVVG987fwGSIcaPtbeAgw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/BneCgfyVVG987fwGSIcaPtbeAgw.jpeg 800w\"},className:\"framer-kec1of\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d0mzy2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Harrison Cuker\"})})}),className:\"framer-1figknl\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Head of Sales at Antimetal\"})}),className:\"framer-1hzma9d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-clcui3\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"We're spending so much more time selling now, instead of actively preparing to sell.\"})}),className:\"framer-1wlrd3m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-auv9bn\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:800,pixelWidth:800,sizes:\"50px\",src:\"https://framerusercontent.com/images/PhZStCLdggw2WpNbSai6FBqiw.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PhZStCLdggw2WpNbSai6FBqiw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/PhZStCLdggw2WpNbSai6FBqiw.jpeg 800w\"},className:\"framer-pl0d7l\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14a3wic\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Jonathan Rosenfeld\"})}),className:\"framer-o6fyyi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Head of Marketing at Hologram\"})}),className:\"framer-im8hte\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f7qc0b\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Before working with The Kiln, we were completely flooding the market\u2014just blasting emails to everyone. It was a total shotgun approach. Now, we have a much more targeted audience, and it's making a real difference.\"})}),className:\"framer-9ub9wu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qh18qf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:800,pixelWidth:800,sizes:\"50px\",src:\"https://framerusercontent.com/images/mhvzYEcIOI1hOsPrUUKQucFSY4.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mhvzYEcIOI1hOsPrUUKQucFSY4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mhvzYEcIOI1hOsPrUUKQucFSY4.jpeg 800w\"},className:\"framer-2z6jxs\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gow7bz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Cynthia Barbarito\"})}),className:\"framer-ik4cy9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Director of Marketing at T-ROC\"})}),className:\"framer-w7b5hs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yj2tm1\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"The ability to press a single button and instantly enrich data has been a game changer for our sales team. They no longer have to spend time manually gathering information.\"})}),className:\"framer-sxa8fj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aigiv0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:185,pixelWidth:185,src:\"https://framerusercontent.com/images/nJAKxip8CjZlGxAkGLqN3Q577E.png\"},className:\"framer-r7hoqy\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12j3f4c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Kate Hoffer\"})}),className:\"framer-1cj5goo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Marketing Director at Redocs\"})}),className:\"framer-umkyh9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nedcej\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"The Kiln are true Clay experts. They came up with new ideas for our business that were extremely valuable- everything exceeded our expectations and they went above and beyond to deliver the outcomes we are looking for.\"})}),className:\"framer-ghcmko\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m9ha6t\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:800,pixelWidth:800,sizes:\"50px\",src:\"https://framerusercontent.com/images/NsUlCGHZ3osVupzQ8xoDPGgTDYY.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NsUlCGHZ3osVupzQ8xoDPGgTDYY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NsUlCGHZ3osVupzQ8xoDPGgTDYY.jpeg 800w\"},className:\"framer-1bvatsl\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10z693u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"Stehl Carriere\"})}),className:\"framer-1pgh122\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",children:\"VP of Special Projects\"})}),className:\"framer-i4g2hj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Jrz5s3tCQ\"},implicitPathVariables:undefined},{href:{webPageId:\"Jrz5s3tCQ\"},implicitPathVariables:undefined},{href:{webPageId:\"Jrz5s3tCQ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+6692.5+40+552},z0dMFkpq8:{y:(componentViewport?.y||0)+0+7044.5+40+552}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+5155+40+552,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6pws4p-container\",nodeId:\"YO6wF8tE7\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks1[1]},z0dMFkpq8:{QF9iNnT_g:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"More kind words  >>>\",height:\"100%\",id:\"YO6wF8tE7\",layoutId:\"YO6wF8tE7\",QF9iNnT_g:resolvedLinks1[0],variant:\"myRZWAisy\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hu06on\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mc2qgk\",\"data-styles-preset\":\"j5P3ZA7dV\",style:{\"--framer-text-alignment\":\"center\"},children:\"Take it from Clay\"})}),className:\"framer-xg1s4o\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eszy43\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xcuuz9\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vp5mx9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xRCirnI2N\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://drive.google.com/file/d/18wUmUexlMKGTffgMLMBPBfhScPSUZL6g/preview\" width=\"100%\" height=\"100%\" allow=\"autoplay\" frameborder=\"0\"></iframe>',id:\"xRCirnI2N\",layoutId:\"xRCirnI2N\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://drive.google.com/file/d/18wUmUexlMKGTffgMLMBPBfhScPSUZL6g/preview\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qzq7z7\",\"data-styles-preset\":\"Wso5FPOzB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a14691af-d083-4b2d-aaa3-06c7eaddb969, rgb(102, 102, 102))\"},children:\"From Varun Anand, Co-Founder and Head of Ops at Clay\"})}),className:\"framer-1dx28ir\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jr6ea1 hidden-cng6u2\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9envje\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7392.5+80+128+40+0+109.5),pixelHeight:960,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"241px\",src:\"https://framerusercontent.com/images/OppITi57LfaOryNqf88lvAUoX0.png\",srcSet:\"https://framerusercontent.com/images/OppITi57LfaOryNqf88lvAUoX0.png?scale-down-to=512 512w,https://framerusercontent.com/images/OppITi57LfaOryNqf88lvAUoX0.png 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5855+80+128+40+0+109.5),pixelHeight:960,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"241px\",src:\"https://framerusercontent.com/images/OppITi57LfaOryNqf88lvAUoX0.png\",srcSet:\"https://framerusercontent.com/images/OppITi57LfaOryNqf88lvAUoX0.png?scale-down-to=512 512w,https://framerusercontent.com/images/OppITi57LfaOryNqf88lvAUoX0.png 960w\"},className:\"framer-5k3kr0\",\"data-framer-name\":\"image 19\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7392.5+80+128+40+0+-.5),pixelHeight:640,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"161px\",src:\"https://framerusercontent.com/images/R93YOrQq0ZFpXelvBpLvrHtE40.png\",srcSet:\"https://framerusercontent.com/images/R93YOrQq0ZFpXelvBpLvrHtE40.png?scale-down-to=512 512w,https://framerusercontent.com/images/R93YOrQq0ZFpXelvBpLvrHtE40.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5855+80+128+40+0+-.5),pixelHeight:640,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"161px\",src:\"https://framerusercontent.com/images/R93YOrQq0ZFpXelvBpLvrHtE40.png\",srcSet:\"https://framerusercontent.com/images/R93YOrQq0ZFpXelvBpLvrHtE40.png?scale-down-to=512 512w,https://framerusercontent.com/images/R93YOrQq0ZFpXelvBpLvrHtE40.png 640w\"},className:\"framer-1gxxotj\",\"data-framer-name\":\"image 20\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7392.5+80+128+40+0+79.5),pixelHeight:320,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vlDfZ7CMwmwPweRomWC9AGWFIA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5855+80+128+40+0+79.5),pixelHeight:320,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vlDfZ7CMwmwPweRomWC9AGWFIA.png\"},className:\"framer-1obtz1w\",\"data-framer-name\":\"image 21\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7392.5+80+128+40+0+229.5),pixelHeight:320,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vlDfZ7CMwmwPweRomWC9AGWFIA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5855+80+128+40+0+229.5),pixelHeight:320,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vlDfZ7CMwmwPweRomWC9AGWFIA.png\"},className:\"framer-o6bwq0\",\"data-framer-name\":\"image 22\"})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7392.5+80+128+40),pixelHeight:1400,pixelWidth:1188,positionX:\"center\",positionY:\"center\",sizes:\"297px\",src:\"https://framerusercontent.com/images/O2COqSNTqqgdXBkQodRR4QcaGgo.png\",srcSet:\"https://framerusercontent.com/images/O2COqSNTqqgdXBkQodRR4QcaGgo.png?scale-down-to=1024 868w,https://framerusercontent.com/images/O2COqSNTqqgdXBkQodRR4QcaGgo.png 1188w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5855+80+128+40),pixelHeight:1400,pixelWidth:1188,positionX:\"center\",positionY:\"center\",sizes:\"297px\",src:\"https://framerusercontent.com/images/O2COqSNTqqgdXBkQodRR4QcaGgo.png\",srcSet:\"https://framerusercontent.com/images/O2COqSNTqqgdXBkQodRR4QcaGgo.png?scale-down-to=1024 868w,https://framerusercontent.com/images/O2COqSNTqqgdXBkQodRR4QcaGgo.png 1188w\"},className:\"framer-1vgdy8k hidden-cng6u2\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kloolj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1crhnii\",\"data-styles-preset\":\"Zs4QTaX0G\",style:{\"--framer-text-alignment\":\"center\"},children:\"More shoutouts\"})}),className:\"framer-1sdxgzf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bg8f4\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-huzwbj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7392.5+80+649+0+60+16+0),pixelHeight:540,pixelWidth:960,sizes:\"213.3333px\",src:\"https://framerusercontent.com/images/kRjaokSG10gisW3IC8ad7CL5L80.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kRjaokSG10gisW3IC8ad7CL5L80.png?scale-down-to=512 512w,https://framerusercontent.com/images/kRjaokSG10gisW3IC8ad7CL5L80.png 960w\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7744.5+80+649+0+60+16+0+0),pixelHeight:540,pixelWidth:960,sizes:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,src:\"https://framerusercontent.com/images/kRjaokSG10gisW3IC8ad7CL5L80.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kRjaokSG10gisW3IC8ad7CL5L80.png?scale-down-to=512 512w,https://framerusercontent.com/images/kRjaokSG10gisW3IC8ad7CL5L80.png 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5855+80+649+0+60+16+0),pixelHeight:540,pixelWidth:960,sizes:\"213.3333px\",src:\"https://framerusercontent.com/images/kRjaokSG10gisW3IC8ad7CL5L80.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kRjaokSG10gisW3IC8ad7CL5L80.png?scale-down-to=512 512w,https://framerusercontent.com/images/kRjaokSG10gisW3IC8ad7CL5L80.png 960w\"},className:\"framer-lx6arz\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s98uvv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qzq7z7\",\"data-styles-preset\":\"Wso5FPOzB\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, rgb(17, 17, 17))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"From Katie Penner\"})})}),className:\"framer-w5aent\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a14691af-d083-4b2d-aaa3-06c7eaddb969, rgb(102, 102, 102))\"},children:\"Head of Sender Relations @Sendoso\"})}),className:\"framer-qnwrgg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-im149a\",\"data-framer-name\":\"button\",id:\"im149a\",onTap:onTap3bnx0g({overlay}),whileHover:animation,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7392.5+80+649+0+60+52+14),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/ywFmUUVWirkBVyTSYuoyWVoYo0.png\"}},z0dMFkpq8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7744.5+80+649+0+60+16+224+14),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/ywFmUUVWirkBVyTSYuoyWVoYo0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5855+80+649+0+60+52+14),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/ywFmUUVWirkBVyTSYuoyWVoYo0.png\"},className:\"framer-1ctgtuo\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-color\":\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Watch\"})})}),className:\"framer-3z44iq\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__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-dwueus\"),\"data-framer-portal-id\":\"im149a\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"xGeN5REJj\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-bkfdyh\"),\"data-framer-portal-id\":\"im149a\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18k9ay\",children:[/*#__PURE__*/_jsxs(motion.div,{animate:animation11,className:\"framer-xkh5ss\",\"data-border\":true,\"data-framer-name\":\"button\",initial:animation12,onTap:onTap1wnntms({overlay}),whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-color\":\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Close\"})})}),className:\"framer-i4jmxp\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24.5,pixelHeight:48,pixelWidth:49,src:\"https://framerusercontent.com/images/jydzLedq3gMc7wAtNnZeIwDurY.png\"},className:\"framer-g9eucx\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1npulbd\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bc53zi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xDJJmJ7uX\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://drive.google.com/file/d/1qwGrFzF6BQH26FNykZ4TYguApjuqGx5-/preview\" width=\"640\" height=\"480\" allow=\"autoplay\"></iframe>',id:\"xDJJmJ7uX\",layoutId:\"xDJJmJ7uX\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://drive.google.com/file/d/18wUmUexlMKGTffgMLMBPBfhScPSUZL6g/preview\",width:\"100%\"})})})})]})})]}),getContainer())})})]})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0rnqx\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-flq0ik\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ok618e\",\"data-styles-preset\":\"rNmRS82K_\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(102, 102, 102) 100%)\"},children:\"Book a Demo\"})})}),className:\"framer-16exawg\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mc2qgk\",\"data-styles-preset\":\"j5P3ZA7dV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"},children:\"Get in touch today to level-up your processes\"})}),className:\"framer-37nmhk\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qzq7z7\",\"data-styles-preset\":\"Wso5FPOzB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"},children:\"Partnered with leading go-to-market teams to automate outbound, sales flows, and much more.\"})}),className:\"framer-1klc36a\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PeOLGPUFq\"},implicitPathVariables:undefined},{href:{webPageId:\"PeOLGPUFq\"},implicitPathVariables:undefined},{href:{webPageId:\"PeOLGPUFq\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+8453.5+160+394},z0dMFkpq8:{y:(componentViewport?.y||0)+0+8917.5+160+394}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+6916+160+394,children:/*#__PURE__*/_jsx(Container,{className:\"framer-66mzpc-container\",nodeId:\"qOzvN8rse\",rendersWithMotion:true,scopeId:\"d9Cnb39Sa\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{BI3GclLuy:resolvedLinks2[1]},z0dMFkpq8:{BI3GclLuy:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{BI3GclLuy:resolvedLinks2[0],FYxXrMdiK:\"Talk with us\",height:\"100%\",id:\"qOzvN8rse\",layoutId:\"qOzvN8rse\",variant:\"e3Rc2vqdO\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rhznf7\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m0v7qd\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gTnlN3LwQ\"},motionChild:true,nodeId:\"BnHsSMJJV\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-8471ru framer-15nasx0\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tu6pqc\",\"data-framer-name\":\"logo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1reatow\",\"data-framer-name\":\"shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_1425_509\" fill=\"white\">\\n<path d=\"M0.882324 7.05882C0.882324 10.9573 4.04267 14.1176 7.94115 14.1176C11.8396 14.1176 15 10.9573 15 7.05882V0.276814C15 0.123933 14.876 -1.90735e-06 14.7232 -1.90735e-06H7.94115C4.04267 -1.90735e-06 0.882324 3.16034 0.882324 7.05882Z\"/>\\n</mask>\\n<path d=\"M0.882324 7.05882C0.882324 10.9573 4.04267 14.1176 7.94115 14.1176C11.8396 14.1176 15 10.9573 15 7.05882V0.276814C15 0.123933 14.876 -1.90735e-06 14.7232 -1.90735e-06H7.94115C4.04267 -1.90735e-06 0.882324 3.16034 0.882324 7.05882Z\" stroke=\"black\" stroke-width=\"8.47059\" mask=\"url(#path-1-inside-1_1425_509)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1maggga\",\"data-border\":true,\"data-framer-name\":\"shape\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xvd646\",\"data-framer-name\":\"shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_1425_511\" fill=\"white\">\\n<path d=\"M0 7.94118C0 11.8397 3.16034 15 7.05882 15C10.9573 15 14.1176 11.8397 14.1176 7.94118V1.15917C14.1176 1.00629 13.9937 0.882353 13.8408 0.882353H7.05882C3.16034 0.882353 0 4.0427 0 7.94118Z\"/>\\n</mask>\\n<path d=\"M0 7.94118C0 11.8397 3.16034 15 7.05882 15C10.9573 15 14.1176 11.8397 14.1176 7.94118V1.15917C14.1176 1.00629 13.9937 0.882353 13.8408 0.882353H7.05882C3.16034 0.882353 0 4.0427 0 7.94118Z\" stroke=\"black\" stroke-width=\"8.47059\" mask=\"url(#path-1-inside-1_1425_511)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gk05lh\",\"data-border\":true,\"data-framer-name\":\"shape\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1exrouv\",\"data-styles-preset\":\"Uap6Y9eIp\",style:{\"--framer-text-color\":\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"The Kiln\"})})}),className:\"framer-z9dml2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ftogo\",\"data-styles-preset\":\"XhHNQBMeI\",style:{\"--framer-text-color\":\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"},children:\"The Kiln is a team of GTM experts, data scientists, and former Clay employees that help the world's leading RevOps and growth teams scale their most creative ideas.\"})}),className:\"framer-1kye1zg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12f6b1u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qzq7z7\",\"data-styles-preset\":\"Wso5FPOzB\",style:{\"--framer-text-color\":\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"About us\"})})}),className:\"framer-106jqbs\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-195fgd\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gTnlN3LwQ\"},implicitPathVariables:undefined},{href:{webPageId:\"gTnlN3LwQ\"},implicitPathVariables:undefined},{href:{webPageId:\"gTnlN3LwQ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+9253.5+16+0+0+52+0+0},z0dMFkpq8:{y:(componentViewport?.y||0)+0+9717.5+16+249.2+0+52+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+7716+16+0+0+52+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rsld2-container\",nodeId:\"ICJtxSnos\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks3[1]},z0dMFkpq8:{QF9iNnT_g:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Home\",height:\"100%\",id:\"ICJtxSnos\",layoutId:\"ICJtxSnos\",QF9iNnT_g:resolvedLinks3[0],variant:\"SNwAPAVTb\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FgMzPmcXm\"},implicitPathVariables:undefined},{href:{webPageId:\"FgMzPmcXm\"},implicitPathVariables:undefined},{href:{webPageId:\"FgMzPmcXm\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+9253.5+16+0+0+52+0+44},z0dMFkpq8:{y:(componentViewport?.y||0)+0+9717.5+16+249.2+0+52+0+44}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+7716+16+0+0+52+0+44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-168187b-container\",nodeId:\"jzjaEV004\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks4[1]},z0dMFkpq8:{QF9iNnT_g:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Case Studies\",height:\"100%\",id:\"jzjaEV004\",layoutId:\"jzjaEV004\",QF9iNnT_g:resolvedLinks4[0],variant:\"SNwAPAVTb\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+9253.5+16+0+0+52+0+88},z0dMFkpq8:{y:(componentViewport?.y||0)+0+9717.5+16+249.2+0+52+0+88}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+7716+16+0+0+52+0+88,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5ydtaw-container\",nodeId:\"rmdnKRYKm\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Follow us on LinkedIn\",height:\"100%\",id:\"rmdnKRYKm\",layoutId:\"rmdnKRYKm\",QF9iNnT_g:\"https://www.linkedin.com/company/the-kiln-agency/\",variant:\"SNwAPAVTb\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w27usi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qzq7z7\",\"data-styles-preset\":\"Wso5FPOzB\",style:{\"--framer-text-color\":\"var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Resources\"})})}),className:\"framer-1mu7rji\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-umw5ur\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lhgru9L9N\"},implicitPathVariables:undefined},{href:{webPageId:\"lhgru9L9N\"},implicitPathVariables:undefined},{href:{webPageId:\"lhgru9L9N\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+9253.5+16+0+0+52+0+0},z0dMFkpq8:{y:(componentViewport?.y||0)+0+9717.5+16+497.2+0+52+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+7716+16+0+0+52+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gc01na-container\",nodeId:\"fojELl_rT\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks5[1]},z0dMFkpq8:{QF9iNnT_g:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Blog\",height:\"100%\",id:\"fojELl_rT\",layoutId:\"fojELl_rT\",QF9iNnT_g:resolvedLinks5[0],variant:\"SNwAPAVTb\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WYLG6mcJJ\"},implicitPathVariables:undefined},{href:{webPageId:\"WYLG6mcJJ\"},implicitPathVariables:undefined},{href:{webPageId:\"WYLG6mcJJ\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+9253.5+16+0+0+52+0+44},z0dMFkpq8:{y:(componentViewport?.y||0)+0+9717.5+16+497.2+0+52+0+44}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+7716+16+0+0+52+0+44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jcuifu-container\",nodeId:\"VoWzkKq6G\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks6[1]},z0dMFkpq8:{QF9iNnT_g:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Tutorials\",height:\"100%\",id:\"VoWzkKq6G\",layoutId:\"VoWzkKq6G\",QF9iNnT_g:resolvedLinks6[0],variant:\"SNwAPAVTb\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"E5OEOyN_s\"},implicitPathVariables:undefined},{href:{webPageId:\"E5OEOyN_s\"},implicitPathVariables:undefined},{href:{webPageId:\"E5OEOyN_s\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+9253.5+16+0+0+52+0+88},z0dMFkpq8:{y:(componentViewport?.y||0)+0+9717.5+16+497.2+0+52+0+88}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+7716+16+0+0+52+0+88,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17yf8ft-container\",nodeId:\"VfanyfWrH\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks7[1]},z0dMFkpq8:{QF9iNnT_g:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Tools\",height:\"100%\",id:\"VfanyfWrH\",layoutId:\"VfanyfWrH\",QF9iNnT_g:resolvedLinks7[0],variant:\"SNwAPAVTb\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{y:(componentViewport?.y||0)+0+9253.5+16+0+0+52+0+132},z0dMFkpq8:{y:(componentViewport?.y||0)+0+9717.5+16+497.2+0+52+0+132}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+7716+16+0+0+52+0+132,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e4njuv-container\",nodeId:\"KT_u9MEu0\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Newsletter\",height:\"100%\",id:\"KT_u9MEu0\",layoutId:\"KT_u9MEu0\",QF9iNnT_g:\"https://gtmcookbook.beehiiv.com/\",variant:\"SNwAPAVTb\",width:\"100%\"})})})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"nav\",{className:\"framer-e7uyfb hidden-cng6u2\",\"data-border\":true,\"data-framer-name\":\"Navigation\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d9Cnb39Sa\"},motionChild:true,nodeId:\"j_LvBU2w9\",openInNewTab:false,scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1jr3u96 framer-15nasx0\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9gmtyj\",\"data-framer-name\":\"logo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vm55or\",\"data-framer-name\":\"shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_1425_509\" fill=\"white\">\\n<path d=\"M0.882324 7.05882C0.882324 10.9573 4.04267 14.1176 7.94115 14.1176C11.8396 14.1176 15 10.9573 15 7.05882V0.276814C15 0.123933 14.876 -1.90735e-06 14.7232 -1.90735e-06H7.94115C4.04267 -1.90735e-06 0.882324 3.16034 0.882324 7.05882Z\"/>\\n</mask>\\n<path d=\"M0.882324 7.05882C0.882324 10.9573 4.04267 14.1176 7.94115 14.1176C11.8396 14.1176 15 10.9573 15 7.05882V0.276814C15 0.123933 14.876 -1.90735e-06 14.7232 -1.90735e-06H7.94115C4.04267 -1.90735e-06 0.882324 3.16034 0.882324 7.05882Z\" stroke=\"black\" stroke-width=\"8.47059\" mask=\"url(#path-1-inside-1_1425_509)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zkjpi7\",\"data-border\":true,\"data-framer-name\":\"shape\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m8k9bc\",\"data-framer-name\":\"shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_1425_511\" fill=\"white\">\\n<path d=\"M0 7.94118C0 11.8397 3.16034 15 7.05882 15C10.9573 15 14.1176 11.8397 14.1176 7.94118V1.15917C14.1176 1.00629 13.9937 0.882353 13.8408 0.882353H7.05882C3.16034 0.882353 0 4.0427 0 7.94118Z\"/>\\n</mask>\\n<path d=\"M0 7.94118C0 11.8397 3.16034 15 7.05882 15C10.9573 15 14.1176 11.8397 14.1176 7.94118V1.15917C14.1176 1.00629 13.9937 0.882353 13.8408 0.882353H7.05882C3.16034 0.882353 0 4.0427 0 7.94118Z\" stroke=\"black\" stroke-width=\"8.47059\" mask=\"url(#path-1-inside-1_1425_511)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cfblji\",\"data-border\":true,\"data-framer-name\":\"shape\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1exrouv\",\"data-styles-preset\":\"Uap6Y9eIp\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"The Kiln\"})})}),className:\"framer-19y66t3\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q9ztkp\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FgMzPmcXm\"},implicitPathVariables:undefined},{href:{webPageId:\"FgMzPmcXm\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:18,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zvj6kf-container\",nodeId:\"C2f9R6Zsm\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Case Studies\",height:\"100%\",id:\"C2f9R6Zsm\",layoutId:\"C2f9R6Zsm\",QF9iNnT_g:resolvedLinks8[0],variant:\"myRZWAisy\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"E5OEOyN_s\"},implicitPathVariables:undefined},{href:{webPageId:\"E5OEOyN_s\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:18,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13kp1xu-container\",nodeId:\"KGpML65e4\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Tools\",height:\"100%\",id:\"KGpML65e4\",layoutId:\"KGpML65e4\",QF9iNnT_g:resolvedLinks9[0],variant:\"myRZWAisy\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WYLG6mcJJ\"},implicitPathVariables:undefined},{href:{webPageId:\"WYLG6mcJJ\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:18,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wb5fwd-container\",nodeId:\"KMEpGrPc0\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Tutorials\",height:\"100%\",id:\"KMEpGrPc0\",layoutId:\"KMEpGrPc0\",QF9iNnT_g:resolvedLinks10[0],variant:\"myRZWAisy\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:18,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ftcrs3-container\",nodeId:\"CDO2n2EBf\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Newsletter\",height:\"100%\",id:\"CDO2n2EBf\",layoutId:\"CDO2n2EBf\",QF9iNnT_g:\"https://gtmcookbook.beehiiv.com/\",variant:\"myRZWAisy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lhgru9L9N\"},implicitPathVariables:undefined},{href:{webPageId:\"lhgru9L9N\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:18,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pf767w-container\",nodeId:\"wgEpUBX3D\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{QF9iNnT_g:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(LinkItem,{cXlyg9xQQ:\"Blog\",height:\"100%\",id:\"wgEpUBX3D\",layoutId:\"wgEpUBX3D\",QF9iNnT_g:resolvedLinks11[0],variant:\"myRZWAisy\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PeOLGPUFq\"},implicitPathVariables:undefined},{href:{webPageId:\"PeOLGPUFq\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h09t5v-container\",nodeId:\"Cvrchgw16\",rendersWithMotion:true,scopeId:\"d9Cnb39Sa\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UsHI1lDkw:{BI3GclLuy:resolvedLinks12[1]}},children:/*#__PURE__*/_jsx(Button,{BI3GclLuy:resolvedLinks12[0],FYxXrMdiK:\"Talk with us\",height:\"100%\",id:\"Cvrchgw16\",layoutId:\"Cvrchgw16\",variant:\"aBcwORHVX\",width:\"100%\"})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{z0dMFkpq8:{height:64,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-byl0i7-container hidden-7usvz2 hidden-71pbkc\",layoutScroll:true,nodeId:\"w4dn1c1lO\",scopeId:\"d9Cnb39Sa\",children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"w4dn1c1lO\",layoutId:\"w4dn1c1lO\",style:{width:\"100%\"},variant:\"qKDfrkQ2M\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AqE5V.framer-15nasx0, .framer-AqE5V .framer-15nasx0 { display: block; }\",\".framer-AqE5V.framer-7usvz2 { align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-AqE5V .framer-1yzwi9s { align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 103.75000000000001vh; justify-content: center; max-width: 1440px; overflow: visible; padding: 80px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-1f0yzv0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AqE5V .framer-b07lzc { 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: 760px; }\",\".framer-AqE5V .framer-a4xbow { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 760px; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-r1k4o4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 680px; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-372qug { aspect-ratio: 1.946236559139785 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 208px; position: absolute; top: -64px; width: 156px; z-index: 1; }\",\".framer-AqE5V .framer-n1nsn9-container, .framer-AqE5V .framer-66mzpc-container, .framer-AqE5V .framer-h09t5v-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-AqE5V .framer-1or6s0e { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: -104px; position: absolute; top: 236px; width: 240px; z-index: 1; }\",\".framer-AqE5V .framer-k80as1 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 160px); left: -40px; overflow: hidden; position: absolute; top: 424px; width: 160px; z-index: 0; }\",\".framer-AqE5V .framer-tl2sim { bottom: 17px; flex: none; left: 13px; position: absolute; right: 15px; top: 15px; }\",\".framer-AqE5V .framer-h8vckp { aspect-ratio: 1 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); position: absolute; right: -80px; width: 240px; z-index: 1; }\",\".framer-AqE5V .framer-uflky1 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 160px); overflow: hidden; position: absolute; right: -40px; top: 240px; width: 160px; z-index: 1; }\",\".framer-AqE5V .framer-1t7yl8 { bottom: -1px; flex: none; left: 0px; position: absolute; top: 0px; width: 159px; }\",\".framer-AqE5V .framer-wg0zev-container { flex: none; height: 48px; position: relative; width: 1040px; }\",\".framer-AqE5V .framer-13lxoih { aspect-ratio: 4.417391343550249 / 1; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 97px; }\",\".framer-AqE5V .framer-fl8f2a { aspect-ratio: 2.769230769230769 / 1; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 89px; }\",\".framer-AqE5V .framer-13iqe0b { aspect-ratio: 4.5 / 1; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 113px; }\",\".framer-AqE5V .framer-1f85nce { aspect-ratio: 4.916666666666667 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 128px; }\",\".framer-AqE5V .framer-1s4pryk { aspect-ratio: 3.75 / 1; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 128px; }\",\".framer-AqE5V .framer-8ag1x1 { aspect-ratio: 2.598825831702544 / 1; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; width: 91px; }\",\".framer-AqE5V .framer-uct1ba { aspect-ratio: 3.082405345211581 / 1; height: var(--framer-aspect-ratio-supported, 39px); overflow: visible; position: relative; width: 120px; }\",\".framer-AqE5V .framer-jqoxcz { aspect-ratio: 6.075757575757576 / 1; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 146px; }\",\".framer-AqE5V .framer-6aocw7 { aspect-ratio: 3.25 / 1; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 108px; }\",\".framer-AqE5V .framer-7deky-container { height: 40px; position: relative; width: 100px; }\",\".framer-AqE5V .framer-1vl01a7 { height: 26px; position: relative; width: 107px; }\",\".framer-AqE5V .framer-179r7og { aspect-ratio: 3.3471502590673574 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 127px; }\",\".framer-AqE5V .framer-iwr2kg-container { height: 34px; position: relative; width: 109px; }\",\".framer-AqE5V .framer-156dccd { aspect-ratio: 2.7950819672131146 / 1; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 101px; }\",\".framer-AqE5V .framer-2wr49z { aspect-ratio: 4.09009009009009 / 1; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 103px; }\",\".framer-AqE5V .framer-vfcfoy { aspect-ratio: 4.798634812286689 / 1; height: var(--framer-aspect-ratio-supported, 21px); overflow: visible; position: relative; width: 101px; }\",\".framer-AqE5V .framer-orsl7l { aspect-ratio: 3.8323353293413174 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 111px; }\",\".framer-AqE5V .framer-bmpy0q { aspect-ratio: 2.4096385542168677 / 1; height: var(--framer-aspect-ratio-supported, 37px); overflow: visible; position: relative; width: 89px; }\",\".framer-AqE5V .framer-1nytzog { aspect-ratio: 4.027972027972028 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 133px; }\",\".framer-AqE5V .framer-1j03jme { aspect-ratio: 3.9937597503900157 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 104px; }\",\".framer-AqE5V .framer-1otdbfn { height: 36px; overflow: visible; position: relative; width: 161px; }\",\".framer-AqE5V .framer-22tms1 { aspect-ratio: 4.830188679245283 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 126px; }\",\".framer-AqE5V .framer-5c0gks { aspect-ratio: 3.1181102362204722 / 1; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 134px; }\",\".framer-AqE5V .framer-1shsvb1 { aspect-ratio: 4.73046875 / 1; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 170px; }\",\".framer-AqE5V .framer-tedi5j, .framer-AqE5V .framer-54515d { align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-47ykjp, .framer-AqE5V .framer-453g6l, .framer-AqE5V .framer-egqnei, .framer-AqE5V .framer-1bem3eg { 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: min-content; }\",\".framer-AqE5V .framer-gxf48v, .framer-AqE5V .framer-19qbkha, .framer-AqE5V .framer-qiyctp, .framer-AqE5V .framer-3z44iq, .framer-AqE5V .framer-i4jmxp, .framer-AqE5V .framer-16exawg, .framer-AqE5V .framer-z9dml2, .framer-AqE5V .framer-19y66t3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AqE5V .framer-z6d454, .framer-AqE5V .framer-1tso4xm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-l54xik-container { flex: none; height: 560px; max-width: 1120px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-98ohxc { flex: none; height: 220px; position: absolute; right: -80px; top: 160px; width: 219px; z-index: 1; }\",\".framer-AqE5V .framer-izt4lb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 320px); left: -104px; position: absolute; top: 104px; width: 320px; z-index: 1; }\",\".framer-AqE5V .framer-5so1or, .framer-AqE5V .framer-qagt1m, .framer-AqE5V .framer-168ju50, .framer-AqE5V .framer-4404o6, .framer-AqE5V .framer-1jwtbxb, .framer-AqE5V .framer-nuj56q, .framer-AqE5V .framer-pbm8wo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-yntn3f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-h4onke { --border-bottom-width: 1px; --border-color: rgba(17, 17, 17, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: var(--token-7d4effdc-e867-45bc-b2ec-d456fbfc7b55, #f7f7f5); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: -16px 16px 32px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; overflow: hidden; padding: 64px 40px 64px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AqE5V .framer-7hrsg6, .framer-AqE5V .framer-1j4d49y, .framer-AqE5V .framer-ygs03i { aspect-ratio: 1.0120481927710843 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 42px; }\",\".framer-AqE5V .framer-1wpu9yl { --border-bottom-width: 1px; --border-color: rgba(17, 17, 17, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: -16px 16px 32px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; overflow: hidden; padding: 64px 40px 64px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AqE5V .framer-ioqgnz { --border-bottom-width: 1px; --border-color: rgba(17, 17, 17, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-d6dcef2b-4b74-4d83-a857-91426aaaf6f0, #f2f0e9); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: -16px 16px 32px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 40px 64px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AqE5V .framer-5kaaiu { align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-1cfyhg5, .framer-AqE5V .framer-1jn0muk, .framer-AqE5V .framer-xg1s4o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 640px; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-7xzjh1, .framer-AqE5V .framer-1dx28ir, .framer-AqE5V .framer-1sdxgzf, .framer-AqE5V .framer-w5aent, .framer-AqE5V .framer-qnwrgg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-50n0n1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-qjxe8a, .framer-AqE5V .framer-svx3g8, .framer-AqE5V .framer-rknq3q, .framer-AqE5V .framer-e6graq, .framer-AqE5V .framer-bmvzr0, .framer-AqE5V .framer-8nlfto { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1120px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-1emi0bd, .framer-AqE5V .framer-ngl008, .framer-AqE5V .framer-13a5alq, .framer-AqE5V .framer-zgxsf7, .framer-AqE5V .framer-1api9ha { align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AqE5V .framer-cr34f1, .framer-AqE5V .framer-13uxap2, .framer-AqE5V .framer-se8iup, .framer-AqE5V .framer-vyar8e, .framer-AqE5V .framer-1coq0rx { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); overflow: visible; position: relative; width: 160px; }\",\".framer-AqE5V .framer-6n4k0k, .framer-AqE5V .framer-eo60u, .framer-AqE5V .framer-j7ocki, .framer-AqE5V .framer-td0uy7, .framer-AqE5V .framer-1vao51d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-hr0z93, .framer-AqE5V .framer-1r06sx, .framer-AqE5V .framer-1yldnp1, .framer-AqE5V .framer-133rlxy, .framer-AqE5V .framer-xvq9gs, .framer-AqE5V .framer-tzo25z, .framer-AqE5V .framer-nf2tjv, .framer-AqE5V .framer-nnh09h, .framer-AqE5V .framer-whi4c9, .framer-AqE5V .framer-15htra5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-1tp5vl3, .framer-AqE5V .framer-1fc6xog, .framer-AqE5V .framer-1hbm1da, .framer-AqE5V .framer-13t7nol, .framer-AqE5V .framer-1cxtnl7 { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-AqE5V .framer-1od8exb { background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%); flex: none; height: 80px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-AqE5V .framer-cj2waw, .framer-AqE5V .framer-19agxu0, .framer-AqE5V .framer-1co01mj, .framer-AqE5V .framer-12kjtde, .framer-AqE5V .framer-iggga5, .framer-AqE5V .framer-1nwpscg { align-content: center; align-items: center; background-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 3px; }\",\".framer-AqE5V .framer-1q6kv8j, .framer-AqE5V .framer-1d692bw, .framer-AqE5V .framer-1xpcd2x, .framer-AqE5V .framer-10j6mi5, .framer-AqE5V .framer-1a02jpp { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 48px); justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); z-index: 1; }\",\".framer-AqE5V .framer-15z94hr, .framer-AqE5V .framer-1j5iuza, .framer-AqE5V .framer-rfokq0, .framer-AqE5V .framer-18m3o19, .framer-AqE5V .framer-dkj5lv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-AqE5V .framer-108qiml, .framer-AqE5V .framer-9wvkw8, .framer-AqE5V .framer-ka5dst, .framer-AqE5V .framer-1t13txz, .framer-AqE5V .framer-1dfuzgm { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AqE5V .framer-hbtvca { align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 160px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-AqE5V .framer-13u7w81 { align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-AqE5V .framer-11mgshi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-AqE5V .framer-u7p1ez { flex: none; height: 274px; left: -104px; position: absolute; top: 0px; width: 275px; z-index: 1; }\",\".framer-AqE5V .framer-80f2mw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 320px); position: absolute; right: -144px; top: 160px; width: 320px; z-index: 1; }\",\".framer-AqE5V .framer-1nl5vqp { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 40px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-s2wxxc-container { flex: none; height: 360px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-1n7dizv, .framer-AqE5V .framer-jtb5n2 { --border-bottom-width: 1px; --border-color: var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, #eeeeee); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; height: 346px; justify-content: space-between; padding: 32px; position: relative; width: 333px; }\",\".framer-AqE5V .framer-vkr7dh, .framer-AqE5V .framer-jeuv0m, .framer-AqE5V .framer-bipolc, .framer-AqE5V .framer-ucxy3d, .framer-AqE5V .framer-1wlrd3m, .framer-AqE5V .framer-9ub9wu, .framer-AqE5V .framer-sxa8fj, .framer-AqE5V .framer-ghcmko { --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-AqE5V .framer-tk2y0a, .framer-AqE5V .framer-bb0mzf, .framer-AqE5V .framer-u0soa5, .framer-AqE5V .framer-1tpseqq, .framer-AqE5V .framer-auv9bn, .framer-AqE5V .framer-qh18qf, .framer-AqE5V .framer-1aigiv0, .framer-AqE5V .framer-m9ha6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-1wdvm44, .framer-AqE5V .framer-ek9ql5, .framer-AqE5V .framer-162b41n, .framer-AqE5V .framer-kec1of, .framer-AqE5V .framer-pl0d7l, .framer-AqE5V .framer-2z6jxs, .framer-AqE5V .framer-r7hoqy, .framer-AqE5V .framer-1bvatsl { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AqE5V .framer-1y02e33, .framer-AqE5V .framer-1and4u4, .framer-AqE5V .framer-c6v96r, .framer-AqE5V .framer-1d0mzy2, .framer-AqE5V .framer-14a3wic, .framer-AqE5V .framer-1gow7bz, .framer-AqE5V .framer-12j3f4c, .framer-AqE5V .framer-10z693u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AqE5V .framer-16end85, .framer-AqE5V .framer-revw79, .framer-AqE5V .framer-1yrt3l0, .framer-AqE5V .framer-1figknl, .framer-AqE5V .framer-o6fyyi, .framer-AqE5V .framer-ik4cy9, .framer-AqE5V .framer-1cj5goo, .framer-AqE5V .framer-1pgh122 { --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-AqE5V .framer-whrm3l, .framer-AqE5V .framer-vfzi6d, .framer-AqE5V .framer-1smr8sl, .framer-AqE5V .framer-1hzma9d, .framer-AqE5V .framer-im8hte, .framer-AqE5V .framer-w7b5hs, .framer-AqE5V .framer-umkyh9, .framer-AqE5V .framer-i4g2hj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.5; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-13g1iyj { --border-bottom-width: 1px; --border-color: var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, #eeeeee); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; height: 346px; justify-content: space-between; padding: 32px; position: relative; width: 334px; }\",\".framer-AqE5V .framer-y6oybk { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); left: 50%; overflow: hidden; position: absolute; top: 74%; transform: translate(-50%, -50%); width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AqE5V .framer-1i2ei95, .framer-AqE5V .framer-clcui3, .framer-AqE5V .framer-1f7qc0b, .framer-AqE5V .framer-nedcej { --border-bottom-width: 1px; --border-color: var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, #eeeeee); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; height: 347px; justify-content: space-between; padding: 32px; position: relative; width: 333px; }\",\".framer-AqE5V .framer-yj2tm1 { --border-bottom-width: 1px; --border-color: var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, #eeeeee); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; height: 347px; justify-content: space-between; padding: 32px; position: relative; width: 334px; }\",\".framer-AqE5V .framer-6pws4p-container, .framer-AqE5V .framer-rsld2-container, .framer-AqE5V .framer-168187b-container, .framer-AqE5V .framer-5ydtaw-container, .framer-AqE5V .framer-gc01na-container, .framer-AqE5V .framer-1jcuifu-container, .framer-AqE5V .framer-17yf8ft-container, .framer-AqE5V .framer-e4njuv-container, .framer-AqE5V .framer-zvj6kf-container, .framer-AqE5V .framer-13kp1xu-container, .framer-AqE5V .framer-wb5fwd-container, .framer-AqE5V .framer-1ftcrs3-container, .framer-AqE5V .framer-pf767w-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AqE5V .framer-hu06on { align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 80px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-1eszy43, .framer-AqE5V .framer-kloolj { 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: 720px; }\",\".framer-AqE5V .framer-1xcuuz9 { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 405px); overflow: hidden; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); z-index: 5; }\",\".framer-AqE5V .framer-1vp5mx9-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 405px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-AqE5V .framer-jr6ea1 { aspect-ratio: 0.8485714285714285 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 350px); overflow: hidden; position: absolute; right: -200px; top: 40px; width: 297px; z-index: 0; }\",\".framer-AqE5V .framer-9envje { flex: none; height: 350px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 297px; }\",\".framer-AqE5V .framer-5k3kr0 { flex: none; height: 241px; left: 42px; position: absolute; top: 110px; width: 241px; }\",\".framer-AqE5V .framer-1gxxotj { flex: none; height: 161px; left: 0px; position: absolute; top: 0px; width: 161px; }\",\".framer-AqE5V .framer-1obtz1w { flex: none; height: 81px; left: 217px; position: absolute; top: 80px; width: 81px; }\",\".framer-AqE5V .framer-o6bwq0 { flex: none; height: 81px; left: 187px; position: absolute; top: 230px; width: 81px; }\",\".framer-AqE5V .framer-1vgdy8k { aspect-ratio: 0.8490028490028491 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 350px); left: -200px; position: absolute; top: 40px; width: 297px; z-index: 0; }\",\".framer-AqE5V .framer-bg8f4 { --border-bottom-width: 1px; --border-color: var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, #eeeeee); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-7d4effdc-e867-45bc-b2ec-d456fbfc7b55, #f7f7f5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 40px 16px 16px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); z-index: 5; }\",\".framer-AqE5V .framer-huzwbj { align-content: flex-start; align-items: flex-start; background-color: #44ccff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AqE5V .framer-lx6arz { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 214px); }\",\".framer-AqE5V .framer-s98uvv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AqE5V .framer-im149a { align-content: center; align-items: center; background-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-AqE5V .framer-1ctgtuo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-AqE5V.framer-dwueus { background-color: rgba(0, 0, 0, 0.92); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-AqE5V.framer-bkfdyh { align-content: center; align-items: center; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-AqE5V .framer-18k9ay { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AqE5V .framer-xkh5ss { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.12); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-AqE5V .framer-g9eucx { aspect-ratio: 1.0208333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 25px; }\",\".framer-AqE5V .framer-1npulbd { --border-bottom-width: 8px; --border-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); --border-left-width: 8px; --border-right-width: 8px; --border-style: solid; --border-top-width: 8px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 5; }\",\".framer-AqE5V .framer-1bc53zi-container { flex: none; height: 405px; position: relative; width: 640px; }\",\".framer-AqE5V .framer-1t0rnqx { align-content: center; align-items: center; background-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 80vh; justify-content: center; overflow: hidden; padding: 160px 80px 160px 80px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-flq0ik { 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-AqE5V .framer-37nmhk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 800px; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-1klc36a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-rhznf7 { background-color: var(--token-b095dbdd-6241-4f9f-a1a7-82e69dedbb40, #111111); display: grid; flex: none; gap: 80px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: start; overflow: hidden; padding: 16px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-m0v7qd { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; grid-column: span 2; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-8471ru { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-AqE5V .framer-tu6pqc { -webkit-filter: invert(1); filter: invert(1); flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-AqE5V .framer-1reatow, .framer-AqE5V .framer-1vm55or { flex: none; height: 15px; left: 9px; position: absolute; top: 0px; width: 15px; }\",\".framer-AqE5V .framer-1maggga, .framer-AqE5V .framer-zkjpi7 { --border-bottom-width: 4.235294342041016px; --border-color: #000000; --border-left-width: 4.235294342041016px; --border-right-width: 4.235294342041016px; --border-style: solid; --border-top-width: 4.235294342041016px; aspect-ratio: 1 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 0px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 14px); left: 10px; overflow: hidden; position: absolute; top: 10px; width: 14px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AqE5V .framer-xvd646, .framer-AqE5V .framer-m8k9bc { flex: none; height: 15px; left: 0px; position: absolute; top: 9px; width: 15px; }\",\".framer-AqE5V .framer-gk05lh, .framer-AqE5V .framer-1cfblji { --border-bottom-width: 4.235294342041016px; --border-color: #000000; --border-left-width: 4.235294342041016px; --border-right-width: 4.235294342041016px; --border-style: solid; --border-top-width: 4.235294342041016px; aspect-ratio: 1 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 0px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 14px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 14px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AqE5V .framer-1kye1zg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 357px; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-12f6b1u, .framer-AqE5V .framer-w27usi { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-106jqbs, .framer-AqE5V .framer-1mu7rji { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-AqE5V .framer-195fgd, .framer-AqE5V .framer-umw5ur { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AqE5V .framer-e7uyfb { --border-bottom-width: 1px; --border-color: var(--token-25c72c63-c6ff-47df-aee6-2bc4d7e3a750, #eeeeee); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-2de22ab7-2a50-4e3f-b785-8c51c49f8833, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 64px; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 12px 24px 12px 24px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-AqE5V .framer-1jr3u96 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-AqE5V .framer-9gmtyj { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-AqE5V .framer-1q9ztkp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AqE5V .framer-byl0i7-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-AqE5V[data-border=\"true\"]::after, .framer-AqE5V [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-AqE5V.framer-7usvz2 { width: 810px; } .framer-AqE5V .framer-1yzwi9s { height: min-content; max-width: 100%; padding: 160px 80px 120px 80px; } .framer-AqE5V .framer-1f0yzv0, .framer-AqE5V .framer-b07lzc, .framer-AqE5V .framer-r1k4o4, .framer-AqE5V .framer-37nmhk { width: 100%; } .framer-AqE5V .framer-1or6s0e { height: var(--framer-aspect-ratio-supported, 200px); left: -80px; width: 200px; } .framer-AqE5V .framer-h8vckp, .framer-AqE5V .framer-izt4lb { height: var(--framer-aspect-ratio-supported, 200px); width: 200px; } .framer-AqE5V .framer-tedi5j, .framer-AqE5V .framer-54515d, .framer-AqE5V .framer-5kaaiu, .framer-AqE5V .framer-1nl5vqp, .framer-AqE5V .framer-hu06on, .framer-AqE5V .framer-1t0rnqx, .framer-AqE5V .framer-rhznf7 { max-width: 100%; } .framer-AqE5V .framer-l54xik-container { height: 1680px; max-width: 100%; width: 360px; } .framer-AqE5V .framer-98ohxc { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 160px); width: 160px; } .framer-AqE5V .framer-5so1or { align-self: stretch; width: auto; } .framer-AqE5V .framer-yntn3f { flex-direction: column; max-width: 100%; width: 360px; } .framer-AqE5V .framer-h4onke, .framer-AqE5V .framer-1wpu9yl { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-AqE5V .framer-ioqgnz { flex: none; width: 100%; } .framer-AqE5V .framer-qjxe8a, .framer-AqE5V .framer-svx3g8, .framer-AqE5V .framer-rknq3q, .framer-AqE5V .framer-e6graq, .framer-AqE5V .framer-bmvzr0, .framer-AqE5V .framer-8nlfto { padding: 0px; } .framer-AqE5V .framer-80f2mw { height: var(--framer-aspect-ratio-supported, 200px); right: -80px; width: 200px; }}\",\"@media (max-width: 809px) { .framer-AqE5V.framer-7usvz2 { width: 390px; } .framer-AqE5V .framer-1yzwi9s { height: min-content; max-width: 100%; padding: 120px 24px 120px 24px; } .framer-AqE5V .framer-1f0yzv0, .framer-AqE5V .framer-b07lzc, .framer-AqE5V .framer-r1k4o4, .framer-AqE5V .framer-47ykjp, .framer-AqE5V .framer-z6d454, .framer-AqE5V .framer-453g6l, .framer-AqE5V .framer-1tso4xm, .framer-AqE5V .framer-5so1or, .framer-AqE5V .framer-egqnei, .framer-AqE5V .framer-1cfyhg5, .framer-AqE5V .framer-7xzjh1, .framer-AqE5V .framer-1bem3eg, .framer-AqE5V .framer-1jn0muk, .framer-AqE5V .framer-1eszy43, .framer-AqE5V .framer-kloolj, .framer-AqE5V .framer-huzwbj, .framer-AqE5V .framer-im149a, .framer-AqE5V .framer-1npulbd, .framer-AqE5V .framer-37nmhk { width: 100%; } .framer-AqE5V .framer-h8vckp { bottom: 20px; height: var(--framer-aspect-ratio-supported, 200px); right: -100px; width: 200px; } .framer-AqE5V .framer-tedi5j, .framer-AqE5V .framer-54515d, .framer-AqE5V .framer-5kaaiu, .framer-AqE5V .framer-hu06on { max-width: 100%; padding: 80px 24px 80px 24px; } .framer-AqE5V .framer-l54xik-container { height: 1760px; max-width: 360%; } .framer-AqE5V .framer-98ohxc { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 160px); width: 160px; } .framer-AqE5V .framer-yntn3f { flex-direction: column; } .framer-AqE5V .framer-h4onke, .framer-AqE5V .framer-1wpu9yl { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-AqE5V .framer-ioqgnz, .framer-AqE5V .framer-s98uvv { flex: none; width: 100%; } .framer-AqE5V .framer-50n0n1 { gap: 80px; } .framer-AqE5V .framer-qjxe8a, .framer-AqE5V .framer-svx3g8, .framer-AqE5V .framer-rknq3q, .framer-AqE5V .framer-e6graq, .framer-AqE5V .framer-bmvzr0 { gap: 48px; } .framer-AqE5V .framer-1emi0bd, .framer-AqE5V .framer-ngl008, .framer-AqE5V .framer-13a5alq, .framer-AqE5V .framer-zgxsf7, .framer-AqE5V .framer-1api9ha { gap: 24px; } .framer-AqE5V .framer-80f2mw { height: var(--framer-aspect-ratio-supported, 160px); right: -80px; top: 0px; width: 160px; } .framer-AqE5V .framer-1nl5vqp { max-width: 100%; padding: 40px 24px 80px 24px; } .framer-AqE5V .framer-1xcuuz9 { height: var(--framer-aspect-ratio-supported, 193px); width: 100%; } .framer-AqE5V .framer-1vp5mx9-container { height: var(--framer-aspect-ratio-supported, 193px); } .framer-AqE5V .framer-bg8f4 { flex-direction: column; padding: 16px; width: 100%; } .framer-AqE5V .framer-lx6arz { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 174px); width: 1px; } .framer-AqE5V .framer-18k9ay { width: 96%; } .framer-AqE5V .framer-1bc53zi-container { aspect-ratio: 1.5802469135802468 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 127px); width: 1px; } .framer-AqE5V .framer-1t0rnqx { max-width: 100%; padding: 160px 24px 160px 24px; } .framer-AqE5V .framer-rhznf7 { grid-template-columns: repeat(1, minmax(50px, 1fr)); max-width: 100%; padding: 16px 24px 80px 24px; } .framer-AqE5V .framer-m0v7qd { grid-column: span 1; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7602.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UsHI1lDkw\":{\"layout\":[\"fixed\",\"auto\"]},\"z0dMFkpq8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framerd9Cnb39Sa=withCSS(Component,css,\"framer-AqE5V\");export default Framerd9Cnb39Sa;Framerd9Cnb39Sa.displayName=\"Page\";Framerd9Cnb39Sa.defaultProps={height:7602.5,width:1200};addFonts(Framerd9Cnb39Sa,[{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:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.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\"}]},...ButtonFonts,...Vfairs_logoFonts,...Integral_logoFonts,...TickerFonts,...ServicesFonts,...Ticker1Fonts,...LinkItemFonts,...EmbedFonts,...NavigationFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerd9Cnb39Sa\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UsHI1lDkw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z0dMFkpq8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7602.5\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "cXlyg9xQQ", "QF9iNnT_g", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Link", "css", "Framerl8sPPduKg", "withCSS", "l8sPPduKg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Flip", "props", "ref", "ref1", "isCanvas", "RenderTarget", "hasChildren", "j", "hasOneChild", "variants", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "motion", "childStyles", "q", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "FlipFonts", "getFonts", "Flip", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "RichText2", "Link", "SVG", "css", "FramerrZ7OiB5XT", "withCSS", "rZ7OiB5XT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "FYxXrMdiK", "BI3GclLuy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "SVG", "css", "FramerYLaDItZ6w", "withCSS", "YLaDItZ6w_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ButtonFonts", "getFonts", "YLaDItZ6w_default", "ImageWithFX", "withFX", "Image2", "Vfairs_logoFonts", "XPkDkuJSq_default", "Integral_logoFonts", "ZlfiNNe6s_default", "TickerFonts", "Ticker", "RichTextWithFX", "RichText2", "ServicesFonts", "rZ7OiB5XT_default", "ContainerWithFX", "Container", "MotionDivWithFX", "motion", "Ticker1Fonts", "LinkItemFonts", "l8sPPduKg_default", "EmbedFonts", "Embed", "NavigationFonts", "GEaQpm1Sx_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "animation7", "animation8", "animation9", "animation10", "transformTemplate1", "_", "t", "transition7", "animation11", "animation12", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation13", "animation14", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "x", "SVG", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "resolvedLinks1", "l", "AnimatePresence", "Ga", "resolvedLinks2", "Link", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "css", "Framerd9Cnb39Sa", "withCSS", "d9Cnb39Sa_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
