{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/yx3Yu3CvNlklDmNPtEF9/Animator.js", "ssg:https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js", "ssg:https://framerusercontent.com/modules/ct6FAFzSQTI6SCbXyFMU/7hpubGRKLvZHnzTHkaHg/VerticallyIntegratedDelay.js", "ssg:https://framerusercontent.com/modules/v4sJ1zyG35g620lrs3gS/3qCJlLADSgByNu2D4qnZ/k6TXY8Hue.js", "ssg:https://framerusercontent.com/modules/Fi2qiTD6YK1k2ZidMmBQ/RUB1xiHwU58pUtNuspOv/Header_animation.js", "ssg:https://framerusercontent.com/modules/jvGeu0XCaC4l3sNBVmML/kvWVS4f2fTANjqs6V91u/T7FdirwOt.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Animator(props){/* Properties */ const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */ const hasChildren=Children.count(slots)>0;/* Empty State */ let customShape=/*#__PURE__*/ _jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */ const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties */ /* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */ const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */ const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */ if(isCanvas){customShape=firstChild;}/* If on a web page */ if(!isCanvas&&svgChild){/* Pass Attributes */ let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */ let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/ _jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/ _jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity}})})});}}return customShape;};/* Default Properties */ Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */ addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */ const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */ function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* 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\"};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\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "// Generated by Framer (102b37e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"EHLHtTo68\",\"Fuz_N9TSZ\",\"KDEfYFDYn\"];const variantClassNames={EHLHtTo68:\"framer-v-1eryak5\",Fuz_N9TSZ:\"framer-v-1gkq38i\",KDEfYFDYn:\"framer-v-148o36m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Email-1\":\"EHLHtTo68\",\"Email-2\":\"Fuz_N9TSZ\",\"Email-3\":\"KDEfYFDYn\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"EHLHtTo68\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"EHLHtTo68\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if([\"Fuz_N9TSZ\",\"KDEfYFDYn\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Fuz_N9TSZ\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"KDEfYFDYn\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-0GGsN\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-1eryak5\",className),\"data-framer-name\":\"Email-1\",layoutDependency:layoutDependency,layoutId:\"EHLHtTo68\",ref:ref,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},transition:transition,...addPropertyOverrides({Fuz_N9TSZ:{\"data-framer-name\":\"Email-2\"},KDEfYFDYn:{\"data-framer-name\":\"Email-3\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/ _jsx(Image,{background:{alt:'An image of an email sent to members of California University of Sacramento regarding their \"Hornet reuse\"  recycling program. This is an example of email design work from Particle Creative in Seattle, WA. ',fit:\"fill\",intrinsicHeight:1350,intrinsicWidth:600,pixelHeight:2700,pixelWidth:1200,src:new URL(\"assets/2048/3ew3eBnTgMVoarASFQYJTo1HSGM.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href,srcSet:`${new URL(\"assets/512/3ew3eBnTgMVoarASFQYJTo1HSGM.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 227w, ${new URL(\"assets/1024/3ew3eBnTgMVoarASFQYJTo1HSGM.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 455w, ${new URL(\"assets/2048/3ew3eBnTgMVoarASFQYJTo1HSGM.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 910w, ${new URL(\"assets/3ew3eBnTgMVoarASFQYJTo1HSGM.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 1200w`},className:\"framer-17aor4q\",\"data-framer-name\":\"Email_1\",layoutDependency:layoutDependency,layoutId:\"En1RT75aK\",transition:transition}),isDisplayed1()&&/*#__PURE__*/ _jsx(Image,{background:{alt:\"An image of an email from Flexia to their clients about using the flexia reformer.. This is an example of email design work from Particle Creative in Seattle, WA. \",fit:\"fill\",intrinsicHeight:2304.5,intrinsicWidth:600,pixelHeight:4609,pixelWidth:1200,src:new URL(\"assets/4096/MVN9gFiZ6RNctpKfybK1UVJ45dE.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href,srcSet:`${new URL(\"assets/512/MVN9gFiZ6RNctpKfybK1UVJ45dE.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 133w, ${new URL(\"assets/1024/MVN9gFiZ6RNctpKfybK1UVJ45dE.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 266w, ${new URL(\"assets/2048/MVN9gFiZ6RNctpKfybK1UVJ45dE.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 533w, ${new URL(\"assets/4096/MVN9gFiZ6RNctpKfybK1UVJ45dE.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 1066w, ${new URL(\"assets/MVN9gFiZ6RNctpKfybK1UVJ45dE.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 1200w`},className:\"framer-bywl8h\",\"data-framer-name\":\"Email_2\",layoutDependency:layoutDependency,layoutId:\"EGaXyHcGD\",transition:transition}),isDisplayed2()&&/*#__PURE__*/ _jsx(Image,{background:{alt:\"An example of an email made by Particle Creative in Seattle WA for Vizio ADS. The email talkes about driving marketing reach and sales via CTV. \",fit:\"fill\",intrinsicHeight:1362,intrinsicWidth:600,pixelHeight:2724,pixelWidth:1200,src:new URL(\"assets/2048/wLiqpXcrokKPWwknX7ipy0oR4g.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href,srcSet:`${new URL(\"assets/512/wLiqpXcrokKPWwknX7ipy0oR4g.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 225w, ${new URL(\"assets/1024/wLiqpXcrokKPWwknX7ipy0oR4g.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 451w, ${new URL(\"assets/2048/wLiqpXcrokKPWwknX7ipy0oR4g.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 902w, ${new URL(\"assets/wLiqpXcrokKPWwknX7ipy0oR4g.jpg\",\"https://framerusercontent.com/modules/RQupbbCBxYPZIxjbUzpN/zgtTipo2W1eQdfSda8Qm/jxBFJEUDp.js\").href} 1200w`},className:\"framer-11x6gfb\",\"data-framer-name\":\"Email_3\",layoutDependency:layoutDependency,layoutId:\"V6b4Lc5Du\",transition:transition})]})})});});const css=['.framer-0GGsN [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0GGsN * { box-sizing: border-box; }\",\".framer-0GGsN .framer-a11on7 { display: block; }\",\".framer-0GGsN .framer-1eryak5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 180px; }\",\".framer-0GGsN .framer-17aor4q { aspect-ratio: 0.4444444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 405px); left: calc(49.44444444444447% - 100% / 2); overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-0GGsN .framer-bywl8h { aspect-ratio: 0.2603601648947711 / 1; bottom: -296px; flex: none; height: var(--framer-aspect-ratio-supported, 692px); left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-0GGsN .framer-11x6gfb { aspect-ratio: 0.44052863436123346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 454px); overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0GGsN .framer-1eryak5 { gap: 0px; } .framer-0GGsN .framer-1eryak5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0GGsN .framer-1eryak5 > :first-child { margin-top: 0px; } .framer-0GGsN .framer-1eryak5 > :last-child { margin-bottom: 0px; } }\",\".framer-0GGsN.framer-v-1gkq38i .framer-1eryak5 { height: 399px; overflow: hidden; }\",\".framer-0GGsN.framer-v-1gkq38i .framer-bywl8h { order: 1; }\",\".framer-0GGsN.framer-v-148o36m .framer-1eryak5 { height: min-content; }\",\".framer-0GGsN.framer-v-148o36m .framer-11x6gfb { height: var(--framer-aspect-ratio-supported, 409px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fuz_N9TSZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"KDEfYFDYn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n */ const FramerjxBFJEUDp=withCSS(Component,css,\"framer-0GGsN\");export default FramerjxBFJEUDp;FramerjxBFJEUDp.displayName=\"P8/Marketing-email-animation\";FramerjxBFJEUDp.defaultProps={height:400,width:180};addPropertyControls(FramerjxBFJEUDp,{variant:{options:[\"EHLHtTo68\",\"Fuz_N9TSZ\",\"KDEfYFDYn\"],optionTitles:[\"Email-1\",\"Email-2\",\"Email-3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjxBFJEUDp,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjxBFJEUDp\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"180\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fuz_N9TSZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KDEfYFDYn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jxBFJEUDp.map", "import{jsx as _jsx}from\"react/jsx-runtime\";export function withDelay(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{opacity:1},transition:{duration:.2,delay:.3,type:\"ease-in-out\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withDelay\":{\"type\":\"reactHoc\",\"name\":\"withDelay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VerticallyIntegratedDelay.map", "// Generated by Framer (11696e7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withDelay}from\"https://framerusercontent.com/modules/ct6FAFzSQTI6SCbXyFMU/7hpubGRKLvZHnzTHkaHg/VerticallyIntegratedDelay.js\";const MotionDivWithDelay=withDelay(motion.div);const cycleOrder=[\"WY9ITGVps\",\"nE08XHvgz\",\"tRTJTBAVq\",\"D1E6jOc_A\",\"fxMtPOFcC\",\"iMRMzLAze\",\"NfJCjUZSd\"];const serializationHash=\"framer-0RwDW\";const variantClassNames={D1E6jOc_A:\"framer-v-1gta143\",fxMtPOFcC:\"framer-v-1am89sl\",iMRMzLAze:\"framer-v-1qeu8to\",nE08XHvgz:\"framer-v-1atpde8\",NfJCjUZSd:\"framer-v-8kr6yp\",tRTJTBAVq:\"framer-v-ya706e\",WY9ITGVps:\"framer-v-1uw2xki\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.13,.91],type:\"tween\"};const transition2={delay:0,duration:.4,ease:[.44,0,.36,.89],type:\"tween\"};const transition3={delay:0,duration:.4,ease:[.44,0,.32,.87],type:\"tween\"};const transition4={delay:0,duration:.3,ease:[.44,0,.38,.91],type:\"tween\"};const transition5={delay:0,duration:.4,ease:[.44,0,.22,.86],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop/Initial\":\"D1E6jOc_A\",\"Desktop/On-Click\":\"WY9ITGVps\",\"Mobile/Initial\":\"iMRMzLAze\",\"Mobile/On-click\":\"tRTJTBAVq\",\"Tablet/Initial\":\"fxMtPOFcC\",\"Tablet/On-click\":\"nE08XHvgz\",\"Variant 7\":\"NfJCjUZSd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WY9ITGVps\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WY9ITGVps\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapqq94s0=activeVariantCallback(async(...args)=>{setVariant(\"D1E6jOc_A\");});const onTapya6jjb=activeVariantCallback(async(...args)=>{setVariant(\"fxMtPOFcC\");});const onTapoo7srt=activeVariantCallback(async(...args)=>{setVariant(\"iMRMzLAze\");});const onTap1ht4bug=activeVariantCallback(async(...args)=>{setVariant(\"WY9ITGVps\");});const onTap1uuttf6=activeVariantCallback(async(...args)=>{setVariant(\"nE08XHvgz\");});const onTap1hufg8v=activeVariantCallback(async(...args)=>{setVariant(\"tRTJTBAVq\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"D1E6jOc_A\",\"fxMtPOFcC\",\"iMRMzLAze\",\"NfJCjUZSd\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({D1E6jOc_A:{value:transition4},fxMtPOFcC:{value:transition5},iMRMzLAze:{value:transition3},nE08XHvgz:{value:transition2},NfJCjUZSd:{value:transition5},tRTJTBAVq:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1uw2xki\",className,classNames),\"data-framer-name\":\"Desktop/On-Click\",layoutDependency:layoutDependency,layoutId:\"WY9ITGVps\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({D1E6jOc_A:{\"data-framer-name\":\"Desktop/Initial\"},fxMtPOFcC:{\"data-framer-name\":\"Tablet/Initial\"},iMRMzLAze:{\"data-framer-name\":\"Mobile/Initial\"},nE08XHvgz:{\"data-framer-name\":\"Tablet/On-click\"},NfJCjUZSd:{\"data-framer-name\":\"Variant 7\"},tRTJTBAVq:{\"data-framer-name\":\"Mobile/On-click\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1plvymv\",\"data-framer-name\":\"max-width-container\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"U4hFIcB_6\",onTap:onTapqq94s0,style:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},variants:{D1E6jOc_A:{backdropFilter:\"blur(0px)\",WebkitBackdropFilter:\"blur(0px)\"}},...addPropertyOverrides({D1E6jOc_A:{\"data-highlight\":undefined,onTap:undefined},fxMtPOFcC:{\"data-highlight\":undefined,onTap:undefined},iMRMzLAze:{\"data-highlight\":undefined,onTap:undefined},nE08XHvgz:{onTap:onTapya6jjb},NfJCjUZSd:{\"data-highlight\":undefined,onTap:undefined},tRTJTBAVq:{onTap:onTapoo7srt}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i1whiw\",\"data-border\":true,\"data-framer-name\":\"Outline\",layoutDependency:layoutDependency,layoutId:\"oeIfaMMml\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 241, 241)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(20px)\",backgroundColor:\"rgba(68, 68, 68, 0.2)\",borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18,opacity:1,WebkitBackdropFilter:\"blur(20px)\"},variants:{D1E6jOc_A:{backdropFilter:\"blur(5px)\",opacity:0,WebkitBackdropFilter:\"blur(5px)\"},fxMtPOFcC:{opacity:0},iMRMzLAze:{opacity:0},NfJCjUZSd:{opacity:0}}}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithDelay,{className:\"framer-1825m7h\",\"data-framer-name\":\"txt-column\",layoutDependency:layoutDependency,layoutId:\"YvUtw1wUh\",style:{opacity:0},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"0.825em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:\"What is a vertically integrated agency?\"})}),className:\"framer-77mu2x\",fonts:[\"CUSTOM;FLURO Bold\"],layoutDependency:layoutDependency,layoutId:\"tNUUmxGSy\",style:{\"--extracted-r6o4lv\":\"rgb(241, 241, 241)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nE08XHvgz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"0.825em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:\"What is a vertically integrated agency?\"})})},tRTJTBAVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"0.825em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:\"What is a vertically integrated agency?\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"1.325em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\"},children:\"In the simplest terms, we do a lot.   \"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\"},children:\"We\u2019re a hybrid studio/rental house/production company/agency partner that can handle all aspects of production and execution - on a budget and timeline that works for you. At Particle, we keep a lot of what we do in-house. With studios and office space in Seattle and Portland, we own and operate our production facilities and equipment, and retain our creative teams in-house. As a result, we\u2019re able to produce work faster while keeping costs down. We\u2019re not paying a markup to rental houses or studios, nor do we need to book time on a freelancer\u2019s schedule.\"})]})}),className:\"framer-1ge0ja4\",fonts:[\"CUSTOM;Acumin Pro Light\"],layoutDependency:layoutDependency,layoutId:\"vbXeEyiuW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nE08XHvgz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"1.325em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"16px\"},children:\"In the simplest terms, we do a lot.   \"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"16px\"},children:\"We\u2019re a hybrid studio/rental house/production company/agency partner that can handle all aspects of production and execution - on a budget and timeline that works for you. At Particle, we keep a lot of what we do in-house. With studios and office space in Seattle and Portland, we own and operate our production facilities and equipment, and retain our creative teams in-house. As a result, we\u2019re able to produce work faster while keeping costs down. We\u2019re not paying a markup to rental houses or studios, nor do we need to book time on a freelancer\u2019s schedule.\"})]})})},tRTJTBAVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"1.325em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"15px\"},children:\"In the simplest terms, we do a lot.   \"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"15px\"},children:\"We\u2019re a hybrid studio/rental house/production company/agency partner that can handle all aspects of production and execution - on a budget and timeline that works for you. At Particle, we keep a lot of what we do in-house. With studios and office space in Seattle and Portland, we own and operate our production facilities and equipment, and retain our creative teams in-house. As a result, we\u2019re able to produce work faster while keeping costs down. We\u2019re not paying a markup to rental houses or studios, nor do we need to book time on a freelancer\u2019s schedule.\"})]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lhhflm\",layoutDependency:layoutDependency,layoutId:\"W94g411cV\",...addPropertyOverrides({D1E6jOc_A:{\"data-highlight\":true,onTap:onTap1ht4bug},fxMtPOFcC:{\"data-highlight\":true,onTap:onTap1uuttf6},NfJCjUZSd:{\"data-highlight\":true,onTap:onTap1uuttf6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17s7mfr\",\"data-framer-name\":\"Vertical Integration-container\",layoutDependency:layoutDependency,layoutId:\"gdwhJbvRJ\",...addPropertyOverrides({iMRMzLAze:{\"data-highlight\":true,onTap:onTap1hufg8v}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:[\"A \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"vertically integrated\"}),\" multidisciplinary creative & marketing agency\"]})}),className:\"framer-5dwzg9\",fonts:[\"CUSTOM;Acumin Pro Light\"],layoutDependency:layoutDependency,layoutId:\"eA_t2yH4i\",style:{\"--extracted-r6o4lv\":\"rgb(241, 241, 241)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{D1E6jOc_A:{\"--extracted-r6o4lv\":\" rgb(241, 241, 241)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D1E6jOc_A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", \"Acumin Pro Light Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:[\"A \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"vertically integrated\"}),\" multidisciplinary creative & marketing agency\"]})})},fxMtPOFcC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:[\"A \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"vertically integrated\"}),\" multidisciplinary creative & marketing agency\"]})})},iMRMzLAze:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:[\"A \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"vertically integrated\"}),\" multidisciplinary creative & marketing agency\"]})})},nE08XHvgz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:[\"A \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"vertically integrated\"}),\" multidisciplinary creative & marketing agency\"]})})},NfJCjUZSd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:[\"A \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"vertically integrated\"}),\" multidisciplinary creative & marketing agency\"]})})},tRTJTBAVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:[\"A \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"vertically integrated\"}),\" multidisciplinary creative & marketing agency\"]})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qrpjxh\",\"data-framer-name\":\"close-button\",layoutDependency:layoutDependency,layoutId:\"K2Wunih82\",style:{borderBottomLeftRadius:34,borderBottomRightRadius:34,borderTopLeftRadius:34,borderTopRightRadius:34},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l03omf\",\"data-framer-name\":\"close-x_container\",layoutDependency:layoutDependency,layoutId:\"V2Pd2YpQK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQ29uZGVuc2VkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Acumin Pro Condensed Regular\", serif',\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"1.325em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:\"Close\"})}),className:\"framer-52nba6\",fonts:[\"CUSTOM;Acumin Pro Condensed Regular\"],layoutDependency:layoutDependency,layoutId:\"P3f99MpPx\",style:{\"--extracted-r6o4lv\":\"rgb(241, 241, 241)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nE08XHvgz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQ29uZGVuc2VkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Acumin Pro Condensed Regular\", serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"1.125em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:\"Close\"})})},tRTJTBAVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQ29uZGVuc2VkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Acumin Pro Condensed Regular\", serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"1.325em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(241, 241, 241))\"},children:\"Close\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lda3ea\",\"data-framer-name\":\"x\",layoutDependency:layoutDependency,layoutId:\"ri4XIlzhQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jeb7bh\",layoutDependency:layoutDependency,layoutId:\"zYSVHzGE1\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,rotate:-48}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k59p6d\",layoutDependency:layoutDependency,layoutId:\"LytzFI8GT\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,rotate:48}})]})]})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0RwDW.framer-o4b48a, .framer-0RwDW .framer-o4b48a { display: block; }\",\".framer-0RwDW.framer-1uw2xki { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; max-width: 1200px; overflow: visible; padding: 10px 32px 10px 32px; position: relative; width: 1200px; }\",\".framer-0RwDW .framer-1plvymv { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 20px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-0RwDW .framer-i1whiw { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-0RwDW .framer-1825m7h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: auto; justify-content: center; max-width: 900px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 69%; }\",\".framer-0RwDW .framer-77mu2x, .framer-0RwDW .framer-1ge0ja4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0RwDW .framer-1lhhflm { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 30%; }\",\".framer-0RwDW .framer-17s7mfr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-0RwDW .framer-5dwzg9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-0RwDW .framer-1qrpjxh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px 11px 0px 11px; position: relative; width: auto; }\",\".framer-0RwDW .framer-1l03omf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: 32px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 81px; }\",\".framer-0RwDW .framer-52nba6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0RwDW .framer-lda3ea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 26px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 21px; }\",\".framer-0RwDW .framer-jeb7bh, .framer-0RwDW .framer-1k59p6d { bottom: 14px; flex: none; height: 2px; left: -3px; overflow: visible; position: absolute; width: 24px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0RwDW.framer-1uw2xki, .framer-0RwDW .framer-1825m7h, .framer-0RwDW .framer-17s7mfr, .framer-0RwDW .framer-1qrpjxh, .framer-0RwDW .framer-1l03omf, .framer-0RwDW .framer-lda3ea { gap: 0px; } .framer-0RwDW.framer-1uw2xki > *, .framer-0RwDW .framer-lda3ea > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0RwDW.framer-1uw2xki > :first-child, .framer-0RwDW .framer-1825m7h > :first-child, .framer-0RwDW .framer-lda3ea > :first-child { margin-top: 0px; } .framer-0RwDW.framer-1uw2xki > :last-child, .framer-0RwDW .framer-1825m7h > :last-child, .framer-0RwDW .framer-lda3ea > :last-child { margin-bottom: 0px; } .framer-0RwDW .framer-1825m7h > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-0RwDW .framer-17s7mfr > *, .framer-0RwDW .framer-1qrpjxh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0RwDW .framer-17s7mfr > :first-child, .framer-0RwDW .framer-1qrpjxh > :first-child, .framer-0RwDW .framer-1l03omf > :first-child { margin-left: 0px; } .framer-0RwDW .framer-17s7mfr > :last-child, .framer-0RwDW .framer-1qrpjxh > :last-child, .framer-0RwDW .framer-1l03omf > :last-child { margin-right: 0px; } .framer-0RwDW .framer-1l03omf > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } }\",\".framer-0RwDW.framer-v-1atpde8.framer-1uw2xki, .framer-0RwDW.framer-v-1am89sl.framer-1uw2xki, .framer-0RwDW.framer-v-8kr6yp.framer-1uw2xki { width: 900px; }\",\".framer-0RwDW.framer-v-1atpde8 .framer-1825m7h { width: 70%; }\",\".framer-0RwDW.framer-v-1atpde8 .framer-5dwzg9, .framer-0RwDW.framer-v-1am89sl .framer-5dwzg9, .framer-0RwDW.framer-v-8kr6yp .framer-5dwzg9 { width: 172px; }\",\".framer-0RwDW.framer-v-ya706e.framer-1uw2xki { padding: 10px 0px 10px 0px; width: 320px; }\",\".framer-0RwDW.framer-v-ya706e .framer-1plvymv { flex-direction: column; padding: 20px 20px 20px 20px; }\",\".framer-0RwDW.framer-v-ya706e .framer-i1whiw, .framer-0RwDW.framer-v-1qeu8to .framer-i1whiw { order: 0; }\",\".framer-0RwDW.framer-v-ya706e .framer-1825m7h { gap: 30px; order: 2; padding: 40px 0px 0px 0px; width: 100%; }\",\".framer-0RwDW.framer-v-ya706e .framer-1lhhflm { align-content: center; align-items: center; align-self: unset; flex-direction: row; height: min-content; order: 1; width: 100%; }\",\".framer-0RwDW.framer-v-ya706e .framer-17s7mfr { order: 1; }\",\".framer-0RwDW.framer-v-ya706e .framer-5dwzg9 { width: 124px; }\",\".framer-0RwDW.framer-v-ya706e .framer-1qrpjxh { order: 0; padding: 0px 11px 0px 1px; }\",\".framer-0RwDW.framer-v-ya706e .framer-1l03omf { align-content: flex-start; align-items: flex-start; height: 29px; width: 77px; }\",\".framer-0RwDW.framer-v-ya706e .framer-lda3ea { height: 24px; }\",\".framer-0RwDW.framer-v-ya706e .framer-jeb7bh, .framer-0RwDW.framer-v-ya706e .framer-1k59p6d { height: 1px; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0RwDW.framer-v-ya706e .framer-1plvymv, .framer-0RwDW.framer-v-ya706e .framer-1825m7h, .framer-0RwDW.framer-v-ya706e .framer-1lhhflm { gap: 0px; } .framer-0RwDW.framer-v-ya706e .framer-1plvymv > *, .framer-0RwDW.framer-v-ya706e .framer-1plvymv > :first-child, .framer-0RwDW.framer-v-ya706e .framer-1plvymv > :last-child, .framer-0RwDW.framer-v-ya706e .framer-1lhhflm > *, .framer-0RwDW.framer-v-ya706e .framer-1lhhflm > :first-child, .framer-0RwDW.framer-v-ya706e .framer-1lhhflm > :last-child { margin: 0px; } .framer-0RwDW.framer-v-ya706e .framer-1825m7h > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0RwDW.framer-v-ya706e .framer-1825m7h > :first-child { margin-top: 0px; } .framer-0RwDW.framer-v-ya706e .framer-1825m7h > :last-child { margin-bottom: 0px; } }\",\".framer-0RwDW.framer-v-1gta143.framer-1uw2xki { align-content: flex-end; align-items: flex-end; justify-content: flex-end; }\",\".framer-0RwDW.framer-v-1gta143 .framer-1plvymv, .framer-0RwDW.framer-v-1am89sl .framer-1plvymv, .framer-0RwDW.framer-v-8kr6yp .framer-1plvymv { cursor: unset; gap: 10px; justify-content: flex-end; }\",\".framer-0RwDW.framer-v-1gta143 .framer-i1whiw { overflow: hidden; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-0RwDW.framer-v-1gta143 .framer-1lhhflm { cursor: pointer; }\",\".framer-0RwDW.framer-v-1gta143 .framer-17s7mfr { z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0RwDW.framer-v-1gta143 .framer-1plvymv { gap: 0px; } .framer-0RwDW.framer-v-1gta143 .framer-1plvymv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0RwDW.framer-v-1gta143 .framer-1plvymv > :first-child { margin-left: 0px; } .framer-0RwDW.framer-v-1gta143 .framer-1plvymv > :last-child { margin-right: 0px; } }\",\".framer-0RwDW.framer-v-1am89sl .framer-1lhhflm, .framer-0RwDW.framer-v-8kr6yp .framer-1lhhflm { cursor: pointer; gap: 10px; justify-content: flex-end; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0RwDW.framer-v-1am89sl .framer-1plvymv, .framer-0RwDW.framer-v-1am89sl .framer-1lhhflm { gap: 0px; } .framer-0RwDW.framer-v-1am89sl .framer-1plvymv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0RwDW.framer-v-1am89sl .framer-1plvymv > :first-child { margin-left: 0px; } .framer-0RwDW.framer-v-1am89sl .framer-1plvymv > :last-child { margin-right: 0px; } .framer-0RwDW.framer-v-1am89sl .framer-1lhhflm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0RwDW.framer-v-1am89sl .framer-1lhhflm > :first-child { margin-top: 0px; } .framer-0RwDW.framer-v-1am89sl .framer-1lhhflm > :last-child { margin-bottom: 0px; } }\",\".framer-0RwDW.framer-v-1qeu8to.framer-1uw2xki { padding: 10px 20px 10px 20px; width: 320px; }\",\".framer-0RwDW.framer-v-1qeu8to .framer-1plvymv { cursor: unset; flex-direction: column; gap: 10px; justify-content: flex-end; padding: 20px 0px 20px 0px; z-index: 2; }\",\".framer-0RwDW.framer-v-1qeu8to .framer-1lhhflm { align-content: center; align-items: center; align-self: unset; flex-direction: row; gap: 10px; height: min-content; justify-content: flex-end; order: 1; width: 100%; z-index: 1; }\",\".framer-0RwDW.framer-v-1qeu8to .framer-17s7mfr { cursor: pointer; order: 1; }\",\".framer-0RwDW.framer-v-1qeu8to .framer-5dwzg9 { width: 160px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0RwDW.framer-v-1qeu8to .framer-1plvymv, .framer-0RwDW.framer-v-1qeu8to .framer-1lhhflm { gap: 0px; } .framer-0RwDW.framer-v-1qeu8to .framer-1plvymv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0RwDW.framer-v-1qeu8to .framer-1plvymv > :first-child { margin-top: 0px; } .framer-0RwDW.framer-v-1qeu8to .framer-1plvymv > :last-child { margin-bottom: 0px; } .framer-0RwDW.framer-v-1qeu8to .framer-1lhhflm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0RwDW.framer-v-1qeu8to .framer-1lhhflm > :first-child { margin-left: 0px; } .framer-0RwDW.framer-v-1qeu8to .framer-1lhhflm > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0RwDW.framer-v-8kr6yp .framer-1plvymv, .framer-0RwDW.framer-v-8kr6yp .framer-1lhhflm { gap: 0px; } .framer-0RwDW.framer-v-8kr6yp .framer-1plvymv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0RwDW.framer-v-8kr6yp .framer-1plvymv > :first-child { margin-left: 0px; } .framer-0RwDW.framer-v-8kr6yp .framer-1plvymv > :last-child { margin-right: 0px; } .framer-0RwDW.framer-v-8kr6yp .framer-1lhhflm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0RwDW.framer-v-8kr6yp .framer-1lhhflm > :first-child { margin-top: 0px; } .framer-0RwDW.framer-v-8kr6yp .framer-1lhhflm > :last-child { margin-bottom: 0px; } }\",'.framer-0RwDW[data-border=\"true\"]::after, .framer-0RwDW [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 337\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"nE08XHvgz\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"tRTJTBAVq\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"D1E6jOc_A\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"fxMtPOFcC\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"iMRMzLAze\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"NfJCjUZSd\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerk6TXY8Hue=withCSS(Component,css,\"framer-0RwDW\");export default Framerk6TXY8Hue;Framerk6TXY8Hue.displayName=\"P8/Txt_toggle\";Framerk6TXY8Hue.defaultProps={height:337,width:1200};addPropertyControls(Framerk6TXY8Hue,{variant:{options:[\"WY9ITGVps\",\"nE08XHvgz\",\"tRTJTBAVq\",\"D1E6jOc_A\",\"fxMtPOFcC\",\"iMRMzLAze\",\"NfJCjUZSd\"],optionTitles:[\"Desktop/On-Click\",\"Tablet/On-click\",\"Mobile/On-click\",\"Desktop/Initial\",\"Tablet/Initial\",\"Mobile/Initial\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerk6TXY8Hue,[{explicitInter:true,fonts:[{family:\"FLURO Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/jpS7cKP6edSrVI200G1dfpMwFw.woff2\"},{family:\"Acumin Pro Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/SHIgBTYzwXrIXUtyX4qdl3v2DQ.woff2\"},{family:\"Acumin Pro Condensed Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pPkEOkf7Xg6zQt87DpwFxgDBKI.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk6TXY8Hue\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"337\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"nE08XHvgz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"tRTJTBAVq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"D1E6jOc_A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"fxMtPOFcC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"iMRMzLAze\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"NfJCjUZSd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./k6TXY8Hue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function h1Anim(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,initial:{opacity:1},animate:{opacity:0},transition:{ease:\"ease out\",delay:1,duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,whileHover:{scale:1.05}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"h1Anim\":{\"type\":\"reactHoc\",\"name\":\"h1Anim\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Header_animation.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/I3GA1LNcnfX23fOhSUyv/Vimeo.js\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/yx3Yu3CvNlklDmNPtEF9/Animator.js\";import P8MarketingEmailAnimation from\"#framer/local/canvasComponent/jxBFJEUDp/jxBFJEUDp.js\";import P8Txt_toggle from\"#framer/local/canvasComponent/k6TXY8Hue/k6TXY8Hue.js\";import NavMainNav from\"#framer/local/canvasComponent/Kf38fxDrf/Kf38fxDrf.js\";import NavMobile from\"#framer/local/canvasComponent/mQpu8Bo8k/mQpu8Bo8k.js\";import NavButton from\"#framer/local/canvasComponent/nWGkHbIQ6/nWGkHbIQ6.js\";import NavFooter2 from\"#framer/local/canvasComponent/RrwOcdnWS/RrwOcdnWS.js\";import{bgMove1,bgMove2,bgMove4,bgMove5}from\"#framer/local/codeFile/Dwo2TP9/GradientAnimator.js\";import{h1Anim}from\"#framer/local/codeFile/SXUMblG/Header_animation.js\";import*as sharedStyle from\"#framer/local/css/Dh3JLdDOE/Dh3JLdDOE.js\";import*as sharedStyle1 from\"#framer/local/css/OtG5p6vd4/OtG5p6vd4.js\";import metadataProvider from\"#framer/local/webPageMetadata/T7FdirwOt/T7FdirwOt.js\";const NavMobileFonts=getFonts(NavMobile);const NavMainNavFonts=getFonts(NavMainNav);const P8Txt_toggleFonts=getFonts(P8Txt_toggle);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const RichTextH1AnimyhqznWithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(RichText,{nodeId:\"rdov6aZbR\",override:h1Anim,scopeId:\"T7FdirwOt\"}));const RichTextH1Animmjnb3yWithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(RichText,{nodeId:\"RV3jgWt37\",override:h1Anim,scopeId:\"T7FdirwOt\"}));const MotionDivBgMove1226ud6=withCodeBoundaryForOverrides(motion.div,{nodeId:\"mWPfCNJOs\",override:bgMove1,scopeId:\"T7FdirwOt\"});const MotionDivBgMove21eii0ik=withCodeBoundaryForOverrides(motion.div,{nodeId:\"tEfIC4ZGf\",override:bgMove2,scopeId:\"T7FdirwOt\"});const MotionDivBgMove41i3c396=withCodeBoundaryForOverrides(motion.div,{nodeId:\"Wf2nvsDTP\",override:bgMove4,scopeId:\"T7FdirwOt\"});const MotionDivBgMove5fmfyl7=withCodeBoundaryForOverrides(motion.div,{nodeId:\"lhRzPvBxa\",override:bgMove5,scopeId:\"T7FdirwOt\"});const AnimatorFonts=getFonts(Animator);const P8MarketingEmailAnimationFonts=getFonts(P8MarketingEmailAnimation);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const VimeoFonts=getFonts(Vimeo);const ImageWithFX=withFX(Image);const NavButtonFonts=getFonts(NavButton);const NavFooter2Fonts=getFonts(NavFooter2);const breakpoints={foCgbtU51:\"(max-width: 809px)\",KGl7g4NXc:\"(min-width: 1200px)\",UM4Keqn6p:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Lfz0c\";const variantClassNames={foCgbtU51:\"framer-v-1ng8jwz\",KGl7g4NXc:\"framer-v-zhhg96\",UM4Keqn6p:\"framer-v-cjwkjo\"};const transition1={delay:.4,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:.1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:.1,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:.1,duration:.45,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.45,duration:.45,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const transition6={delay:.1,duration:.25,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"KGl7g4NXc\",Phone:\"foCgbtU51\",Tablet:\"UM4Keqn6p\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KGl7g4NXc\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"foCgbtU51\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"foCgbtU51\")return false;return true;};const elementId=useRouteElementId(\"W0UwsvqGT\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"GEzaq7c6k\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"rdzP1oVBe\");const ref3=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KGl7g4NXc\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(48, 48, 48); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-zhhg96\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{height:52,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wsyj4q-container hidden-zhhg96 hidden-cjwkjo\",layoutScroll:true,nodeId:\"GCTDKkyCv\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(NavMobile,{height:\"100%\",id:\"GCTDKkyCv\",layoutId:\"GCTDKkyCv\",style:{width:\"100%\"},variant:\"UWjhPNitK\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e3thnr-container hidden-1ng8jwz\",layoutScroll:true,nodeId:\"eh_Yx9Diq\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(NavMainNav,{height:\"100%\",id:\"eh_Yx9Diq\",layoutId:\"eh_Yx9Diq\",style:{width:\"100%\"},variant:\"mhWfXcBKJ\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nsauh0\",\"data-framer-name\":\"top-bg-container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qfw7jf\",\"data-framer-name\":\"top-container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 390px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:337,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,y:(componentViewport?.y||0)+0+0+0+0+90,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14l00pw-container\",nodeId:\"R5YalYdh5\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{variant:\"iMRMzLAze\"},UM4Keqn6p:{variant:\"fxMtPOFcC\"}},children:/*#__PURE__*/_jsx(P8Txt_toggle,{height:\"100%\",id:\"R5YalYdh5\",layoutId:\"R5YalYdh5\",style:{width:\"100%\"},variant:\"D1E6jOc_A\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q6ukfj\",\"data-framer-name\":\"Hero\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b9t5fq hidden-1ng8jwz\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19bzuo6\",\"data-styles-preset\":\"Dh3JLdDOE\",children:\"Particle\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19bzuo6\",\"data-styles-preset\":\"Dh3JLdDOE\",children:\"Creative\"})]}),className:\"framer-1mqed2g\",\"data-framer-appear-id\":\"1mqed2g\",\"data-framer-name\":\"Title_main\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextH1AnimyhqznWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19bzuo6\",\"data-styles-preset\":\"Dh3JLdDOE\",children:\"Particle\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19bzuo6\",\"data-styles-preset\":\"Dh3JLdDOE\",children:\"Creative\"})]}),className:\"framer-yhqzn\",\"data-framer-appear-id\":\"yhqzn\",\"data-framer-name\":\"Title_blur\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q7hz8n\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:\"Video & Photo Production\"})}),fonts:[\"CUSTOM;FLURO Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5cv31p\",\"data-styles-preset\":\"OtG5p6vd4\",children:\"Video & Photo Production\"})}),className:\"framer-1uaa0bf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u42tdw\",\"data-framer-name\":\"ellipse\",fill:\"black\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"6.471\" cy=\"6.294\" r=\"5.917\" fill=\"#D9D9D9\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:\"Digital Design\"})}),fonts:[\"CUSTOM;FLURO Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5cv31p\",\"data-styles-preset\":\"OtG5p6vd4\",children:\"Digital Design\"})}),className:\"framer-9dyhgx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jxdfnt\",\"data-framer-name\":\"ellipse\",fill:\"black\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"6.471\" cy=\"6.294\" r=\"5.917\" fill=\"#D9D9D9\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:\"Marketing Automation\"})}),fonts:[\"CUSTOM;FLURO Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5cv31p\",\"data-styles-preset\":\"OtG5p6vd4\",children:\"Marketing Automation\"})}),className:\"framer-1o8x2q8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextH1Animmjnb3yWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19bzuo6\",\"data-styles-preset\":\"Dh3JLdDOE\",children:\"Particle\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19bzuo6\",\"data-styles-preset\":\"Dh3JLdDOE\",children:\"Creative\"})]}),className:\"framer-mjnb3y hidden-zhhg96 hidden-cjwkjo\",\"data-framer-appear-id\":\"mjnb3y\",\"data-framer-name\":\"ParticleCreative_blur\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19bzuo6\",\"data-styles-preset\":\"Dh3JLdDOE\",children:\"Particle\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19bzuo6\",\"data-styles-preset\":\"Dh3JLdDOE\",children:\"Creative\"})]}),className:\"framer-1qz6ntb hidden-zhhg96 hidden-cjwkjo\",\"data-framer-appear-id\":\"1qz6ntb\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sivbou\",\"data-framer-name\":\"top_gradient_bg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aiz47f\",\"data-framer-name\":\"bg_bot\",children:[/*#__PURE__*/_jsx(MotionDivBgMove1226ud6,{className:\"framer-226ud6\",\"data-framer-name\":\"bot_blue_1\",style:{rotate:-34}}),/*#__PURE__*/_jsx(MotionDivBgMove21eii0ik,{className:\"framer-1eii0ik\",\"data-framer-name\":\"bot_blue_2\",style:{rotate:-4}}),/*#__PURE__*/_jsx(MotionDivBgMove41i3c396,{className:\"framer-1i3c396\",\"data-framer-name\":\"bot_lightblue\",style:{rotate:-24}}),/*#__PURE__*/_jsx(MotionDivBgMove5fmfyl7,{className:\"framer-fmfyl7\",\"data-framer-name\":\"bot_purple\",style:{rotate:-6}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1723935\",\"data-framer-name\":\"bg_top\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wau1iz\",\"data-framer-name\":\"top_purple\",style:{rotate:-5}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r1vky9\",\"data-framer-name\":\"top_yellow1\",style:{rotate:-17}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1szeiw\",\"data-framer-name\":\"top_yellow2\",style:{rotate:-10}})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5zzw85\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uf3pbn\",\"data-framer-name\":\"edge-fix\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a4mzs7\",\"data-framer-name\":\"partners-container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ue25z\",\"data-framer-name\":\"swoosh-container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{href:{hash:\":W0UwsvqGT\",webPageId:\"T7FdirwOt\"},openInNewTab:false,smoothScroll:true}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"g9S3BKv19\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274,intrinsicWidth:273,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800.2755+300-377+-49),pixelHeight:274,pixelWidth:273,src:\"https://framerusercontent.com/images/I66IC8p7hrJiooQZ4Vx3erJh8s.svg\"},transformTemplate:transformTemplate1},UM4Keqn6p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274,intrinsicWidth:273,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+468-769+845-835),pixelHeight:274,pixelWidth:273,src:\"https://framerusercontent.com/images/I66IC8p7hrJiooQZ4Vx3erJh8s.svg\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(motion.a,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274,intrinsicWidth:273,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+551-811+0),pixelHeight:274,pixelWidth:273,src:\"https://framerusercontent.com/images/I66IC8p7hrJiooQZ4Vx3erJh8s.svg\"},className:\"framer-5ufabd framer-1ehchms\",\"data-border\":true,\"data-framer-name\":\"Our work-button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{href:undefined}},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":W0UwsvqGT\",webPageId:\"T7FdirwOt\"},motionChild:true,nodeId:\"m3VBIMzVK\",openInNewTab:false,scopeId:\"T7FdirwOt\",smoothScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-d229bo framer-1ehchms\"})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r1i5j6\",\"data-framer-name\":\"our_work_arrow\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:59,svg:'<svg width=\"59\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m1 1 29.17 22L58 1\" stroke=\"#F8F8F8\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.125em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"13px\"},children:\"Our\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"13px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"13px\"},children:\"Work\"})]})}),transformTemplate:transformTemplate2},UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.125em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"29px\"},children:\"Our\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"29px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"29px\"},children:\"Work\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.125em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:[\"Our\",/*#__PURE__*/_jsx(\"br\",{}),\"Work\"]})}),className:\"framer-1wsc4so\",fonts:[\"CUSTOM;FLURO Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-47uu2o hidden-1ng8jwz\",\"data-framer-name\":\"Swoosh_lines\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1884lpb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pKZvGpWfC\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"pKZvGpWfC\",layoutId:\"pKZvGpWfC\",loopOptions:\"reverse\",pathAnimation:{delay:.95,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lgx0sr\",\"data-framer-name\":\"line_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1200 600\"><path d=\"M 1169.571 10.714 C 1158.722 65.433 1110.288 101.143 981.857 101.143 C 853.426 101.143 769.826 137.053 715.714 313.714 C 661.603 490.375 625.894 607.309 422.571 599.143\" fill=\"transparent\" stroke-width=\"2\" stroke=\"#f1f1f1\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12222152647,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ot1sgu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"P8XSEwzoH\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"P8XSEwzoH\",layoutId:\"P8XSEwzoH\",loopOptions:\"reverse\",pathAnimation:{delay:.95,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dak7q0\",\"data-framer-name\":\"line_2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1200 600\"><path d=\"M 1184.5 50 C 1158.045 129.489 1058.801 135.5 971.5 135.5 C 884.199 135.5 799.895 159.476 752.5 328.5 C 705.105 497.524 639.131 604.231 423 600\" fill=\"transparent\" stroke-width=\"2\" stroke=\"#f1f1f1\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12107569560,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8s23ub-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"j0ZD6g15Z\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"j0ZD6g15Z\",layoutId:\"j0ZD6g15Z\",loopOptions:\"reverse\",pathAnimation:{delay:.95,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18onufu\",\"data-framer-name\":\"line_3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1200 600\"><path d=\"M 1194.857 83.571 C 1170.449 151.246 1098.567 165 988.714 165 C 878.862 165 834.145 194.634 784.286 347.571 C 734.427 500.509 710.294 599.143 422.571 599.143\" fill=\"transparent\" stroke-width=\"2\" stroke=\"#f1f1f1\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11738569665,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lxwwew\",\"data-border\":true,\"data-framer-name\":\"WhatWeDo-obj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:\"What we do\"})}),fonts:[\"CUSTOM;FLURO Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5cv31p\",\"data-styles-preset\":\"OtG5p6vd4\",children:\"What we do\"})}),className:\"framer-kq661m\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13qwhqr-container hidden-zhhg96 hidden-cjwkjo\",\"data-framer-name\":\"line_m_3_ani\",isAuthoredByUser:true,isModuleExternal:true,name:\"line_m_3_ani\",nodeId:\"KnGNeFCnu\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"KnGNeFCnu\",layoutId:\"KnGNeFCnu\",loopOptions:\"reverse\",name:\"line_m_3_ani\",pathAnimation:{delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2egrvq\",\"data-framer-name\":\"line_m_3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 390 366\"><path d=\"M 404 34 C 393.886 77.579 364.102 86.436 318.584 86.436 C 273.066 86.436 254.537 105.518 233.878 204.002 C 213.219 302.485 203.219 366 84 366\" fill=\"transparent\" stroke=\"#f1f1f1\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9415556798,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15pdy3m-container hidden-zhhg96 hidden-cjwkjo\",\"data-framer-name\":\"line_m_2_ani\",isAuthoredByUser:true,isModuleExternal:true,name:\"line_m_2_ani\",nodeId:\"OnQL9ZPzL\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"OnQL9ZPzL\",layoutId:\"OnQL9ZPzL\",loopOptions:\"reverse\",name:\"line_m_2_ani\",pathAnimation:{delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1izkqrz\",\"data-framer-name\":\"line_m_2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 390 366\"><path d=\"M 395 12 C 384.057 63.151 343.004 67.019 306.891 67.019 C 270.778 67.019 235.905 82.447 216.3 191.213 C 196.695 299.979 169.404 368.645 80 365.922\" fill=\"transparent\" stroke=\"#f1f1f1\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10186119718,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y28itm-container hidden-zhhg96 hidden-cjwkjo\",\"data-framer-name\":\"line_m_1_ani\",isAuthoredByUser:true,isModuleExternal:true,name:\"line_m_1_ani\",nodeId:\"Ml6yfddd7\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"Ml6yfddd7\",layoutId:\"Ml6yfddd7\",loopOptions:\"reverse\",name:\"line_m_1_ani\",pathAnimation:{delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bworgw\",\"data-framer-name\":\"line_m_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 390 366\"><path d=\"M 386.143 -10.844 C 381.597 24.19 361.303 47.053 307.489 47.053 C 253.675 47.053 218.646 70.045 195.972 183.152 C 173.299 296.26 158.337 371.127 73.143 365.899\" fill=\"transparent\" stroke=\"#f1f1f1\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11809864140,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4xwiq\",\"data-framer-name\":\"Trusted By-container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1atrvpz\",\"data-framer-name\":\"txt_trusted by\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:\"Trusted By\"})})},UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:\"Trusted By\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(243, 243, 243)\",\"--framer-text-transform\":\"uppercase\"},children:\"Trusted By\"})}),className:\"framer-1bn4q8k\",fonts:[\"CUSTOM;FLURO Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eee2lg\",\"data-framer-name\":\"logo_list\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"Vizio Ads logo\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800.2755+0+0+0+72.3+0+0),pixelHeight:48,pixelWidth:340,src:\"https://framerusercontent.com/images/AM0nPDUxL8oqrhzR5yTr7ruHXU.png\"}},UM4Keqn6p:{background:{alt:\"Vizio Ads logo\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+215+33.3647),pixelHeight:48,pixelWidth:340,src:\"https://framerusercontent.com/images/AM0nPDUxL8oqrhzR5yTr7ruHXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Vizio Ads logo\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+249.9+47.4118),pixelHeight:48,pixelWidth:340,src:\"https://framerusercontent.com/images/AM0nPDUxL8oqrhzR5yTr7ruHXU.png\"},className:\"framer-1a9jl1d\",\"data-framer-name\":\"VIZIO_Ads\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"Amazon Logo\",fit:\"fit\",intrinsicHeight:51,intrinsicWidth:168,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800.2755+0+0+0+72.3+0+0),pixelHeight:182,pixelWidth:603,positionX:\"center\",positionY:\"center\",sizes:\"89px\",src:\"https://framerusercontent.com/images/2BeNhGGEtTtA29YJC6E5UiL474.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2BeNhGGEtTtA29YJC6E5UiL474.svg?scale-down-to=512 512w,https://framerusercontent.com/images/2BeNhGGEtTtA29YJC6E5UiL474.svg 603w\"}},UM4Keqn6p:{background:{alt:\"Amazon Logo\",fit:\"fit\",intrinsicHeight:51,intrinsicWidth:168,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+215+25.7322),pixelHeight:182,pixelWidth:603,positionX:\"center\",positionY:\"center\",sizes:\"94px\",src:\"https://framerusercontent.com/images/2BeNhGGEtTtA29YJC6E5UiL474.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2BeNhGGEtTtA29YJC6E5UiL474.svg?scale-down-to=512 512w,https://framerusercontent.com/images/2BeNhGGEtTtA29YJC6E5UiL474.svg 603w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Amazon Logo\",fit:\"fit\",intrinsicHeight:51,intrinsicWidth:168,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+249.9+41),pixelHeight:182,pixelWidth:603,positionX:\"center\",positionY:\"center\",sizes:\"112px\",src:\"https://framerusercontent.com/images/2BeNhGGEtTtA29YJC6E5UiL474.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2BeNhGGEtTtA29YJC6E5UiL474.svg?scale-down-to=512 512w,https://framerusercontent.com/images/2BeNhGGEtTtA29YJC6E5UiL474.svg 603w\"},className:\"framer-lbf3nu\",\"data-framer-name\":\"Amazon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"Kraft Heinz Logo\",fit:\"fill\",intrinsicHeight:29,intrinsicWidth:170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800.2755+0+0+0+72.3+0+45),pixelHeight:58,pixelWidth:340,src:\"https://framerusercontent.com/images/fHX5AzrWwSyhgUVsSBKVBt2bexU.png\"}},UM4Keqn6p:{background:{alt:\"Kraft Heinz Logo\",fit:\"fill\",intrinsicHeight:29,intrinsicWidth:170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+215+31.9824),pixelHeight:58,pixelWidth:340,src:\"https://framerusercontent.com/images/fHX5AzrWwSyhgUVsSBKVBt2bexU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Kraft Heinz Logo\",fit:\"fill\",intrinsicHeight:29,intrinsicWidth:170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+249.9+46.5),pixelHeight:58,pixelWidth:340,src:\"https://framerusercontent.com/images/fHX5AzrWwSyhgUVsSBKVBt2bexU.png\"},className:\"framer-1psye4n\",\"data-framer-name\":\"KraftHeinz\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"Brooks Logo\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:193.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800.2755+0+0+0+72.3+0+45),pixelHeight:286,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"89px\",src:\"https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg 2500w\"}},UM4Keqn6p:{background:{alt:\"Brooks Logo\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:193.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+215+30.2843),pixelHeight:286,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"94px\",src:\"https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Brooks Logo\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:193.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+249.9+41),pixelHeight:286,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"166px\",src:\"https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xafr1Wj6DKkyBrHO24yvxi0UM2g.svg 2500w\"},className:\"framer-eim2um\",\"data-framer-name\":\"Promethean_Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"Nectar Logo\",fit:\"fit\",intrinsicHeight:27.5,intrinsicWidth:170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800.2755+0+0+0+72.3+0+90),pixelHeight:99,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"89px\",src:\"https://framerusercontent.com/images/bvVvIGG1fiasGjbukYWNehJ8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bvVvIGG1fiasGjbukYWNehJ8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/bvVvIGG1fiasGjbukYWNehJ8.svg 600w\"}},UM4Keqn6p:{background:{alt:\"Nectar Logo\",fit:\"fit\",intrinsicHeight:27.5,intrinsicWidth:170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+215+32.3971),pixelHeight:99,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"94px\",src:\"https://framerusercontent.com/images/bvVvIGG1fiasGjbukYWNehJ8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bvVvIGG1fiasGjbukYWNehJ8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/bvVvIGG1fiasGjbukYWNehJ8.svg 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Nectar Logo\",fit:\"fit\",intrinsicHeight:27.5,intrinsicWidth:170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+249.9+45.8677),pixelHeight:99,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/bvVvIGG1fiasGjbukYWNehJ8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bvVvIGG1fiasGjbukYWNehJ8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/bvVvIGG1fiasGjbukYWNehJ8.svg 600w\"},className:\"framer-iyx0xw\",\"data-framer-name\":\"Resident_Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"United Logo\",fit:\"fit\",intrinsicHeight:65,intrinsicWidth:150,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800.2755+0+0+0+72.3+0+90),pixelHeight:453,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"89px\",src:\"https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg 2500w\"}},UM4Keqn6p:{background:{alt:\"United Logo\",fit:\"fit\",intrinsicHeight:65,intrinsicWidth:150,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+215+19.6334),pixelHeight:453,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"94px\",src:\"https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"United Logo\",fit:\"fit\",intrinsicHeight:65,intrinsicWidth:150,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900+0+0+0+249.9+22),pixelHeight:453,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"166px\",src:\"https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/w2QbGiwUSZua5PDHtaIZwoN5r0.svg 2500w\"},className:\"framer-mr1fyw\",\"data-framer-name\":\"united_way_logo_white_1\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12gc9kr\",\"data-framer-name\":\"services-bg-container\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM4Keqn6p:{style:{rotate:-50}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ql5zvo hidden-1ng8jwz\",\"data-framer-name\":\"email-stack\",style:{rotate:-56},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lprbue\",\"data-framer-name\":\"email-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1emz9a4-container\",nodeId:\"QrX7drc33\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(P8MarketingEmailAnimation,{height:\"100%\",id:\"QrX7drc33\",layoutId:\"QrX7drc33\",style:{width:\"100%\"},variant:\"EHLHtTo68\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1howuf8\",\"data-framer-name\":\"email-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ul0v6u-container\",nodeId:\"pRBN5btUc\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(P8MarketingEmailAnimation,{height:\"100%\",id:\"pRBN5btUc\",layoutId:\"pRBN5btUc\",style:{width:\"100%\"},variant:\"Fuz_N9TSZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-ifn79y\",\"data-framer-name\":\"email-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vml117-container\",nodeId:\"Jj9B2nyCu\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM4Keqn6p:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(P8MarketingEmailAnimation,{height:\"100%\",id:\"Jj9B2nyCu\",layoutId:\"Jj9B2nyCu\",variant:\"KDEfYFDYn\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:4592,intrinsicWidth:2876,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100.2755+-10),pixelHeight:4592,pixelWidth:2876,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 140px)`,src:\"https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg\",srcSet:\"https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg?scale-down-to=2048 1282w,https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg?scale-down-to=4096 2565w,https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg 2876w\"}},UM4Keqn6p:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:4592,intrinsicWidth:2876,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1368+-10),pixelHeight:4592,pixelWidth:2876,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg\",srcSet:\"https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg?scale-down-to=2048 1282w,https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg?scale-down-to=4096 2565w,https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg 2876w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:4592,intrinsicWidth:2876,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1451+-10),pixelHeight:4592,pixelWidth:2876,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg\",srcSet:\"https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg?scale-down-to=2048 1282w,https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg?scale-down-to=4096 2565w,https://framerusercontent.com/images/GORtjjK6JE9QHHupJaT94V8XA.jpg 2876w\"},className:\"framer-1mrtlqx\",\"data-framer-name\":\"bg-gradient-mid\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x69shr\",\"data-framer-name\":\"services-container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dxbpw4\",\"data-framer-name\":\"bg-elipse\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d5sxhm\",\"data-border\":true,\"data-framer-name\":\"html-elipse\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yaj7bc\",\"data-framer-name\":\"Visual Production\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pxs0v8\",\"data-framer-name\":\"txt_frame\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jel2rz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"29px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Visual Production\"})}),transformTemplate:undefined},UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Visual Production\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.28,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Visual Production\"})}),className:\"framer-19rsk8o\",\"data-framer-name\":\"Visual Production_blur\",fonts:[\"CUSTOM;FLURO Bold\"],style:{transformPerspective:1200},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"29px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Visual Production\"})})},UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Visual Production\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Visual Production\"})}),className:\"framer-1rawzfe\",fonts:[\"CUSTOM;FLURO Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"At the heart of Particle is an end-to-end production company. Our team consists of an in-house producer, director of photography, camera tech, and editing team. Along with two owned and operated studios in the Pacific Northwest, Particle also maintains an extensive inventory of professional-grade camera and lighting equipment.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019ve worked with companies large and small, from concept to delivery and every step in between.\"})]}),fonts:[\"CUSTOM;Acumin Pro Light\"]},UM4Keqn6p:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"At the heart of Particle is an end-to-end production company. Our team consists of an in-house producer, director of photography, camera tech, and editing team. Along with two owned and operated studios in the Pacific Northwest, Particle also maintains an extensive inventory of professional-grade camera and lighting equipment.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019ve worked with companies large and small, from concept to delivery and every step in between.\"})]}),fonts:[\"CUSTOM;Acumin Pro Light\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Acumin Pro Regular\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"At the heart of Particle is an end-to-end production company. Our team consists of an in-house producer, director of photography, camera tech, and editing team. Along with two owned and operated studios in the Pacific Northwest, Particle also maintains an extensive inventory of professional-grade camera and lighting equipment.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Acumin Pro Regular\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019ve worked with companies large and small, from concept to delivery and every step in between.\"})]}),className:\"framer-1qiktq8\",fonts:[\"CUSTOM;Acumin Pro Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"A line art rendition of a Small HD monitor displaying the Reel of Particle Creative in Seattle, WA. \",fit:\"fit\",intrinsicHeight:537,intrinsicWidth:707,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100.2755+0+70+0+32+16.5),pixelHeight:537,pixelWidth:707,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,src:\"https://framerusercontent.com/images/MDuNBfHPxB5BihI9JFiA44Lpn9U.svg\",srcSet:\"https://framerusercontent.com/images/MDuNBfHPxB5BihI9JFiA44Lpn9U.svg?scale-down-to=512 512w,https://framerusercontent.com/images/MDuNBfHPxB5BihI9JFiA44Lpn9U.svg 707w\"}},UM4Keqn6p:{background:{alt:\"A line art rendition of a Small HD monitor displaying the Reel of Particle Creative in Seattle, WA. \",fit:\"fit\",intrinsicHeight:537,intrinsicWidth:707,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1368+0+140+0+61),pixelHeight:537,pixelWidth:707,positionX:\"center\",positionY:\"center\",sizes:\"410.5033px\",src:\"https://framerusercontent.com/images/MDuNBfHPxB5BihI9JFiA44Lpn9U.svg\",srcSet:\"https://framerusercontent.com/images/MDuNBfHPxB5BihI9JFiA44Lpn9U.svg?scale-down-to=512 512w,https://framerusercontent.com/images/MDuNBfHPxB5BihI9JFiA44Lpn9U.svg 707w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:90,y:-10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"A line art rendition of a Small HD monitor displaying the Reel of Particle Creative in Seattle, WA. \",fit:\"fit\",intrinsicHeight:537,intrinsicWidth:707,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1451+0+140+0+0),pixelHeight:537,pixelWidth:707,positionX:\"center\",positionY:\"center\",sizes:\"560px\",src:\"https://framerusercontent.com/images/MDuNBfHPxB5BihI9JFiA44Lpn9U.svg\",srcSet:\"https://framerusercontent.com/images/MDuNBfHPxB5BihI9JFiA44Lpn9U.svg?scale-down-to=512 512w,https://framerusercontent.com/images/MDuNBfHPxB5BihI9JFiA44Lpn9U.svg 707w\"},className:\"framer-1y7ekka\",\"data-framer-name\":\"Illustration_monitor\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM4Keqn6p:{style:{rotate:4.8}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ozcc2d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lejdz3FP8\",rendersWithMotion:true,scopeId:\"T7FdirwOt\",style:{rotate:5},children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"lejdz3FP8\",layoutId:\"lejdz3FP8\",loop:true,mute:true,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/1037561460?share=copy\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zm3qmh\",\"data-framer-name\":\"Digital Design\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"A line art rendition of a Macbook Pro featuring a Vizeo web page that we made in house at Particle Creative in Seattle, WA. \",fit:\"fit\",intrinsicHeight:465,intrinsicWidth:635,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100.2755+0+70+720+8+24.1054),pixelHeight:465,pixelWidth:635,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,src:\"https://framerusercontent.com/images/WYLunHDP54CcQhknPPWeXRHIyQ8.svg\",srcSet:\"https://framerusercontent.com/images/WYLunHDP54CcQhknPPWeXRHIyQ8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/WYLunHDP54CcQhknPPWeXRHIyQ8.svg 635w\"}},UM4Keqn6p:{background:{alt:\"A line art rendition of a Macbook Pro featuring a Vizeo web page that we made in house at Particle Creative in Seattle, WA. \",fit:\"fit\",intrinsicHeight:465,intrinsicWidth:635,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1368+0+140+467+34),pixelHeight:465,pixelWidth:635,positionX:\"center\",positionY:\"center\",sizes:\"428.6712px\",src:\"https://framerusercontent.com/images/WYLunHDP54CcQhknPPWeXRHIyQ8.svg\",srcSet:\"https://framerusercontent.com/images/WYLunHDP54CcQhknPPWeXRHIyQ8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/WYLunHDP54CcQhknPPWeXRHIyQ8.svg 635w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:-2,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-70,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"A line art rendition of a Macbook Pro featuring a Vizeo web page that we made in house at Particle Creative in Seattle, WA. \",fit:\"fit\",intrinsicHeight:465,intrinsicWidth:635,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1451+0+140+467+34),pixelHeight:465,pixelWidth:635,positionX:\"center\",positionY:\"center\",sizes:\"513px\",src:\"https://framerusercontent.com/images/WYLunHDP54CcQhknPPWeXRHIyQ8.svg\",srcSet:\"https://framerusercontent.com/images/WYLunHDP54CcQhknPPWeXRHIyQ8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/WYLunHDP54CcQhknPPWeXRHIyQ8.svg 635w\"},className:\"framer-17x6wxj\",\"data-framer-name\":\"Illustration_laptop\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lh3uka\",style:{rotate:-7},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1523.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100.2755+0+70+720+8+24.1054+23.4958+-165),pixelHeight:3047,pixelWidth:600,sizes:\"218px\",src:\"https://framerusercontent.com/images/aNg8oAGxSzVDzIy5kxtm1KwQZX4.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aNg8oAGxSzVDzIy5kxtm1KwQZX4.jpg 600w\"}},UM4Keqn6p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1523.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1368+0+140+467+34+29.1368+-509.6729),pixelHeight:3047,pixelWidth:600,sizes:\"341px\",src:\"https://framerusercontent.com/images/aNg8oAGxSzVDzIy5kxtm1KwQZX4.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aNg8oAGxSzVDzIy5kxtm1KwQZX4.jpg 600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:-50,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:1400}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-1010}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1523.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1451+0+140+467+34+36+-440),pixelHeight:3047,pixelWidth:600,sizes:\"341px\",src:\"https://framerusercontent.com/images/aNg8oAGxSzVDzIy5kxtm1KwQZX4.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aNg8oAGxSzVDzIy5kxtm1KwQZX4.jpg 600w\"},className:\"framer-pbd1pe\",\"data-framer-name\":\"VIZIO_Site_600W\",style:{rotate:360,transformPerspective:1200}})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ih8ed6\",\"data-framer-name\":\"txt frame\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rg94ti\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Digital Design\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.28,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Digital Design\"})}),className:\"framer-1b0z9v0\",\"data-framer-name\":\"Digital Design_blur\",fonts:[\"CUSTOM;FLURO Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Digital Design\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Digital Design\"})}),className:\"framer-14zughp\",fonts:[\"CUSTOM;FLURO Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Whether you want us to stay on brand or reimagine your style guide, our design work always represents the best of your company. From web to illustration, emails to landing pages, the variety of approaches we bring will always keep you looking fresh.\"})}),className:\"framer-rndef8\",fonts:[\"CUSTOM;Acumin Pro Light\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8y9fbl\",\"data-framer-name\":\"Marketing Automation\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{transformTemplate:transformTemplate1},UM4Keqn6p:{transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-7dnf4i\",\"data-framer-name\":\"Illustration_marketing\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tgdbwy\",\"data-framer-name\":\"particle_web_illustration_funnel_outlined\",fill:\"black\",intrinsicHeight:824,intrinsicWidth:492,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 492.13 823.56\"><path d=\"m219.03 814.76-2.59-10.62-11.59 4.65 6.81-34.28 1.7-4.64.43-2.29 24.23 35.38-1.77-.36-1.6 2.35-8.28-1.72 2.77 8.24-.82.06-1.9 2.62-7.41.59Zm3.21-2.73-.36.49 3.48-.28.36-.49-3.48.28Zm-4.02-9.04 2.04 8.36.36-.5-2.04-8.36-.36.5Zm1.54-4.11 2.72 11.13 3.97-.32-4.02-11.93 11.16 2.26-18.72-27.33-5.55 29.5 10.44-3.32Zm-11.04 5.61-.39.76 7.54-3.03-7.14 2.27Zm16.92-3.44 8.11 1.69.38-.55-8.7-1.77.21.63Zm30.73-33.07c-2.86 0-5.56-1.61-6.85-4.34-2.66-5.62-4.98-11.08-6.89-16.23-.56-1.5-.62-3.12-.18-4.66l.99-3.04a7.672 7.672 0 0 1 4.09-5.03c9.34-4.56 19.04-8.64 28.81-12.15 3.68-1.32 7.74.32 9.44 3.82 2.57 5.29 4.89 10.79 6.89 16.33.7 1.93.57 3.96-.23 5.71l-1.32 3.77a7.663 7.663 0 0 1-3.4 3.24c-9.32 4.5-18.99 8.58-28.72 12.12-.87.32-1.77.47-2.64.47Zm-12.17-22.52c.05.42.15.84.3 1.25 1.89 5.1 4.19 10.51 6.82 16.07 1.24 2.62 4.25 3.84 7 2.85 9.67-3.52 19.27-7.57 28.54-12.04.73-.35 1.36-.84 1.87-1.45-9.3 4.49-18.94 8.56-28.65 12.09-3.73 1.35-7.8-.31-9.49-3.87-2.43-5.14-4.58-10.14-6.39-14.9Zm1.18-5.24c-.25 1.03-.2 2.14.19 3.21 1.89 5.1 4.19 10.51 6.82 16.07 1.24 2.62 4.25 3.84 7 2.85 9.67-3.52 19.27-7.57 28.54-12.04a5.664 5.664 0 0 0 2.67-2.69v-.04h.02c.59-1.29.69-2.8.18-4.22-1.98-5.48-4.27-10.91-6.81-16.14-1.25-2.58-4.24-3.78-6.97-2.81-9.71 3.48-19.33 7.54-28.61 12.07-1.53.75-2.59 2.08-3 3.6s-.05.15-.05.15Zm21.78 11.81-6.04-14.31 14.98 2.34-8.94 11.97Zm-2.8-11.78 3.29 7.79 4.86-6.52-8.15-1.27Zm-84.03 6.41.89-2.42-3.75.38 4.79-2.43s2.92-1.5 5.42-3.81c-3.85.48-6.09-1.11-8.05-2.84l-.51-.45.86-2.35c-2.76-.84-5.7-2.22-6.94-4.41l-.23-.4.89-2.42-.44-.78 1.63-.35c-3.04-2.24-5.83-5.26-5.33-8.59l.03-.15.87-2.79.22-1.06 1.07.36c3.83 1.3 13.26 3.81 18.04 2.57-.85-2.28-1.55-5.73.18-8.82.05-.27.12-.55.21-.82.77-2.51 2.64-4.44 5.56-5.75 4.1-1.84 6.85-.88 8.15-.12l5.92-6.67-2.17 7.92 5.63-1.84-4.34 5.57c1.47 2.39 6.13 11.1 2.3 19.93-.04.09-.08.19-.12.28-.21.73-.47 1.45-.77 2.15-4.86 11.19-15.48 18.65-28.41 19.97l-1.59.16Zm3.11-2.65-.11.3a36.3 36.3 0 0 0 7.23-1.83c-2.27.72-4.65 1.24-7.11 1.53Zm7.76-6.52c-1.12 1.49-2.54 2.78-3.87 3.81 9.9-2.33 17.87-8.67 21.9-17.6.02-.08.05-.17.07-.26h.04s.04-.09.06-.13c3.95-9.11-2.44-18.52-2.51-18.62l-.42-.6 1.2-1.54-2.94.96.89-3.25-1.53 1.72-.75-.74c-.08-.08-2.32-2.1-6.78-.1-2.37 1.06-3.87 2.58-4.46 4.5-.09.3-.16.6-.21.9h.02s-.02.04-.03.05c-.53 3.49 1.64 7.05 1.66 7.09l.4.64-.51.56c-4.01 4.4-16.89.85-21.13-.47.12 5.21 8.43 8.82 8.52 8.86l2.9 1.23-7.09 1.53c2.38 2.06 7.33 3.1 9.31 3.35l3.66.46-6.5 2.78c1.95 1.43 4.2 2.09 8.5.48l1.97-.73-.67 1.99c-.35 1.03-.89 2-1.54 2.91l.05.13c-.07.03-.14.05-.21.08Zm-9.73-3.01c1.98 1.65 4 2.69 8.13 1.43l.08.27-.08-.27c.11-.03.23-.07.35-.11.03-.04.05-.08.08-.12-3.97.94-6.41-.14-8.39-1.65l-.16.45Zm-6.45-6.78c1.02 1.36 3.31 2.55 6.55 3.41l.86-.37c-2.33-.58-5.38-1.62-7.29-3.36l-.12.33Zm122.21-21.79-.39-1.76-2.79-.5-1.8-8.22-6.36 5.87-.39-.72-3.16-.66-3.55-6.5 8.6-6.67-8.94-8.64 33.93-7.75 4.91-.34 2.26-.54-22.31 36.42Zm-1.52-3.99.65.12-1.93-8.61-.48.44 1.76 8.05Zm-.09-12.32 2.48 11.06 17.22-28.1-29.05 6.94 7.26 8.14-9.01 6.99 1.9 3.47 9.21-8.5Zm-11.97 8.56.58.12-1.66-3.04-.58-.12 1.66 3.04Zm-1.25-5 .59.12 6.76-5.25-.59-.12-6.76 5.25Zm.71-13.33 5.72 5.53-4.89-5.48-.84-.05Zm-45.59 9.76-.59-.47-2.4-.46-7.15-5.69 12-15.07-5.5-4.38 5.5-6.91 2.4.46.25-.31 3.88 3.09 3.71-4.66c1.58-1.98 3.29-3.34 5.1-4.05 2.76-1.08 5.65-.53 8.35 1.59.43.24.84.51 1.25.84l7.26 5.78-5.38 6.77-4.85-3.86c-.34-.27-1.25-1-2.79.93l-3.16 3.97 5.43 4.32-5.74 7.22-5.43-4.32-12.12 15.22Zm-4.93-6.48 4.61 3.67 12.12-15.22 5.43 4.32 3.25-4.09-5.43-4.32 4.4-5.53c1.74-2.19 3.83-2.66 5.6-1.25l3.29 2.62 2.89-3.63-5.7-4.54c-1.65-1.31-3.46-1.68-5.39-1.08-1.51.47-3.04 1.53-4.09 2.84l-5.66 7.11-5.58-4.44-3.25 4.09 5.5 4.38-12 15.07Zm-2-.97.19.04 10.59-13.31-.19-.04-10.59 13.31Zm6.5-19.45.19.04 3.09-3.89-.19-.04-3.09 3.89Zm10.38-1.59.13.1 4.42-5.55c.5-.62 1.08-1.2 1.72-1.71-1.06.76-1.94 1.71-2.56 2.49l-3.71 4.66Zm-33.43-20.9-25.01-23.69-2.97-3.85-1.7-1.58 42.27-1.62-1.24 1.3 1.12 2.57-5.77 5.98 8.32 2.01-.38.73 1.19 2.96-3.41 6.5-10.21-3.42-2.21 12.11Zm-1.55-5.51.4.69 1.35-7.43-1.76 6.74Zm-23.24-21.8 21.62 20.07 2.72-10.43 10.7 3.58 1.81-3.45-12.05-2.92 7.74-8.1-32.53 1.25Zm26.98 13.08 8 2.68-.21-.52-8-2.68.21.52Zm9.65 1.41.21.52 1.58-3.01-.21-.52-1.58 3.01Zm-8-8.77.6.15 5.65-5.86-.25-.58-6.01 6.29Zm64.3 3.48c-.29 0-.59-.04-.87-.13h-.02c-1.41-.02-3.24-.32-3.93-1.6l-28.37-51.96a4.024 4.024 0 0 1 1.61-5.47l17.05-9.31c-7.23.45-14.79.69-22.55.69-13.03 0-25.35-.64-36.45-1.82l6.04 4.81c4.32 3.44 5.04 9.76 1.6 14.08l-8.31 10.45c-.74.93-1.62 1.7-2.6 2.31-1.42 1.34-3.87 1.79-4.15 1.84-2.32.38-6.9.25-9.33-1.68l-12.06-9.6a8.972 8.972 0 0 1-3.34-6.02 8.93 8.93 0 0 1 1.9-6.62L188 550c.13-.17.27-.33.42-.49-18.68-3.66-31-9.15-32.73-15.51-3.19-5.56-141.27-236.01-142.67-238.36-.17-.28-4.31-7.11-4.31-16.39 0-17.81 29.36-33.72 82.68-44.8 2.07-5.69 5.58-10.79 10.29-14.84 14.96-12.85 37.59-11.15 50.44 3.81.49.57.96 1.15 1.41 1.75 28.96-2.93 59.77-4.42 91.58-4.42 21.19 0 42.25.7 62.63 2.09-.52-2.32-.7-4.73-.51-7.17.49-6.47 3.47-12.36 8.39-16.59s11.19-6.29 17.66-5.8c6.47.49 12.36 3.47 16.59 8.39 6.29 7.32 7.45 17.33 3.81 25.63 79.26 10.14 128.43 30.01 128.43 51.96v.96c.34 3.47-2.44 11-5.26 15.91-14.62 24.51-142.81 239.34-143.71 240.54-5.05 6.72-22.79 12.22-46.66 15.21l27.25 49.9c.4.72.48 1.56.25 2.35-.23.79-.76 1.44-1.48 1.84l-28.83 15.74c-.46.25-.97.38-1.48.38Zm7.04-29.49-6.33 27.25 27.07-14.79-20.75-12.46Zm-36.2-24.72 27.99 51.25 6.41-27.61-7.3-4.38.08-8.22-27.18-11.04Zm29.11 18.13 29.76 17.88c.07-.1.12-.2.15-.32.08-.28.05-.57-.09-.83l-27.63-50.6-1.85.21-.34 33.66Zm-88.94-35.62c-.55.41-1.05.9-1.48 1.44l-8.31 10.45c-1.33 1.68-1.94 3.77-1.69 5.9.24 2.13 1.3 4.04 2.98 5.37l10.45 8.31c1.68 1.33 3.77 1.94 5.9 1.69 2.13-.24 4.04-1.3 5.37-2.98l8.31-10.45c2.75-3.46 2.18-8.52-1.28-11.27l-8.54-6.8c-4.09-.49-8-1.05-11.7-1.68Zm60.12 15.45 26.91 10.93.25-24.2c-1.14.12-2.3.23-3.47.34l-23.69 12.94Zm-63.21-15.19c-.19.19-.37.39-.54.61l-9.6 12.06a6.962 6.962 0 0 0-1.48 5.14 6.925 6.925 0 0 0 2.59 4.68l1.41 1.12a10 10 0 0 1-2.77-5.85c-.3-2.66.45-5.28 2.12-7.37l8.27-10.39Zm61.39 14.07c-.88.52-1.24 1.61-.85 2.54-.05-.42-.02-.85.1-1.26.14-.49.4-.93.75-1.28ZM16 296.81q141.43 236.05 141.56 236.6c2.58 10.43 41.83 18.91 87.49 18.91 10.93 0 21.54-.49 31.37-1.38l.05-.03v.02c27.97-2.54 49.68-8.35 55.02-15.45 1.66-2.48 142.16-237.97 143.58-240.35l.42-.75c-10.18 11.45-31.96 21.9-63.76 30.33-44.7 11.85-103.7 18.37-166.2 18.37h-.49c-64.68-.04-123.7-5.94-166.2-16.61-31.26-7.86-52.49-17.93-62.85-29.66Zm-5.33-17.53c0 36.31 96.38 61.73 234.38 61.81h.49c62.33 0 121.15-6.5 165.69-18.3 43.75-11.6 68.84-27.46 68.84-43.5 0-20.61-49.96-40.24-127.36-50.07a24.1 24.1 0 0 1-2.16 3.28c35.08 4.37 64.66 10.86 85.66 18.79 22.31 8.43 34.11 18.29 34.11 28.51 0 14.52-23.6 28.04-66.46 38.06-42.43 9.92-98.83 15.39-158.8 15.39s-116.37-5.46-158.8-15.39c-34.45-8.06-56.46-18.37-63.77-29.65h-.01c-1.84-2.55-2.74-5.39-2.68-8.42.02-14.95 24.82-28.73 69.87-38.83.24-1.46.56-2.88.97-4.28-50.85 10.71-79.96 26.21-79.96 42.61Zm11.12.52c0 13.3 23.66 26.46 64.91 36.11 42.28 9.89 98.52 15.33 158.35 15.33s116.06-5.45 158.35-15.33c41.25-9.65 64.91-22.81 64.91-36.11 0-18.75-46.82-36.58-119.34-45.48-.54.57-1.12 1.11-1.72 1.63-10.16 8.73-25.53 7.57-34.26-2.59-.74-.86-1.42-1.77-2.02-2.71-21.28-1.53-43.45-2.31-65.92-2.31-30.28 0-59.64 1.39-87.28 4.13 2.31 5.28 3.3 11.08 2.86 16.98-.72 9.53-5.11 18.2-12.35 24.43-7.25 6.23-16.48 9.26-26.01 8.54-9.53-.72-18.2-5.11-24.43-12.35-6.23-7.25-9.26-16.48-8.54-26.01.02-.33.06-.67.09-1-42.97 9.72-67.59 23.09-67.59 36.73Zm87.71-2.99c3.96 2.04 8.34 3.29 12.92 3.63 6.32.48 12.51-.8 18-3.64-.16-11.55-4.97-27.33-15.46-27.33s-15.3 15.79-15.46 27.34Zm15.44-63.8c-7.8 0-15.63 2.68-21.99 8.15-6.84 5.88-10.98 14.07-11.66 23.06-.68 9 2.18 17.72 8.06 24.56a33.93 33.93 0 0 0 8.18 6.93c.37-9.87 3.96-23.41 12.51-27.21-4.69-1.94-8.01-6.57-8.01-11.96 0-7.13 5.8-12.93 12.93-12.93s12.93 5.8 12.93 12.93c0 5.39-3.31 10.02-8.01 11.96 8.55 3.8 12.14 17.34 12.51 27.2 1.6-.97 3.13-2.08 4.58-3.32 6.84-5.88 10.98-14.07 11.66-23.06.68-9-2.18-17.71-8.06-24.55-6.67-7.76-16.12-11.74-25.63-11.74Zm.02 34.46c6.03 0 10.93-4.9 10.93-10.93s-4.9-10.93-10.93-10.93-10.93 4.9-10.93 10.93 4.9 10.93 10.93 10.93Zm196.43-10.03c6.24 3.13 13.71 3.19 20.05 0-.16-7.58-3.29-17.78-10.02-17.78s-9.86 10.19-10.02 17.77Zm9.99-42.21c-5.32 0-10.42 1.88-14.5 5.39-4.52 3.88-7.25 9.29-7.7 15.23s1.44 11.69 5.32 16.21c1.46 1.7 3.12 3.12 4.92 4.27.35-6.39 2.67-14.75 7.92-17.63-2.92-1.49-4.93-4.52-4.93-8.02 0-4.96 4.03-8.99 8.99-8.99s8.99 4.03 8.99 8.99c0 3.5-2.01 6.54-4.93 8.02 5.25 2.88 7.57 11.24 7.92 17.63.88-.56 1.73-1.2 2.55-1.9 9.32-8.01 10.39-22.11 2.37-31.44-3.88-4.52-9.29-7.25-15.23-7.7-.57-.04-1.14-.07-1.71-.07Zm-176.55 31.84a35.82 35.82 0 0 1 2.03 3.48c27.91-2.79 57.58-4.21 88.19-4.21 22.04 0 43.8.75 64.71 2.21-.6-1.18-1.11-2.4-1.51-3.65-20.54-1.42-41.79-2.13-63.18-2.13-31.33 0-61.68 1.45-90.25 4.3Zm176.58-9.41c3.85 0 6.99-3.14 6.99-6.99s-3.14-6.99-6.99-6.99-6.99 3.14-6.99 6.99 3.14 6.99 6.99 6.99Zm-132.4 357.5c-2.01 0-3.95-.67-5.55-1.95-1.87-1.49-3.04-3.61-3.31-5.98s.4-4.71 1.89-6.57 3.61-3.04 5.98-3.31c2.37-.27 4.71.4 6.57 1.89a8.87 8.87 0 0 1 3.31 5.98c.27 2.37-.4 4.71-1.89 6.57a8.87 8.87 0 0 1-5.98 3.31c-.34.04-.69.06-1.03.06Zm.03-15.87a6.875 6.875 0 0 0-5.44 2.61 6.895 6.895 0 0 0-1.46 5.1 6.875 6.875 0 0 0 2.57 4.64 6.895 6.895 0 0 0 5.1 1.46 6.875 6.875 0 0 0 4.64-2.57 6.895 6.895 0 0 0 1.46-5.1 6.875 6.875 0 0 0-2.57-4.64 6.851 6.851 0 0 0-4.3-1.51Zm12.61 7.88c-.55 0-1.11-.18-1.58-.55a2.539 2.539 0 0 1-.4-3.56 2.53 2.53 0 0 1 3.56-.4 2.55 2.55 0 0 1 .41 3.56c-.5.63-1.24.96-1.99.96Zm0-3.07a.529.529 0 0 0-.33.95c.24.18.57.14.75-.09.18-.23.15-.57-.09-.75a.537.537 0 0 0-.33-.12Zm18.78-248.32c-8.27 0-16.49-3.46-22.29-10.21-10.55-12.28-9.15-30.85 3.13-41.41 12.28-10.55 30.85-9.15 41.41 3.13 10.55 12.28 9.15 30.86-3.13 41.41a29.254 29.254 0 0 1-19.12 7.08Zm-12.45-4.97c7.72 3.93 17.01 4 24.85 0-.16-9.34-4.03-22-12.43-22s-12.26 12.66-12.43 21.99Zm16.89-22.96c6.69 3.31 9.57 13.94 9.93 21.86 1.19-.74 2.35-1.58 3.45-2.53 11.44-9.83 12.75-27.15 2.91-38.59-9.84-11.44-27.15-12.75-38.59-2.91-11.44 9.84-12.75 27.15-2.91 38.59 1.88 2.18 4.03 4 6.36 5.44.36-7.92 3.24-18.55 9.93-21.86-3.7-1.7-6.27-5.43-6.27-9.76 0-5.92 4.81-10.73 10.73-10.73s10.73 4.81 10.73 10.73c0 4.33-2.57 8.06-6.27 9.76Zm-4.46-1.03c4.81 0 8.73-3.92 8.73-8.73s-3.92-8.73-8.73-8.73-8.73 3.92-8.73 8.73 3.92 8.73 8.73 8.73Zm98.27 25.46c-.4 0-.79-.02-1.19-.04-4.12-.31-7.88-2.21-10.58-5.35-2.7-3.14-4.01-7.13-3.7-11.26.31-4.12 2.21-7.88 5.35-10.58s7.14-4 11.26-3.7c4.12.31 7.88 2.21 10.58 5.35 2.7 3.14 4.01 7.13 3.7 11.26-.31 4.12-2.21 7.88-5.35 10.58a15.335 15.335 0 0 1-10.07 3.74Zm-5.87-3.33c1.5.72 3.13 1.16 4.83 1.29 2.4.18 4.75-.27 6.86-1.29-.15-4.53-1.98-10.45-5.85-10.45s-5.7 5.92-5.85 10.45Zm5.83-25.64a13.4 13.4 0 0 0-8.77 3.26c-2.73 2.35-4.39 5.62-4.66 9.21s.87 7.07 3.22 9.81c.73.85 1.55 1.6 2.44 2.23.32-3.74 1.69-8.28 4.53-10.28a5.977 5.977 0 0 1-2.71-5c0-3.29 2.68-5.97 5.97-5.97s5.97 2.68 5.97 5.97c0 2.09-1.08 3.94-2.71 5 2.84 2 4.2 6.54 4.53 10.27.35-.25.68-.51 1.01-.79 2.73-2.35 4.38-5.62 4.66-9.21.27-3.59-.87-7.07-3.22-9.8a13.408 13.408 0 0 0-9.21-4.66c-.35-.03-.69-.04-1.04-.04Zm.02 13.19c2.19 0 3.97-1.78 3.97-3.97s-1.78-3.97-3.97-3.97-3.97 1.78-3.97 3.97 1.78 3.97 3.97 3.97Zm-98.17-102.85c-1.29 0-2.59-.05-3.9-.15-13.5-1.02-25.8-7.24-34.63-17.51-18.22-21.2-15.8-53.27 5.4-71.5 21.2-18.22 53.27-15.8 71.5 5.4 8.83 10.27 13.13 23.36 12.11 36.87-1.02 13.5-7.24 25.8-17.51 34.63-9.28 7.97-20.86 12.25-32.97 12.25Zm-22.61-7.53c13.96 7.26 30.88 7.41 45.06 0-.15-15.63-6.32-39.75-22.53-39.75s-22.38 24.12-22.53 39.74Zm28.39-40.72c12.97 4.77 18.27 25.23 18.65 39.63 2.52-1.47 4.94-3.19 7.23-5.16 9.86-8.48 15.84-20.29 16.82-33.26s-3.15-25.55-11.63-35.41c-17.51-20.37-48.31-22.69-68.68-5.19l-.65-.76.65.76c-20.36 17.5-22.69 48.31-5.19 68.68 3.64 4.23 7.85 7.68 12.42 10.34.39-14.41 5.68-34.86 18.65-39.63-7.09-2.44-12.19-9.17-12.19-17.07 0-9.95 8.1-18.05 18.05-18.05s18.05 8.1 18.05 18.05c0 7.9-5.11 14.64-12.19 17.07Zm-5.86-1.02c8.85 0 16.05-7.2 16.05-16.05s-7.2-16.05-16.05-16.05-16.05 7.2-16.05 16.05 7.2 16.05 16.05 16.05Zm195.71 22.68c-.91 0-1.83-.03-2.75-.1-9.53-.72-18.2-5.11-24.43-12.35-12.86-14.96-11.15-37.58 3.81-50.44s37.59-11.15 50.44 3.81c6.23 7.25 9.26 16.48 8.54 26.01-.72 9.53-5.11 18.2-12.35 24.43-6.55 5.63-14.72 8.65-23.26 8.65Zm-15.52-5.73c3.96 2.04 8.34 3.29 12.92 3.63 6.33.48 12.51-.8 18-3.64-.16-11.55-4.97-27.33-15.46-27.33s-15.3 15.79-15.46 27.34Zm-6.55-55.65c-14.12 12.14-15.73 33.5-3.6 47.62a33.93 33.93 0 0 0 8.18 6.93c.37-9.87 3.96-23.41 12.51-27.21-4.69-1.94-8.01-6.57-8.01-11.96 0-7.13 5.8-12.93 12.93-12.93s12.93 5.8 12.93 12.93c0 5.39-3.31 10.02-8.01 11.96 8.54 3.8 12.14 17.34 12.51 27.2 1.6-.97 3.13-2.08 4.58-3.32 6.84-5.88 10.98-14.07 11.66-23.07.68-9-2.19-17.71-8.06-24.55-12.14-14.12-33.5-15.73-47.62-3.6Zm22.01 26.31c6.03 0 10.93-4.9 10.93-10.93s-4.9-10.93-10.93-10.93-10.93 4.9-10.93 10.93 4.9 10.93 10.93 10.93Zm-79.3-37.75c-7.32 0-14.59-3.06-19.72-9.03-9.34-10.86-8.1-27.3 2.77-36.64s27.3-8.09 36.64 2.77c4.52 5.26 6.73 11.97 6.2 18.89-.52 6.92-3.71 13.22-8.97 17.75-4.89 4.21-10.92 6.27-16.92 6.27Zm-10.84-4.57c6.73 3.4 14.81 3.46 21.65 0-.16-8.17-3.54-19.18-10.82-19.18s-10.66 11.01-10.82 19.18Zm-5.46-40.34.65.76c-10.03 8.62-11.17 23.79-2.55 33.82 1.6 1.86 3.43 3.42 5.4 4.66.36-6.9 2.86-16.01 8.59-19.04-3.18-1.56-5.37-4.83-5.37-8.6 0-5.28 4.29-9.57 9.57-9.57s9.57 4.29 9.57 9.57c0 3.77-2.19 7.04-5.37 8.6 5.73 3.03 8.23 12.14 8.59 19.04.99-.62 1.94-1.32 2.85-2.11 4.86-4.17 7.8-9.99 8.28-16.38.48-6.39-1.55-12.58-5.73-17.44-8.62-10.03-23.79-11.17-33.82-2.55l-.65-.76Zm16.28 19.17c4.17 0 7.57-3.4 7.57-7.57s-3.4-7.57-7.57-7.57-7.57 3.4-7.57 7.57 3.4 7.57 7.57 7.57ZM90.25 80.4c-.91 0-1.83-.03-2.75-.1-9.53-.72-18.2-5.11-24.43-12.35-12.86-14.96-11.15-37.59 3.81-50.44l.65.76-.65-.76c7.25-6.23 16.49-9.26 26.01-8.54 9.53.72 18.2 5.11 24.43 12.35 6.23 7.25 9.26 16.48 8.54 26.01-.72 9.53-5.11 18.2-12.35 24.43-6.55 5.63-14.72 8.65-23.26 8.65Zm-15.52-5.73c3.96 2.04 8.34 3.29 12.92 3.63 6.32.48 12.51-.8 18-3.64-.16-11.55-4.97-27.33-15.46-27.33s-15.3 15.79-15.46 27.34Zm15.41-63.81c-8.07 0-15.78 2.85-21.96 8.16-14.12 12.14-15.73 33.5-3.6 47.62a33.93 33.93 0 0 0 8.18 6.93c.37-9.87 3.96-23.41 12.51-27.21-4.69-1.94-8.01-6.57-8.01-11.96 0-7.13 5.8-12.93 12.93-12.93s12.93 5.8 12.93 12.93c0 5.39-3.31 10.02-8.01 11.96 8.55 3.8 12.14 17.34 12.51 27.2 1.6-.97 3.13-2.08 4.58-3.32 6.84-5.88 10.98-14.07 11.66-23.07.68-8.99-2.18-17.71-8.06-24.56-5.88-6.84-14.07-10.98-23.07-11.66-.87-.07-1.73-.1-2.6-.1Zm.05 34.47c6.03 0 10.93-4.9 10.93-10.93s-4.9-10.93-10.93-10.93-10.93 4.9-10.93 10.93 4.9 10.93 10.93 10.93Z\" style=\"fill:#f1f1f1\"/></svg>',tabIndex:0,title:\"A line art illustration of a marketing funnel with icons of people going through a sales process. \",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ij07fd\",\"data-framer-name\":\"Marketing_automation\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.125em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"Marketing\",/*#__PURE__*/_jsx(\"br\",{}),\"Automation\"]})})},UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Marketing Automation\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.17,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Marketing Automation\"})}),className:\"framer-p4dxil\",\"data-framer-name\":\"Marketing Automation_blur\",fonts:[\"CUSTOM;FLURO Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.125em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"Marketing\",/*#__PURE__*/_jsx(\"br\",{}),\"Automation\"]})})},UM4Keqn6p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Marketing Automation\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZMVVJPIEJvbGQ=\",\"--framer-font-family\":'\"FLURO Bold\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Marketing Automation\"})}),className:\"framer-1qicj4s\",fonts:[\"CUSTOM;FLURO Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019re able to step in and develop strategy, implement with operational know-how, produce content, and design and build delivery systems to get in front of your future customers.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Strategy \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Operations \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Content Production \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Design and Development\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We excel at realizing the potential of your marketing automation system.\"})]}),fonts:[\"CUSTOM;Acumin Pro Light\",\"CUSTOM;Acumin Pro Bold\"]},UM4Keqn6p:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019re able to step in and develop strategy, implement with operational know-how, produce content, and design and build delivery systems to get in front of your future customers.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Strategy \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Operations \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Content Production \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Design and Development\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We excel at realizing the potential of your marketing automation system.\"})]}),fonts:[\"CUSTOM;Acumin Pro Light\",\"CUSTOM;Acumin Pro Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Acumin Pro Regular\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019re able to step in and develop strategy, implement with operational know-how, produce content, and design and build delivery systems to get in front of your future customers.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Strategy \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Operations \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Content Production \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2022 Design and Development\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Acumin Pro Regular\", serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We excel at realizing the potential of your marketing automation system.\"})]}),className:\"framer-j59e4e\",fonts:[\"CUSTOM;Acumin Pro Regular\",\"CUSTOM;Acumin Pro Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2aortk\",\"data-framer-name\":\"cta-bg-container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ifxmk\",\"data-framer-name\":\"cta-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9vb6y\",\"data-framer-name\":\"One-Partner Solution\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:'Combining a production company, a design agency, and a marketing automation consultant under one roof, Particle is what we like to call, a \u201Cone-partner solution.\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Have questions or need support on a project? \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"We\u2019d love to connect \uD83D\uDE04\"})})]}),fonts:[\"CUSTOM;Acumin Pro Light\",\"CUSTOM;Acumin Pro Bold\"]},UM4Keqn6p:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gTGlnaHQ=\",\"--framer-font-family\":'\"Acumin Pro Light\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:'Combining a production company, a design agency, and a marketing automation consultant under one roof, Particle is what we like to call, a \u201Cone-partner solution.\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Have questions or need support on a project? \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FjdW1pbiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"Acumin Pro Bold\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"We\u2019d love to connect \uD83D\uDE04\"})})]}),fonts:[\"CUSTOM;Acumin Pro Light\",\"CUSTOM;Acumin Pro Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:'Combining a production company, a design agency, and a marketing automation consultant under one roof, Particle is what we like to call, a \u201Cone-partner solution.\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Have questions or need support on a project? \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 243, 243)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"We\u2019d love to connect \uD83D\uDE04\"})})]}),className:\"framer-1unlyqe\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cSBwsGEss\"},implicitPathVariables:undefined},{href:{webPageId:\"cSBwsGEss\"},implicitPathVariables:undefined},{href:{webPageId:\"cSBwsGEss\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{y:(componentViewport?.y||0)+0+3259.2755+110+0+0+0+0+584},UM4Keqn6p:{y:(componentViewport?.y||0)+0+2919+0+0+117+0+0+584}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+3062+0+0+117+0+0+584,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g897if-container\",\"data-framer-name\":\"Button-contact\",name:\"Button-contact\",nodeId:\"osrx399ed\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{YxRGBN_SX:resolvedLinks[2]},UM4Keqn6p:{YxRGBN_SX:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"osrx399ed\",layoutId:\"osrx399ed\",name:\"Button-contact\",variant:\"km7RnZt7X\",width:\"100%\",YxRGBN_SX:resolvedLinks[0],Z44nMz6Qs:\"Get In Touch\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:2620,intrinsicWidth:2876,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3259.2755+0),pixelHeight:2620,pixelWidth:2876,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg\",srcSet:\"https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg 2876w\"}},UM4Keqn6p:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:2620,intrinsicWidth:2876,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2919+0),pixelHeight:2620,pixelWidth:2876,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg\",srcSet:\"https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg 2876w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:2620,intrinsicWidth:2876,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3062+0),pixelHeight:2620,pixelWidth:2876,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg\",srcSet:\"https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zaCt9U5RtJrNGWfqEbHpRIUiHM.jpg 2876w\"},className:\"framer-16lx9op\",\"data-framer-name\":\"bot_grad_bg\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{y:(componentViewport?.y||0)+0+3259.2755+110+722},UM4Keqn6p:{y:(componentViewport?.y||0)+0+2919+0+817}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3062+0+817,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qd5vxc-container\",nodeId:\"bRY7Dwyn5\",scopeId:\"T7FdirwOt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{foCgbtU51:{variant:\"B7MRyYNzL\"},UM4Keqn6p:{variant:\"GPDaoejlp\"}},children:/*#__PURE__*/_jsx(NavFooter2,{height:\"100%\",id:\"bRY7Dwyn5\",layoutId:\"bRY7Dwyn5\",style:{width:\"100%\"},variant:\"tOwvdw_H0\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Lfz0c.framer-1ehchms, .framer-Lfz0c .framer-1ehchms { display: block; }\",\".framer-Lfz0c.framer-zhhg96 { align-content: center; align-items: center; background-color: #303030; 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-Lfz0c .framer-wsyj4q-container, .framer-Lfz0c .framer-1e3thnr-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-Lfz0c .framer-nsauh0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Lfz0c .framer-1qfw7jf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 90vh; justify-content: flex-end; max-width: 1200px; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Lfz0c .framer-14l00pw-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 90px; z-index: 4; }\",\".framer-Lfz0c .framer-q6ukfj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Lfz0c .framer-b9t5fq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Lfz0c .framer-1mqed2g, .framer-Lfz0c .framer-1qz6ntb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Lfz0c .framer-yhqzn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-filter: blur(10px); filter: blur(10px); flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Lfz0c .framer-q7hz8n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 78px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Lfz0c .framer-1uaa0bf, .framer-Lfz0c .framer-9dyhgx, .framer-Lfz0c .framer-1o8x2q8, .framer-Lfz0c .framer-1bn4q8k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Lfz0c .framer-u42tdw, .framer-Lfz0c .framer-jxdfnt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); position: relative; width: 13px; }\",\".framer-Lfz0c .framer-mjnb3y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-filter: blur(3px); bottom: 0px; filter: blur(3px); flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Lfz0c .framer-sivbou { background-color: #303030; flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-Lfz0c .framer-aiz47f { -webkit-filter: blur(100px); bottom: 151px; filter: blur(100px); flex: none; left: -537px; overflow: visible; position: absolute; right: 24px; top: -318px; z-index: 0; }\",\".framer-Lfz0c .framer-226ud6 { background-color: #7192d2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 85%; left: -189px; overflow: visible; position: absolute; top: calc(53.225806451612925% - 85.3763440860215% / 2); width: 61%; z-index: 0; }\",\".framer-Lfz0c .framer-1eii0ik { background-color: #7192d2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 39%; overflow: visible; position: absolute; right: -636px; top: 224px; width: 113%; z-index: 0; }\",\".framer-Lfz0c .framer-1i3c396 { background-color: #8bb6d4; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 75%; left: calc(47.16870986573266% - 26.970227670753065% / 2); overflow: visible; position: absolute; top: 64px; width: 27%; z-index: 0; }\",\".framer-Lfz0c .framer-fmfyl7 { background-color: #b281c8; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 51%; left: 809px; overflow: visible; position: absolute; top: 106px; width: 49%; z-index: 0; }\",\".framer-Lfz0c .framer-1723935 { -webkit-filter: blur(100px); bottom: 205px; filter: blur(100px); flex: none; left: -624px; mix-blend-mode: overlay; overflow: visible; position: absolute; right: -52px; top: -265px; z-index: 2; }\",\".framer-Lfz0c .framer-wau1iz { background-color: #e9c8e6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 61px; flex: none; height: 48%; left: 16px; overflow: visible; position: absolute; width: 45%; z-index: 1; }\",\".framer-Lfz0c .framer-1r1vky9 { background-color: #e8d699; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 67%; overflow: visible; position: absolute; right: -9px; top: 36px; width: 74%; z-index: 1; }\",\".framer-Lfz0c .framer-1szeiw { background-color: #e8d699; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 97%; left: 323px; overflow: visible; position: absolute; top: -106px; width: 29%; z-index: 1; }\",\".framer-Lfz0c .framer-5zzw85 { background-color: rgba(48, 48, 48, 0.19); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-Lfz0c .framer-1uf3pbn { background: linear-gradient(180deg, rgba(48, 48, 48, 0) 0%, rgb(48, 48, 48) 100%); bottom: 0px; flex: none; height: 93px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 3; }\",\".framer-Lfz0c .framer-a4mzs7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-Lfz0c .framer-18ue25z { bottom: -81px; flex: none; height: 892px; left: calc(50.00000000000002% - 1200px / 2); overflow: visible; position: absolute; width: 1200px; z-index: 2; }\",\".framer-Lfz0c .framer-5ufabd { --border-bottom-width: 2px; --border-color: #f1f1f1; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; border-bottom-left-radius: 10000px; border-bottom-right-radius: 10000px; border-top-left-radius: 10000px; border-top-right-radius: 10000px; flex: none; height: 274px; left: 919px; overflow: visible; position: absolute; top: 0px; width: 274px; z-index: 1; }\",\".framer-Lfz0c .framer-d229bo { bottom: 45px; cursor: pointer; flex: none; height: 24px; left: calc(50.00000000000002% - 59px / 2); overflow: visible; pointer-events: auto; position: absolute; text-decoration: none; width: 59px; }\",\".framer-Lfz0c .framer-1r1i5j6 { aspect-ratio: 2.4583333333333335 / 1; bottom: 45px; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 50%; position: absolute; transform: translateX(-50%); width: 59px; }\",\".framer-Lfz0c .framer-1wsc4so { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 96px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-Lfz0c .framer-47uu2o { align-content: center; align-items: center; bottom: 78px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; left: 30px; overflow: hidden; padding: 0px; position: absolute; right: -30px; z-index: 2; }\",\".framer-Lfz0c .framer-1884lpb-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-Lfz0c .framer-lgx0sr { height: 600px; position: relative; width: 1200px; }\",\".framer-Lfz0c .framer-ot1sgu-container, .framer-Lfz0c .framer-8s23ub-container { bottom: 0px; flex: none; height: 600px; left: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-Lfz0c .framer-dak7q0, .framer-Lfz0c .framer-18onufu { background-color: rgba(0, 0, 0, 0); height: 600px; position: relative; width: 1200px; }\",\".framer-Lfz0c .framer-lxwwew { --border-bottom-width: 2px; --border-color: #f3f3f3; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #303030; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 0px; flex: none; height: 189px; left: 374px; overflow: hidden; position: absolute; width: 189px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-Lfz0c .framer-kq661m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; z-index: 2; }\",\".framer-Lfz0c .framer-13qwhqr-container, .framer-Lfz0c .framer-15pdy3m-container { bottom: 80px; flex: none; height: 366px; position: absolute; right: -10px; width: 390px; }\",\".framer-Lfz0c .framer-2egrvq, .framer-Lfz0c .framer-1izkqrz, .framer-Lfz0c .framer-1bworgw { height: 366px; position: relative; width: 390px; }\",\".framer-Lfz0c .framer-y28itm-container { bottom: 80px; flex: none; height: 366px; left: 10px; position: absolute; right: -10px; }\",\".framer-Lfz0c .framer-4xwiq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 551px; justify-content: center; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1200px; z-index: 2; }\",\".framer-Lfz0c .framer-1atrvpz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Lfz0c .framer-1eee2lg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 116px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Lfz0c .framer-1a9jl1d { aspect-ratio: 7.083333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); overflow: visible; position: relative; width: 150px; }\",\".framer-Lfz0c .framer-lbf3nu { aspect-ratio: 3.2941176470588234 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 112px; }\",\".framer-Lfz0c .framer-1psye4n { aspect-ratio: 5.862068965517241 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); overflow: visible; position: relative; width: 135px; }\",\".framer-Lfz0c .framer-eim2um { aspect-ratio: 4.8375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; width: 166px; }\",\".framer-Lfz0c .framer-iyx0xw { aspect-ratio: 6.181818181818182 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 150px; }\",\".framer-Lfz0c .framer-mr1fyw { aspect-ratio: 2.3076923076923075 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 166px; }\",\".framer-Lfz0c .framer-12gc9kr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Lfz0c .framer-1ql5zvo { align-content: flex-start; align-items: flex-start; bottom: -92px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: -265px; width: min-content; z-index: 2; }\",\".framer-Lfz0c .framer-1lprbue { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 232px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-Lfz0c .framer-1emz9a4-container, .framer-Lfz0c .framer-ul0v6u-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-Lfz0c .framer-1howuf8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 110px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-Lfz0c .framer-ifn79y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Lfz0c .framer-1vml117-container, .framer-Lfz0c .framer-1g897if-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Lfz0c .framer-1mrtlqx { bottom: 0px; flex: none; left: 0px; opacity: 0.8; overflow: visible; position: absolute; right: 0px; top: -10px; z-index: 1; }\",\".framer-Lfz0c .framer-x69shr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 140px 32px 110px 32px; position: relative; width: 1200px; }\",\".framer-Lfz0c .framer-dxbpw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 102%; justify-content: center; left: 50%; min-width: 1682px; overflow: visible; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-Lfz0c .framer-d5sxhm { --border-bottom-width: 2px; --border-color: #f1f1f1; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 100%; left: calc(50.00000000000002% - 2280px / 2); overflow: visible; position: absolute; top: 0px; width: 2280px; z-index: 1; }\",\".framer-Lfz0c .framer-yaj7bc { 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: 100%; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 200px; width: 100%; z-index: 1; }\",\".framer-Lfz0c .framer-1pxs0v8 { flex: 1 0 0px; height: 457px; position: relative; width: 1px; }\",\".framer-Lfz0c .framer-jel2rz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-Lfz0c .framer-19rsk8o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-filter: blur(2px); filter: blur(2px); flex: none; height: auto; left: 50%; opacity: 0.28; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-Lfz0c .framer-1rawzfe, .framer-Lfz0c .framer-14zughp, .framer-Lfz0c .framer-1qicj4s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-Lfz0c .framer-1qiktq8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Lfz0c .framer-1y7ekka { flex: none; height: 457px; position: relative; width: 560px; }\",\".framer-Lfz0c .framer-1ozcc2d-container { flex: none; height: 263px; left: 46px; position: absolute; right: 44px; top: 81px; z-index: 1; }\",\".framer-Lfz0c .framer-zm3qmh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 34px 32px 34px 32px; position: relative; width: 100%; z-index: 1; }\",\".framer-Lfz0c .framer-17x6wxj { flex: none; height: 365px; overflow: visible; position: relative; width: 513px; }\",\".framer-Lfz0c .framer-1lh3uka { flex: none; height: 214px; left: calc(39.76608187134505% - 339px / 2); overflow: hidden; position: absolute; top: 36px; width: 339px; }\",\".framer-Lfz0c .framer-pbd1pe { flex: none; height: 1732px; left: calc(49.557522123893825% - 341px / 2); overflow: visible; position: absolute; top: calc(199.0654205607477% - 1732px / 2); width: 341px; }\",\".framer-Lfz0c .framer-ih8ed6 { flex: none; height: 241px; overflow: hidden; position: relative; width: 351px; }\",\".framer-Lfz0c .framer-1rg94ti { 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: center; left: 50%; overflow: hidden; padding: 0px 0px 36px 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-Lfz0c .framer-1b0z9v0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-filter: blur(6px); filter: blur(6px); flex: none; height: auto; left: 0px; opacity: 0.28; position: absolute; top: 0px; white-space: pre; width: auto; z-index: 1; }\",\".framer-Lfz0c .framer-rndef8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 351px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Lfz0c .framer-8y9fbl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 451px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Lfz0c .framer-7dnf4i { flex: none; height: 390px; left: 50px; overflow: visible; position: absolute; top: calc(50.110864745011106% - 390px / 2); width: 23%; z-index: 1; }\",\".framer-Lfz0c .framer-1tgdbwy { aspect-ratio: 0.5970873786407767 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-Lfz0c .framer-ij07fd { 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: center; overflow: hidden; padding: 16px 0px 16px 60px; position: relative; width: min-content; }\",\".framer-Lfz0c .framer-p4dxil { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-filter: blur(6px); filter: blur(6px); flex: none; height: auto; left: 60px; opacity: 0.17; position: absolute; top: 16px; white-space: pre; width: auto; z-index: 1; }\",\".framer-Lfz0c .framer-j59e4e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 377px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Lfz0c .framer-2aortk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-Lfz0c .framer-15ifxmk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 117px 0px 0px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-Lfz0c .framer-1x9vb6y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 0; }\",\".framer-Lfz0c .framer-1unlyqe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 810px; word-break: break-word; word-wrap: break-word; }\",\".framer-Lfz0c .framer-16lx9op { bottom: 0px; flex: none; left: 0px; opacity: 0.8; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-Lfz0c .framer-1qd5vxc-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lfz0c.framer-zhhg96, .framer-Lfz0c .framer-nsauh0, .framer-Lfz0c .framer-1qfw7jf, .framer-Lfz0c .framer-q6ukfj, .framer-Lfz0c .framer-b9t5fq, .framer-Lfz0c .framer-q7hz8n, .framer-Lfz0c .framer-a4mzs7, .framer-Lfz0c .framer-47uu2o, .framer-Lfz0c .framer-4xwiq, .framer-Lfz0c .framer-1atrvpz, .framer-Lfz0c .framer-1eee2lg, .framer-Lfz0c .framer-12gc9kr, .framer-Lfz0c .framer-1ql5zvo, .framer-Lfz0c .framer-1lprbue, .framer-Lfz0c .framer-1howuf8, .framer-Lfz0c .framer-ifn79y, .framer-Lfz0c .framer-x69shr, .framer-Lfz0c .framer-dxbpw4, .framer-Lfz0c .framer-yaj7bc, .framer-Lfz0c .framer-jel2rz, .framer-Lfz0c .framer-zm3qmh, .framer-Lfz0c .framer-1rg94ti, .framer-Lfz0c .framer-8y9fbl, .framer-Lfz0c .framer-ij07fd, .framer-Lfz0c .framer-2aortk, .framer-Lfz0c .framer-15ifxmk, .framer-Lfz0c .framer-1x9vb6y { gap: 0px; } .framer-Lfz0c.framer-zhhg96 > *, .framer-Lfz0c .framer-15ifxmk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Lfz0c.framer-zhhg96 > :first-child, .framer-Lfz0c .framer-nsauh0 > :first-child, .framer-Lfz0c .framer-1qfw7jf > :first-child, .framer-Lfz0c .framer-q6ukfj > :first-child, .framer-Lfz0c .framer-b9t5fq > :first-child, .framer-Lfz0c .framer-a4mzs7 > :first-child, .framer-Lfz0c .framer-47uu2o > :first-child, .framer-Lfz0c .framer-4xwiq > :first-child, .framer-Lfz0c .framer-1lprbue > :first-child, .framer-Lfz0c .framer-1howuf8 > :first-child, .framer-Lfz0c .framer-ifn79y > :first-child, .framer-Lfz0c .framer-x69shr > :first-child, .framer-Lfz0c .framer-jel2rz > :first-child, .framer-Lfz0c .framer-1rg94ti > :first-child, .framer-Lfz0c .framer-ij07fd > :first-child, .framer-Lfz0c .framer-2aortk > :first-child, .framer-Lfz0c .framer-15ifxmk > :first-child, .framer-Lfz0c .framer-1x9vb6y > :first-child { margin-top: 0px; } .framer-Lfz0c.framer-zhhg96 > :last-child, .framer-Lfz0c .framer-nsauh0 > :last-child, .framer-Lfz0c .framer-1qfw7jf > :last-child, .framer-Lfz0c .framer-q6ukfj > :last-child, .framer-Lfz0c .framer-b9t5fq > :last-child, .framer-Lfz0c .framer-a4mzs7 > :last-child, .framer-Lfz0c .framer-47uu2o > :last-child, .framer-Lfz0c .framer-4xwiq > :last-child, .framer-Lfz0c .framer-1lprbue > :last-child, .framer-Lfz0c .framer-1howuf8 > :last-child, .framer-Lfz0c .framer-ifn79y > :last-child, .framer-Lfz0c .framer-x69shr > :last-child, .framer-Lfz0c .framer-jel2rz > :last-child, .framer-Lfz0c .framer-1rg94ti > :last-child, .framer-Lfz0c .framer-ij07fd > :last-child, .framer-Lfz0c .framer-2aortk > :last-child, .framer-Lfz0c .framer-15ifxmk > :last-child, .framer-Lfz0c .framer-1x9vb6y > :last-child { margin-bottom: 0px; } .framer-Lfz0c .framer-nsauh0 > *, .framer-Lfz0c .framer-1qfw7jf > *, .framer-Lfz0c .framer-b9t5fq > *, .framer-Lfz0c .framer-a4mzs7 > *, .framer-Lfz0c .framer-47uu2o > *, .framer-Lfz0c .framer-1lprbue > *, .framer-Lfz0c .framer-1howuf8 > *, .framer-Lfz0c .framer-ifn79y > *, .framer-Lfz0c .framer-x69shr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Lfz0c .framer-q6ukfj > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Lfz0c .framer-q7hz8n > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Lfz0c .framer-q7hz8n > :first-child, .framer-Lfz0c .framer-1atrvpz > :first-child, .framer-Lfz0c .framer-1eee2lg > :first-child, .framer-Lfz0c .framer-12gc9kr > :first-child, .framer-Lfz0c .framer-1ql5zvo > :first-child, .framer-Lfz0c .framer-dxbpw4 > :first-child, .framer-Lfz0c .framer-yaj7bc > :first-child, .framer-Lfz0c .framer-zm3qmh > :first-child, .framer-Lfz0c .framer-8y9fbl > :first-child { margin-left: 0px; } .framer-Lfz0c .framer-q7hz8n > :last-child, .framer-Lfz0c .framer-1atrvpz > :last-child, .framer-Lfz0c .framer-1eee2lg > :last-child, .framer-Lfz0c .framer-12gc9kr > :last-child, .framer-Lfz0c .framer-1ql5zvo > :last-child, .framer-Lfz0c .framer-dxbpw4 > :last-child, .framer-Lfz0c .framer-yaj7bc > :last-child, .framer-Lfz0c .framer-zm3qmh > :last-child, .framer-Lfz0c .framer-8y9fbl > :last-child { margin-right: 0px; } .framer-Lfz0c .framer-4xwiq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Lfz0c .framer-1atrvpz > *, .framer-Lfz0c .framer-12gc9kr > *, .framer-Lfz0c .framer-1ql5zvo > *, .framer-Lfz0c .framer-dxbpw4 > *, .framer-Lfz0c .framer-8y9fbl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Lfz0c .framer-1eee2lg > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Lfz0c .framer-yaj7bc > *, .framer-Lfz0c .framer-zm3qmh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Lfz0c .framer-jel2rz > *, .framer-Lfz0c .framer-1rg94ti > *, .framer-Lfz0c .framer-ij07fd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Lfz0c .framer-2aortk > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-Lfz0c .framer-1x9vb6y > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Lfz0c[data-border=\"true\"]::after, .framer-Lfz0c [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-Lfz0c.framer-zhhg96 { width: 810px; } .framer-Lfz0c .framer-u42tdw, .framer-Lfz0c .framer-jxdfnt { height: var(--framer-aspect-ratio-supported, 3px); width: 3px; } .framer-Lfz0c .framer-sivbou { overflow: hidden; } .framer-Lfz0c .framer-1uf3pbn { height: 134px; } .framer-Lfz0c .framer-18ue25z { bottom: -76px; height: 845px; left: calc(49.382716049382736% - 800px / 2); order: 1; width: 800px; } .framer-Lfz0c .framer-5ufabd { aspect-ratio: 1 / 1; bottom: 602px; height: var(--framer-aspect-ratio-supported, 233px); left: 86%; top: unset; transform: translateX(-50%); width: 233px; } .framer-Lfz0c .framer-1wsc4so { left: 50%; top: 76px; } .framer-Lfz0c .framer-47uu2o { bottom: 54px; left: -360px; overflow: visible; right: unset; width: 1200px; } .framer-Lfz0c .framer-ot1sgu-container { left: calc(50.00000000000002% - 100.08333333333333% / 2); } .framer-Lfz0c .framer-8s23ub-container { left: calc(50.00000000000002% - 100% / 2); } .framer-Lfz0c .framer-lxwwew { aspect-ratio: 1 / 1; bottom: -20px; height: var(--framer-aspect-ratio-supported, 168px); left: 36px; width: 168px; } .framer-Lfz0c .framer-4xwiq { gap: 0px; height: 468px; order: 0; } .framer-Lfz0c .framer-1eee2lg { height: 80px; } .framer-Lfz0c .framer-1a9jl1d { height: var(--framer-aspect-ratio-supported, 13px); width: 94px; } .framer-Lfz0c .framer-lbf3nu { height: var(--framer-aspect-ratio-supported, 29px); width: 94px; } .framer-Lfz0c .framer-1psye4n { height: var(--framer-aspect-ratio-supported, 16px); width: 94px; } .framer-Lfz0c .framer-eim2um { height: var(--framer-aspect-ratio-supported, 19px); width: 94px; } .framer-Lfz0c .framer-iyx0xw { height: var(--framer-aspect-ratio-supported, 15px); width: 94px; } .framer-Lfz0c .framer-mr1fyw { height: var(--framer-aspect-ratio-supported, 41px); width: 94px; } .framer-Lfz0c .framer-1ql5zvo { bottom: -74px; right: -257px; } .framer-Lfz0c .framer-1emz9a4-container, .framer-Lfz0c .framer-ul0v6u-container, .framer-Lfz0c .framer-1vml117-container { width: 140px; } .framer-Lfz0c .framer-1howuf8 { padding: 100px 0px 0px 0px; } .framer-Lfz0c .framer-x69shr, .framer-Lfz0c .framer-1x9vb6y { width: 100%; } .framer-Lfz0c .framer-d5sxhm { left: calc(50.00000000000002% - 1960px / 2); width: 1960px; } .framer-Lfz0c .framer-1y7ekka { aspect-ratio: 1.225382932166302 / 1; height: var(--framer-aspect-ratio-supported, 335px); width: 411px; } .framer-Lfz0c .framer-1ozcc2d-container { height: 192px; left: 33px; right: 32px; top: 60px; } .framer-Lfz0c .framer-17x6wxj { aspect-ratio: 1.4054794520547946 / 1; height: var(--framer-aspect-ratio-supported, 305px); width: 429px; } .framer-Lfz0c .framer-1lh3uka { height: 179px; left: calc(39.86013986013988% - 284px / 2); top: 29px; width: 284px; } .framer-Lfz0c .framer-ih8ed6 { flex: 1 0 0px; height: 240px; overflow: visible; width: 1px; } .framer-Lfz0c .framer-1rg94ti { top: 50%; } .framer-Lfz0c .framer-rndef8 { width: 260px; } .framer-Lfz0c .framer-7dnf4i { aspect-ratio: 0.45897435897435895 / 1; height: var(--framer-aspect-ratio-supported, 407px); left: 20px; top: 50%; transform: translateY(-50%); width: 25%; } .framer-Lfz0c .framer-ij07fd { padding: 16px 0px 16px 80px; } .framer-Lfz0c .framer-p4dxil { left: 80px; } .framer-Lfz0c .framer-j59e4e { width: 317px; } .framer-Lfz0c .framer-1unlyqe { width: 600px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lfz0c .framer-4xwiq { gap: 0px; } .framer-Lfz0c .framer-4xwiq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Lfz0c .framer-4xwiq > :first-child { margin-top: 0px; } .framer-Lfz0c .framer-4xwiq > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-Lfz0c.framer-zhhg96 { width: 390px; } .framer-Lfz0c .framer-wsyj4q-container, .framer-Lfz0c .framer-mjnb3y { order: 0; } .framer-Lfz0c .framer-nsauh0, .framer-Lfz0c .framer-1qd5vxc-container { order: 2; } .framer-Lfz0c .framer-1qfw7jf { height: 80.0275482093664vh; max-width: 390px; padding: 39px 20px 38px 20px; z-index: 4; } .framer-Lfz0c .framer-14l00pw-container { left: 20px; order: 0; right: 20px; top: 60px; z-index: 6; } .framer-Lfz0c .framer-q6ukfj { align-content: flex-start; align-items: flex-start; height: 316px; order: 1; padding: 96px 0px 0px 0px; z-index: 5; } .framer-Lfz0c .framer-1qz6ntb, .framer-Lfz0c .framer-1g897if-container { order: 1; } .framer-Lfz0c .framer-sivbou { overflow: hidden; } .framer-Lfz0c .framer-aiz47f { bottom: 101px; left: -277px; right: -238px; top: -273px; } .framer-Lfz0c .framer-226ud6 { bottom: -14px; height: 85%; left: -129px; top: unset; width: 63%; } .framer-Lfz0c .framer-1eii0ik { height: 39%; right: -357px; top: calc(49.40239043824703% - 39.309428950863214% / 2); width: 113%; } .framer-Lfz0c .framer-1i3c396 { height: 75%; left: calc(42.76243093922654% - 26.96132596685083% / 2); top: calc(47.14475431606908% - 74.6347941567065% / 2); width: 27%; } .framer-Lfz0c .framer-fmfyl7 { height: 51%; left: unset; right: -120px; top: 106px; width: 49%; } .framer-Lfz0c .framer-1723935 { bottom: 165px; left: -294px; right: -289px; top: -180px; } .framer-Lfz0c .framer-5zzw85 { background-color: rgba(48, 48, 48, 0.2); } .framer-Lfz0c .framer-a4mzs7 { order: 3; z-index: 3; } .framer-Lfz0c .framer-18ue25z { bottom: -83px; height: 460px; left: calc(50.00000000000002% - 390px / 2); width: 390px; } .framer-Lfz0c .framer-5ufabd { --border-bottom-width: 1px; --border-left-width: 1px; --border-right-width: 1px; --border-top-width: 1px; aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 88px); left: 83%; text-decoration: none; top: -49px; transform: translateX(-50%); width: 88px; } .framer-Lfz0c .framer-d229bo { aspect-ratio: 2.4583333333333335 / 1; bottom: 23px; height: var(--framer-aspect-ratio-supported, 7px); left: 50%; transform: translateX(-50%); width: 17px; } .framer-Lfz0c .framer-1r1i5j6 { bottom: unset; height: var(--framer-aspect-ratio-supported, 13px); left: 29px; top: 63px; transform: unset; width: 30px; } .framer-Lfz0c .framer-1wsc4so { top: 49%; transform: translate(-50%, -50%); } .framer-Lfz0c .framer-lxwwew { --border-bottom-width: 1px; --border-left-width: 1px; --border-right-width: 1px; --border-top-width: 1px; aspect-ratio: 1 / 1; bottom: 31px; height: var(--framer-aspect-ratio-supported, 95px); left: 41px; width: 95px; } .framer-Lfz0c .framer-4xwiq { gap: 13px; height: 300px; padding: 0px 20px 60px 20px; width: 120%; z-index: 3; } .framer-Lfz0c .framer-1atrvpz { gap: 0px; } .framer-Lfz0c .framer-1eee2lg { align-content: unset; align-items: unset; display: grid; gap: 0px; grid-auto-rows: 45px; grid-template-columns: repeat(2, minmax(111px, 1fr)); grid-template-rows: repeat(3, 45px); height: min-content; width: 389px; } .framer-Lfz0c .framer-1a9jl1d { align-self: center; height: var(--framer-aspect-ratio-supported, 13px); justify-self: center; width: 89px; } .framer-Lfz0c .framer-lbf3nu { align-self: center; height: var(--framer-aspect-ratio-supported, 27px); justify-self: center; width: 89px; } .framer-Lfz0c .framer-1psye4n { align-self: center; height: var(--framer-aspect-ratio-supported, 15px); justify-self: center; width: 89px; } .framer-Lfz0c .framer-eim2um { align-self: center; height: var(--framer-aspect-ratio-supported, 18px); justify-self: center; width: 89px; } .framer-Lfz0c .framer-iyx0xw { align-self: center; height: var(--framer-aspect-ratio-supported, 14px); justify-self: center; width: 89px; } .framer-Lfz0c .framer-mr1fyw { align-self: center; height: var(--framer-aspect-ratio-supported, 39px); justify-self: center; width: 89px; } .framer-Lfz0c .framer-12gc9kr { order: 4; } .framer-Lfz0c .framer-1mrtlqx { bottom: -40px; left: -70px; right: -70px; } .framer-Lfz0c .framer-x69shr { padding: 70px 32px 60px 32px; width: 100%; } .framer-Lfz0c .framer-dxbpw4 { height: 101%; } .framer-Lfz0c .framer-d5sxhm { --border-bottom-width: 1px; --border-left-width: 1px; --border-right-width: 1px; --border-top-width: 1px; left: calc(50.00000000000002% - 1680px / 2); width: 1680px; } .framer-Lfz0c .framer-yaj7bc { flex-direction: column; height: 710px; max-width: unset; padding: 32px 0px 0px 0px; } .framer-Lfz0c .framer-1pxs0v8 { flex: none; height: 378px; order: 1; width: 100%; } .framer-Lfz0c .framer-jel2rz { align-content: flex-start; align-items: flex-start; overflow: visible; width: 100%; } .framer-Lfz0c .framer-19rsk8o { left: 0px; transform: unset; } .framer-Lfz0c .framer-1qiktq8 { align-self: unset; width: 100%; } .framer-Lfz0c .framer-1y7ekka { height: 267px; order: 0; width: 100%; } .framer-Lfz0c .framer-1ozcc2d-container { height: 152px; left: calc(50.30674846625769% - 274px / 2); right: unset; top: calc(47.64542936288091% - 152px / 2); width: 274px; } .framer-Lfz0c .framer-zm3qmh { align-content: center; align-items: center; flex-direction: column; gap: 23px; height: 550px; padding: 8px 0px 8px 0px; } .framer-Lfz0c .framer-17x6wxj { height: 44%; width: 100%; } .framer-Lfz0c .framer-1lh3uka { height: 139px; left: 21px; top: calc(39.24050632911394% - 139px / 2); width: 218px; } .framer-Lfz0c .framer-pbd1pe { bottom: -804px; height: unset; left: 0px; right: 0px; top: -165px; width: unset; } .framer-Lfz0c .framer-ih8ed6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; width: 100%; } .framer-Lfz0c .framer-1rg94ti { left: unset; padding: 0px 0px 45px 0px; position: relative; top: unset; transform: unset; width: 100%; } .framer-Lfz0c .framer-rndef8, .framer-Lfz0c .framer-j59e4e { width: 100%; } .framer-Lfz0c .framer-8y9fbl { flex-direction: column; gap: 32px; height: 749px; justify-content: flex-end; z-index: 1; } .framer-Lfz0c .framer-7dnf4i { aspect-ratio: 0.5986394557823129 / 1; bottom: 438px; height: var(--framer-aspect-ratio-supported, 328px); left: 47%; order: 1; top: unset; transform: translateX(-50%); width: 196px; } .framer-Lfz0c .framer-1tgdbwy { z-index: 2; } .framer-Lfz0c .framer-ij07fd { order: 2; overflow: visible; padding: 16px 0px 16px 0px; width: 100%; } .framer-Lfz0c .framer-p4dxil { left: 0px; } .framer-Lfz0c .framer-2aortk { flex-wrap: wrap; gap: 90px; justify-content: flex-start; order: 5; padding: 110px 0px 0px 0px; z-index: unset; } .framer-Lfz0c .framer-15ifxmk { max-width: 800px; order: 0; padding: 0px; } .framer-Lfz0c .framer-1x9vb6y { padding: 0px 32px 0px 32px; width: 100%; z-index: 1; } .framer-Lfz0c .framer-1unlyqe { order: 0; width: 100%; } .framer-Lfz0c .framer-16lx9op { bottom: 0px; order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lfz0c .framer-4xwiq, .framer-Lfz0c .framer-1atrvpz, .framer-Lfz0c .framer-1eee2lg, .framer-Lfz0c .framer-yaj7bc, .framer-Lfz0c .framer-zm3qmh, .framer-Lfz0c .framer-ih8ed6, .framer-Lfz0c .framer-8y9fbl, .framer-Lfz0c .framer-2aortk { gap: 0px; } .framer-Lfz0c .framer-4xwiq > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-Lfz0c .framer-4xwiq > :first-child, .framer-Lfz0c .framer-yaj7bc > :first-child, .framer-Lfz0c .framer-zm3qmh > :first-child, .framer-Lfz0c .framer-8y9fbl > :first-child, .framer-Lfz0c .framer-2aortk > :first-child { margin-top: 0px; } .framer-Lfz0c .framer-4xwiq > :last-child, .framer-Lfz0c .framer-yaj7bc > :last-child, .framer-Lfz0c .framer-zm3qmh > :last-child, .framer-Lfz0c .framer-8y9fbl > :last-child, .framer-Lfz0c .framer-2aortk > :last-child { margin-bottom: 0px; } .framer-Lfz0c .framer-1atrvpz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Lfz0c .framer-1atrvpz > :first-child, .framer-Lfz0c .framer-ih8ed6 > :first-child { margin-left: 0px; } .framer-Lfz0c .framer-1atrvpz > :last-child, .framer-Lfz0c .framer-ih8ed6 > :last-child { margin-right: 0px; } .framer-Lfz0c .framer-1eee2lg > *, .framer-Lfz0c .framer-1eee2lg > :first-child, .framer-Lfz0c .framer-1eee2lg > :last-child { margin: 0px; } .framer-Lfz0c .framer-yaj7bc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Lfz0c .framer-zm3qmh > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-Lfz0c .framer-ih8ed6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Lfz0c .framer-8y9fbl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Lfz0c .framer-2aortk > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3642.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UM4Keqn6p\":{\"layout\":[\"fixed\",\"auto\"]},\"foCgbtU51\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"W0UwsvqGT\":{\"pattern\":\":W0UwsvqGT\",\"name\":\"visual-production\"},\"GEzaq7c6k\":{\"pattern\":\":GEzaq7c6k\",\"name\":\"digital-design\"},\"rdzP1oVBe\":{\"pattern\":\":rdzP1oVBe\",\"name\":\"marketing-automation\"}}\n * @framerResponsiveScreen\n */const FramerT7FdirwOt=withCSS(Component,css,\"framer-Lfz0c\");export default FramerT7FdirwOt;FramerT7FdirwOt.displayName=\"Creative\";FramerT7FdirwOt.defaultProps={height:3642.5,width:1200};addFonts(FramerT7FdirwOt,[{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:\"FLURO Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/jpS7cKP6edSrVI200G1dfpMwFw.woff2\"},{family:\"Acumin Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZMvmxWUOf50SUk9GtfzH4dcji4.woff2\"},{family:\"Acumin Pro Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/SHIgBTYzwXrIXUtyX4qdl3v2DQ.woff2\"},{family:\"Acumin Pro Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/qAXEjSbxXJFMrVy3mkD1hWSBYJQ.woff2\"},{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\"}]},...NavMobileFonts,...NavMainNavFonts,...P8Txt_toggleFonts,...AnimatorFonts,...P8MarketingEmailAnimationFonts,...VimeoFonts,...NavButtonFonts,...NavFooter2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerT7FdirwOt\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"3642.5\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"W0UwsvqGT\\\":{\\\"pattern\\\":\\\":W0UwsvqGT\\\",\\\"name\\\":\\\"visual-production\\\"},\\\"GEzaq7c6k\\\":{\\\"pattern\\\":\\\":GEzaq7c6k\\\",\\\"name\\\":\\\"digital-design\\\"},\\\"rdzP1oVBe\\\":{\\\"pattern\\\":\\\":rdzP1oVBe\\\",\\\"name\\\":\\\"marketing-automation\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UM4Keqn6p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"foCgbtU51\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "Image2", "css", "FramerjxBFJEUDp", "withCSS", "jxBFJEUDp_default", "addPropertyControls", "ControlType", "addFonts", "withDelay", "Component", "props", "p", "MotionDivWithDelay", "withDelay", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "transition5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapqq94s0", "args", "onTapya6jjb", "onTapoo7srt", "onTap1ht4bug", "onTap1uuttf6", "onTap1hufg8v", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "css", "Framerk6TXY8Hue", "withCSS", "k6TXY8Hue_default", "addPropertyControls", "ControlType", "addFonts", "useStore", "createStore", "h1Anim", "Component", "props", "p", "NavMobileFonts", "getFonts", "mQpu8Bo8k_default", "NavMainNavFonts", "Kf38fxDrf_default", "P8Txt_toggleFonts", "k6TXY8Hue_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "RichTextH1AnimyhqznWithOptimizedAppearEffect", "withCodeBoundaryForOverrides", "h1Anim", "RichTextH1Animmjnb3yWithOptimizedAppearEffect", "MotionDivBgMove1226ud6", "motion", "bgMove1", "MotionDivBgMove21eii0ik", "bgMove2", "MotionDivBgMove41i3c396", "bgMove4", "MotionDivBgMove5fmfyl7", "bgMove5", "AnimatorFonts", "Animator", "P8MarketingEmailAnimationFonts", "jxBFJEUDp_default", "MotionDivWithFX", "withFX", "RichTextWithFX", "VimeoFonts", "Vimeo_default", "ImageWithFX", "Image2", "NavButtonFonts", "nWGkHbIQ6_default", "NavFooter2Fonts", "RrwOcdnWS_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transformTemplate1", "_", "t", "transformTemplate2", "animation4", "transition4", "animation5", "transition5", "animation6", "animation7", "animation8", "transformTemplate3", "transition6", "animation9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "SVG", "Link", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "css", "FramerT7FdirwOt", "withCSS", "T7FdirwOt_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
