{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/TDb0qbFhtN7SkrM58svb/Arc.js", "ssg:https://framerusercontent.com/modules/csGLBv8V2cvw2kabTehK/GSVMHgqe6B3KDJ6Iy6J9/gQwPle5hX.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { Children } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget, withCSS } from \"framer\";\nimport { motion } from \"framer-motion\";\nimport hash from \"@emotion/hash\";\nimport { renderToString } from \"react-dom/server\"; /**\n                                                   * ARC TEXT\n                                                   * By Adam and Benjamin\n                                                   *\n                                                   * @framerIntrinsicWidth 150\n                                                   * @framerIntrinsicHeight 150\n                                                   * @framerDisableUnlink\n                                                   *\n                                                   * @framerSupportedLayoutWidth fixed\n                                                   * @framerSupportedLayoutHeight fixed\n                                                   */\nconst Arc = withCSS(function Arc(props) {\n  // Checks\n  const hasChildren = Children.count(props.slots) > 0;\n  const isCanvas = RenderTarget.current() === RenderTarget.canvas;\n  const showCustomPath = hasChildren && props.type === \"graphic\"; // For Ellipse\n  const isCircle = props.type === \"circle\";\n  const isEllipse = props.type === \"ellipse\";\n  const cylinder = isEllipse ? props.cylinderHeight / 2 : 0; // Base arc path\n  let path = createPath(props.flip, cylinder);\n  let childPath;\n  let viewBox; // If graphic is connected\n  if (showCustomPath) {\n    const firstChild = getFirstChild(props.slots);\n    const svgChild = getFirstChild(firstChild.props.svg);\n    const svgChildCanvas = getFirstChild(firstChild.props.children); // Show placeholder on canvas if connected layer isn\u2019t a graphic\n    if (isCanvas && !svgChildCanvas.props.frame) {\n      return /*#__PURE__*/_jsxs(\"div\", {\n        style: placeholderStyles,\n        children: [/*#__PURE__*/_jsx(\"div\", {\n          style: emojiStyles,\n          children: \"\uD83D\uDC8E\"\n        }), /*#__PURE__*/_jsx(\"p\", {\n          style: titleStyles,\n          children: \"Please connect to Graphic\"\n        }), /*#__PURE__*/_jsx(\"p\", {\n          style: subtitleStyles,\n          children: \"You can only connect the Arc to a Graphic with a single path.\"\n        })]\n      });\n    } // Grab the react element from the canvas and turn it into SVG\n    if (isCanvas && svgChildCanvas) {\n      const svgString = renderToString(svgChildCanvas); // Canvas does not give us viewBox within the string\n      const canvasFrame = svgChildCanvas.props.frame;\n      viewBox = `0 0 ${canvasFrame.width} ${canvasFrame.height}`;\n      let attributes = svgString.match(/[\\w-]+=\"[^\"]*\"/g);\n      for (const element of attributes) {\n        if (element.includes(\"d=\")) {\n          childPath = splitAndReplace(element);\n        }\n      }\n    } // On the preview/deploy we already get the SVG string\n    if (!isCanvas && svgChild) {\n      let attributes1 = svgChild.match(/[\\w-]+=\"[^\"]*\"/g);\n      viewBox = svgChild.split(\"viewBox=\")[1];\n      viewBox = viewBox.split(\">\")[0];\n      viewBox = viewBox.replace(/^\"(.+(?=\"$))\"$/, \"$1\");\n      for (const element1 of attributes1) {\n        if (element1.includes(\"d=\")) {\n          childPath = splitAndReplace(element1);\n        }\n      }\n    }\n  } // Unique IDs to avoid multiple instances on the canvas sharing a single path\n  const id = `curve-${hash(childPath || path)}`; // Alignment icon conversion\n  let alignmentValue;\n  if (props.alignmentBaseline === \"top\") alignmentValue = \"Text Top\";\n  if (props.alignmentBaseline === \"center\") alignmentValue = \"Central\";\n  if (props.alignmentBaseline === \"bottom\") alignmentValue = \"Hanging\";\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      width: \"100%\",\n      height: \"100%\",\n      // userSelect: \"none\",\n      // pointerEvents: \"none\",\n      position: \"relative\"\n    },\n    draggable: \"false\",\n    children: /*#__PURE__*/_jsxs(motion.svg, {\n      className: \"transform-origin-center-center\",\n      style: {\n        width: \"100%\",\n        height: \"100%\",\n        position: \"absolute\",\n        inset: 0,\n        transformOrigin: \"center\",\n        willChange: props.rotate && \"transform\"\n      },\n      viewBox: showCustomPath ? viewBox : `0 0 100 100`,\n      overflow: \"visible\",\n      animate: isCircle && props.rotate && {\n        rotate: 360\n      },\n      transition: isCircle && props.rotate && {\n        duration: 100 / props.rotateSpeed,\n        repeat: Infinity,\n        ease: \"linear\"\n      },\n      children: [/*#__PURE__*/_jsx(\"path\", {\n        id: id,\n        d: showCustomPath ? childPath : path,\n        strokeWidth: \"none\",\n        fill: \"transparent\"\n      }), /*#__PURE__*/_jsx(\"text\", {\n        children: /*#__PURE__*/_jsxs(\"textPath\", {\n          href: `#${id}`,\n          startOffset: props.startOffset,\n          dominantBaseline: alignmentValue,\n          style: {\n            fontSize: props.font.fontSize,\n            fontFamily: props.font.font,\n            fontWeight: props.font.fontWeight,\n            wordSpacing: props.font.wordSpacing,\n            letterSpacing: props.font.letterSpacing,\n            fill: props.color\n          },\n          children: [props.text, !isCanvas && props.animate && /*#__PURE__*/_jsx(\"animate\", {\n            attributeName: \"startOffset\",\n            from: `${props.animateStart}%`,\n            to: `${props.animateEnd}%`,\n            begin: \"0s\",\n            dur: `${props.animateDuration}s`,\n            repeatCount: \"indefinite\"\n          })]\n        })\n      })]\n    })\n  });\n},\n// Work around a bug with framer-motion that calculates a px origin when animating SVG elements.\n[\".transform-origin-center-center { transform-origin: center center !important; }\"]);\nexport default Arc;\nArc.defaultProps = {\n  height: 50,\n  width: 50\n};\naddPropertyControls(Arc, {\n  text: {\n    title: \"Content\",\n    type: ControlType.String,\n    defaultValue: \"\u2726 THANK YOU \u2726 FOR VISITING\",\n    displayTextArea: true\n  },\n  type: {\n    title: \"Type\",\n    type: ControlType.Enum,\n    options: [\"circle\", \"ellipse\", \"graphic\"],\n    optionTitles: [\"Circle\", \"Ellipse\", \"Graphic\"],\n    defaultValue: true\n  },\n  cylinderHeight: {\n    title: \"Height\",\n    type: ControlType.Number,\n    unit: \"px\",\n    min: 0,\n    max: 1e3,\n    hidden: ({\n      type\n    }) => type !== \"ellipse\"\n  },\n  rotate: {\n    type: ControlType.Boolean,\n    title: \"Rotate\",\n    defaultValue: false,\n    hidden: ({\n      type\n    }) => type !== \"circle\"\n  },\n  rotateSpeed: {\n    type: ControlType.Number,\n    title: \"Speed\",\n    min: 0,\n    max: 50,\n    defaultValue: 5,\n    displayStepper: true,\n    step: 1,\n    hidden: ({\n      type,\n      rotate\n    }) => type !== \"circle\" || !rotate\n  },\n  slots: {\n    type: ControlType.ComponentInstance,\n    title: \"Graphic\",\n    hidden: ({\n      type\n    }) => type !== \"graphic\"\n  },\n  alignmentBaseline: {\n    title: \"Align\",\n    type: ControlType.Enum,\n    options: [\"top\", \"center\", \"bottom\"],\n    optionIcons: [\"align-top\", \"align-middle\", \"align-bottom\"],\n    defaultValue: \"bottom\",\n    displaySegmentedControl: true\n  },\n  flip: {\n    type: ControlType.Boolean,\n    defaultValue: false,\n    title: \"Direction\",\n    enabledTitle: \"CW\",\n    disabledTitle: \"CCW\",\n    hidden: ({\n      type\n    }) => type === \"graphic\"\n  },\n  startOffset: {\n    title: \"Offset\",\n    type: ControlType.Number,\n    defaultValue: 0,\n    max: 360,\n    unit: \"\\xb0\",\n    step: .5\n  },\n  color: {\n    title: \"Color\",\n    type: ControlType.Color,\n    defaultValue: \"#999\"\n  },\n  font: {\n    type: ControlType.Object,\n    controls: {\n      font: {\n        type: ControlType.String,\n        placeholder: \"Inter\",\n        defaultValue: \"Inter\"\n      },\n      fontSize: {\n        title: \"Size\",\n        type: ControlType.Number,\n        min: 0,\n        max: 100,\n        step: .5,\n        defaultValue: 12\n      },\n      fontWeight: {\n        type: ControlType.Enum,\n        options: [100, 200, 300, 400, 500, 600, 700, 800, 900],\n        defaultValue: 600,\n        title: \"Weight\"\n      },\n      wordSpacing: {\n        title: \"Word\",\n        type: ControlType.Number,\n        defaultValue: 4,\n        step: .1,\n        displayStepper: true\n      },\n      letterSpacing: {\n        title: \"Letter\",\n        type: ControlType.Number,\n        defaultValue: 4,\n        step: .1,\n        displayStepper: true\n      }\n    }\n  },\n  animate: {\n    type: ControlType.Boolean,\n    defaultValue: false,\n    title: \"Animate\"\n  },\n  animateStart: {\n    type: ControlType.Number,\n    min: -200,\n    max: 200,\n    step: .1,\n    defaultValue: -50,\n    title: \"From\",\n    unit: \"%\",\n    hidden: props => !props.animate\n  },\n  animateEnd: {\n    type: ControlType.Number,\n    min: -200,\n    max: 200,\n    step: .1,\n    defaultValue: 150,\n    title: \"To\",\n    unit: \"%\",\n    hidden: props => !props.animate\n  },\n  animateDuration: {\n    type: ControlType.Number,\n    min: 0,\n    max: 50,\n    defaultValue: 5,\n    title: \"Time\",\n    unit: \"s\",\n    displayStepper: true,\n    hidden: props => !props.animate\n  }\n}); /* Method to get the first child */\nfunction getFirstChild(slots) {\n  let firstChild;\n  Children.map(slots, child => {\n    if (firstChild === undefined) {\n      firstChild = child;\n    }\n  });\n  return firstChild;\n} /* Method to get stringless attributes */\nconst splitAndReplace = string => {\n  return string.split(\"=\")[1].replace(/['\"]+/g, \"\");\n}; /* Path creation method */\nconst createPath = (flip, cylinder) => {\n  const cylinderTop = 50 - cylinder;\n  const cylinderBottom = 50 + cylinder;\n  return !flip ? `M 0 50 L 0 ${cylinderTop} A 1 1 0 0 1 100 ${cylinderTop} L 100 50 L 100 ${cylinderBottom} A 1 1 0 0 1 0 ${cylinderBottom} L 0 ${cylinderTop}` : `M 0 50 L 0 ${cylinderBottom} A 1 1 0 1 0 100 ${cylinderBottom} L 100 ${cylinderTop} A 1 1 0 1 0 0 ${cylinderTop} L 0 50`;\n}; /* Styles */\nconst placeholderStyles = {\n  display: \"flex\",\n  width: \"100%\",\n  height: \"100%\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  flexDirection: \"column\",\n  color: \"#96F\",\n  background: \"rgba(136, 85, 255, 0.1)\",\n  fontSize: 11,\n  overflow: \"hidden\"\n};\nconst emojiStyles = {\n  fontSize: 32,\n  marginBottom: 10\n};\nconst titleStyles = {\n  margin: 0,\n  marginBottom: 10,\n  fontWeight: 600,\n  textAlign: \"center\"\n};\nconst subtitleStyles = {\n  margin: 0,\n  opacity: .7,\n  maxWidth: 160,\n  lineHeight: 1.5,\n  textAlign: \"center\"\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Arc\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerIntrinsicHeight\": \"150\",\n        \"framerIntrinsicWidth\": \"150\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerDisableUnlink\": \"*\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Arc.map", "// Generated by Framer (bdd6aa1)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, Link, PropertyOverrides, removeHiddenBreakpointLayers, RichText, SVG, useHydratedBreakpointVariants, useLocaleInfo, withCSS, withFX } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Arc from \"https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/TDb0qbFhtN7SkrM58svb/Arc.js\";\nimport ShapesBig from \"https://framerusercontent.com/modules/jtKAvrxm8EnQFXUS5j2i/iaXLJBT0c7TxL3H8JnYX/ShapesBig.js\";\nimport { Video } from \"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";\nimport Carousel from \"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";\nimport NavbarLogoLight from \"https://framerusercontent.com/modules/o6JNIGryeiN71MktgObT/Uj38vXA9NeMi3KMe7j39/tnMC6bXKK.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/zjsGWbvvWAepwYdZ5IpH/waNpoTyJV7fMyVMWu5dX/iOV2cR3eR.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/0J0ZLyMw3CLVvaNzXdg7/MPSJ7hoKu2MV491CbQ9v/k1LVI2ppa.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/6rPmDKbWpImApi6cfU2Q/kWdNtIESG5i9lhv3HMyh/Og9MYMTAg.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/13dC8WsLLVZ7380oxLKT/2HH12LidNfeXwD5cTaw3/rgtHy6UuN.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/XCe75RE5veOT1g8CeSdw/ilEptL6EFzj8VVhToZ6k/gQwPle5hX.js\";\nconst NavbarLogoLightFonts = getFonts(NavbarLogoLight);\nconst CarouselFonts = getFonts(Carousel);\nconst VideoFonts = getFonts(Video);\nconst ArcFonts = getFonts(Arc);\nconst ContainerWithFX = withFX(Container);\nconst ShapesBigFonts = getFonts(ShapesBig);\nconst cycleOrder = [\"ZYGhh6U98\", \"Eis5h2BXo\", \"dbIZj2VPD\"];\nconst breakpoints = {\n  dbIZj2VPD: \"(max-width: 809px)\",\n  Eis5h2BXo: \"(min-width: 810px) and (max-width: 1439px)\",\n  ZYGhh6U98: \"(min-width: 1440px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  dbIZj2VPD: \"framer-v-1jodgmi\",\n  Eis5h2BXo: \"framer-v-kh1nof\",\n  ZYGhh6U98: \"framer-v-1v650os\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"ZYGhh6U98\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transformTemplate = (_, t) => `translate(-50%, -50%) ${t}`;\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  scale: .5,\n  x: 0,\n  y: 0\n};\nconst transition1 = {\n  damping: 30,\n  delay: 0,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation1 = {\n  opacity: 0,\n  rotate: 0,\n  scale: .5,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst transformTemplate1 = (_, t) => `perspective(1200px) ${t}`;\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"ZYGhh6U98\",\n  Phone: \"dbIZj2VPD\",\n  Tablet: \"Eis5h2BXo\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _variant, ref;\n  return {\n    ...props,\n    variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"ZYGhh6U98\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"ZYGhh6U98\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-afAji\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-1v650os\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-btzrwq-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                dbIZj2VPD: {\n                  variant: \"JNEuL4zAH\"\n                },\n                Eis5h2BXo: {\n                  variant: \"TEcPHA0E1\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(NavbarLogoLight, {\n                height: \"100%\",\n                id: \"Yxp9AL1lg\",\n                layoutId: \"Yxp9AL1lg\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"E0CTHOO48\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-21zhie\",\n            \"data-framer-name\": \"Hero\",\n            name: \"Hero\",\n            children: [/*#__PURE__*/_jsx(SVG, {\n              className: \"framer-1p38hjz\",\n              \"data-framer-name\": \"Mastercontrol_logo\",\n              fill: \"black\",\n              intrinsicHeight: 36,\n              intrinsicWidth: 71,\n              name: \"Mastercontrol_logo\",\n              svg: '<svg width=\"71\" height=\"36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#3A97A5\"><path d=\"M11.711 0H0v11.838h11.711V0Zm11.712 0v11.838h11.711v23.676h11.711V11.838L35.135 0H23.422Zm35.133 0H46.845v11.838h11.711v23.676h11.711V11.838L58.556 0ZM11.71 23.676v11.838h11.712V11.838H11.711v11.838Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h71v36H0z\"/></clipPath></defs></svg>',\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                Eis5h2BXo: {\n                  transformTemplate: undefined\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h1\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7T3JlbGVnYSBPbmUtcmVndWxhcg==\",\n                      \"--framer-font-family\": '\"Orelega One\", sans-serif',\n                      \"--framer-font-size\": \"117.74746926887607px\",\n                      \"--framer-line-height\": \"1.1em\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(205, 231, 127)\",\n                      \"--framer-text-transform\": \"uppercase\"\n                    },\n                    children: \"Mastercontrol\"\n                  })\n                }),\n                className: \"framer-a9jlmp\",\n                fonts: [\"GF;Orelega One-regular\"],\n                transformTemplate: transformTemplate,\n                verticalAlignment: \"top\",\n                viewBox: \"0 0 1000 130\",\n                withExternalLayout: true\n              })\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-135gh6r\",\n            \"data-framer-name\": \"Text\",\n            name: \"Text\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-cgzgdj\",\n              \"data-framer-name\": \"Content\",\n              name: \"Content\",\n              children: [/*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1x7xkw6\",\n                children: /*#__PURE__*/_jsx(SVG, {\n                  className: \"framer-8nugea\",\n                  \"data-framer-name\": \"graphic\",\n                  fill: \"black\",\n                  intrinsicHeight: 36,\n                  intrinsicWidth: 300,\n                  name: \"graphic\",\n                  svg: '<svg width=\"300\" height=\"36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#3A97A5\"><path d=\"M11.711 0H0v11.838h11.711V0Zm11.712 0v11.838h11.711v23.676h11.711V11.838L35.135 0H23.422Zm35.133 0H46.845v11.838h11.711v23.676h11.711V11.838L58.556 0ZM11.71 23.676v11.838h11.712V11.838H11.711v11.838Zm74.12-11.838h5.454l6.096 14.757 5.936-14.757h5.454v23.676h-4.492V19.622l-5.454 12.973h-3.53l-5.133-12.811H90V35.35h-4.172V11.838Zm26.149 18.972c0-3.242 3.048-5.188 6.096-5.188h4.492V24c0-1.946-1.123-2.595-3.048-2.595-1.605 0-3.049.649-3.049 1.622v.649h-3.529v-.487c0-3.73 3.529-5.027 6.578-5.027 3.689 0 7.219 1.135 7.219 5.514v8.27c0 .648 0 3.243.16 3.567h-4.01c0-.162-.161-1.135-.161-1.621-1.444 1.621-2.888 1.946-4.973 1.946-3.369 0-5.775-1.946-5.775-5.027Zm10.588-1.62v-.65h-4.011c-1.604 0-2.888.65-2.888 2.109 0 1.46 1.123 2.108 3.048 2.108 3.369 0 3.851-1.784 3.851-3.568Zm7.059 3.567 2.888-2.108c.962 1.46 2.887 2.108 4.652 2.108 1.604 0 3.209-.487 3.209-2.108 0-1.46-.963-1.622-3.048-2.108l-2.086-.487c-2.888-.486-4.652-1.946-4.652-4.54 0-3.568 3.048-5.676 6.577-5.676 3.048 0 5.134.648 6.578 2.919l-2.888 1.946c-.963-.649-2.086-1.135-3.69-1.135s-2.888.648-2.888 1.946c0 1.297 1.444 1.459 3.209 1.621l2.567.487c2.887.486 4.492 2.108 4.492 4.702 0 4.054-4.011 5.676-7.54 5.676-2.728-.162-5.776-.973-7.38-3.243Zm18.449-1.297v-9.73h-2.406v-3.243h2.406v-5.19h4.332v5.19h3.69v3.243h-3.69v8.757c0 1.135.642 1.621 1.604 1.621.963 0 1.123 0 2.086-.162v3.568c-.963.162-2.407.162-3.048.162-2.888.162-4.974-1.135-4.974-4.217Zm9.626-2.595v-3.243c0-4.703 3.53-7.298 7.701-7.298 3.69 0 7.219 2.108 7.219 6.649v3.243h-10.588v.973c0 2.108 1.604 3.243 4.01 3.243 1.444 0 2.888-.973 3.69-2.108l3.048 1.946c-1.443 2.595-4.01 3.73-7.058 3.73-4.172 0-8.022-2.432-8.022-7.135Zm11.07-3.568v-.486c0-2.433-1.605-3.244-3.209-3.244s-3.529.973-3.529 3.568v.162h6.738Zm7.54-6.811h4.01v2.92c.963-1.947 3.53-3.082 5.455-3.082h1.444v3.73h-1.444c-3.048 0-5.455 1.622-5.455 5.027v8.595h-4.01v-17.19Zm119.678-6.162h-.641v-.486h1.925v.486h-.642v2.108h-.481v-2.108h-.161Zm1.605-.486h.481l.642 1.622.642-1.622h.481v2.595h-.481V12.81l-.482 1.46h-.481l-.481-1.46v1.621h-.481v-2.594h.16ZM189.305 27.73v-7.622c0-5.676 4.171-8.757 9.305-8.757 4.491 0 8.983 2.595 8.983 7.784v.649h-4.171v-.162c0-3.081-2.567-4.217-4.652-4.217-2.406 0-4.973 1.136-4.973 4.54v7.622c0 2.92 2.406 4.541 5.133 4.541 2.086 0 4.653-1.135 4.653-4.216v-.162h4.171v.648c0 5.19-4.171 7.784-8.663 7.784-5.294-.162-9.786-3.243-9.786-8.432Zm21.337 1.46v-3.73c0-4.541 4.01-7.136 7.54-7.136 4.01 0 7.7 2.92 7.7 7.135v3.568c0 4.54-4.01 7.135-7.54 7.135-4.171-.162-7.7-2.594-7.7-6.973Zm11.39 0v-4.217c0-2.108-1.604-3.243-3.69-3.243-1.604 0-3.529.973-3.529 3.243v4.216c0 2.108 1.604 3.243 3.69 3.243 1.604 0 3.529-.973 3.529-3.243Zm6.739-10.704h4.01v2.108a5.62 5.62 0 0 1 4.653-2.432c3.689 0 5.935 2.433 5.935 6.324v10.865h-4.01V25.46c0-2.594-1.123-4.054-3.048-4.054-2.086 0-3.53 1.46-3.53 4.217v9.405h-4.01v-16.54Zm19.411 12.974v-9.73h-2.407v-3.243h2.407v-5.19h4.011v5.19h3.689v3.243h-3.689v8.757c0 1.135.641 1.621 1.604 1.621.641 0 1.123 0 2.085-.162v3.568c-.962.162-2.406.162-3.048.162-2.567.162-4.652-1.135-4.652-4.217Zm10.107-12.974h4.011v2.92c.962-1.947 3.529-3.082 5.454-3.082h1.444v3.73h-1.444c-3.048 0-5.454 1.622-5.454 5.027v8.595h-4.011v-17.19Zm12.192 10.704v-3.73c0-4.541 4.011-7.136 7.541-7.136 4.01 0 7.7 2.92 7.7 7.135v3.568c0 4.54-4.011 7.135-7.54 7.135-4.171-.162-7.701-2.594-7.701-6.973Zm11.23 0v-4.217c0-2.108-1.604-3.243-3.689-3.243-1.605 0-3.53.973-3.53 3.243v4.216c0 2.108 1.604 3.243 3.69 3.243 1.604 0 3.529-.973 3.529-3.243Zm6.738 1.783V11.838h4.011v19.135c0 .649.481 1.46 1.444 1.46.641 0 1.123 0 1.925-.163v3.081c-.963.163-2.086.487-3.209.487-3.85 0-4.171-3.406-4.171-4.865Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h300v36H0z\"/></clipPath></defs></svg>',\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  dbIZj2VPD: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7T3JlbGVnYSBPbmUtcmVndWxhcg==\",\n                          \"--framer-font-family\": '\"Orelega One\", sans-serif',\n                          \"--framer-font-size\": \"39px\",\n                          \"--framer-line-height\": \"1em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Senior Director of Digital Experience\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7T3JlbGVnYSBPbmUtcmVndWxhcg==\",\n                        \"--framer-font-family\": '\"Orelega One\", sans-serif',\n                        \"--framer-font-size\": \"48px\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"Senior Director of Digital Experience\"\n                    })\n                  }),\n                  className: \"framer-to8o6v\",\n                  fonts: [\"GF;Orelega One-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-z5xe14\",\n                \"data-framer-name\": \"Text\",\n                name: \"Text\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7T2xkIFN0YW5kYXJkIFRULXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Old Standard TT\", \"Old Standard TT Placeholder\", serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"Coming into a completely new team of 16 direct reports, having to relaunch a global website with 3000+ pages on a new brand and keep conversion up all within 6 months. The stakes were high but we knocked it out of the park. \"\n                    })\n                  }),\n                  className: \"framer-1rljaj5\",\n                  fonts: [\"GF;Old Standard TT-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsxs(\"ul\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7T2xkIFN0YW5kYXJkIFRULXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Old Standard TT\", \"Old Standard TT Placeholder\", serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: [/*#__PURE__*/_jsx(\"li\", {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          children: \"User-Experience\"\n                        })\n                      }), /*#__PURE__*/_jsx(\"li\", {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          children: \"Branding\"\n                        })\n                      }), /*#__PURE__*/_jsx(\"li\", {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          children: \"Engineering\"\n                        })\n                      }), /*#__PURE__*/_jsx(\"li\", {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          children: \"Conversion Rate Optimization\"\n                        })\n                      }), /*#__PURE__*/_jsx(\"li\", {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          children: \"SEO\"\n                        })\n                      })]\n                    })\n                  }),\n                  className: \"framer-pzhy99\",\n                  fonts: [\"GF;Old Standard TT-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-n8cck4\",\n            \"data-framer-name\": \"Slider\",\n            name: \"Slider\",\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1kk43u7\",\n              children: /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1fxj2on-container\",\n                children: /*#__PURE__*/_jsx(Carousel, {\n                  align: \"center\",\n                  ariaLabel: \"\",\n                  arrowObject: {\n                    arrowFill: \"rgba(0, 0, 0, 0.2)\",\n                    arrowPadding: 20,\n                    arrowRadius: 40,\n                    arrowSize: 40,\n                    showMouseControls: true\n                  },\n                  axis: true,\n                  borderRadius: 30,\n                  fadeObject: {\n                    fadeAlpha: 0,\n                    fadeContent: true,\n                    fadeInset: 0,\n                    fadeTransition: {\n                      damping: 60,\n                      delay: 0,\n                      duration: .3,\n                      ease: [.44, 0, .56, 1],\n                      mass: 1,\n                      stiffness: 500,\n                      type: \"spring\"\n                    },\n                    fadeWidth: 1\n                  },\n                  gap: 0,\n                  height: \"100%\",\n                  id: \"uMVcOCdoF\",\n                  layoutId: \"uMVcOCdoF\",\n                  padding: 22,\n                  paddingBottom: 0,\n                  paddingLeft: 0,\n                  paddingPerSide: true,\n                  paddingRight: 0,\n                  paddingTop: 0,\n                  progressObject: {\n                    dotsActiveOpacity: 1,\n                    dotsBackground: \"rgba(0, 0, 0, 0.2)\",\n                    dotsBlur: 4,\n                    dotsFill: \"rgb(255, 255, 255)\",\n                    dotsGap: 10,\n                    dotsInset: 10,\n                    dotSize: 10,\n                    dotsOpacity: .5,\n                    dotsPadding: 10,\n                    dotsRadius: 50,\n                    showProgressDots: false,\n                    showScrollbar: true\n                  },\n                  sizingObject: {\n                    heightInset: 0,\n                    heightRows: 2,\n                    heightType: \"auto\",\n                    widthColumns: 1,\n                    widthInset: 0,\n                    widthType: \"stretch\"\n                  },\n                  slots: [/*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 720,\n                      intrinsicWidth: 1280,\n                      pixelHeight: 1440,\n                      pixelWidth: 2560,\n                      sizes: \"1280px\",\n                      src: new URL(\"https://framerusercontent.com/images/yOb1RlPdkx6ePfSuhTx9809Wxo.png?scale-down-to=2048\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/yOb1RlPdkx6ePfSuhTx9809Wxo.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/yOb1RlPdkx6ePfSuhTx9809Wxo.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/yOb1RlPdkx6ePfSuhTx9809Wxo.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/yOb1RlPdkx6ePfSuhTx9809Wxo.png\").href} 2560w`\n                    },\n                    className: \"framer-1s8hy4b\",\n                    \"data-framer-name\": \"$12_MasterControl\",\n                    name: \"$12_MasterControl\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 720,\n                      intrinsicWidth: 1280,\n                      pixelHeight: 1440,\n                      pixelWidth: 2560,\n                      sizes: \"1280px\",\n                      src: new URL(\"https://framerusercontent.com/images/G9Ijk4kF9Hg1eNiRGiSIWgn3c.png?scale-down-to=2048\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/G9Ijk4kF9Hg1eNiRGiSIWgn3c.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/G9Ijk4kF9Hg1eNiRGiSIWgn3c.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/G9Ijk4kF9Hg1eNiRGiSIWgn3c.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/G9Ijk4kF9Hg1eNiRGiSIWgn3c.png\").href} 2560w`\n                    },\n                    className: \"framer-1pfng9d\",\n                    \"data-framer-name\": \"$13_MasterControl\",\n                    name: \"$13_MasterControl\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 720,\n                      intrinsicWidth: 1280,\n                      pixelHeight: 1440,\n                      pixelWidth: 2560,\n                      sizes: \"1280px\",\n                      src: new URL(\"https://framerusercontent.com/images/WmSBBEJWu4O7Lz75QrWFHxVxlA.png?scale-down-to=2048\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/WmSBBEJWu4O7Lz75QrWFHxVxlA.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/WmSBBEJWu4O7Lz75QrWFHxVxlA.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/WmSBBEJWu4O7Lz75QrWFHxVxlA.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/WmSBBEJWu4O7Lz75QrWFHxVxlA.png\").href} 2560w`\n                    },\n                    className: \"framer-15h3p6u\",\n                    \"data-framer-name\": \"$14_MasterControl\",\n                    name: \"$14_MasterControl\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 720,\n                      intrinsicWidth: 1280,\n                      pixelHeight: 1440,\n                      pixelWidth: 2560,\n                      sizes: \"1280px\",\n                      src: new URL(\"https://framerusercontent.com/images/jwntXDnIsC6RTWR9PAvS153pOTs.png?scale-down-to=2048\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/jwntXDnIsC6RTWR9PAvS153pOTs.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/jwntXDnIsC6RTWR9PAvS153pOTs.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/jwntXDnIsC6RTWR9PAvS153pOTs.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/jwntXDnIsC6RTWR9PAvS153pOTs.png\").href} 2560w`\n                    },\n                    className: \"framer-jzab3b\",\n                    \"data-framer-name\": \"$15_MasterControl\",\n                    name: \"$15_MasterControl\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 720,\n                      intrinsicWidth: 1280,\n                      pixelHeight: 1440,\n                      pixelWidth: 2560,\n                      sizes: \"1280px\",\n                      src: new URL(\"https://framerusercontent.com/images/46kuOBReaHgqdKDXQsQyT4mM7NY.png?scale-down-to=2048\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/46kuOBReaHgqdKDXQsQyT4mM7NY.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/46kuOBReaHgqdKDXQsQyT4mM7NY.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/46kuOBReaHgqdKDXQsQyT4mM7NY.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/46kuOBReaHgqdKDXQsQyT4mM7NY.png\").href} 2560w`\n                    },\n                    className: \"framer-gjtdq3\",\n                    \"data-framer-name\": \"$16_MasterControl\",\n                    name: \"$16_MasterControl\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 720,\n                      intrinsicWidth: 1280,\n                      pixelHeight: 1440,\n                      pixelWidth: 2560,\n                      sizes: \"1280px\",\n                      src: new URL(\"https://framerusercontent.com/images/2DWk4f0Zzdiwd0xnfXw3zOFEMPc.png?scale-down-to=2048\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/2DWk4f0Zzdiwd0xnfXw3zOFEMPc.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/2DWk4f0Zzdiwd0xnfXw3zOFEMPc.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/2DWk4f0Zzdiwd0xnfXw3zOFEMPc.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/2DWk4f0Zzdiwd0xnfXw3zOFEMPc.png\").href} 2560w`\n                    },\n                    className: \"framer-1e4cx12\",\n                    \"data-framer-name\": \"$17_Mastercontrol\",\n                    name: \"$17_Mastercontrol\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 720,\n                      intrinsicWidth: 1280,\n                      pixelHeight: 1440,\n                      pixelWidth: 2560,\n                      sizes: \"1280px\",\n                      src: new URL(\"https://framerusercontent.com/images/aNcLxNAG8WXioN5GnNEi9MvsQsw.png?scale-down-to=2048\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/aNcLxNAG8WXioN5GnNEi9MvsQsw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/aNcLxNAG8WXioN5GnNEi9MvsQsw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/aNcLxNAG8WXioN5GnNEi9MvsQsw.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/aNcLxNAG8WXioN5GnNEi9MvsQsw.png\").href} 2560w`\n                    },\n                    className: \"framer-1hdtigq\",\n                    \"data-framer-name\": \"$18_MasterControl\",\n                    name: \"$18_MasterControl\"\n                  }), /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 720,\n                      intrinsicWidth: 1280,\n                      pixelHeight: 1440,\n                      pixelWidth: 2560,\n                      sizes: \"1280px\",\n                      src: new URL(\"https://framerusercontent.com/images/MXQR77iV0jEX0nOn4NyrTLoW7s0.png?scale-down-to=2048\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/MXQR77iV0jEX0nOn4NyrTLoW7s0.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/MXQR77iV0jEX0nOn4NyrTLoW7s0.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/MXQR77iV0jEX0nOn4NyrTLoW7s0.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/MXQR77iV0jEX0nOn4NyrTLoW7s0.png\").href} 2560w`\n                    },\n                    className: \"framer-1q3lfhb\",\n                    \"data-framer-name\": \"$19_MasterControl\",\n                    name: \"$19_MasterControl\"\n                  })],\n                  snapObject: {\n                    fluid: true,\n                    snap: true,\n                    snapEdge: \"start\"\n                  },\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1putata\",\n            \"data-framer-name\": \"Divider\",\n            name: \"Divider\",\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-m7ipsv\"\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-u3svnz\",\n            \"data-framer-name\": \"Features Large\",\n            name: \"Features Large\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-2ok0h\",\n              \"data-framer-name\": \"Features\",\n              name: \"Features\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1swbm8o\",\n                children: [/*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-10e0slv\",\n                  \"data-framer-name\": \"Image\",\n                  name: \"Image\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1c6t9w6-container\",\n                    children: /*#__PURE__*/_jsx(Video, {\n                      backgroundColor: \"rgba(0, 0, 0, 0)\",\n                      borderRadius: 0,\n                      bottomLeftRadius: 0,\n                      bottomRightRadius: 0,\n                      controls: false,\n                      height: \"100%\",\n                      id: \"QuYPoXwYo\",\n                      isMixedBorderRadius: false,\n                      layoutId: \"QuYPoXwYo\",\n                      loop: true,\n                      muted: true,\n                      objectFit: \"fill\",\n                      playing: true,\n                      posterEnabled: false,\n                      srcFile: new URL(\"https://framerusercontent.com/modules/assets/qSyBY99JBm4tuLMuEq0vFu7aQ~08-1vSmeX3qmvH5EJkBRQLQBqmddRO7fY0ljZ0WTQig.mp4\").href,\n                      srcType: \"Upload\",\n                      srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n                      startTime: 0,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      topLeftRadius: 0,\n                      topRightRadius: 0,\n                      volume: 25,\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-pnrvv8\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h3\", {\n                        className: \"framer-styles-preset-yfj5w5\",\n                        \"data-styles-preset\": \"k1LVI2ppa\",\n                        children: \"ROI Calculator\"\n                      })\n                    }),\n                    className: \"framer-x9d0ze\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-17a3c0i\",\n                        \"data-styles-preset\": \"Og9MYMTAg\",\n                        children: \"An interactive ROI calculator that we built to provide cost savings and time saved for installing our QMS system.\"\n                      })\n                    }),\n                    className: \"framer-18i83fj\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-tswcm6\",\n                    children: /*#__PURE__*/_jsx(Link, {\n                      href: \"https://www.mastercontrol.com/library/roi-calculator/quality/?roi\",\n                      children: /*#__PURE__*/_jsx(motion.a, {\n                        className: \"framer-974h54 framer-1li1ruu\",\n                        \"data-framer-name\": \"Button\",\n                        name: \"Button\",\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                                \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                                \"--framer-font-size\": \"14px\",\n                                \"--framer-font-weight\": \"700\",\n                                \"--framer-text-alignment\": \"center\",\n                                \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                              },\n                              children: \"See it here\"\n                            })\n                          }),\n                          className: \"framer-1cn25da\",\n                          fonts: [\"GF;Inter-700\"],\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        })\n                      })\n                    })\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-oxfcp7\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1msjvlr\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h3\", {\n                        className: \"framer-styles-preset-yfj5w5\",\n                        \"data-styles-preset\": \"k1LVI2ppa\",\n                        children: \"Updated navigation and entire IA\"\n                      })\n                    }),\n                    className: \"framer-1dqortt\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-17a3c0i\",\n                        \"data-styles-preset\": \"Og9MYMTAg\",\n                        children: \"We overhauled the entire site but we spent a good amount of time on how users move through the site. With 3000+ pages it proived to be a real challenge. But in the end we saw stronger click through and much deeper page engagement.\"\n                      })\n                    }),\n                    className: \"framer-1hcjnz9\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-vc0x9j\",\n                    children: /*#__PURE__*/_jsx(Link, {\n                      href: \"https://www.mastercontrol.com/\",\n                      children: /*#__PURE__*/_jsx(motion.a, {\n                        className: \"framer-ud5hxv framer-1li1ruu\",\n                        \"data-framer-name\": \"Button\",\n                        name: \"Button\",\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                                \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                                \"--framer-font-size\": \"14px\",\n                                \"--framer-font-weight\": \"700\",\n                                \"--framer-text-alignment\": \"center\",\n                                \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                              },\n                              children: \"See it here\"\n                            })\n                          }),\n                          className: \"framer-v0g819\",\n                          fonts: [\"GF;Inter-700\"],\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        })\n                      })\n                    })\n                  })]\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-scm5c8\",\n                  \"data-framer-name\": \"Image\",\n                  name: \"Image\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-y8vair-container\",\n                    children: /*#__PURE__*/_jsx(Video, {\n                      backgroundColor: \"rgba(0, 0, 0, 0)\",\n                      borderRadius: 0,\n                      bottomLeftRadius: 0,\n                      bottomRightRadius: 0,\n                      controls: false,\n                      height: \"100%\",\n                      id: \"smGPeGFDt\",\n                      isMixedBorderRadius: false,\n                      layoutId: \"smGPeGFDt\",\n                      loop: true,\n                      muted: true,\n                      objectFit: \"cover\",\n                      playing: true,\n                      posterEnabled: false,\n                      srcFile: new URL(\"https://framerusercontent.com/modules/assets/HtgVb0K17ySNHDHs1rQ1xCFVcM~FL3GWV3Hq1yLH6uEiaytIcM1KAYurjjlYmvRj8wkvCA.mp4\").href,\n                      srcType: \"Upload\",\n                      srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n                      startTime: 0,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      topLeftRadius: 0,\n                      topRightRadius: 0,\n                      volume: 25,\n                      width: \"100%\"\n                    })\n                  })\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1kw072b\",\n            children: /*#__PURE__*/_jsx(ContainerWithFX, {\n              __framer__animate: {\n                transition: transition1\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation,\n              __framer__exit: animation1,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-1pqcewh-container\",\n              transformTemplate: transformTemplate1,\n              children: /*#__PURE__*/_jsx(Arc, {\n                alignmentBaseline: \"bottom\",\n                animate: true,\n                animateDuration: 7,\n                animateEnd: 150,\n                animateStart: -50,\n                color: \"rgb(153, 153, 153)\",\n                cylinderHeight: 0,\n                flip: false,\n                font: {\n                  font: \"Inter\",\n                  fontSize: 12,\n                  fontWeight: 600,\n                  letterSpacing: 4,\n                  wordSpacing: 4\n                },\n                height: \"100%\",\n                id: \"C2lYjuzA2\",\n                layoutId: \"C2lYjuzA2\",\n                rotate: true,\n                rotateSpeed: 5,\n                slots: [],\n                startOffset: 0,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                text: \"\u2726 THANK YOU \u2726 FOR VISITING\",\n                type: \"circle\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.footer, {\n            className: \"framer-1k0174p\",\n            \"data-border\": true,\n            \"data-framer-name\": \"Footer\",\n            name: \"Footer\",\n            children: [/*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-gjn114\",\n              \"data-framer-name\": \"Horizontal\",\n              name: \"Horizontal\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-e48hs9\",\n                \"data-framer-name\": \"Vertical\",\n                name: \"Vertical\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7T2xkIFN0YW5kYXJkIFRULXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Old Standard TT\", \"Old Standard TT Placeholder\", serif',\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: /*#__PURE__*/_jsx(Link, {\n                        href: {\n                          webPageId: \"jSIPeB6VG\"\n                        },\n                        openInNewTab: false,\n                        smoothScroll: false,\n                        children: /*#__PURE__*/_jsx(\"a\", {\n                          className: \"framer-styles-preset-1uverbm\",\n                          \"data-styles-preset\": \"iOV2cR3eR\",\n                          children: \"Portfolio\"\n                        })\n                      })\n                    })\n                  }),\n                  className: \"framer-151q3ui\",\n                  fonts: [\"GF;Old Standard TT-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-3vvdrs\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7T2xkIFN0YW5kYXJkIFRULXJlZ3VsYXI=\",\n                          \"--framer-font-family\": '\"Old Standard TT\", \"Old Standard TT Placeholder\", serif',\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: /*#__PURE__*/_jsx(Link, {\n                          href: {\n                            webPageId: \"augiA20Il\"\n                          },\n                          openInNewTab: false,\n                          smoothScroll: false,\n                          children: /*#__PURE__*/_jsx(\"a\", {\n                            className: \"framer-styles-preset-1uverbm\",\n                            \"data-styles-preset\": \"iOV2cR3eR\",\n                            children: \"Home\"\n                          })\n                        })\n                      })\n                    }),\n                    className: \"framer-16l4jsu\",\n                    fonts: [\"GF;Old Standard TT-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7T2xkIFN0YW5kYXJkIFRULXJlZ3VsYXI=\",\n                          \"--framer-font-family\": '\"Old Standard TT\", \"Old Standard TT Placeholder\", serif',\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: /*#__PURE__*/_jsx(Link, {\n                          href: {\n                            webPageId: \"MqrfXGNQH\"\n                          },\n                          openInNewTab: false,\n                          smoothScroll: false,\n                          children: /*#__PURE__*/_jsx(\"a\", {\n                            className: \"framer-styles-preset-1uverbm\",\n                            \"data-styles-preset\": \"iOV2cR3eR\",\n                            children: \"About\"\n                          })\n                        })\n                      })\n                    }),\n                    className: \"framer-14jmlyo\",\n                    fonts: [\"GF;Old Standard TT-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-14wiqyi\",\n                \"data-framer-name\": \"Vertical\",\n                name: \"Vertical\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7T2xkIFN0YW5kYXJkIFRULXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Old Standard TT\", \"Old Standard TT Placeholder\", serif',\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: /*#__PURE__*/_jsx(Link, {\n                        href: {\n                          webPageId: \"R0doICqDC\"\n                        },\n                        openInNewTab: false,\n                        smoothScroll: false,\n                        children: /*#__PURE__*/_jsx(\"a\", {\n                          className: \"framer-styles-preset-1uverbm\",\n                          \"data-styles-preset\": \"iOV2cR3eR\",\n                          children: \"Filevine\"\n                        })\n                      })\n                    })\n                  }),\n                  className: \"framer-vvnvbr\",\n                  fonts: [\"GF;Old Standard TT-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1gpqt26\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7T2xkIFN0YW5kYXJkIFRULXJlZ3VsYXI=\",\n                          \"--framer-font-family\": '\"Old Standard TT\", \"Old Standard TT Placeholder\", serif',\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: /*#__PURE__*/_jsx(Link, {\n                          href: {\n                            webPageId: \"gQwPle5hX\"\n                          },\n                          openInNewTab: false,\n                          smoothScroll: false,\n                          children: /*#__PURE__*/_jsx(\"a\", {\n                            className: \"framer-styles-preset-1uverbm\",\n                            \"data-styles-preset\": \"iOV2cR3eR\",\n                            children: \"Mastercontrol\"\n                          })\n                        })\n                      })\n                    }),\n                    className: \"framer-tjk9ow\",\n                    fonts: [\"GF;Old Standard TT-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7T2xkIFN0YW5kYXJkIFRULXJlZ3VsYXI=\",\n                          \"--framer-font-family\": '\"Old Standard TT\", \"Old Standard TT Placeholder\", serif',\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: /*#__PURE__*/_jsx(Link, {\n                          href: {\n                            webPageId: \"CbDSKMDJT\"\n                          },\n                          openInNewTab: false,\n                          smoothScroll: false,\n                          children: /*#__PURE__*/_jsx(\"a\", {\n                            className: \"framer-styles-preset-1uverbm\",\n                            \"data-styles-preset\": \"iOV2cR3eR\",\n                            children: \"VoiceSignals\"\n                          })\n                        })\n                      })\n                    }),\n                    className: \"framer-fpfxta\",\n                    fonts: [\"GF;Old Standard TT-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              })]\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-d8n032\",\n              \"data-border\": true,\n              \"data-framer-name\": \"Copyright\",\n              name: \"Copyright\",\n              children: [/*#__PURE__*/_jsx(Container, {\n                className: \"framer-1n5j2ei-container\",\n                children: /*#__PURE__*/_jsx(ShapesBig, {\n                  angle: 315,\n                  color: \"rgb(0, 153, 255)\",\n                  endColor: \"rgb(27, 154, 170)\",\n                  hasColor: false,\n                  height: \"100%\",\n                  id: \"jv1Eg8buk\",\n                  layoutId: \"jv1Eg8buk\",\n                  paths: 1,\n                  startColor: \"rgb(0, 0, 0)\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1ruzzq4\",\n                \"data-framer-name\": \"Icons\",\n                name: \"Icons\",\n                children: [/*#__PURE__*/_jsx(Link, {\n                  href: \"https://twitter.com/lunchmob?lang=en\",\n                  children: /*#__PURE__*/_jsx(SVG, {\n                    as: \"a\",\n                    className: \"framer-zygryb framer-1li1ruu\",\n                    \"data-framer-name\": \"Twitter\",\n                    layout: \"position\",\n                    name: \"Twitter\",\n                    opacity: 1,\n                    svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 0 0 L 32 0 L 32 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 30.713 9.712 L 26.938 13.475 C 26.188 22.212 18.813 29 10 29 C 8.188 29 6.688 28.712 5.55 28.15 C 4.638 27.687 4.263 27.2 4.163 27.05 C 3.995 26.795 3.953 26.478 4.047 26.189 C 4.142 25.899 4.364 25.668 4.65 25.562 C 4.675 25.55 7.625 24.425 9.538 22.262 C 8.351 21.418 7.309 20.388 6.45 19.212 C 4.738 16.887 2.925 12.85 4.013 6.825 C 4.082 6.46 4.346 6.163 4.7 6.05 C 5.055 5.934 5.446 6.025 5.713 6.287 C 5.75 6.337 9.913 10.437 15 11.762 L 15 11 C 15.01 9.399 15.656 7.867 16.795 6.742 C 17.934 5.617 19.474 4.99 21.075 5 C 23.192 5.03 25.137 6.169 26.2 8 L 30 8 C 30.404 7.999 30.769 8.24 30.925 8.612 C 31.072 8.989 30.989 9.417 30.713 9.712 Z\" fill=\"#000000\"></path></svg>',\n                    svgContentId: 2742414579,\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(SVG, {\n                  className: \"framer-198sfw9\",\n                  \"data-framer-name\": \"Instagram\",\n                  layout: \"position\",\n                  name: \"Instagram\",\n                  opacity: 1,\n                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 0 0 L 32 0 L 32 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 12 16 C 12 13.791 13.791 12 16 12 C 18.209 12 20 13.791 20 16 C 20 18.209 18.209 20 16 20 C 13.791 20 12 18.209 12 16 Z\" fill=\"#000000\"></path><path d=\"M 21.5 3.5 L 10.5 3.5 C 6.634 3.5 3.5 6.634 3.5 10.5 L 3.5 21.5 C 3.5 25.366 6.634 28.5 10.5 28.5 L 21.5 28.5 C 25.366 28.5 28.5 25.366 28.5 21.5 L 28.5 10.5 C 28.5 6.634 25.366 3.5 21.5 3.5 Z M 16 22 C 12.686 22 10 19.314 10 16 C 10 12.686 12.686 10 16 10 C 19.314 10 22 12.686 22 16 C 22 19.314 19.314 22 16 22 Z M 22.5 11 C 21.672 11 21 10.328 21 9.5 C 21 8.672 21.672 8 22.5 8 C 23.328 8 24 8.672 24 9.5 C 24 10.328 23.328 11 22.5 11 Z\" fill=\"#000000\"></path></svg>',\n                  svgContentId: 4226844106,\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(SVG, {\n                  className: \"framer-1qhczos\",\n                  \"data-framer-name\": \"Facebook\",\n                  layout: \"position\",\n                  name: \"Facebook\",\n                  opacity: 1,\n                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 29 16 C 28.992 22.575 24.083 28.112 17.556 28.907 C 17.414 28.924 17.272 28.878 17.166 28.783 C 17.059 28.687 16.999 28.55 17 28.407 L 17 19 L 20 19 C 20.277 19.001 20.542 18.886 20.732 18.684 C 20.921 18.482 21.018 18.21 21 17.934 C 20.954 17.4 20.504 16.993 19.969 17 L 17 17 L 17 14 C 17 12.895 17.895 12 19 12 L 21 12 C 21.277 12.001 21.542 11.886 21.732 11.684 C 21.921 11.482 22.018 11.21 22 10.934 C 21.954 10.399 21.503 9.991 20.966 10 L 19 10 C 16.791 10 15 11.791 15 14 L 15 17 L 12 17 C 11.723 16.999 11.458 17.114 11.268 17.316 C 11.079 17.518 10.982 17.79 11 18.066 C 11.046 18.601 11.497 19.009 12.034 19 L 15 19 L 15 28.41 C 15.001 28.553 14.941 28.689 14.835 28.785 C 14.729 28.88 14.587 28.926 14.445 28.91 C 7.731 28.092 2.762 22.27 3.009 15.511 C 3.259 8.761 8.726 3.274 15.481 3.011 C 19.015 2.874 22.452 4.181 25.002 6.631 C 27.552 9.081 28.996 12.464 29 16 Z\" fill=\"#000000\"></path></svg>',\n                  svgContentId: 2453546705,\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(SVG, {\n                  className: \"framer-1g4klvd\",\n                  \"data-framer-name\": \"Twitch\",\n                  layout: \"position\",\n                  name: \"Twitch\",\n                  opacity: 1,\n                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 26 4 L 6 4 C 4.895 4 4 4.895 4 6 L 4 24 C 4 25.105 4.895 26 6 26 L 8 26 L 8 30 C 8 30.388 8.224 30.741 8.576 30.906 C 8.927 31.071 9.342 31.017 9.64 30.769 L 15.363 26 L 20.638 26 C 21.106 26 21.559 25.836 21.919 25.536 L 27.28 21.067 C 27.737 20.688 28.001 20.125 28 19.531 L 28 6 C 28 4.895 27.105 4 26 4 Z M 16 17 C 16 17.552 15.552 18 15 18 C 14.448 18 14 17.552 14 17 L 14 11 C 14 10.448 14.448 10 15 10 C 15.552 10 16 10.448 16 11 Z M 22 17 C 22 17.552 21.552 18 21 18 C 20.448 18 20 17.552 20 17 L 20 11 C 20 10.448 20.448 10 21 10 C 21.552 10 22 10.448 22 11 Z\" fill=\"#000000\"></path></svg>',\n                  svgContentId: 2831069030,\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7T2xkIFN0YW5kYXJkIFRULXJlZ3VsYXI=\",\n                      \"--framer-font-family\": '\"Old Standard TT\", \"Old Standard TT Placeholder\", serif',\n                      \"--framer-line-height\": \"1.5em\",\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: \"\\xa9 2023 ExperiencePro\"\n                  })\n                }),\n                className: \"framer-1eejmu2\",\n                fonts: [\"GF;Old Standard TT-regular\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            })]\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-afAji [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; } }\", `.${metadata.bodyClassName} { background: #FFFFFF; }`, \".framer-afAji .framer-1li1ruu { display: block; }\", \".framer-afAji .framer-1v650os { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1440px; }\", \".framer-afAji .framer-btzrwq-container { flex: none; height: auto; position: sticky; width: 100%; will-change: transform; z-index: 1; }\", \".framer-afAji .framer-21zhie { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 757px; justify-content: center; min-height: 757px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-1p38hjz { aspect-ratio: 1.9722222222222223 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 416px); position: relative; width: 822px; }\", \".framer-afAji .framer-a9jlmp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: 1000px; z-index: 1; }\", \".framer-afAji .framer-135gh6r { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-afAji .framer-cgzgdj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-1x7xkw6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-8nugea { aspect-ratio: 8.333333333333334 / 1; flex: none; height: 25px; position: relative; width: var(--framer-aspect-ratio-supported, 208px); }\", \".framer-afAji .framer-to8o6v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-afAji .framer-z5xe14 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 226px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-1rljaj5, .framer-afAji .framer-pzhy99 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-afAji .framer-n8cck4 { flex: none; height: 716px; overflow: hidden; position: relative; width: 80%; }\", \".framer-afAji .framer-1kk43u7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 716px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(50.00000000000002% - 715.5px / 2); width: 100%; }\", \".framer-afAji .framer-1fxj2on-container { flex: none; height: 716px; position: relative; width: 100%; }\", \".framer-afAji .framer-1s8hy4b, .framer-afAji .framer-1pfng9d, .framer-afAji .framer-15h3p6u, .framer-afAji .framer-jzab3b, .framer-afAji .framer-gjtdq3, .framer-afAji .framer-1e4cx12, .framer-afAji .framer-1hdtigq, .framer-afAji .framer-1q3lfhb { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 720px); overflow: visible; position: relative; width: 1280px; }\", '.framer-afAji .framer-1putata { align-content: center; align-items: center; background: linear-gradient(106deg, #211e52 0%, var(--token-59508b6b-f886-4590-9de6-910c60489b2c, rgb(57, 151, 165)) /* {\"name\":\"Mastercontrol-teal\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 110px; justify-content: space-between; overflow: visible; padding: 50px 50px 50px 50px; position: relative; width: 100%; }', \".framer-afAji .framer-m7ipsv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; min-width: 108px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-afAji .framer-1b65n0j, .framer-afAji .framer-1cn25da, .framer-afAji .framer-v0g819 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-afAji .framer-u3svnz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-2ok0h { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-afAji .framer-1swbm8o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-10e0slv { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; background: linear-gradient(180deg, #adbbc7 0%, rgb(83, 103, 121) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 167px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; will-change: transform; }\", \".framer-afAji .framer-1c6t9w6-container { flex: none; height: 316px; position: relative; width: 455px; }\", \".framer-afAji .framer-pnrvv8, .framer-afAji .framer-1msjvlr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-afAji .framer-x9d0ze, .framer-afAji .framer-1dqortt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\", \".framer-afAji .framer-18i83fj, .framer-afAji .framer-1hcjnz9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\", \".framer-afAji .framer-tswcm6, .framer-afAji .framer-vc0x9j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-afAji .framer-974h54, .framer-afAji .framer-ud5hxv { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: min-content; }\", \".framer-afAji .framer-oxfcp7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-scm5c8 { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; background: linear-gradient(180deg, rgba(57, 151, 165, 0.32) 0%, rgba(57, 151, 165, 0.7) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 167px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; will-change: transform; }\", \".framer-afAji .framer-y8vair-container { flex: none; height: 314px; position: relative; width: 100%; }\", \".framer-afAji .framer-1kw072b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 278px; justify-content: flex-start; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-1pqcewh-container { flex: none; height: 188px; position: relative; transform: perspective(1200px); width: 1440px; }\", \".framer-afAji .framer-1k0174p { --border-bottom-width: 0px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-afAji .framer-gjn114 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-e48hs9, .framer-afAji .framer-14wiqyi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 300px; }\", \".framer-afAji .framer-151q3ui, .framer-afAji .framer-16l4jsu, .framer-afAji .framer-14jmlyo, .framer-afAji .framer-vvnvbr, .framer-afAji .framer-tjk9ow, .framer-afAji .framer-fpfxta { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\", \".framer-afAji .framer-3vvdrs, .framer-afAji .framer-1gpqt26 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-afAji .framer-d8n032 { --border-bottom-width: 0px; --border-color: #f2f2f2; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-afAji .framer-1n5j2ei-container { flex: none; height: 80px; position: relative; width: 80px; }\", \".framer-afAji .framer-1ruzzq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-afAji .framer-zygryb { flex: none; height: 32px; position: relative; text-decoration: none; width: 32px; }\", \".framer-afAji .framer-198sfw9, .framer-afAji .framer-1qhczos, .framer-afAji .framer-1g4klvd { flex: none; height: 32px; position: relative; width: 32px; }\", \".framer-afAji .framer-1eejmu2 { --framer-link-hover-text-color: rgba(153, 153, 153, 0.6); --framer-link-text-decoration: none; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-afAji .framer-1v650os, .framer-afAji .framer-21zhie, .framer-afAji .framer-135gh6r, .framer-afAji .framer-cgzgdj, .framer-afAji .framer-1x7xkw6, .framer-afAji .framer-z5xe14, .framer-afAji .framer-1kk43u7, .framer-afAji .framer-m7ipsv, .framer-afAji .framer-u3svnz, .framer-afAji .framer-2ok0h, .framer-afAji .framer-1swbm8o, .framer-afAji .framer-10e0slv, .framer-afAji .framer-pnrvv8, .framer-afAji .framer-tswcm6, .framer-afAji .framer-974h54, .framer-afAji .framer-oxfcp7, .framer-afAji .framer-1msjvlr, .framer-afAji .framer-vc0x9j, .framer-afAji .framer-ud5hxv, .framer-afAji .framer-scm5c8, .framer-afAji .framer-1kw072b, .framer-afAji .framer-1k0174p, .framer-afAji .framer-gjn114, .framer-afAji .framer-e48hs9, .framer-afAji .framer-3vvdrs, .framer-afAji .framer-14wiqyi, .framer-afAji .framer-1gpqt26, .framer-afAji .framer-d8n032, .framer-afAji .framer-1ruzzq4 { gap: 0px; } .framer-afAji .framer-1v650os > *, .framer-afAji .framer-21zhie > *, .framer-afAji .framer-135gh6r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-afAji .framer-1v650os > :first-child, .framer-afAji .framer-21zhie > :first-child, .framer-afAji .framer-135gh6r > :first-child, .framer-afAji .framer-cgzgdj > :first-child, .framer-afAji .framer-m7ipsv > :first-child, .framer-afAji .framer-2ok0h > :first-child, .framer-afAji .framer-10e0slv > :first-child, .framer-afAji .framer-pnrvv8 > :first-child, .framer-afAji .framer-1msjvlr > :first-child, .framer-afAji .framer-scm5c8 > :first-child, .framer-afAji .framer-1kw072b > :first-child, .framer-afAji .framer-1k0174p > :first-child, .framer-afAji .framer-e48hs9 > :first-child, .framer-afAji .framer-3vvdrs > :first-child, .framer-afAji .framer-14wiqyi > :first-child, .framer-afAji .framer-1gpqt26 > :first-child, .framer-afAji .framer-d8n032 > :first-child { margin-top: 0px; } .framer-afAji .framer-1v650os > :last-child, .framer-afAji .framer-21zhie > :last-child, .framer-afAji .framer-135gh6r > :last-child, .framer-afAji .framer-cgzgdj > :last-child, .framer-afAji .framer-m7ipsv > :last-child, .framer-afAji .framer-2ok0h > :last-child, .framer-afAji .framer-10e0slv > :last-child, .framer-afAji .framer-pnrvv8 > :last-child, .framer-afAji .framer-1msjvlr > :last-child, .framer-afAji .framer-scm5c8 > :last-child, .framer-afAji .framer-1kw072b > :last-child, .framer-afAji .framer-1k0174p > :last-child, .framer-afAji .framer-e48hs9 > :last-child, .framer-afAji .framer-3vvdrs > :last-child, .framer-afAji .framer-14wiqyi > :last-child, .framer-afAji .framer-1gpqt26 > :last-child, .framer-afAji .framer-d8n032 > :last-child { margin-bottom: 0px; } .framer-afAji .framer-cgzgdj > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-afAji .framer-1x7xkw6 > *, .framer-afAji .framer-gjn114 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-afAji .framer-1x7xkw6 > :first-child, .framer-afAji .framer-z5xe14 > :first-child, .framer-afAji .framer-1kk43u7 > :first-child, .framer-afAji .framer-u3svnz > :first-child, .framer-afAji .framer-1swbm8o > :first-child, .framer-afAji .framer-tswcm6 > :first-child, .framer-afAji .framer-974h54 > :first-child, .framer-afAji .framer-oxfcp7 > :first-child, .framer-afAji .framer-vc0x9j > :first-child, .framer-afAji .framer-ud5hxv > :first-child, .framer-afAji .framer-gjn114 > :first-child, .framer-afAji .framer-1ruzzq4 > :first-child { margin-left: 0px; } .framer-afAji .framer-1x7xkw6 > :last-child, .framer-afAji .framer-z5xe14 > :last-child, .framer-afAji .framer-1kk43u7 > :last-child, .framer-afAji .framer-u3svnz > :last-child, .framer-afAji .framer-1swbm8o > :last-child, .framer-afAji .framer-tswcm6 > :last-child, .framer-afAji .framer-974h54 > :last-child, .framer-afAji .framer-oxfcp7 > :last-child, .framer-afAji .framer-vc0x9j > :last-child, .framer-afAji .framer-ud5hxv > :last-child, .framer-afAji .framer-gjn114 > :last-child, .framer-afAji .framer-1ruzzq4 > :last-child { margin-right: 0px; } .framer-afAji .framer-z5xe14 > * { margin: 0px; margin-left: calc(226px / 2); margin-right: calc(226px / 2); } .framer-afAji .framer-1kk43u7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-afAji .framer-m7ipsv > *, .framer-afAji .framer-1kw072b > *, .framer-afAji .framer-3vvdrs > *, .framer-afAji .framer-1gpqt26 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-afAji .framer-u3svnz > *, .framer-afAji .framer-974h54 > *, .framer-afAji .framer-ud5hxv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-afAji .framer-2ok0h > *, .framer-afAji .framer-1k0174p > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-afAji .framer-1swbm8o > *, .framer-afAji .framer-oxfcp7 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-afAji .framer-10e0slv > *, .framer-afAji .framer-pnrvv8 > *, .framer-afAji .framer-1msjvlr > *, .framer-afAji .framer-scm5c8 > *, .framer-afAji .framer-d8n032 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-afAji .framer-tswcm6 > *, .framer-afAji .framer-vc0x9j > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-afAji .framer-e48hs9 > *, .framer-afAji .framer-14wiqyi > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-afAji .framer-1ruzzq4 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\", \"@media (min-width: 1440px) { .framer-afAji .hidden-1v650os { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1439px) { .framer-afAji .hidden-kh1nof { display: none !important; } .${metadata.bodyClassName} { background: #FFFFFF; } .framer-afAji .framer-1v650os { height: 2712px; width: 810px; } .framer-afAji .framer-21zhie { height: 500px; min-height: 500px; width: 810px; } .framer-afAji .framer-1p38hjz { height: var(--framer-aspect-ratio-supported, 249px); width: 492px; } .framer-afAji .framer-a9jlmp { bottom: 220px; left: 91px; right: 91px; top: unset; transform: unset; width: unset; } .framer-afAji .framer-135gh6r { padding: 59px 59px 59px 59px; width: 809px; } .framer-afAji .framer-z5xe14 { gap: 58px; } .framer-afAji .framer-n8cck4 { height: 536px; width: 100%; } .framer-afAji .framer-1kk43u7 { bottom: 0px; height: unset; left: calc(50.00000000000002% - 723px / 2); top: 0px; width: 723px; } .framer-afAji .framer-1fxj2on-container { height: 402px; width: 100%; } .framer-afAji .framer-1putata { padding: 0px 50px 0px 50px; } .framer-afAji .framer-u3svnz { padding: 60px 40px 60px 40px; } .framer-afAji .framer-gjn114 { align-content: center; align-items: center; gap: 26px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-afAji .framer-z5xe14, .framer-afAji .framer-gjn114 { gap: 0px; } .framer-afAji .framer-z5xe14 > * { margin: 0px; margin-left: calc(58px / 2); margin-right: calc(58px / 2); } .framer-afAji .framer-z5xe14 > :first-child, .framer-afAji .framer-gjn114 > :first-child { margin-left: 0px; } .framer-afAji .framer-z5xe14 > :last-child, .framer-afAji .framer-gjn114 > :last-child { margin-right: 0px; } .framer-afAji .framer-gjn114 > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } }}`, `@media (max-width: 809px) { .framer-afAji .hidden-1jodgmi { display: none !important; } .${metadata.bodyClassName} { background: #FFFFFF; } .framer-afAji .framer-1v650os { height: 2712px; width: 482px; } .framer-afAji .framer-21zhie { height: 300px; min-height: 300px; width: 482px; } .framer-afAji .framer-1p38hjz { height: var(--framer-aspect-ratio-supported, 179px); width: 353px; } .framer-afAji .framer-a9jlmp { left: 51%; top: 49%; width: 380px; } .framer-afAji .framer-135gh6r { padding: 59px 59px 59px 59px; width: 484px; } .framer-afAji .framer-1x7xkw6 { gap: 36px; } .framer-afAji .framer-z5xe14 { flex-direction: column; gap: 58px; } .framer-afAji .framer-1rljaj5, .framer-afAji .framer-pzhy99, .framer-afAji .framer-10e0slv, .framer-afAji .framer-pnrvv8 { flex: none; width: 100%; } .framer-afAji .framer-n8cck4 { height: 389px; width: 100%; } .framer-afAji .framer-1kk43u7 { height: 381px; left: -1px; right: -1px; top: 0px; width: unset; } .framer-afAji .framer-1fxj2on-container { height: 302px; width: 86%; } .framer-afAji .framer-1putata { padding: 0px 50px 0px 50px; } .framer-afAji .framer-u3svnz { gap: 20px; padding: 60px 20px 60px 20px; } .framer-afAji .framer-2ok0h { gap: 60px; } .framer-afAji .framer-1swbm8o, .framer-afAji .framer-oxfcp7 { flex-direction: column; } .framer-afAji .framer-1msjvlr { flex: none; order: 1; width: 100%; } .framer-afAji .framer-scm5c8 { flex: none; order: 0; width: 100%; } .framer-afAji .framer-gjn114 { align-content: center; align-items: center; gap: 26px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-afAji .framer-1x7xkw6, .framer-afAji .framer-z5xe14, .framer-afAji .framer-u3svnz, .framer-afAji .framer-2ok0h, .framer-afAji .framer-1swbm8o, .framer-afAji .framer-oxfcp7, .framer-afAji .framer-gjn114 { gap: 0px; } .framer-afAji .framer-1x7xkw6 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-afAji .framer-1x7xkw6 > :first-child, .framer-afAji .framer-u3svnz > :first-child, .framer-afAji .framer-gjn114 > :first-child { margin-left: 0px; } .framer-afAji .framer-1x7xkw6 > :last-child, .framer-afAji .framer-u3svnz > :last-child, .framer-afAji .framer-gjn114 > :last-child { margin-right: 0px; } .framer-afAji .framer-z5xe14 > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } .framer-afAji .framer-z5xe14 > :first-child, .framer-afAji .framer-2ok0h > :first-child, .framer-afAji .framer-1swbm8o > :first-child, .framer-afAji .framer-oxfcp7 > :first-child { margin-top: 0px; } .framer-afAji .framer-z5xe14 > :last-child, .framer-afAji .framer-2ok0h > :last-child, .framer-afAji .framer-1swbm8o > :last-child, .framer-afAji .framer-oxfcp7 > :last-child { margin-bottom: 0px; } .framer-afAji .framer-u3svnz > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-afAji .framer-2ok0h > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-afAji .framer-1swbm8o > *, .framer-afAji .framer-oxfcp7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-afAji .framer-gjn114 > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicHeight 4203\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicWidth 1440\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Eis5h2BXo\":{\"layout\":[\"fixed\",\"fixed\"]},\"dbIZj2VPD\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                */\nconst FramergQwPle5hX = withCSS(Component, css, \"framer-afAji\");\nexport default FramergQwPle5hX;\nFramergQwPle5hX.displayName = \"Mastercontrol\";\nFramergQwPle5hX.defaultProps = {\n  height: 4203,\n  width: 1440\n};\naddFonts(FramergQwPle5hX, [{\n  family: \"Orelega One\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/gQwPle5hX:default\",\n    url: \"https://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Old Standard TT\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/gQwPle5hX:default\",\n    url: \"https://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Inter\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/gQwPle5hX:default\",\n    url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\",\n  weight: \"700\"\n}, ...NavbarLogoLightFonts, ...CarouselFonts, ...VideoFonts, ...ArcFonts, ...ShapesBigFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramergQwPle5hX\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"1440\",\n        \"framerIntrinsicHeight\": \"4203\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Eis5h2BXo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dbIZj2VPD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerResponsiveScreen\": \"\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["Arc", "withCSS", "props", "hasChildren", "j", "isCanvas", "RenderTarget", "showCustomPath", "isCircle", "cylinder", "path", "createPath", "childPath", "viewBox", "firstChild", "getFirstChild", "svgChild", "svgChildCanvas", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "svgString", "On", "canvasFrame", "attributes", "element", "splitAndReplace", "attributes1", "element1", "id", "murmur2", "alignmentValue", "motion", "Arc_default", "addPropertyControls", "ControlType", "type", "rotate", "slots", "child", "string", "flip", "cylinderTop", "cylinderBottom", "NavbarLogoLightFonts", "getFonts", "tnMC6bXKK_default", "CarouselFonts", "Carousel", "VideoFonts", "Video", "ArcFonts", "Arc_default", "ContainerWithFX", "withFX", "Container", "ShapesBigFonts", "ShapesBig", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "transformTemplate", "_", "t", "animation", "transition1", "animation1", "transformTemplate1", "metadata", "gQwPle5hX_default", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "tnMC6bXKK_default", "SVG", "RichText", "x", "Carousel", "Image2", "Video", "Link", "ContainerWithFX", "Arc_default", "ShapesBig", "css", "FramergQwPle5hX", "withCSS", "addFonts", "NavbarLogoLightFonts", "CarouselFonts", "VideoFonts", "ArcFonts", "ShapesBigFonts", "fonts", "__FramerMetadata__"]
}
