{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/9WUw9gRzGVkLH3oAc83X/taplh7bEV5PThqt7HPod/cB7mWkA5v.js", "ssg:https://framerusercontent.com/modules/pZkzoDvDB84rz5S3tKPs/yHbGKpQsojRXrdcWPw2i/LbQTPKBK_.js"],
  "sourcesContent": ["import { MotionValue } from \"framer\"; // Basic MotionValue check\nexport const isMotionValue = v => v instanceof MotionValue;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"isMotionValue\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { useMotionValueEvent } from \"framer-motion\";\nimport { useRef, useEffect, useMemo, useCallback, memo } from \"react\";\nimport { ControlType, addPropertyControls, useIsInCurrentNavigationTarget } from \"framer\";\nimport { useOnEnter, useOnExit, defaultEvents, useIsOnCanvas, useIsBrowserSafari, useRadius, borderRadiusControl } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { useAutoMotionValue } from \"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";\nvar ObjectFitType;\n(function (ObjectFitType) {\n  ObjectFitType[\"Fill\"] = \"fill\";\n  ObjectFitType[\"Contain\"] = \"contain\";\n  ObjectFitType[\"Cover\"] = \"cover\";\n  ObjectFitType[\"None\"] = \"none\";\n  ObjectFitType[\"ScaleDown\"] = \"scale-down\";\n})(ObjectFitType || (ObjectFitType = {}));\nvar SrcType;\n(function (SrcType) {\n  SrcType[\"Video\"] = \"Upload\";\n  SrcType[\"Url\"] = \"URL\";\n})(SrcType || (SrcType = {})); // Reduce renders\nfunction getProps(props) {\n  const {\n    width,\n    height,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    id,\n    children,\n    ...rest\n  } = props;\n  return rest;\n} /**\n  * VIDEO\n  *\n  * @framerIntrinsicWidth 200\n  * @framerIntrinsicHeight 112\n  *\n  * @framerSupportedLayoutWidth fixed\n  * @framerSupportedLayoutHeight any-prefer-fixed\n  */\nexport function Video(props) {\n  const newProps = getProps(props);\n  return /*#__PURE__*/_jsx(VideoMemo, {\n    ...newProps\n  });\n} /**\n  * For the useEffect hook to change progress of the video on state change.\n  * It was causing the video to restart on hydration\n  */\nlet isMountedAndReadyForProgressChanges = false;\nconst VideoMemo = /*#__PURE__*/memo(function VideoInner(props) {\n  const {\n    srcType,\n    srcFile,\n    srcUrl,\n    playing,\n    canvasPlay,\n    muted,\n    playsinline,\n    controls,\n    progress,\n    objectFit,\n    backgroundColor,\n    radius,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    isMixed,\n    onSeeked,\n    onPause,\n    onPlay,\n    onEnd,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    poster,\n    restartOnEnter,\n    posterEnabled,\n    startTime: startTimeProp,\n    volume,\n    loop\n  } = props;\n  const isInCurrentNavigationTarget = useIsInCurrentNavigationTarget();\n  const videoRef = useRef();\n  const isSafari = useIsBrowserSafari();\n  const requestingPlay = useRef(false);\n  const wasPausedOnLeave = useRef(null);\n  const wasEndedOnLeave = useRef(null);\n  const isOnCanvas = useIsOnCanvas();\n  const borderRadius = useRadius(props); // Video elements behave oddly at 100% duration\n  const startTime = useMemo(() => startTimeProp === 100 ? 99.9 : startTimeProp, [startTimeProp]);\n  const shouldPlay = !isOnCanvas || canvasPlay;\n  const autoPlay = useMemo(() => playing, []);\n  const isMuted = useMemo(() => isOnCanvas ? true : muted, [isOnCanvas, muted]);\n  const setProgress = useCallback(rawProgress => {\n    if (!videoRef.current) return;\n    const newProgress = (rawProgress === 1 ? .999 : rawProgress) * videoRef.current.duration;\n    const isAlreadySet = Math.abs(videoRef.current.currentTime - newProgress) < .1;\n    if (videoRef.current.duration > 0 && !isAlreadySet) {\n      videoRef.current.currentTime = newProgress;\n    }\n  }, []);\n  const play = useCallback(() => {\n    const isPlaying = videoRef.current.currentTime > 0 && videoRef.current.onplaying && !videoRef.current.paused && !videoRef.current.ended && videoRef.current.readyState > videoRef.current.HAVE_CURRENT_DATA;\n    if (!isPlaying && videoRef.current && !requestingPlay.current && isInCurrentNavigationTarget) {\n      requestingPlay.current = true;\n      videoRef.current.play().catch(e => {}) // It's likely fine, swallow error\n      .finally(() => requestingPlay.current = false);\n    }\n  }, []);\n  const pause = useCallback(() => {\n    if (!videoRef.current || requestingPlay.current) return;\n    videoRef.current.pause();\n  }, []); // Pause/play via props\n  useEffect(() => {\n    if (playing && shouldPlay) play();else pause();\n  }, [playing, canvasPlay]); // Change progress via prop\n  useEffect(() => {\n    if (isMountedAndReadyForProgressChanges) setProgress(startTime * .01);else isMountedAndReadyForProgressChanges = true;\n  }, [startTime, srcFile, srcUrl]);\n  const videoProgress = useAutoMotionValue(progress, {\n    transform: value => value * .01,\n    onChange: newValue => {\n      setProgress(newValue);\n    }\n  }); // Allow scrubbing with MotionValue\n  useMotionValueEvent(videoProgress, \"change\", latest => {\n    if (!isOnCanvas) setProgress(latest);\n  }); // (Prototyping) Checking if we need to play on navigation enter\n  useOnEnter(() => {\n    if (wasPausedOnLeave.current === null) return;\n    if (videoRef.current) {\n      // if (restartOnEnter) setProgress(0)\n      if (!wasEndedOnLeave && loop || !wasPausedOnLeave.current) play();\n    }\n  }); // (Prototyping) Pausing & saving playing state on navigation exit\n  useOnExit(() => {\n    if (videoRef.current) {\n      wasEndedOnLeave.current = videoRef.current.ended;\n      wasPausedOnLeave.current = videoRef.current.paused;\n      pause();\n    }\n  });\n  const src = useMemo(() => {\n    let fragment = \"\"; // if (\n    //     startTime > 0 &&\n    //     videoRef.current &&\n    //     !isNaN(videoRef.current.duration) &&\n    //     !isOnCanvas\n    // ) {\n    //     console.log(startTime, videoRef.current.duration)\n    //     fragment = `#t=${startTime * videoRef.current.duration}`\n    // }\n    if (srcType === SrcType.Url) return srcUrl + fragment;\n    if (srcType === SrcType.Video) return srcFile + fragment;\n  }, [srcType, srcFile, srcUrl, startTime]); // Autoplay via JS to work in Safari\n  useEffect(() => {\n    if (isSafari && videoRef.current && autoPlay) {\n      setTimeout(() => play(), 50);\n    }\n  }, []); // Volume Control\n  useEffect(() => {\n    if (videoRef.current && !muted) videoRef.current.volume = volume / 100;\n  }, [volume]); // When video is ready, set start-time, then autoplay if needed\n  const handleReady = () => {\n    if (videoRef.current && videoRef.current.currentTime < .3) setProgress(startTime * .01);\n    if (shouldPlay && videoRef.current && autoPlay) play();\n  };\n  return /*#__PURE__*/_jsx(\"video\", {\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    src: src,\n    loop: loop,\n    ref: videoRef,\n    onSeeked: e => {\n      return onSeeked === null || onSeeked === void 0 ? void 0 : onSeeked(e);\n    },\n    onPause: e => {\n      return onPause === null || onPause === void 0 ? void 0 : onPause(e);\n    },\n    onPlay: e => {\n      return onPlay === null || onPlay === void 0 ? void 0 : onPlay(e);\n    },\n    onEnded: e => {\n      return onEnd === null || onEnd === void 0 ? void 0 : onEnd(e);\n    },\n    autoPlay: autoPlay && shouldPlay,\n    poster: posterEnabled ? poster : undefined,\n    onLoadedData: handleReady,\n    controls: controls,\n    muted: isMuted,\n    playsInline: playsinline,\n    style: {\n      cursor: !!onClick ? \"pointer\" : \"auto\",\n      width: \"100%\",\n      height: \"100%\",\n      borderRadius,\n      display: \"block\",\n      objectFit: objectFit,\n      backgroundColor: backgroundColor,\n      objectPosition: \"50% 50%\"\n    }\n  });\n});\nVideo.displayName = \"Video\";\nVideo.defaultProps = {\n  srcType: SrcType.Url,\n  srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n  srcFile: \"\",\n  posterEnabled: false,\n  controls: false,\n  autoPlay: true,\n  canvasPlay: false,\n  loop: true,\n  muted: true,\n  playsinline: true,\n  restartOnEnter: false,\n  objectFit: ObjectFitType.Cover,\n  backgroundColor: \"rgba(0,0,0,0)\",\n  radius: 0,\n  volume: 25,\n  startTime: 0\n};\naddPropertyControls(Video, {\n  srcType: {\n    type: ControlType.Enum,\n    displaySegmentedControl: true,\n    title: \"Source\",\n    options: [SrcType.Url, SrcType.Video]\n  },\n  srcUrl: {\n    type: ControlType.String,\n    title: \" \",\n    placeholder: \"../example.mp4\",\n    hidden(props) {\n      return props.srcType === SrcType.Video;\n    },\n    description: \"Hosted video file URL. For Youtube, use the Youtube component.\"\n  },\n  srcFile: {\n    type: ControlType.File,\n    title: \" \",\n    allowedFileTypes: [\"mp4\"],\n    hidden(props) {\n      return props.srcType === SrcType.Url;\n    }\n  },\n  playing: {\n    type: ControlType.Boolean,\n    title: \"Playing\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  posterEnabled: {\n    type: ControlType.Boolean,\n    title: \"Poster\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  poster: {\n    type: ControlType.Image,\n    title: \" \",\n    hidden: ({\n      posterEnabled\n    }) => !posterEnabled\n  },\n  backgroundColor: {\n    type: ControlType.Color,\n    title: \"Background\"\n  },\n  ...borderRadiusControl,\n  startTime: {\n    title: \"Start Time\",\n    type: ControlType.Number,\n    min: 0,\n    max: 100,\n    step: .1,\n    unit: \"%\"\n  },\n  loop: {\n    type: ControlType.Boolean,\n    title: \"Loop\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  objectFit: {\n    type: ControlType.Enum,\n    title: \"Fit\",\n    options: [ObjectFitType.Cover, ObjectFitType.Fill, ObjectFitType.Contain, ObjectFitType.ScaleDown, ObjectFitType.None]\n  },\n  canvasPlay: {\n    type: ControlType.Boolean,\n    title: \"On Canvas\",\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n    hidden(props) {\n      return props.autoPlay === false;\n    }\n  },\n  // restartOnEnter: {\n  //     type: ControlType.Boolean,\n  //     title: \"On ReEnter\",\n  //     enabledTitle: \"Restart\",\n  //     disabledTitle: \"Resume\",\n  // },\n  controls: {\n    type: ControlType.Boolean,\n    title: \"Controls\",\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\"\n  },\n  muted: {\n    type: ControlType.Boolean,\n    title: \"Muted\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  volume: {\n    type: ControlType.Number,\n    max: 100,\n    min: 0,\n    unit: \"%\",\n    hidden: ({\n      muted\n    }) => muted\n  },\n  onEnd: {\n    type: ControlType.EventHandler\n  },\n  onSeeked: {\n    type: ControlType.EventHandler\n  },\n  onPause: {\n    type: ControlType.EventHandler\n  },\n  onPlay: {\n    type: ControlType.EventHandler\n  },\n  ...defaultEvents\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"VideoProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Video\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Video\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"any-prefer-fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerIntrinsicHeight\": \"112\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Video.map", "// Generated by Framer (d213f04)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, RichText, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/v1gaIFTNUJfwk2WOcVUS/b9J0s18a3twTTjDhaAGe/Abhqz6EA6.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/2oGYS96OBNl4hmWLg5cU/H8V9ipG8mFgaMhlE6zAh/KhF4til_G.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/bamGYZjpEg6s4pZC1eST/FIzulfDJ7mKYgry9MPGg/u9pyPeeb6.js\";\nconst cycleOrder = [\"tPpZDu7w5\", \"RcvhpSDL2\"];\nconst variantClassNames = {\n  RcvhpSDL2: \"framer-v-qr5p2c\",\n  tPpZDu7w5: \"framer-v-jt3w7w\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  \"Variant 1\": \"tPpZDu7w5\",\n  Primary: \"RcvhpSDL2\"\n};\nconst getProps = ({\n  amount,\n  height,\n  id,\n  text,\n  title,\n  width,\n  ...props\n}) => {\n  var ref, ref1, ref2, _variant, ref3;\n  return {\n    ...props,\n    kFrz75Uu0: (ref = amount !== null && amount !== void 0 ? amount : props.kFrz75Uu0) !== null && ref !== void 0 ? ref : \"93%\",\n    RCQ4g2WHq: (ref1 = text !== null && text !== void 0 ? text : props.RCQ4g2WHq) !== null && ref1 !== void 0 ? ref1 : \"South African business consulting firm Current Advisory features a slideshow banner made services. \",\n    s6HPbQ3tj: (ref2 = title !== null && title !== void 0 ? title : props.s6HPbQ3tj) !== null && ref2 !== void 0 ? ref2 : \"Data accuracy\",\n    variant: (ref3 = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref3 !== void 0 ? ref3 : \"tPpZDu7w5\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\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    kFrz75Uu0,\n    s6HPbQ3tj,\n    RCQ4g2WHq,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"tPpZDu7w5\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-SVDZk\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-jt3w7w\", className),\n          \"data-framer-name\": \"Variant 1\",\n          layoutDependency: layoutDependency,\n          layoutId: \"tPpZDu7w5\",\n          ref: ref,\n          style: {\n            backgroundColor: \"rgb(255, 255, 255)\",\n            borderBottomLeftRadius: 25,\n            borderBottomRightRadius: 25,\n            borderTopLeftRadius: 25,\n            borderTopRightRadius: 25,\n            boxShadow: \"4px 15px 45px 0px rgba(212, 211, 236, 0.3799999952316284)\",\n            ...style\n          },\n          variants: {\n            RcvhpSDL2: {\n              backgroundColor: \"var(--token-d00b0716-4ff9-4680-a2e9-7641ba4882ca, rgb(76, 61, 255))\"\n            }\n          },\n          ...addPropertyOverrides({\n            RcvhpSDL2: {\n              \"data-framer-name\": \"Primary\"\n            }\n          }, baseVariant, gestureVariant),\n          children: [/*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(motion.h3, {\n                className: \"framer-styles-preset-v72frm\",\n                \"data-styles-preset\": \"Abhqz6EA6\",\n                children: \"93%\"\n              })\n            }),\n            className: \"framer-1p3v58a\",\n            \"data-framer-name\": \"Amount\",\n            layoutDependency: layoutDependency,\n            layoutId: \"N7pqFQGql\",\n            style: {\n              \"--framer-paragraph-spacing\": \"0px\"\n            },\n            text: kFrz75Uu0,\n            variants: {\n              RcvhpSDL2: {\n                \"--extracted-a0htzi\": \"var(--token-c740308f-7884-427b-83d1-909b8af9e548, rgb(255, 255, 255))\"\n              }\n            },\n            verticalAlignment: \"top\",\n            withExternalLayout: true,\n            ...addPropertyOverrides({\n              RcvhpSDL2: {\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.h3, {\n                    className: \"framer-styles-preset-v72frm\",\n                    \"data-styles-preset\": \"Abhqz6EA6\",\n                    style: {\n                      \"--framer-text-color\": \"var(--extracted-a0htzi)\"\n                    },\n                    children: \"93%\"\n                  })\n                })\n              }\n            }, baseVariant, gestureVariant)\n          }), /*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(motion.h3, {\n                className: \"framer-styles-preset-1brj5yn\",\n                \"data-styles-preset\": \"u9pyPeeb6\",\n                children: \"Data accuracy\"\n              })\n            }),\n            className: \"framer-1mxbohl\",\n            \"data-framer-name\": \"Title\",\n            layoutDependency: layoutDependency,\n            layoutId: \"cGIuj1gZN\",\n            style: {\n              \"--framer-paragraph-spacing\": \"0px\"\n            },\n            text: s6HPbQ3tj,\n            variants: {\n              RcvhpSDL2: {\n                \"--extracted-a0htzi\": \"var(--token-c740308f-7884-427b-83d1-909b8af9e548, rgb(255, 255, 255))\"\n              }\n            },\n            verticalAlignment: \"top\",\n            withExternalLayout: true,\n            ...addPropertyOverrides({\n              RcvhpSDL2: {\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.h3, {\n                    className: \"framer-styles-preset-1brj5yn\",\n                    \"data-styles-preset\": \"u9pyPeeb6\",\n                    style: {\n                      \"--framer-text-color\": \"var(--extracted-a0htzi)\"\n                    },\n                    children: \"Data accuracy\"\n                  })\n                })\n              }\n            }, baseVariant, gestureVariant)\n          }), /*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(motion.p, {\n                className: \"framer-styles-preset-1qzputa\",\n                \"data-styles-preset\": \"KhF4til_G\",\n                children: \"South African business consulting firm Current Advisory features a slideshow banner made services. \"\n              })\n            }),\n            className: \"framer-v150il\",\n            \"data-framer-name\": \"Text\",\n            layoutDependency: layoutDependency,\n            layoutId: \"h_M1a9kWl\",\n            style: {\n              \"--framer-paragraph-spacing\": \"0px\"\n            },\n            text: RCQ4g2WHq,\n            variants: {\n              RcvhpSDL2: {\n                \"--extracted-r6o4lv\": \"var(--token-0d958ea8-5342-436d-8b78-183f631ad5dd, rgb(246, 248, 250))\"\n              }\n            },\n            verticalAlignment: \"top\",\n            withExternalLayout: true,\n            ...addPropertyOverrides({\n              RcvhpSDL2: {\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    className: \"framer-styles-preset-1qzputa\",\n                    \"data-styles-preset\": \"KhF4til_G\",\n                    style: {\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv)\"\n                    },\n                    children: \"South African business consulting firm Current Advisory features a slideshow banner made services. \"\n                  })\n                })\n              }\n            }, baseVariant, gestureVariant)\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-SVDZk [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-SVDZk .framer-ha3z5k { display: block; }\", \".framer-SVDZk .framer-jt3w7w { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; padding: 32px 24px 32px 24px; position: relative; width: 374px; }\", \".framer-SVDZk .framer-1p3v58a, .framer-SVDZk .framer-1mxbohl, .framer-SVDZk .framer-v150il { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SVDZk .framer-jt3w7w { gap: 0px; } .framer-SVDZk .framer-jt3w7w > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-SVDZk .framer-jt3w7w > :first-child { margin-top: 0px; } .framer-SVDZk .framer-jt3w7w > :last-child { margin-bottom: 0px; } }\", ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicHeight 253\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicWidth 374\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RcvhpSDL2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerVariables {\"kFrz75Uu0\":\"amount\",\"s6HPbQ3tj\":\"title\",\"RCQ4g2WHq\":\"text\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                */\nconst FramercB7mWkA5v = withCSS(Component, css, \"framer-SVDZk\");\nexport default FramercB7mWkA5v;\nFramercB7mWkA5v.displayName = \"Fact Card\";\nFramercB7mWkA5v.defaultProps = {\n  height: 253,\n  width: 374\n};\naddPropertyControls(FramercB7mWkA5v, {\n  variant: {\n    options: [\"tPpZDu7w5\", \"RcvhpSDL2\"],\n    optionTitles: [\"Variant 1\", \"Primary\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  kFrz75Uu0: {\n    defaultValue: \"93%\",\n    displayTextArea: false,\n    title: \"Amount\",\n    type: ControlType.String\n  },\n  s6HPbQ3tj: {\n    defaultValue: \"Data accuracy\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  },\n  RCQ4g2WHq: {\n    defaultValue: \"South African business consulting firm Current Advisory features a slideshow banner made services. \",\n    displayTextArea: true,\n    title: \"Text\",\n    type: ControlType.String\n  }\n});\naddFonts(FramercB7mWkA5v, [...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramercB7mWkA5v\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"253\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"374\",\n        \"framerVariables\": \"{\\\"kFrz75Uu0\\\":\\\"amount\\\",\\\"s6HPbQ3tj\\\":\\\"title\\\",\\\"RCQ4g2WHq\\\":\\\"text\\\"}\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RcvhpSDL2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (d213f04)\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useActiveVariantCallback, useHydratedBreakpointVariants, useLocaleInfo, useOverlayState, useRouteElementId, withCSS, withFX } from \"framer\";\nimport { AnimatePresence, LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport { Icon as Feather } from \"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";\nimport { Video } from \"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";\nimport FactCard from \"https://framerusercontent.com/modules/9WUw9gRzGVkLH3oAc83X/taplh7bEV5PThqt7HPod/cB7mWkA5v.js\";\nimport FooterV1 from \"https://framerusercontent.com/modules/ACy5lt1SVClMxG7V8yJP/jpzwWFsZrbTAa6i36MER/FjRVUJpQ0.js\";\nimport TeamCard from \"https://framerusercontent.com/modules/pJ2SMPDJl7RLV3aQKM44/xv8jnZqMTZcILTG2ZqUl/q93jvmlKm.js\";\nimport CTA from \"https://framerusercontent.com/modules/3LPObMjrYu0VJ8AM4EGh/XMY4yNvp2Sds6kcpshWS/RLLEUZRbS.js\";\nimport Badge from \"https://framerusercontent.com/modules/aZic2swxUNKqA56prZAn/bMJkKIUX1iC83mMnWAFq/sDuCOKOGk.js\";\nimport Header from \"https://framerusercontent.com/modules/ofx7N8aE9EkHtqREB9vA/cBZ3FeZB6ec5Yqyk3QC7/WJJQkHX23.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/2oGYS96OBNl4hmWLg5cU/H8V9ipG8mFgaMhlE6zAh/KhF4til_G.js\";\nimport * as sharedStyle4 from \"https://framerusercontent.com/modules/rlZcdj9YUu6gYtGgKOEL/ibvDjDx1UrMqyyGG2Iwg/oh1OjMDkp.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/cI4pnxLZAnDkn6vfcfJJ/i9v5NfSHx7KgWKMlThiC/q3ZTXQFEr.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/dKprz8yjWTDJSboQiuli/7nO9sToKapPCHFAo4jHT/QtA3LsZFO.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/gntVtu0XWHxzzlvLFDj2/oVaHyldkEGR3MvztA8bB/wVFKYas4f.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/tPdgMJAIOY9QHrIkCqS6/GDawgaWHatqwLwP39Me1/LbQTPKBK_.js\";\nconst HeaderFonts = getFonts(Header);\nconst MotionDivWithFX = withFX(motion.div);\nconst VideoFonts = getFonts(Video);\nconst FeatherFonts = getFonts(Feather);\nconst ImageWithFX = withFX(Image);\nconst RichTextWithFX = withFX(RichText);\nconst FactCardFonts = getFonts(FactCard);\nconst ContainerWithFX = withFX(Container);\nconst BadgeFonts = getFonts(Badge);\nconst TeamCardFonts = getFonts(TeamCard);\nconst CTAFonts = getFonts(CTA);\nconst FooterV1Fonts = getFonts(FooterV1);\nconst cycleOrder = [\"d0R8u7rzl\", \"oPUwhJ5eM\", \"jCDm3fDXF\", \"s0meHTf1b\"];\nconst breakpoints = {\n  d0R8u7rzl: \"(min-width: 1440px)\",\n  jCDm3fDXF: \"(min-width: 810px) and (max-width: 991px)\",\n  oPUwhJ5eM: \"(min-width: 992px) and (max-width: 1439px)\",\n  s0meHTf1b: \"(max-width: 809px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  d0R8u7rzl: \"framer-v-ysf378\",\n  jCDm3fDXF: \"framer-v-1wofefm\",\n  oPUwhJ5eM: \"framer-v-ca2yw\",\n  s0meHTf1b: \"framer-v-mtztow\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"d0R8u7rzl\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nfunction Overlay({\n  children,\n  blockDocumentScrolling\n}) {\n  const [visible, setVisible] = useOverlayState({\n    blockDocumentScrolling\n  });\n  return children({\n    hide: () => setVisible(false),\n    show: () => setVisible(true),\n    toggle: () => setVisible(!visible),\n    visible\n  });\n}\nconst transition1 = {\n  damping: 60,\n  delay: 0,\n  mass: 1.2,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: -150\n};\nconst transformTemplate = (_, t) => `perspective(1200px) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: -150\n};\nconst animation3 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 50\n};\nconst animation4 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 50\n};\nconst transition2 = {\n  damping: 60,\n  delay: .2,\n  mass: 1.2,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation5 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 50\n};\nconst animation6 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst animation7 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 0\n};\nconst animation8 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation9 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 50\n};\nconst animation10 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 40\n};\nconst animation11 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 40\n};\nconst animation12 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 20\n};\nconst animation13 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 20\n};\nconst transition3 = {\n  damping: 60,\n  delay: .3,\n  mass: 1.2,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation14 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 20\n};\nconst transition4 = {\n  damping: 60,\n  delay: .4,\n  mass: 1.2,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation15 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition4,\n  x: 0,\n  y: 20\n};\nconst transition5 = {\n  damping: 60,\n  delay: .5,\n  mass: 1.2,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation16 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition5,\n  x: 0,\n  y: 20\n};\nconst transition6 = {\n  damping: 60,\n  delay: .6,\n  mass: 1.2,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation17 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition6,\n  x: 0,\n  y: 20\n};\nconst animation18 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 0\n};\nconst animation19 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition4,\n  x: 0,\n  y: 0\n};\nconst animation20 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition5,\n  x: 0,\n  y: 0\n};\nconst animation21 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition4,\n  x: 0,\n  y: 50\n};\nconst transition7 = {\n  damping: 60,\n  delay: .1,\n  mass: 1.2,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation22 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition7,\n  x: 0,\n  y: 50\n};\nconst addImageAlt = (image, alt) => {\n  if (!image || typeof image !== \"object\") {\n    return;\n  }\n  return {\n    ...image,\n    alt\n  };\n};\nconst animation23 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 50\n};\nconst animation24 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition5,\n  x: 0,\n  y: 50\n};\nconst animation25 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition6,\n  x: 0,\n  y: 50\n};\nconst transition8 = {\n  damping: 60,\n  delay: .7,\n  mass: 1.2,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation26 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition8,\n  x: 0,\n  y: 50\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  \"Large Desktop\": \"d0R8u7rzl\",\n  Desktop: \"oPUwhJ5eM\",\n  Phone: \"s0meHTf1b\",\n  Tablet: \"jCDm3fDXF\"\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 : \"d0R8u7rzl\"\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(undefined, activeLocale);\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  }, [undefined, activeLocale]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(undefined);\n  const onTap42m929 = overlay => activeVariantCallback(async (...args) => {\n    overlay.toggle();\n  });\n  const onClickzn6atv = overlay => activeVariantCallback(async (...args) => {\n    overlay.hide();\n  });\n  const id = useRouteElementId(\"rWSU5ocO3\");\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"d0R8u7rzl\",\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-Tlc70\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-ysf378\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-o8t38m\",\n            \"data-framer-name\": \"Banner Wrapper\",\n            name: \"Banner Wrapper\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                jCDm3fDXF: {\n                  \"data-framer-appear-id\": \"k6cijg\",\n                  animate: optimizeAppear(\"animate\", \"k6cijg\", animation1, \"1wofefm\"),\n                  initial: optimizeAppear(\"initial\", \"k6cijg\", animation2, \"1wofefm\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"k6cijg\", transformTemplate)\n                },\n                oPUwhJ5eM: {\n                  \"data-framer-appear-id\": \"1n8igc0\",\n                  animate: optimizeAppear(\"animate\", \"1n8igc0\", animation1, \"ca2yw\"),\n                  initial: optimizeAppear(\"initial\", \"1n8igc0\", animation2, \"ca2yw\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1n8igc0\", transformTemplate)\n                },\n                s0meHTf1b: {\n                  \"data-framer-appear-id\": \"1hzarpc\",\n                  animate: optimizeAppear(\"animate\", \"1hzarpc\", animation1, \"mtztow\"),\n                  initial: optimizeAppear(\"initial\", \"1hzarpc\", animation2, \"mtztow\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1hzarpc\", transformTemplate)\n                }\n              },\n              children: /*#__PURE__*/_jsx(Container, {\n                animate: optimizeAppear(\"animate\", \"12fjg9x\", animation1, \"ysf378\"),\n                className: \"framer-12fjg9x-container\",\n                \"data-framer-appear-id\": \"12fjg9x\",\n                exit: animation,\n                initial: optimizeAppear(\"initial\", \"12fjg9x\", animation2, \"ysf378\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"12fjg9x\", transformTemplate),\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    jCDm3fDXF: {\n                      variant: \"irSHVzgW3\"\n                    },\n                    oPUwhJ5eM: {\n                      variant: \"pzCnWfiaJ\"\n                    },\n                    s0meHTf1b: {\n                      variant: \"XhFEyEWuq\"\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Header, {\n                    height: \"100%\",\n                    id: \"GI6Vq3uzS\",\n                    layoutId: \"GI6Vq3uzS\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"Go4n2MxpT\",\n                    width: \"100%\"\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1xvrezi\",\n              \"data-framer-name\": \"Banner\",\n              name: \"Banner\",\n              children: [/*#__PURE__*/_jsx(Image, {\n                background: {\n                  alt: \"\",\n                  fit: \"fill\",\n                  intrinsicHeight: 415,\n                  intrinsicWidth: 1440,\n                  pixelHeight: 415,\n                  pixelWidth: 1440,\n                  sizes: \"100vw\",\n                  src: new URL(\"https://framerusercontent.com/images/y6VLgYKwao00DgIPSqmp1fPyPY.png\").href,\n                  srcSet: `${new URL(\"https://framerusercontent.com/images/y6VLgYKwao00DgIPSqmp1fPyPY.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/y6VLgYKwao00DgIPSqmp1fPyPY.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/y6VLgYKwao00DgIPSqmp1fPyPY.png\").href} 1440w`\n                },\n                className: \"framer-1rqcmhx\"\n              }), /*#__PURE__*/_jsx(\"div\", {\n                className: \"framer-1bwi5aj\",\n                \"data-framer-name\": \"Container\",\n                name: \"Container\",\n                children: /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1721gf8\",\n                  \"data-framer-name\": \"Heading\",\n                  name: \"Heading\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      jCDm3fDXF: {\n                        \"data-framer-appear-id\": \"w1vjai\",\n                        animate: optimizeAppear(\"animate\", \"w1vjai\", animation1, \"1wofefm\"),\n                        initial: optimizeAppear(\"initial\", \"w1vjai\", animation4, \"1wofefm\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"w1vjai\", transformTemplate)\n                      },\n                      oPUwhJ5eM: {\n                        \"data-framer-appear-id\": \"k39myt\",\n                        animate: optimizeAppear(\"animate\", \"k39myt\", animation1, \"ca2yw\"),\n                        initial: optimizeAppear(\"initial\", \"k39myt\", animation4, \"ca2yw\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"k39myt\", transformTemplate)\n                      },\n                      s0meHTf1b: {\n                        \"data-framer-appear-id\": \"1nz3yoz\",\n                        animate: optimizeAppear(\"animate\", \"1nz3yoz\", animation1, \"mtztow\"),\n                        initial: optimizeAppear(\"initial\", \"1nz3yoz\", animation4, \"mtztow\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"1nz3yoz\", transformTemplate)\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      animate: optimizeAppear(\"animate\", \"yhqokb\", animation1, \"ysf378\"),\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          className: \"framer-styles-preset-tetsb3\",\n                          \"data-styles-preset\": \"wVFKYas4f\",\n                          style: {\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"var(--token-c740308f-7884-427b-83d1-909b8af9e548, rgb(255, 255, 255))\"\n                          },\n                          children: \"About us\"\n                        })\n                      }),\n                      className: \"framer-yhqokb\",\n                      \"data-framer-appear-id\": \"yhqokb\",\n                      \"data-framer-name\": \"Heading Title\",\n                      exit: animation3,\n                      initial: optimizeAppear(\"initial\", \"yhqokb\", animation4, \"ysf378\"),\n                      name: \"Heading Title\",\n                      transformTemplate: optimizeAppearTransformTemplate(\"yhqokb\", transformTemplate),\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      jCDm3fDXF: {\n                        \"data-framer-appear-id\": \"wbo5x0\",\n                        animate: optimizeAppear(\"animate\", \"wbo5x0\", animation6, \"1wofefm\"),\n                        initial: optimizeAppear(\"initial\", \"wbo5x0\", animation4, \"1wofefm\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"wbo5x0\", transformTemplate)\n                      },\n                      oPUwhJ5eM: {\n                        \"data-framer-appear-id\": \"1v1i33l\",\n                        animate: optimizeAppear(\"animate\", \"1v1i33l\", animation6, \"ca2yw\"),\n                        initial: optimizeAppear(\"initial\", \"1v1i33l\", animation4, \"ca2yw\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"1v1i33l\", transformTemplate)\n                      },\n                      s0meHTf1b: {\n                        \"data-framer-appear-id\": \"13gbv9u\",\n                        animate: optimizeAppear(\"animate\", \"13gbv9u\", animation6, \"mtztow\"),\n                        initial: optimizeAppear(\"initial\", \"13gbv9u\", animation4, \"mtztow\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"13gbv9u\", transformTemplate)\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      animate: optimizeAppear(\"animate\", \"5utwnm\", animation6, \"ysf378\"),\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-1qzputa\",\n                          \"data-styles-preset\": \"KhF4til_G\",\n                          style: {\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"var(--token-0d958ea8-5342-436d-8b78-183f631ad5dd, rgb(246, 248, 250))\"\n                          },\n                          children: \"Our collaborative approach fosters strong partnerships with our clients, ensuring that we truly understand your business and its potential.\"\n                        })\n                      }),\n                      className: \"framer-5utwnm\",\n                      \"data-framer-appear-id\": \"5utwnm\",\n                      \"data-framer-name\": \"Paragraph\",\n                      exit: animation5,\n                      initial: optimizeAppear(\"initial\", \"5utwnm\", animation4, \"ysf378\"),\n                      name: \"Paragraph\",\n                      transformTemplate: optimizeAppearTransformTemplate(\"5utwnm\", transformTemplate),\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })]\n                })\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-1mv1eps\",\n            \"data-framer-name\": \"Content section\",\n            name: \"Content section\",\n            children: /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-1pqfeet\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-19tqxej\",\n                \"data-framer-name\": \"Content Block\",\n                name: \"Content Block\",\n                children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation7,\n                  __framer__exit: animation8,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-srbg7l\",\n                  \"data-framer-name\": \"Title\",\n                  name: \"Title\",\n                  transformTemplate: transformTemplate,\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-176dtt0\",\n                        \"data-styles-preset\": \"q3ZTXQFEr\",\n                        style: {\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: \"The story behind our agency start\"\n                      })\n                    }),\n                    className: \"framer-zercn9\",\n                    \"data-framer-name\": \"The story behind our agency start\",\n                    name: \"The story behind our agency start\",\n                    verticalAlignment: \"center\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(Overlay, {\n                  children: overlaybvpqxu => /*#__PURE__*/_jsx(_Fragment, {\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        jCDm3fDXF: {\n                          background: {\n                            alt: \"\",\n                            fit: \"fit\",\n                            sizes: \"max(min(100vw, 720px) - 32px, 0px)\",\n                            src: new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png\").href,\n                            srcSet: `${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png\").href} 3888w`\n                          }\n                        },\n                        oPUwhJ5eM: {\n                          background: {\n                            alt: \"\",\n                            fit: \"fit\",\n                            sizes: \"max(min(100vw, 1100px) - 60px, 0px)\",\n                            src: new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png\").href,\n                            srcSet: `${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png\").href} 3888w`\n                          }\n                        },\n                        s0meHTf1b: {\n                          background: {\n                            alt: \"\",\n                            fit: \"fit\",\n                            sizes: \"max(min(100vw, 330px) - 24px, 0px)\",\n                            src: new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png\").href,\n                            srcSet: `${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png\").href} 3888w`\n                          }\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(ImageWithFX, {\n                        __framer__animate: {\n                          transition: transition1\n                        },\n                        __framer__animateOnce: true,\n                        __framer__enter: animation9,\n                        __framer__exit: animation3,\n                        __framer__styleAppearEffectEnabled: true,\n                        __framer__threshold: .5,\n                        __perspectiveFX: false,\n                        __targetOpacity: 1,\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          sizes: \"max(min(100vw, 1356px) - 60px, 0px)\",\n                          src: new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/w1k2gbmjI5rx00llqj3A84Qja0s.png\").href} 3888w`\n                        },\n                        className: \"framer-1khcszw\",\n                        \"data-framer-name\": \"Video \",\n                        name: \"Video \",\n                        onTap: onTap42m929(overlaybvpqxu),\n                        transformTemplate: transformTemplate,\n                        children: /*#__PURE__*/_jsx(AnimatePresence, {\n                          children: overlaybvpqxu.visible && /*#__PURE__*/_jsx(_Fragment, {\n                            children: /*#__PURE__*/ReactDOM.createPortal( /*#__PURE__*/_jsxs(React.Fragment, {\n                              children: [/*#__PURE__*/_jsx(motion.div, {\n                                animate: {\n                                  opacity: 1,\n                                  transition: {\n                                    delay: 0,\n                                    duration: .3,\n                                    ease: [.5, 0, .88, .77],\n                                    type: \"tween\"\n                                  }\n                                },\n                                className: \"framer-bvpqxu\",\n                                exit: {\n                                  opacity: 0,\n                                  transition: {\n                                    delay: 0,\n                                    duration: 0,\n                                    ease: [0, 0, 1, 1],\n                                    type: \"tween\"\n                                  }\n                                },\n                                initial: {\n                                  opacity: 0\n                                },\n                                onTap: () => overlaybvpqxu.hide()\n                              }, \"jJiZwdMqD\"), /*#__PURE__*/_jsx(Container, {\n                                className: \"framer-72gkw1-container\",\n                                children: /*#__PURE__*/_jsx(Video, {\n                                  backgroundColor: \"rgba(0, 0, 0, 0)\",\n                                  borderRadius: 16,\n                                  bottomLeftRadius: 16,\n                                  bottomRightRadius: 16,\n                                  canvasPlay: false,\n                                  controls: false,\n                                  height: \"100%\",\n                                  id: \"qXR4xXKY_\",\n                                  isMixedBorderRadius: false,\n                                  layoutId: \"qXR4xXKY_\",\n                                  loop: true,\n                                  muted: true,\n                                  objectFit: \"cover\",\n                                  playing: true,\n                                  posterEnabled: false,\n                                  srcFile: new URL(\"https://framerusercontent.com/modules/assets/YGnT6HUZJIaAiM2GljS9isWHgc~1p5nOREt9aF_RVuYcYjC57axwi-0XfxUDkgn2Ma9waI.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: 16,\n                                  topRightRadius: 16,\n                                  volume: 25,\n                                  width: \"100%\"\n                                })\n                              }), /*#__PURE__*/_jsx(Container, {\n                                className: \"framer-j9ji30-container\",\n                                children: /*#__PURE__*/_jsx(Feather, {\n                                  color: 'var(--token-c740308f-7884-427b-83d1-909b8af9e548, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                                  height: \"100%\",\n                                  iconSearch: \"Home\",\n                                  iconSelection: \"x\",\n                                  id: \"sdz4Ktzfo\",\n                                  layoutId: \"sdz4Ktzfo\",\n                                  mirrored: false,\n                                  onClick: onClickzn6atv(overlaybvpqxu),\n                                  selectByList: true,\n                                  style: {\n                                    height: \"100%\",\n                                    width: \"100%\"\n                                  },\n                                  width: \"100%\"\n                                })\n                              })]\n                            }), document.querySelector(\"#overlay\"))\n                          })\n                        })\n                      })\n                    })\n                  })\n                })]\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-d1v71i\",\n            \"data-framer-name\": \"Brand Section\",\n            id: id,\n            name: \"Brand Section\",\n            ref: ref1,\n            children: /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-185mmcn\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1dapevh\",\n                \"data-framer-name\": \"Brand Content\",\n                name: \"Brand Content\",\n                children: [/*#__PURE__*/_jsx(RichTextWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation10,\n                  __framer__exit: animation11,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--framer-font-size\": \"21px\",\n                        \"--framer-line-height\": \"34px\",\n                        \"--framer-text-alignment\": \"center\"\n                      },\n                      children: /*#__PURE__*/_jsx(\"span\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7UHVibGljIFNhbnMtNjAw\",\n                          \"--framer-font-family\": '\"Public Sans\"',\n                          \"--framer-font-size\": \"21px\",\n                          \"--framer-font-weight\": \"600\",\n                          \"--framer-text-color\": \"rgba(127, 137, 149, 1)\"\n                        },\n                        children: \"Trusted by the most innovative companies worldwide\"\n                      })\n                    })\n                  }),\n                  className: \"framer-1o7qj9g\",\n                  \"data-framer-name\": \"Trusted by the most innovative companies worldwide\",\n                  fonts: [\"GF;Public Sans-600\"],\n                  name: \"Trusted by the most innovative companies worldwide\",\n                  transformTemplate: transformTemplate,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1ei3dj8\",\n                  \"data-framer-name\": \"Brand Wrapper\",\n                  name: \"Brand Wrapper\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      s0meHTf1b: {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 30,\n                          intrinsicWidth: 160,\n                          pixelHeight: 30,\n                          pixelWidth: 160,\n                          src: new URL(\"https://framerusercontent.com/images/QngwOL9EkHo5mkb9pUvySjkcjiA.svg\").href\n                        }\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(ImageWithFX, {\n                      __framer__animate: {\n                        transition: transition2\n                      },\n                      __framer__animateOnce: true,\n                      __framer__enter: animation12,\n                      __framer__exit: animation13,\n                      __framer__styleAppearEffectEnabled: true,\n                      __framer__threshold: .5,\n                      __perspectiveFX: false,\n                      __targetOpacity: 1,\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 30,\n                        intrinsicWidth: 160,\n                        loading: \"lazy\",\n                        pixelHeight: 30,\n                        pixelWidth: 160,\n                        src: new URL(\"https://framerusercontent.com/images/QngwOL9EkHo5mkb9pUvySjkcjiA.svg\").href\n                      },\n                      className: \"framer-ed68s8\",\n                      transformTemplate: transformTemplate\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      s0meHTf1b: {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 29,\n                          intrinsicWidth: 155,\n                          pixelHeight: 29,\n                          pixelWidth: 155,\n                          src: new URL(\"https://framerusercontent.com/images/rZ9foHtdta9g39UI8rIejFq4MwE.svg\").href\n                        }\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(ImageWithFX, {\n                      __framer__animate: {\n                        transition: transition3\n                      },\n                      __framer__animateOnce: true,\n                      __framer__enter: animation12,\n                      __framer__exit: animation14,\n                      __framer__styleAppearEffectEnabled: true,\n                      __framer__threshold: .5,\n                      __perspectiveFX: false,\n                      __targetOpacity: 1,\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 29,\n                        intrinsicWidth: 155,\n                        loading: \"lazy\",\n                        pixelHeight: 29,\n                        pixelWidth: 155,\n                        src: new URL(\"https://framerusercontent.com/images/rZ9foHtdta9g39UI8rIejFq4MwE.svg\").href\n                      },\n                      className: \"framer-1hao81p\",\n                      transformTemplate: transformTemplate\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      s0meHTf1b: {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 41,\n                          intrinsicWidth: 170,\n                          pixelHeight: 41,\n                          pixelWidth: 170,\n                          src: new URL(\"https://framerusercontent.com/images/IwK1MVCzxLoQhRUJeiaRWxYmBQI.svg\").href\n                        }\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(ImageWithFX, {\n                      __framer__animate: {\n                        transition: transition4\n                      },\n                      __framer__animateOnce: true,\n                      __framer__enter: animation12,\n                      __framer__exit: animation15,\n                      __framer__styleAppearEffectEnabled: true,\n                      __framer__threshold: .5,\n                      __perspectiveFX: false,\n                      __targetOpacity: 1,\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 41,\n                        intrinsicWidth: 170,\n                        loading: \"lazy\",\n                        pixelHeight: 41,\n                        pixelWidth: 170,\n                        src: new URL(\"https://framerusercontent.com/images/IwK1MVCzxLoQhRUJeiaRWxYmBQI.svg\").href\n                      },\n                      className: \"framer-bwkgha\",\n                      transformTemplate: transformTemplate\n                    })\n                  }), /*#__PURE__*/_jsx(ImageWithFX, {\n                    __framer__animate: {\n                      transition: transition5\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation12,\n                    __framer__exit: animation16,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 41,\n                      intrinsicWidth: 170,\n                      loading: \"lazy\",\n                      pixelHeight: 41,\n                      pixelWidth: 170,\n                      src: new URL(\"https://framerusercontent.com/images/AbRilvd0U23oFQHDd33Zf0ChZU4.svg\").href\n                    },\n                    className: \"framer-1t3sojw\",\n                    transformTemplate: transformTemplate\n                  }), /*#__PURE__*/_jsx(ImageWithFX, {\n                    __framer__animate: {\n                      transition: transition6\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation12,\n                    __framer__exit: animation17,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 40,\n                      intrinsicWidth: 125,\n                      loading: \"lazy\",\n                      pixelHeight: 40,\n                      pixelWidth: 125,\n                      src: new URL(\"https://framerusercontent.com/images/YNeLjVaLBLFuuUpzLOd3Kn4WYNY.svg\").href\n                    },\n                    className: \"framer-m98o91\",\n                    transformTemplate: transformTemplate\n                  })]\n                })]\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-3wuba1\",\n            \"data-framer-name\": \"Fact Section\",\n            name: \"Fact Section\",\n            children: /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-10zql37\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1uc53n3\",\n                \"data-framer-name\": \"Fact Stack\",\n                name: \"Fact Stack\",\n                children: [/*#__PURE__*/_jsx(ContainerWithFX, {\n                  __framer__animate: {\n                    transition: transition3\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation7,\n                  __framer__exit: animation18,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-19y7rw0-container\",\n                  transformTemplate: transformTemplate,\n                  children: /*#__PURE__*/_jsx(FactCard, {\n                    amount: \"93%\",\n                    height: \"100%\",\n                    id: \"wUETqWTkn\",\n                    layoutId: \"wUETqWTkn\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    text: \"South African business consulting firm Current Advisory features a slideshow banner made services. \",\n                    title: \"Data accuracy\",\n                    variant: \"tPpZDu7w5\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                  __framer__animate: {\n                    transition: transition4\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation7,\n                  __framer__exit: animation19,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-l7enzz-container\",\n                  transformTemplate: transformTemplate,\n                  children: /*#__PURE__*/_jsx(FactCard, {\n                    amount: \"630+\",\n                    height: \"100%\",\n                    id: \"swow_lbB4\",\n                    layoutId: \"swow_lbB4\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    text: \"South African business consulting firm Current Advisory features a slideshow banner made services. \",\n                    title: \"Data accuracy\",\n                    variant: \"tPpZDu7w5\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                  __framer__animate: {\n                    transition: transition5\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation7,\n                  __framer__exit: animation20,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-dee9wr-container\",\n                  transformTemplate: transformTemplate,\n                  children: /*#__PURE__*/_jsx(FactCard, {\n                    amount: \"23k\",\n                    height: \"100%\",\n                    id: \"uAW8DHeEB\",\n                    layoutId: \"uAW8DHeEB\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    text: \"South African business consulting firm Current Advisory features a slideshow banner made services. \",\n                    title: \"Data accuracy\",\n                    variant: \"tPpZDu7w5\",\n                    width: \"100%\"\n                  })\n                })]\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-1kd754d\",\n            \"data-framer-name\": \"Team Section\",\n            name: \"Team Section\",\n            children: /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-1k5c2vn\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-yv6z8j\",\n                \"data-framer-name\": \"Team Content\",\n                name: \"Team Content\",\n                children: [/*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1b350kh\",\n                  \"data-framer-name\": \"Section Heading\",\n                  name: \"Section Heading\",\n                  children: [/*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation3,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-15ma3xg-container\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(Badge, {\n                      height: \"100%\",\n                      id: \"QkCKQzIeO\",\n                      layoutId: \"QkCKQzIeO\",\n                      title: \"Team\",\n                      variant: \"veUTfnFo5\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(RichTextWithFX, {\n                    __framer__animate: {\n                      transition: transition2\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation5,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __fromCanvasComponent: true,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-176dtt0\",\n                        \"data-styles-preset\": \"q3ZTXQFEr\",\n                        style: {\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: \"Meet Our Leadership\"\n                      })\n                    }),\n                    className: \"framer-1r7zygi\",\n                    \"data-framer-name\": \"Explore our case study\",\n                    name: \"Explore our case study\",\n                    transformTemplate: transformTemplate,\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichTextWithFX, {\n                    __framer__animate: {\n                      transition: transition4\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation21,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __fromCanvasComponent: true,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--framer-font-size\": \"18px\",\n                          \"--framer-line-height\": \"27px\",\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: /*#__PURE__*/_jsx(\"span\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\n                            \"--framer-font-family\": '\"Outfit\"',\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-text-color\": \"rgba(107, 107, 107, 1)\"\n                          },\n                          children: \"We denounce with righteous indignation and dislike men who are so beguiled business cannot foresee the pain and trouble.\"\n                        })\n                      })\n                    }),\n                    className: \"framer-1lfkfro\",\n                    \"data-framer-name\": \"We denounce with righteous indignation and dislike men who are so beguiled business cannot foresee the pain and trouble.\",\n                    fonts: [\"GF;Outfit-regular\"],\n                    name: \"We denounce with righteous indignation and dislike men who are so beguiled business cannot foresee the pain and trouble.\",\n                    transformTemplate: transformTemplate,\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1tqo1z\",\n                  \"data-framer-name\": \"Team mamber\",\n                  name: \"Team mamber\",\n                  children: [/*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition1\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation3,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-18fpt0m-container\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        s0meHTf1b: {\n                          variant: \"dys_WGnFj\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(TeamCard, {\n                        height: \"100%\",\n                        id: \"hvyuwx5kx\",\n                        layoutId: \"hvyuwx5kx\",\n                        style: {\n                          width: \"100%\"\n                        },\n                        userDesignation: \"CEO & Co-Founder\",\n                        userName: \"Esther Howard\",\n                        variant: \"kVNY6oBKi\",\n                        width: \"100%\"\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition7\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation22,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-fqo25n-container\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        s0meHTf1b: {\n                          variant: \"dys_WGnFj\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(TeamCard, {\n                        height: \"100%\",\n                        id: \"MHCUjEVs2\",\n                        image: addImageAlt({\n                          src: new URL(\"https://framerusercontent.com/images/PtXokSrlIz6IDLyuNkCcK6asI.jpg?scale-down-to=4096\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/PtXokSrlIz6IDLyuNkCcK6asI.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/PtXokSrlIz6IDLyuNkCcK6asI.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/PtXokSrlIz6IDLyuNkCcK6asI.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/PtXokSrlIz6IDLyuNkCcK6asI.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/PtXokSrlIz6IDLyuNkCcK6asI.jpg\").href} 4928w`\n                        }, \"\"),\n                        layoutId: \"MHCUjEVs2\",\n                        style: {\n                          width: \"100%\"\n                        },\n                        userDesignation: \"Head Of Marketing\",\n                        userName: \"Darrell Steward.\",\n                        variant: \"kVNY6oBKi\",\n                        width: \"100%\"\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition2\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation5,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-pypy6s-container\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        s0meHTf1b: {\n                          variant: \"dys_WGnFj\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(TeamCard, {\n                        height: \"100%\",\n                        id: \"NyLKfSRDg\",\n                        image: addImageAlt({\n                          src: new URL(\"https://framerusercontent.com/images/owEpU11qWzhuFF4uADBhVQRDYS0.jpg?scale-down-to=4096\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/owEpU11qWzhuFF4uADBhVQRDYS0.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/owEpU11qWzhuFF4uADBhVQRDYS0.jpg?scale-down-to=1024\").href} 682w, ${new URL(\"https://framerusercontent.com/images/owEpU11qWzhuFF4uADBhVQRDYS0.jpg?scale-down-to=2048\").href} 1365w, ${new URL(\"https://framerusercontent.com/images/owEpU11qWzhuFF4uADBhVQRDYS0.jpg?scale-down-to=4096\").href} 2730w, ${new URL(\"https://framerusercontent.com/images/owEpU11qWzhuFF4uADBhVQRDYS0.jpg\").href} 3648w`\n                        }, \"\"),\n                        layoutId: \"NyLKfSRDg\",\n                        style: {\n                          width: \"100%\"\n                        },\n                        userDesignation: \"Head Of Content Writing\",\n                        userName: \"Marvin McKinney\",\n                        variant: \"kVNY6oBKi\",\n                        width: \"100%\"\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition3\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation23,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-w7rqqi-container\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        s0meHTf1b: {\n                          variant: \"dys_WGnFj\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(TeamCard, {\n                        height: \"100%\",\n                        id: \"V6KuSjR6K\",\n                        image: addImageAlt({\n                          src: new URL(\"https://framerusercontent.com/images/nYIDtSXpzZB5jw6sXEYCMIec.jpg?scale-down-to=4096\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/nYIDtSXpzZB5jw6sXEYCMIec.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/nYIDtSXpzZB5jw6sXEYCMIec.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/nYIDtSXpzZB5jw6sXEYCMIec.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/nYIDtSXpzZB5jw6sXEYCMIec.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/nYIDtSXpzZB5jw6sXEYCMIec.jpg\").href} 5184w`\n                        }, \"\"),\n                        layoutId: \"V6KuSjR6K\",\n                        style: {\n                          width: \"100%\"\n                        },\n                        userDesignation: \"Head of Programmer \",\n                        userName: \"Guy Hawkins\",\n                        variant: \"kVNY6oBKi\",\n                        width: \"100%\"\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition4\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation21,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1n1wl4q-container\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        s0meHTf1b: {\n                          variant: \"dys_WGnFj\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(TeamCard, {\n                        height: \"100%\",\n                        id: \"eKwVA7SuL\",\n                        image: addImageAlt({\n                          src: new URL(\"https://framerusercontent.com/images/tXxxGwPbURZfRNAqALjS6QwdcOM.jpg?scale-down-to=4096\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/tXxxGwPbURZfRNAqALjS6QwdcOM.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/tXxxGwPbURZfRNAqALjS6QwdcOM.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/tXxxGwPbURZfRNAqALjS6QwdcOM.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/tXxxGwPbURZfRNAqALjS6QwdcOM.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/tXxxGwPbURZfRNAqALjS6QwdcOM.jpg\").href} 6000w`\n                        }, \"\"),\n                        layoutId: \"eKwVA7SuL\",\n                        style: {\n                          width: \"100%\"\n                        },\n                        userDesignation: \"VP Of Finance\",\n                        userName: \"Eleanor Pena.\",\n                        variant: \"kVNY6oBKi\",\n                        width: \"100%\"\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition5\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation24,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-xl7252-container\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        s0meHTf1b: {\n                          variant: \"dys_WGnFj\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(TeamCard, {\n                        height: \"100%\",\n                        id: \"kytj_3LdM\",\n                        image: addImageAlt({\n                          src: new URL(\"https://framerusercontent.com/images/w3gNtEUvUagyxvd33uTiSy2C4M.jpg?scale-down-to=4096\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/w3gNtEUvUagyxvd33uTiSy2C4M.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/w3gNtEUvUagyxvd33uTiSy2C4M.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/w3gNtEUvUagyxvd33uTiSy2C4M.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/w3gNtEUvUagyxvd33uTiSy2C4M.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/w3gNtEUvUagyxvd33uTiSy2C4M.jpg\").href} 6000w`\n                        }, \"\"),\n                        layoutId: \"kytj_3LdM\",\n                        style: {\n                          width: \"100%\"\n                        },\n                        userDesignation: \"CTO & Co-Founder\",\n                        userName: \"Cody Fisher\",\n                        variant: \"kVNY6oBKi\",\n                        width: \"100%\"\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition6\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation25,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-3sqclm-container\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        s0meHTf1b: {\n                          variant: \"dys_WGnFj\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(TeamCard, {\n                        height: \"100%\",\n                        id: \"WIBM3Fzyg\",\n                        image: addImageAlt({\n                          src: new URL(\"https://framerusercontent.com/images/pDynE5qiJcGHCSqpdUsgCtF9coc.jpg?scale-down-to=4096\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/pDynE5qiJcGHCSqpdUsgCtF9coc.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/pDynE5qiJcGHCSqpdUsgCtF9coc.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/pDynE5qiJcGHCSqpdUsgCtF9coc.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/pDynE5qiJcGHCSqpdUsgCtF9coc.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/pDynE5qiJcGHCSqpdUsgCtF9coc.jpg\").href} 4991w`\n                        }, \"\"),\n                        layoutId: \"WIBM3Fzyg\",\n                        style: {\n                          width: \"100%\"\n                        },\n                        userDesignation: \"Senior UIUX Designer\",\n                        userName: \"Floyd Miles\",\n                        variant: \"kVNY6oBKi\",\n                        width: \"100%\"\n                      })\n                    })\n                  }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition8\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation26,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1x91cd9-container\",\n                    transformTemplate: transformTemplate,\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        s0meHTf1b: {\n                          variant: \"dys_WGnFj\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(TeamCard, {\n                        height: \"100%\",\n                        id: \"fUL1NB0_e\",\n                        image: addImageAlt({\n                          src: new URL(\"https://framerusercontent.com/images/botK1xjDwjDZbiijgSXMoDrvsc.jpg?scale-down-to=4096\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/botK1xjDwjDZbiijgSXMoDrvsc.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/botK1xjDwjDZbiijgSXMoDrvsc.jpg?scale-down-to=1024\").href} 682w, ${new URL(\"https://framerusercontent.com/images/botK1xjDwjDZbiijgSXMoDrvsc.jpg?scale-down-to=2048\").href} 1365w, ${new URL(\"https://framerusercontent.com/images/botK1xjDwjDZbiijgSXMoDrvsc.jpg?scale-down-to=4096\").href} 2730w, ${new URL(\"https://framerusercontent.com/images/botK1xjDwjDZbiijgSXMoDrvsc.jpg\").href} 3648w`\n                        }, \"\"),\n                        layoutId: \"fUL1NB0_e\",\n                        style: {\n                          width: \"100%\"\n                        },\n                        userDesignation: \"VP Of Technology \",\n                        userName: \"Ausco Stw.\",\n                        variant: \"kVNY6oBKi\",\n                        width: \"100%\"\n                      })\n                    })\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1gtl8ny\",\n                  \"data-framer-name\": \"Team Card Bottom\",\n                  name: \"Team Card Bottom\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-lopw3j\",\n                        \"data-styles-preset\": \"QtA3LsZFO\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-c4201ea7-65db-4307-98db-454d39f4975c, rgb(107, 107, 107))\"\n                        },\n                        children: \"Interset About knowing More About Us?\"\n                      })\n                    }),\n                    className: \"framer-33d4u5\",\n                    \"data-framer-name\": \"Get to know all of our fantastic Bizdev team members\",\n                    name: \"Get to know all of our fantastic Bizdev team members\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsxs(\"div\", {\n                    className: \"framer-js50pk\",\n                    \"data-framer-name\": \"Link\",\n                    name: \"Link\",\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h4\", {\n                          className: \"framer-styles-preset-14dkrdo\",\n                          \"data-styles-preset\": \"oh1OjMDkp\",\n                          style: {\n                            \"--framer-text-color\": \"var(--token-d00b0716-4ff9-4680-a2e9-7641ba4882ca, rgb(76, 61, 255))\"\n                          },\n                          children: \"Join Our Team\"\n                        })\n                      }),\n                      className: \"framer-1axfalq\",\n                      \"data-framer-name\": \"Join Our Team\",\n                      name: \"Join Our Team\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-7mqghv-container\",\n                      children: /*#__PURE__*/_jsx(Feather, {\n                        color: 'var(--token-d00b0716-4ff9-4680-a2e9-7641ba4882ca, rgb(76, 61, 255)) /* {\"name\":\"Primary\"} */',\n                        height: \"100%\",\n                        iconSearch: \"Home\",\n                        iconSelection: \"arrow-up-right\",\n                        id: \"FeoVarZIu\",\n                        layoutId: \"FeoVarZIu\",\n                        mirrored: false,\n                        selectByList: true,\n                        style: {\n                          height: \"100%\",\n                          width: \"100%\"\n                        },\n                        width: \"100%\"\n                      })\n                    })]\n                  })]\n                })]\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-1uj2yo2\",\n            \"data-framer-name\": \"Cta Section\",\n            name: \"Cta Section\",\n            children: /*#__PURE__*/_jsx(Container, {\n              className: \"framer-2o6hc0-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  jCDm3fDXF: {\n                    variant: \"DkHEj8H_7\"\n                  },\n                  oPUwhJ5eM: {\n                    variant: \"vxx7K2f4f\"\n                  },\n                  s0meHTf1b: {\n                    variant: \"o9lk10pvM\"\n                  }\n                },\n                children: /*#__PURE__*/_jsx(CTA, {\n                  buttonText: \"Get Free Consultation\",\n                  height: \"100%\",\n                  id: \"l20sMfwDX\",\n                  layoutId: \"l20sMfwDX\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  text: \"\",\n                  title: \"We\u2019re ready to assist you! connect with us today.\",\n                  variant: \"iSJdwCuHs\",\n                  width: \"100%\"\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1lq0wy8-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                jCDm3fDXF: {\n                  variant: \"hfCHqgVkb\"\n                },\n                oPUwhJ5eM: {\n                  variant: \"jwe9pgDC9\"\n                },\n                s0meHTf1b: {\n                  variant: \"sJGRUrT6g\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(FooterV1, {\n                height: \"100%\",\n                id: \"v7H8oApjL\",\n                layoutId: \"v7H8oApjL\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"nANBwCh_0\",\n                width: \"100%\"\n              })\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-Tlc70 [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: white; }`, \".framer-Tlc70 .framer-vxh1ej { display: block; }\", \".framer-Tlc70 .framer-ysf378 { 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-Tlc70 .framer-o8t38m { align-content: center; align-items: center; background-color: var(--token-d00b0716-4ff9-4680-a2e9-7641ba4882ca, #4c3dff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-12fjg9x-container { flex: none; height: auto; position: relative; transform: perspective(1200px); width: 100%; z-index: 10; }\", \".framer-Tlc70 .framer-1xvrezi { align-content: center; align-items: center; background-color: var(--token-d00b0716-4ff9-4680-a2e9-7641ba4882ca, #4c40f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 454px; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-1rqcmhx { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\", \".framer-Tlc70 .framer-1bwi5aj, .framer-Tlc70 .framer-1pqfeet, .framer-Tlc70 .framer-185mmcn, .framer-Tlc70 .framer-1k5c2vn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1356px; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\", \".framer-Tlc70 .framer-1721gf8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 640px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-Tlc70 .framer-yhqokb, .framer-Tlc70 .framer-5utwnm, .framer-Tlc70 .framer-1r7zygi, .framer-Tlc70 .framer-1lfkfro { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-Tlc70 .framer-1mv1eps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 80px 0px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-19tqxej { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 71px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-Tlc70 .framer-srbg7l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-Tlc70 .framer-zercn9 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-Tlc70 .framer-1khcszw { align-content: center; align-items: center; aspect-ratio: 2.16 / 1; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 600px); justify-content: center; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-Tlc70 .framer-bvpqxu { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\", \".framer-Tlc70 .framer-72gkw1-container { aspect-ratio: 1.6666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 1000px; z-index: 10; }\", \".framer-Tlc70 .framer-j9ji30-container { flex: none; height: 60px; position: fixed; right: 40px; top: 40px; width: 60px; z-index: 10; }\", \".framer-Tlc70 .framer-d1v71i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-1dapevh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-Tlc70 .framer-1o7qj9g { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre; width: auto; }\", \".framer-Tlc70 .framer-1ei3dj8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-ed68s8, .framer-Tlc70 .framer-1hao81p, .framer-Tlc70 .framer-bwkgha, .framer-Tlc70 .framer-1t3sojw { flex: none; height: 38px; overflow: hidden; position: relative; transform: perspective(1200px); width: 179px; }\", \".framer-Tlc70 .framer-m98o91 { flex: none; height: 40px; overflow: hidden; position: relative; transform: perspective(1200px); width: 179px; }\", \".framer-Tlc70 .framer-3wuba1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-10zql37 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1356px; padding: 0px 30px 0px 30px; position: relative; width: 1px; z-index: 1; }\", \".framer-Tlc70 .framer-1uc53n3 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-Tlc70 .framer-19y7rw0-container, .framer-Tlc70 .framer-l7enzz-container, .framer-Tlc70 .framer-dee9wr-container { flex: 1 0 0px; height: auto; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-Tlc70 .framer-1kd754d { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 120px 0px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-yv6z8j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-Tlc70 .framer-1b350kh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 51%; }\", \".framer-Tlc70 .framer-15ma3xg-container { flex: none; height: auto; position: relative; transform: perspective(1200px); width: auto; }\", \".framer-Tlc70 .framer-1tqo1z { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-18fpt0m-container, .framer-Tlc70 .framer-fqo25n-container, .framer-Tlc70 .framer-pypy6s-container, .framer-Tlc70 .framer-w7rqqi-container, .framer-Tlc70 .framer-1n1wl4q-container, .framer-Tlc70 .framer-xl7252-container, .framer-Tlc70 .framer-3sqclm-container, .framer-Tlc70 .framer-1x91cd9-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-Tlc70 .framer-1gtl8ny { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-33d4u5, .framer-Tlc70 .framer-1axfalq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-Tlc70 .framer-js50pk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-Tlc70 .framer-7mqghv-container { flex: none; height: 30px; position: relative; width: 30px; }\", \".framer-Tlc70 .framer-1uj2yo2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\", \".framer-Tlc70 .framer-2o6hc0-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\", \".framer-Tlc70 .framer-1lq0wy8-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Tlc70 .framer-ysf378, .framer-Tlc70 .framer-o8t38m, .framer-Tlc70 .framer-1xvrezi, .framer-Tlc70 .framer-1bwi5aj, .framer-Tlc70 .framer-1721gf8, .framer-Tlc70 .framer-1mv1eps, .framer-Tlc70 .framer-1pqfeet, .framer-Tlc70 .framer-19tqxej, .framer-Tlc70 .framer-1khcszw, .framer-Tlc70 .framer-d1v71i, .framer-Tlc70 .framer-185mmcn, .framer-Tlc70 .framer-1dapevh, .framer-Tlc70 .framer-1ei3dj8, .framer-Tlc70 .framer-3wuba1, .framer-Tlc70 .framer-10zql37, .framer-Tlc70 .framer-1uc53n3, .framer-Tlc70 .framer-1kd754d, .framer-Tlc70 .framer-1k5c2vn, .framer-Tlc70 .framer-yv6z8j, .framer-Tlc70 .framer-1b350kh, .framer-Tlc70 .framer-1gtl8ny, .framer-Tlc70 .framer-js50pk, .framer-Tlc70 .framer-1uj2yo2 { gap: 0px; } .framer-Tlc70 .framer-ysf378 > *, .framer-Tlc70 .framer-o8t38m > *, .framer-Tlc70 .framer-1xvrezi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Tlc70 .framer-ysf378 > :first-child, .framer-Tlc70 .framer-o8t38m > :first-child, .framer-Tlc70 .framer-1xvrezi > :first-child, .framer-Tlc70 .framer-1721gf8 > :first-child, .framer-Tlc70 .framer-1mv1eps > :first-child, .framer-Tlc70 .framer-19tqxej > :first-child, .framer-Tlc70 .framer-d1v71i > :first-child, .framer-Tlc70 .framer-1dapevh > :first-child, .framer-Tlc70 .framer-1kd754d > :first-child, .framer-Tlc70 .framer-yv6z8j > :first-child, .framer-Tlc70 .framer-1b350kh > :first-child { margin-top: 0px; } .framer-Tlc70 .framer-ysf378 > :last-child, .framer-Tlc70 .framer-o8t38m > :last-child, .framer-Tlc70 .framer-1xvrezi > :last-child, .framer-Tlc70 .framer-1721gf8 > :last-child, .framer-Tlc70 .framer-1mv1eps > :last-child, .framer-Tlc70 .framer-19tqxej > :last-child, .framer-Tlc70 .framer-d1v71i > :last-child, .framer-Tlc70 .framer-1dapevh > :last-child, .framer-Tlc70 .framer-1kd754d > :last-child, .framer-Tlc70 .framer-yv6z8j > :last-child, .framer-Tlc70 .framer-1b350kh > :last-child { margin-bottom: 0px; } .framer-Tlc70 .framer-1bwi5aj > *, .framer-Tlc70 .framer-1pqfeet > *, .framer-Tlc70 .framer-1khcszw > *, .framer-Tlc70 .framer-185mmcn > *, .framer-Tlc70 .framer-10zql37 > *, .framer-Tlc70 .framer-1k5c2vn > *, .framer-Tlc70 .framer-1uj2yo2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Tlc70 .framer-1bwi5aj > :first-child, .framer-Tlc70 .framer-1pqfeet > :first-child, .framer-Tlc70 .framer-1khcszw > :first-child, .framer-Tlc70 .framer-185mmcn > :first-child, .framer-Tlc70 .framer-1ei3dj8 > :first-child, .framer-Tlc70 .framer-3wuba1 > :first-child, .framer-Tlc70 .framer-10zql37 > :first-child, .framer-Tlc70 .framer-1uc53n3 > :first-child, .framer-Tlc70 .framer-1k5c2vn > :first-child, .framer-Tlc70 .framer-1gtl8ny > :first-child, .framer-Tlc70 .framer-js50pk > :first-child, .framer-Tlc70 .framer-1uj2yo2 > :first-child { margin-left: 0px; } .framer-Tlc70 .framer-1bwi5aj > :last-child, .framer-Tlc70 .framer-1pqfeet > :last-child, .framer-Tlc70 .framer-1khcszw > :last-child, .framer-Tlc70 .framer-185mmcn > :last-child, .framer-Tlc70 .framer-1ei3dj8 > :last-child, .framer-Tlc70 .framer-3wuba1 > :last-child, .framer-Tlc70 .framer-10zql37 > :last-child, .framer-Tlc70 .framer-1uc53n3 > :last-child, .framer-Tlc70 .framer-1k5c2vn > :last-child, .framer-Tlc70 .framer-1gtl8ny > :last-child, .framer-Tlc70 .framer-js50pk > :last-child, .framer-Tlc70 .framer-1uj2yo2 > :last-child { margin-right: 0px; } .framer-Tlc70 .framer-1721gf8 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-Tlc70 .framer-1mv1eps > *, .framer-Tlc70 .framer-d1v71i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Tlc70 .framer-19tqxej > * { margin: 0px; margin-bottom: calc(71px / 2); margin-top: calc(71px / 2); } .framer-Tlc70 .framer-1dapevh > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Tlc70 .framer-1ei3dj8 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-Tlc70 .framer-3wuba1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Tlc70 .framer-1uc53n3 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Tlc70 .framer-1kd754d > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Tlc70 .framer-yv6z8j > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Tlc70 .framer-1b350kh > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-Tlc70 .framer-1gtl8ny > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-Tlc70 .framer-js50pk > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\", \"@media (min-width: 1440px) { .framer-Tlc70 .hidden-ysf378 { display: none !important; } }\", `@media (min-width: 992px) and (max-width: 1439px) { .framer-Tlc70 .hidden-ca2yw { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-Tlc70 .framer-ysf378 { width: 992px; } .framer-Tlc70 .framer-1xvrezi { height: min-content; } .framer-Tlc70 .framer-1rqcmhx { height: 454px; } .framer-Tlc70 .framer-1bwi5aj, .framer-Tlc70 .framer-1pqfeet, .framer-Tlc70 .framer-185mmcn { max-width: 1100px; } .framer-Tlc70 .framer-1khcszw { height: var(--framer-aspect-ratio-supported, 431px); } .framer-Tlc70 .framer-72gkw1-container { height: var(--framer-aspect-ratio-supported, 480px); width: 800px; } .framer-Tlc70 .framer-10zql37, .framer-Tlc70 .framer-1k5c2vn { max-width: 1000px; } .framer-Tlc70 .framer-1b350kh { width: 77%; } .framer-Tlc70 .framer-1lfkfro { width: 81%; }}`, `@media (min-width: 810px) and (max-width: 991px) { .framer-Tlc70 .hidden-1wofefm { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-Tlc70 .framer-ysf378 { width: 810px; } .framer-Tlc70 .framer-1xvrezi { height: min-content; padding: 80px 0px 80px 0px; } .framer-Tlc70 .framer-1rqcmhx { height: 454px; } .framer-Tlc70 .framer-1bwi5aj, .framer-Tlc70 .framer-1pqfeet, .framer-Tlc70 .framer-185mmcn, .framer-Tlc70 .framer-10zql37, .framer-Tlc70 .framer-1k5c2vn { max-width: 720px; padding: 0px 16px 0px 16px; } .framer-Tlc70 .framer-1mv1eps, .framer-Tlc70 .framer-3wuba1 { padding: 80px 0px 80px 0px; } .framer-Tlc70 .framer-19tqxej { gap: 40px; } .framer-Tlc70 .framer-srbg7l { flex-direction: column; gap: 24px; justify-content: center; width: 80%; } .framer-Tlc70 .framer-zercn9 { flex: none; width: 100%; } .framer-Tlc70 .framer-1khcszw { height: var(--framer-aspect-ratio-supported, 318px); } .framer-Tlc70 .framer-72gkw1-container { height: var(--framer-aspect-ratio-supported, 360px); width: 600px; } .framer-Tlc70 .framer-1ei3dj8 { flex-wrap: wrap; gap: 40px; } .framer-Tlc70 .framer-1uc53n3 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-Tlc70 .framer-19y7rw0-container, .framer-Tlc70 .framer-l7enzz-container, .framer-Tlc70 .framer-dee9wr-container { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-Tlc70 .framer-1kd754d { padding: 0px 0px 80px 0px; } .framer-Tlc70 .framer-yv6z8j { gap: 60px; } .framer-Tlc70 .framer-1b350kh { width: 100%; } .framer-Tlc70 .framer-1lfkfro { width: 77%; } .framer-Tlc70 .framer-1tqo1z { grid-template-columns: repeat(3, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Tlc70 .framer-19tqxej, .framer-Tlc70 .framer-srbg7l, .framer-Tlc70 .framer-1ei3dj8, .framer-Tlc70 .framer-1uc53n3, .framer-Tlc70 .framer-yv6z8j { gap: 0px; } .framer-Tlc70 .framer-19tqxej > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Tlc70 .framer-19tqxej > :first-child, .framer-Tlc70 .framer-srbg7l > :first-child, .framer-Tlc70 .framer-yv6z8j > :first-child { margin-top: 0px; } .framer-Tlc70 .framer-19tqxej > :last-child, .framer-Tlc70 .framer-srbg7l > :last-child, .framer-Tlc70 .framer-yv6z8j > :last-child { margin-bottom: 0px; } .framer-Tlc70 .framer-srbg7l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Tlc70 .framer-1ei3dj8 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Tlc70 .framer-1ei3dj8 > :first-child { margin-left: 0px; } .framer-Tlc70 .framer-1ei3dj8 > :last-child { margin-right: 0px; } .framer-Tlc70 .framer-1uc53n3 > *, .framer-Tlc70 .framer-1uc53n3 > :first-child, .framer-Tlc70 .framer-1uc53n3 > :last-child { margin: 0px; } .framer-Tlc70 .framer-yv6z8j > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`, `@media (max-width: 809px) { .framer-Tlc70 .hidden-mtztow { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-Tlc70 .framer-ysf378 { width: 390px; } .framer-Tlc70 .framer-1xvrezi { height: min-content; padding: 60px 0px 60px 0px; } .framer-Tlc70 .framer-1bwi5aj, .framer-Tlc70 .framer-1pqfeet, .framer-Tlc70 .framer-185mmcn, .framer-Tlc70 .framer-10zql37, .framer-Tlc70 .framer-1k5c2vn { max-width: 330px; padding: 0px 12px 0px 12px; } .framer-Tlc70 .framer-1mv1eps { gap: 0px; padding: 60px 0px 40px 0px; } .framer-Tlc70 .framer-19tqxej, .framer-Tlc70 .framer-1dapevh { gap: 35px; } .framer-Tlc70 .framer-srbg7l { flex-direction: column; gap: 24px; justify-content: center; } .framer-Tlc70 .framer-zercn9, .framer-Tlc70 .framer-19y7rw0-container, .framer-Tlc70 .framer-l7enzz-container, .framer-Tlc70 .framer-dee9wr-container { flex: none; width: 100%; } .framer-Tlc70 .framer-1khcszw { height: var(--framer-aspect-ratio-supported, 142px); } .framer-Tlc70 .framer-72gkw1-container { height: var(--framer-aspect-ratio-supported, 180px); width: 300px; } .framer-Tlc70 .framer-1o7qj9g { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Tlc70 .framer-1ei3dj8 { flex-direction: column; gap: 32px; } .framer-Tlc70 .framer-3wuba1 { padding: 60px 0px 60px 0px; } .framer-Tlc70 .framer-1uc53n3 { flex-direction: column; } .framer-Tlc70 .framer-1kd754d { padding: 0px 0px 60px 0px; } .framer-Tlc70 .framer-yv6z8j { gap: 40px; } .framer-Tlc70 .framer-1b350kh { width: 100%; } .framer-Tlc70 .framer-1tqo1z { gap: 32px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Tlc70 .framer-1mv1eps, .framer-Tlc70 .framer-19tqxej, .framer-Tlc70 .framer-srbg7l, .framer-Tlc70 .framer-1dapevh, .framer-Tlc70 .framer-1ei3dj8, .framer-Tlc70 .framer-1uc53n3, .framer-Tlc70 .framer-yv6z8j, .framer-Tlc70 .framer-1tqo1z { gap: 0px; } .framer-Tlc70 .framer-1mv1eps > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Tlc70 .framer-1mv1eps > :first-child, .framer-Tlc70 .framer-19tqxej > :first-child, .framer-Tlc70 .framer-srbg7l > :first-child, .framer-Tlc70 .framer-1dapevh > :first-child, .framer-Tlc70 .framer-1ei3dj8 > :first-child, .framer-Tlc70 .framer-1uc53n3 > :first-child, .framer-Tlc70 .framer-yv6z8j > :first-child { margin-top: 0px; } .framer-Tlc70 .framer-1mv1eps > :last-child, .framer-Tlc70 .framer-19tqxej > :last-child, .framer-Tlc70 .framer-srbg7l > :last-child, .framer-Tlc70 .framer-1dapevh > :last-child, .framer-Tlc70 .framer-1ei3dj8 > :last-child, .framer-Tlc70 .framer-1uc53n3 > :last-child, .framer-Tlc70 .framer-yv6z8j > :last-child { margin-bottom: 0px; } .framer-Tlc70 .framer-19tqxej > *, .framer-Tlc70 .framer-1dapevh > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-Tlc70 .framer-srbg7l > *, .framer-Tlc70 .framer-1uc53n3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Tlc70 .framer-1ei3dj8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Tlc70 .framer-yv6z8j > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Tlc70 .framer-1tqo1z > *, .framer-Tlc70 .framer-1tqo1z > :first-child, .framer-Tlc70 .framer-1tqo1z > :last-child { margin: 0px; } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * @framerIntrinsicHeight 4250\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * @framerIntrinsicWidth 1440\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oPUwhJ5eM\":{\"layout\":[\"fixed\",\"auto\"]},\"jCDm3fDXF\":{\"layout\":[\"fixed\",\"auto\"]},\"s0meHTf1b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  */\nconst FramerLbQTPKBK_ = withCSS(Component, css, \"framer-Tlc70\");\nexport default FramerLbQTPKBK_;\nFramerLbQTPKBK_.displayName = \"About\";\nFramerLbQTPKBK_.defaultProps = {\n  height: 4250,\n  width: 1440\n};\naddFonts(FramerLbQTPKBK_, [{\n  family: \"Public Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/LbQTPKBK_:default\",\n    url: \"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf\",\n  weight: \"600\"\n}, {\n  family: \"Outfit\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/LbQTPKBK_:default\",\n    url: \"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\",\n  weight: \"400\"\n}, ...HeaderFonts, ...VideoFonts, ...FeatherFonts, ...FactCardFonts, ...BadgeFonts, ...TeamCardFonts, ...CTAFonts, ...FooterV1Fonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerLbQTPKBK_\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oPUwhJ5eM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jCDm3fDXF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s0meHTf1b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"4250\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"1440\"\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": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "amount", "height", "id", "text", "title", "width", "props", "ref", "ref1", "ref2", "_variant", "ref3", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "kFrz75Uu0", "s6HPbQ3tj", "RCQ4g2WHq", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "css", "FramercB7mWkA5v", "withCSS", "cB7mWkA5v_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "HeaderFonts", "getFonts", "WJJQkHX23_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "FeatherFonts", "Icon", "ImageWithFX", "Image2", "RichTextWithFX", "RichText", "FactCardFonts", "cB7mWkA5v_default", "ContainerWithFX", "Container", "BadgeFonts", "sDuCOKOGk_default", "TeamCardFonts", "q93jvmlKm_default", "CTAFonts", "RLLEUZRbS_default", "FooterV1Fonts", "FjRVUJpQ0_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "Overlay", "children", "blockDocumentScrolling", "visible", "setVisible", "useOverlayState", "transition1", "animation", "transformTemplate", "_", "t", "animation1", "animation2", "animation3", "animation4", "transition2", "animation5", "animation6", "animation7", "animation8", "animation9", "animation10", "animation11", "animation12", "animation13", "transition3", "animation14", "transition4", "animation15", "transition5", "animation16", "transition6", "animation17", "animation18", "animation19", "animation20", "animation21", "transition7", "animation22", "addImageAlt", "image", "alt", "animation23", "animation24", "animation25", "transition8", "animation26", "metadata", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap42m929", "overlay", "args", "onClickzn6atv", "useRouteElementId", "ref1", "pe", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "PropertyOverrides", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "WJJQkHX23_default", "Image2", "RichText", "x", "MotionDivWithFX", "overlaybvpqxu", "l", "ImageWithFX", "AnimatePresence", "qa", "Video", "Icon", "RichTextWithFX", "ContainerWithFX", "cB7mWkA5v_default", "sDuCOKOGk_default", "q93jvmlKm_default", "RLLEUZRbS_default", "FjRVUJpQ0_default", "css", "FramerLbQTPKBK_", "withCSS", "LbQTPKBK_default", "addFonts", "HeaderFonts", "VideoFonts", "FeatherFonts", "FactCardFonts", "BadgeFonts", "TeamCardFonts", "CTAFonts", "FooterV1Fonts", "fonts", "__FramerMetadata__"]
}
