{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/react-use-intercom.js@0.0.3", "ssg:https://framer.com/m/framer/integrations-styles.js@^0.2.0", "ssg:https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js", "ssg:https://framerusercontent.com/modules/hF1JObO7iQZ64W01Bg0W/u3TwWGaLwqHz0mKlAktL/augiA20Il.js"],
  "sourcesContent": ["import { createContext, useRef, useCallback, useMemo, createElement, useContext } from 'react';\n\nfunction _extends() {\n  _extends = Object.assign || function (target) {\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n\n      for (var key in source) {\n        if (Object.prototype.hasOwnProperty.call(source, key)) {\n          target[key] = source[key];\n        }\n      }\n    }\n\n    return target;\n  };\n\n  return _extends.apply(this, arguments);\n}\n\nfunction _objectWithoutPropertiesLoose(source, excluded) {\n  if (source == null) return {};\n  var target = {};\n  var sourceKeys = Object.keys(source);\n  var key, i;\n\n  for (i = 0; i < sourceKeys.length; i++) {\n    key = sourceKeys[i];\n    if (excluded.indexOf(key) >= 0) continue;\n    target[key] = source[key];\n  }\n\n  return target;\n}\n\n/**\r\n * Logs messages in the console with a corresponding urgency\r\n *\r\n * @param level the urgency of the message\r\n * @param message the message to log in the console\r\n */\nvar log = function log(level, message) {\n  if (process.env.NODE_ENV !== \"production\") {\n    var packageName = '[react-use-intercom]';\n\n    switch (level) {\n      case 'info':\n        console.log(packageName + \" \" + message);\n        break;\n\n      case 'warn':\n        console.warn(packageName + \" \" + message);\n        break;\n\n      case 'error':\n        console.error(packageName + \" \" + message);\n        break;\n\n      default:\n        console.log(packageName + \" \" + message);\n    }\n  }\n};\n\nvar isEmptyObject = function isEmptyObject(obj) {\n  return Object.keys(obj).length === 0 && obj.constructor === Object;\n};\nvar isSSR = typeof window === 'undefined';\n/**\r\n * Removes object entries where the value equals to `undefined`\r\n *\r\n * @param obj\r\n */\n\nvar removeUndefined = function removeUndefined(obj) {\n  Object.keys(obj).forEach(function (key) {\n    if (obj[key] && typeof obj[key] === 'object') removeUndefined(obj[key]);else if (obj[key] === undefined) delete obj[key];\n  });\n  return obj;\n};\n\n/**\r\n * Safely exposes `window.Intercom` and passes the arguments to the instance\r\n *\r\n * @param method method passed to the `window.Intercom` instance\r\n * @param args arguments passed to the `window.Intercom` instance\r\n *\r\n * @see {@link https://developers.intercom.com/installing-intercom/docs/intercom-javascript}\r\n */\n\nvar IntercomAPI = function IntercomAPI(method) {\n  if (!isSSR && window.Intercom) {\n    for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n      args[_key - 1] = arguments[_key];\n    }\n\n    return window.Intercom.apply(null, [method].concat(args));\n  } else {\n    log('error', method + \" Intercom instance is not initalized yet\");\n  }\n};\n\nvar NO_INTERCOM_PROVIDER_MESSAGE = 'Please wrap your component with `IntercomProvider`.';\nvar IntercomContext = /*#__PURE__*/createContext({\n  boot: function boot() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  shutdown: function shutdown() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  hardShutdown: function hardShutdown() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  update: function update() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  hide: function hide() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  show: function show() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  showMessages: function showMessages() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  showNewMessages: function showNewMessages() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  getVisitorId: function getVisitorId() {\n    log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n    return '';\n  },\n  startTour: function startTour() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  trackEvent: function trackEvent() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  }\n});\n\n// @ts-nocheck\n\n/**\r\n * Snippet to initialize the Intercom instance\r\n *\r\n * @param appId - Intercom app id\r\n * @param [timeout=0] - Amount of milliseconds that the initialization should be delayed, defaults to 0\r\n *\r\n * @see {@link https://developers.intercom.com/installing-intercom/docs/basic-javascript}\r\n */\nvar initialize = function initialize(appId, timeout) {\n  if (timeout === void 0) {\n    timeout = 0;\n  }\n\n  var w = window;\n  var ic = w.Intercom;\n\n  if (typeof ic === 'function') {\n    ic('reattach_activator');\n    ic('update', w.intercomSettings);\n  } else {\n    var d = document;\n\n    var i = function i() {\n      i.c(arguments);\n    };\n\n    i.q = [];\n\n    i.c = function (args) {\n      i.q.push(args);\n    };\n\n    w.Intercom = i;\n\n    var l = function l() {\n      setTimeout(function () {\n        var s = d.createElement('script');\n        s.type = 'text/javascript';\n        s.async = true;\n        s.src = 'https://widget.intercom.io/widget/' + appId;\n        var x = d.getElementsByTagName('script')[0];\n        x.parentNode.insertBefore(s, x);\n      }, timeout);\n    };\n\n    if (document.readyState === 'complete') {\n      l();\n    } else if (w.attachEvent) {\n      w.attachEvent('onload', l);\n    } else {\n      w.addEventListener('load', l, false);\n    }\n  }\n};\n\nvar mapMessengerAttributesToRawMessengerAttributes = function mapMessengerAttributesToRawMessengerAttributes(attributes) {\n  return {\n    custom_launcher_selector: attributes.customLauncherSelector,\n    alignment: attributes.alignment,\n    vertical_padding: attributes.verticalPadding,\n    horizontal_padding: attributes.horizontalPadding,\n    hide_default_launcher: attributes.hideDefaultLauncher,\n    session_duration: attributes.sessionDuration,\n    action_color: attributes.actionColor,\n    background_color: attributes.backgroundColor\n  };\n};\n\nvar mapDataAttributesCompanyToRawDataAttributesCompany = function mapDataAttributesCompanyToRawDataAttributesCompany(attributes) {\n  return _extends({\n    company_id: attributes.companyId,\n    name: attributes.name,\n    created_at: attributes.createdAt,\n    plan: attributes.plan,\n    monthly_spend: attributes.monthlySpend,\n    user_count: attributes.userCount,\n    size: attributes.size,\n    website: attributes.website,\n    industry: attributes.industry\n  }, attributes.customAttributes);\n};\n\nvar mapDataAttributesAvatarToRawDataAttributesAvatar = function mapDataAttributesAvatarToRawDataAttributesAvatar(attributes) {\n  return {\n    type: attributes.type,\n    image_url: attributes.imageUrl\n  };\n};\n\nvar mapDataAttributesToRawDataAttributes = function mapDataAttributesToRawDataAttributes(attributes) {\n  var _attributes$companies;\n\n  return _extends({\n    email: attributes.email,\n    user_id: attributes.userId,\n    created_at: attributes.createdAt,\n    name: attributes.name,\n    phone: attributes.phone,\n    last_request_at: attributes.lastRequestAt,\n    unsubscribed_from_emails: attributes.unsubscribedFromEmails,\n    language_override: attributes.languageOverride,\n    utm_campaign: attributes.utmCampaign,\n    utm_content: attributes.utmContent,\n    utm_medium: attributes.utmMedium,\n    utm_source: attributes.utmSource,\n    utm_term: attributes.utmTerm,\n    avatar: attributes.avatar && mapDataAttributesAvatarToRawDataAttributesAvatar(attributes.avatar),\n    user_hash: attributes.userHash,\n    company: attributes.company && mapDataAttributesCompanyToRawDataAttributesCompany(attributes.company),\n    companies: (_attributes$companies = attributes.companies) == null ? void 0 : _attributes$companies.map(mapDataAttributesCompanyToRawDataAttributesCompany)\n  }, attributes.customAttributes);\n};\nvar mapIntercomPropsToRawIntercomProps = function mapIntercomPropsToRawIntercomProps(props) {\n  return removeUndefined(_extends({}, mapMessengerAttributesToRawMessengerAttributes(props), mapDataAttributesToRawDataAttributes(props)));\n};\n\nvar IntercomProvider = function IntercomProvider(_ref) {\n  var appId = _ref.appId,\n      _ref$autoBoot = _ref.autoBoot,\n      autoBoot = _ref$autoBoot === void 0 ? false : _ref$autoBoot,\n      autoBootProps = _ref.autoBootProps,\n      children = _ref.children,\n      onHide = _ref.onHide,\n      onShow = _ref.onShow,\n      onUnreadCountChange = _ref.onUnreadCountChange,\n      _ref$shouldInitialize = _ref.shouldInitialize,\n      shouldInitialize = _ref$shouldInitialize === void 0 ? !isSSR : _ref$shouldInitialize,\n      apiBase = _ref.apiBase,\n      initializeDelay = _ref.initializeDelay,\n      rest = _objectWithoutPropertiesLoose(_ref, [\"appId\", \"autoBoot\", \"autoBootProps\", \"children\", \"onHide\", \"onShow\", \"onUnreadCountChange\", \"shouldInitialize\", \"apiBase\", \"initializeDelay\"]);\n\n  var isBooted = useRef(false);\n  var isInitialized = useRef(false);\n  if (!isEmptyObject(rest) && process.env.NODE_ENV !== \"production\") log('error', ['some invalid props were passed to IntercomProvider. ', \"Please check following props: \" + Object.keys(rest).join(', ') + \".\"].join(''));\n  var boot = useCallback(function (props) {\n    if (!window.Intercom && !shouldInitialize) {\n      log('warn', 'Intercom instance is not initialized because `shouldInitialize` is set to `false` in `IntercomProvider`');\n      return;\n    }\n\n    if (isBooted.current) {\n      return;\n    }\n\n    var metaData = _extends({\n      app_id: appId\n    }, apiBase && {\n      api_base: apiBase\n    }, props && mapIntercomPropsToRawIntercomProps(props));\n\n    window.intercomSettings = metaData;\n    IntercomAPI('boot', metaData);\n    isBooted.current = true;\n  }, [apiBase, appId, shouldInitialize]);\n\n  if (!isSSR && shouldInitialize && !isInitialized.current) {\n    initialize(appId, initializeDelay); // attach listeners\n\n    if (onHide) IntercomAPI('onHide', onHide);\n    if (onShow) IntercomAPI('onShow', onShow);\n    if (onUnreadCountChange) IntercomAPI('onUnreadCountChange', onUnreadCountChange);\n\n    if (autoBoot) {\n      boot(autoBootProps);\n    }\n\n    isInitialized.current = true;\n  }\n\n  var ensureIntercom = useCallback(function (functionName, callback) {\n    if (functionName === void 0) {\n      functionName = 'A function';\n    }\n\n    if (!window.Intercom && !shouldInitialize) {\n      log('warn', 'Intercom instance is not initialized because `shouldInitialize` is set to `false` in `IntercomProvider`');\n      return;\n    }\n\n    if (!isBooted.current) {\n      log('warn', [\"'\" + functionName + \"' was called but Intercom has not booted yet. \", \"Please call 'boot' before calling '\" + functionName + \"' or \", \"set 'autoBoot' to true in the IntercomProvider.\"].join(''));\n      return;\n    }\n\n    return callback();\n  }, [shouldInitialize]);\n  var shutdown = useCallback(function () {\n    if (!isBooted.current) return;\n    IntercomAPI('shutdown');\n    isBooted.current = false;\n  }, []);\n  var hardShutdown = useCallback(function () {\n    if (!isBooted.current) return;\n    IntercomAPI('shutdown');\n    delete window.Intercom;\n    delete window.intercomSettings;\n    isBooted.current = false;\n  }, []);\n  var refresh = useCallback(function () {\n    ensureIntercom('update', function () {\n      var lastRequestedAt = new Date().getTime();\n      IntercomAPI('update', {\n        last_requested_at: lastRequestedAt\n      });\n    });\n  }, [ensureIntercom]);\n  var update = useCallback(function (props) {\n    ensureIntercom('update', function () {\n      if (!props) {\n        refresh();\n        return;\n      }\n\n      var rawProps = mapIntercomPropsToRawIntercomProps(props);\n      window.intercomSettings = _extends({}, window.intercomSettings, rawProps);\n      IntercomAPI('update', rawProps);\n    });\n  }, [ensureIntercom, refresh]);\n  var hide = useCallback(function () {\n    ensureIntercom('hide', function () {\n      IntercomAPI('hide');\n    });\n  }, [ensureIntercom]);\n  var show = useCallback(function () {\n    ensureIntercom('show', function () {\n      return IntercomAPI('show');\n    });\n  }, [ensureIntercom]);\n  var showMessages = useCallback(function () {\n    ensureIntercom('showMessages', function () {\n      IntercomAPI('showMessages');\n    });\n  }, [ensureIntercom]);\n  var showNewMessages = useCallback(function (message) {\n    ensureIntercom('showNewMessage', function () {\n      if (!message) {\n        IntercomAPI('showNewMessage');\n      } else {\n        IntercomAPI('showNewMessage', message);\n      }\n    });\n  }, [ensureIntercom]);\n  var getVisitorId = useCallback(function () {\n    return ensureIntercom('getVisitorId', function () {\n      return IntercomAPI('getVisitorId');\n    });\n  }, [ensureIntercom]);\n  var startTour = useCallback(function (tourId) {\n    ensureIntercom('startTour', function () {\n      IntercomAPI('startTour', tourId);\n    });\n  }, [ensureIntercom]);\n  var trackEvent = useCallback(function (event, metaData) {\n    ensureIntercom('trackEvent', function () {\n      if (metaData) {\n        IntercomAPI('trackEvent', event, metaData);\n      } else {\n        IntercomAPI('trackEvent', event);\n      }\n    });\n  }, [ensureIntercom]);\n  var providerValue = useMemo(function () {\n    return {\n      boot: boot,\n      shutdown: shutdown,\n      hardShutdown: hardShutdown,\n      update: update,\n      hide: hide,\n      show: show,\n      showMessages: showMessages,\n      showNewMessages: showNewMessages,\n      getVisitorId: getVisitorId,\n      startTour: startTour,\n      trackEvent: trackEvent\n    };\n  }, [boot, shutdown, hardShutdown, update, hide, show, showMessages, showNewMessages, getVisitorId, startTour, trackEvent]);\n  var content = useMemo(function () {\n    return children;\n  }, [children]);\n  return createElement(IntercomContext.Provider, {\n    value: providerValue\n  }, content);\n};\nvar useIntercomContext = function useIntercomContext() {\n  return useContext(IntercomContext);\n};\n\nvar useIntercom = function useIntercom() {\n  return useIntercomContext();\n};\n\nexport { IntercomProvider, useIntercom };\n//# sourceMappingURL=react-use-intercom.esm.js.map\n", "import{containerStyles,emptyStateStyle as defaultEmptyStateStyle}from\"https://framer.com/m/framer/default-utils.js@^0.43.0\";export const emptyStateStyle={...containerStyles,...defaultEmptyStateStyle,textAlign:\"center\",padding:15,width:200,height:100,overflow:\"hidden\"};export const neutralStateStyle={...emptyStateStyle,color:\"#09f\",background:\"rgb(0, 153, 255, 0.1)\",borderColor:\"#09f\"};export const stateTitleStyle={fontSize:12,fontWeight:600,margin:0};export const stateParagraphStyle={fontSize:12,maxWidth:200,lineHeight:1.4,margin:\"5px 0 0 0\"};\nexport const __FramerMetadata__ = {\"exports\":{\"neutralStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateTitleStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateParagraphStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./styles.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{IntercomProvider}from\"https://framer.com/m/framer/react-use-intercom.js@0.0.3\";import{neutralStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@^0.2.0\";/**\n * INTERCOM\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Intercom({appId,style,...props}){const isCanvas=RenderTarget.current()===RenderTarget.canvas;return isCanvas?/*#__PURE__*/ _jsxs(motion.div,{style:{...neutralStateStyle,...style},children:[/*#__PURE__*/ _jsx(\"h1\",{style:stateTitleStyle,children:\"Intercom\"}),/*#__PURE__*/ _jsx(\"p\",{style:stateParagraphStyle,children:\"Drop this component into a Screen to add Intercom.\"})]}):/*#__PURE__*/ _jsx(IntercomProvider,{autoBoot:true,appId:appId});};addPropertyControls(Intercom,{appId:{title:\"ID\",type:ControlType.String,description:\"Create an [Intercom](https://www.intercom.com/) account and copy your workspace ID. [Learn more\u2026](https://www.framer.com/sites/integrations/intercom/)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Intercom\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"100\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Intercom.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Intercom from\"https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js\";import TestimonialTile from\"#framer/local/canvasComponent/eTwJRU1fv/eTwJRU1fv.js\";import JoyfillButton from\"#framer/local/canvasComponent/FGWKrK26Y/FGWKrK26Y.js\";import JoyfillLogoTicker from\"#framer/local/canvasComponent/FtLiZ47G5/FtLiZ47G5.js\";import JoyfillIcon from\"#framer/local/canvasComponent/pfVpzfjrW/pfVpzfjrW.js\";import JoyfillBadge from\"#framer/local/canvasComponent/um89TSiz5/um89TSiz5.js\";import*as sharedStyle6 from\"#framer/local/css/bSATG7Tue/bSATG7Tue.js\";import*as sharedStyle4 from\"#framer/local/css/IuaKqcmEi/IuaKqcmEi.js\";import*as sharedStyle from\"#framer/local/css/mn9rL4gMa/mn9rL4gMa.js\";import*as sharedStyle1 from\"#framer/local/css/OiKjxnacX/OiKjxnacX.js\";import*as sharedStyle7 from\"#framer/local/css/rPsGoGq4q/rPsGoGq4q.js\";import*as sharedStyle5 from\"#framer/local/css/scmks5U6e/scmks5U6e.js\";import*as sharedStyle2 from\"#framer/local/css/tvs_MnVgX/tvs_MnVgX.js\";import*as sharedStyle3 from\"#framer/local/css/XIcfrSolY/XIcfrSolY.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const JoyfillButtonFonts=getFonts(JoyfillButton);const JoyfillIconFonts=getFonts(JoyfillIcon);const JoyfillLogoTickerFonts=getFonts(JoyfillLogoTicker);const JoyfillBadgeFonts=getFonts(JoyfillBadge);const TestimonialTileFonts=getFonts(TestimonialTile);const IntercomFonts=getFonts(Intercom);const breakpoints={gzFA8qZcQ:\"(min-width: 810px) and (max-width: 1439px)\",p724YwG9B:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dmao7\";const variantClassNames={gzFA8qZcQ:\"framer-v-109djs1\",p724YwG9B:\"framer-v-10trhkp\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"p724YwG9B\",Tablet:\"gzFA8qZcQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const XETTrMAwB3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"gzFA8qZcQ\",\"p724YwG9B\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"p724YwG9B\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"form builder for the workforce\",fit:\"fill\",intrinsicHeight:803,intrinsicWidth:1440,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+425),pixelHeight:803,pixelWidth:1440,sizes:\"1440px\",src:\"https://framerusercontent.com/images/5kZfBuzwqIrbiGcPY6XCQKleDcQ.svg\",srcSet:\"https://framerusercontent.com/images/5kZfBuzwqIrbiGcPY6XCQKleDcQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5kZfBuzwqIrbiGcPY6XCQKleDcQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5kZfBuzwqIrbiGcPY6XCQKleDcQ.svg 1440w\"},className:\"framer-9r993i hidden-109djs1 hidden-10trhkp\",\"data-framer-name\":\"Hero BG\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mml3u7\",\"data-framer-name\":\"Glow BG\",fill:\"black\",intrinsicHeight:700,intrinsicWidth:1e3,svg:'<svg width=\"1000\" height=\"700\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><ellipse cx=\"500\" cy=\"350\" rx=\"300\" ry=\"150\" transform=\"rotate(180 500 350)\" fill=\"url(#b)\" fill-opacity=\".4\"/></g><defs><linearGradient id=\"b\" x1=\"200\" y1=\"200\" x2=\"440\" y2=\"680\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FE4FED\"/><stop offset=\".33\" stop-color=\"#584FFE\"/><stop offset=\".66\" stop-color=\"#276FFA\"/><stop offset=\"1\" stop-color=\"#4FC4FE\"/></linearGradient><filter id=\"a\" x=\"0\" y=\"0\" width=\"1000\" height=\"700\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\"100\" result=\"effect1_foregroundBlur_1376_160818\"/></filter></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-bsq3kg\",\"data-framer-name\":\"Hero Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bnnvos\",\"data-framer-name\":\"Hero Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xlxs2x\",\"data-styles-preset\":\"mn9rL4gMa\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(335deg, var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33)) 56.18728885135135%, var(--token-89aaf96f-2741-49b7-9227-5701c140127e, rgb(55, 59, 73)) 71.39900056306307%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Limitless forms for an \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"innovative workforce\"})]})})}),className:\"framer-1d0phoy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Teams use Joyfill to achieve complex data collection with next-gen form technology.\"})})},p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1501di6\",\"data-styles-preset\":\"XIcfrSolY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Teams use Joyfill to achieve complex data collection with next-gen form technology.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y1pgq\",\"data-styles-preset\":\"OiKjxnacX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Teams use Joyfill to achieve complex data collection with next-gen form technology.\"})}),className:\"framer-167aaun\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{y:(componentViewport?.y||0)+0+0+0+0+50+128.4},p724YwG9B:{y:(componentViewport?.y||0)+0+0+0+0+50+103.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+0+100+133.2,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-gu7mbn-container\",id:\"gu7mbn\",nodeId:\"Wd_Dulu7U\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(JoyfillButton,{eo3iERe7Y:false,HDNPTsdIb:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\",height:\"100%\",id:\"Wd_Dulu7U\",jTB_5vCNG:\"Check\",layoutId:\"Wd_Dulu7U\",mCUjiCotT:true,PB0e8P10i:\"rgb(255, 255, 255)\",pZfMWzByP:false,style:{height:\"100%\"},variant:\"RALqr2W62\",VYvqhSYf5:\"Get started free\",width:\"100%\",WkP5Be1sp:\"ArrowRight\",XETTrMAwB:XETTrMAwB3bnx0g({overlay}),yLKOccSzh:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1r7o2zf\"),\"data-framer-portal-id\":\"gu7mbn\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"wbcsMmprP\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1x6zdkz\"),\"data-framer-portal-id\":\"gu7mbn\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2axfa6\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dhn5ky\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"50px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bljuop-container\",inComponentSlot:true,nodeId:\"QXLRTdOzB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(JoyfillIcon,{height:\"100%\",id:\"QXLRTdOzB\",layoutId:\"QXLRTdOzB\",SaLdOLeGh:\"HardHat\",style:{height:\"100%\",width:\"100%\"},variant:\"cPHMi2IBj\",Vuab3yT6O:\"regular\",WBDnJrHlb:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19rn7vg\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1s4hkul\",\"data-styles-preset\":\"IuaKqcmEi\",children:\"I'm a service business\"})}),className:\"framer-x6scvv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",children:\"I want use Joyfill to go paperless with my service forms.\"})}),className:\"framer-1g00atq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l0vton-container\",inComponentSlot:true,nodeId:\"wwYGszdjL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(JoyfillButton,{eo3iERe7Y:false,HDNPTsdIb:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\",height:\"100%\",id:\"wwYGszdjL\",jTB_5vCNG:\"Check\",layoutId:\"wwYGszdjL\",mCUjiCotT:true,PB0e8P10i:\"rgb(255, 255, 255)\",pZfMWzByP:false,style:{height:\"100%\"},variant:\"RALqr2W62\",VYvqhSYf5:\"Try it free\",width:\"100%\",WkP5Be1sp:\"ArrowSquareOut\",Ya8y8XLuE:\"https://app.joyfill.io/signup?source=1005890&tags=websitefreetrialsignup\",yLKOccSzh:\"var(--token-dc3ddb19-b0a3-43f6-8da8-958cf3f9f900, rgb(251, 252, 253))\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ggykg\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"50px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kjerwr-container\",inComponentSlot:true,nodeId:\"J4TP9_USi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(JoyfillIcon,{height:\"100%\",id:\"J4TP9_USi\",layoutId:\"J4TP9_USi\",SaLdOLeGh:\"Code\",style:{height:\"100%\",width:\"100%\"},variant:\"AGw4DLNC7\",Vuab3yT6O:\"regular\",WBDnJrHlb:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cu6vpl\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1s4hkul\",\"data-styles-preset\":\"IuaKqcmEi\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I'm a developer\"})}),className:\"framer-sooixw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",style:{\"--framer-text-color\":\"var(--token-d26026be-a12a-4900-85a3-faeb93704037, rgb(148, 157, 177))\"},children:\"I want to embed Joyfill inside my application.\"})}),className:\"framer-1uy13sr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hbdzfh-container\",inComponentSlot:true,nodeId:\"fH74fbEdv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(JoyfillButton,{eo3iERe7Y:true,HDNPTsdIb:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\",height:\"100%\",id:\"fH74fbEdv\",jTB_5vCNG:\"Check\",layoutId:\"fH74fbEdv\",mCUjiCotT:true,PB0e8P10i:\"rgb(255, 255, 255)\",pZfMWzByP:false,style:{height:\"100%\"},variant:\"rriLK9ztg\",VYvqhSYf5:\"Try sandbox account\",width:\"100%\",WkP5Be1sp:\"ArrowSquareOut\",Ya8y8XLuE:\"https://app-joy.joyfill.io/register\",yLKOccSzh:\"var(--token-dc3ddb19-b0a3-43f6-8da8-958cf3f9f900, rgb(251, 252, 253))\"})})})]})]})]})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-soidy8\",\"data-framer-name\":\"Hero Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{background:{alt:\"next-gen form builder software\",fit:\"fill\",intrinsicHeight:1720,intrinsicWidth:2978,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+268.4+0+0),pixelHeight:936,pixelWidth:1620,sizes:\"800px\",src:\"https://framerusercontent.com/images/vdApN9GPIlmqU5upQJFoteScMKI.webp\",srcSet:\"https://framerusercontent.com/images/vdApN9GPIlmqU5upQJFoteScMKI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vdApN9GPIlmqU5upQJFoteScMKI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/vdApN9GPIlmqU5upQJFoteScMKI.webp 1620w\"}},p724YwG9B:{background:{alt:\"next-gen form builder software\",fit:\"fill\",intrinsicHeight:1720,intrinsicWidth:2978,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+243.6+0+0),pixelHeight:451,pixelWidth:780,sizes:\"380px\",src:\"https://framerusercontent.com/images/fLLY7sZvvrAC364amDMd2EAHYw.webp\",srcSet:\"https://framerusercontent.com/images/fLLY7sZvvrAC364amDMd2EAHYw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fLLY7sZvvrAC364amDMd2EAHYw.webp 780w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"next-gen form builder software\",fit:\"fill\",intrinsicHeight:1720,intrinsicWidth:2978,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+343.2+0+0),pixelHeight:1389,pixelWidth:2400,sizes:\"1200px\",src:\"https://framerusercontent.com/images/bWB4RruES11eLspUEkSIVPcdDk.webp\",srcSet:\"https://framerusercontent.com/images/bWB4RruES11eLspUEkSIVPcdDk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bWB4RruES11eLspUEkSIVPcdDk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bWB4RruES11eLspUEkSIVPcdDk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/bWB4RruES11eLspUEkSIVPcdDk.webp 2400w\"},className:\"framer-1m73cb3\",\"data-framer-name\":\"Homepage Full Width Image (Reduced) (2)\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-835p6h\",\"data-framer-name\":\"Body\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sqpie\",\"data-framer-name\":\"Body Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{\"data-framer-name\":\"Tablet\"},p724YwG9B:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-2j2row\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15g1dcf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y1pgq\",\"data-styles-preset\":\"OiKjxnacX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by 1000+ innovative companies worldwide\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y1pgq\",\"data-styles-preset\":\"OiKjxnacX\",children:\"Trusted by 1000+ innovative companies worldwide\"})}),className:\"framer-1kpkwlc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"726px\",y:(componentViewport?.y||0)+0+947.4+96+0+0+0+0+0+56.8},p724YwG9B:{width:\"338px\",y:(componentViewport?.y||0)+0+413.6+96+0+0+0+0+0+0+172}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,width:\"1000px\",y:(componentViewport?.y||0)+0+1023.2+96+0+0+0+0+0+56.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bszy8g-container\",nodeId:\"LCWJ2Cwsi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(JoyfillLogoTicker,{height:\"100%\",id:\"LCWJ2Cwsi\",layoutId:\"LCWJ2Cwsi\",style:{width:\"100%\"},width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qpbuez\",\"data-framer-name\":\"Choose your path\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1d1yvt6\",\"data-styles-preset\":\"scmks5U6e\",style:{\"--framer-text-alignment\":\"center\"},children:\"Choose your path with Joyfill\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1d1yvt6\",\"data-styles-preset\":\"scmks5U6e\",children:\"Choose your path with Joyfill\"})}),className:\"framer-1jh5v1i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bmpe2l\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14gbobu\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{y:(componentViewport?.y||0)+0+947.4+96+0+284.8+80+88+0+40+-6.2},p724YwG9B:{y:(componentViewport?.y||0)+0+413.6+96+0+0+400+0+88+0+0+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"50px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vp08wn-container\",nodeId:\"ebfi8Wg5_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(JoyfillIcon,{height:\"100%\",id:\"ebfi8Wg5_\",layoutId:\"ebfi8Wg5_\",SaLdOLeGh:\"HardHat\",style:{height:\"100%\",width:\"100%\"},variant:\"cPHMi2IBj\",Vuab3yT6O:\"regular\",WBDnJrHlb:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mhc5dp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1s4hkul\",\"data-styles-preset\":\"IuaKqcmEi\",children:\"I'm a service business\"})})},p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1s4hkul\",\"data-styles-preset\":\"IuaKqcmEi\",children:\"I'm a service business\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1s4hkul\",\"data-styles-preset\":\"IuaKqcmEi\",children:\"I'm a service business\"})}),className:\"framer-3iyj8b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",children:\"Field service software and mobile app for service businesses that need software to perform field inspections, services, and other trade tasks with paperless fillable mobile forms.\"})}),className:\"framer-lacntx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M2nYAxf8T\"},implicitPathVariables:undefined},{href:{webPageId:\"M2nYAxf8T\"},implicitPathVariables:undefined},{href:{webPageId:\"M2nYAxf8T\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{y:(componentViewport?.y||0)+0+947.4+96+0+284.8+80+88+0+40+83.8+0+202.4},p724YwG9B:{y:(componentViewport?.y||0)+0+413.6+96+0+0+400+0+88+0+0+40+90+0+202.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o0d0ve-container\",nodeId:\"TCc7EkpYz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{Ya8y8XLuE:resolvedLinks[1]},p724YwG9B:{Ya8y8XLuE:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(JoyfillButton,{eo3iERe7Y:false,HDNPTsdIb:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\",height:\"100%\",id:\"TCc7EkpYz\",jTB_5vCNG:\"Check\",layoutId:\"TCc7EkpYz\",mCUjiCotT:true,PB0e8P10i:\"rgb(255, 255, 255)\",pZfMWzByP:false,style:{height:\"100%\"},variant:\"RALqr2W62\",VYvqhSYf5:\"Get started\",width:\"100%\",WkP5Be1sp:\"ArrowRight\",Ya8y8XLuE:resolvedLinks[0],yLKOccSzh:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eo2c48\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{y:(componentViewport?.y||0)+0+947.4+96+0+284.8+80+88+0+40+-6.2},p724YwG9B:{y:(componentViewport?.y||0)+0+413.6+96+0+0+400+0+88+0+452.4+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"50px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s967i4-container\",nodeId:\"NhfRJp3XF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(JoyfillIcon,{height:\"100%\",id:\"NhfRJp3XF\",layoutId:\"NhfRJp3XF\",SaLdOLeGh:\"Code\",style:{height:\"100%\",width:\"100%\"},variant:\"AGw4DLNC7\",Vuab3yT6O:\"regular\",WBDnJrHlb:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wkzhfz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1s4hkul\",\"data-styles-preset\":\"IuaKqcmEi\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I'm a developer\"})})},p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1s4hkul\",\"data-styles-preset\":\"IuaKqcmEi\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I'm a developer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1s4hkul\",\"data-styles-preset\":\"IuaKqcmEi\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I'm a developer\"})}),className:\"framer-1f35j5d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",style:{\"--framer-text-color\":\"var(--token-d26026be-a12a-4900-85a3-faeb93704037, rgb(148, 157, 177))\"},children:\"A powerful set of embeddable form UI components, SDK\u2019s, and API\u2019s that can be used to natively add digital form and PDF capabilities directly inside your own web and mobile application.\"})}),className:\"framer-79gk4p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Lek7L_Xds\"},implicitPathVariables:undefined},{href:{webPageId:\"Lek7L_Xds\"},implicitPathVariables:undefined},{href:{webPageId:\"Lek7L_Xds\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{y:(componentViewport?.y||0)+0+947.4+96+0+284.8+80+88+0+40+83.8+0+202.4},p724YwG9B:{y:(componentViewport?.y||0)+0+413.6+96+0+0+400+0+88+0+452.4+40+90+0+202.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ksazwd-container\",nodeId:\"PJA4159ck\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{Ya8y8XLuE:resolvedLinks1[1]},p724YwG9B:{Ya8y8XLuE:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(JoyfillButton,{eo3iERe7Y:false,HDNPTsdIb:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\",height:\"100%\",id:\"PJA4159ck\",jTB_5vCNG:\"Check\",layoutId:\"PJA4159ck\",mCUjiCotT:true,PB0e8P10i:\"rgb(255, 255, 255)\",pZfMWzByP:false,style:{height:\"100%\"},variant:\"rriLK9ztg\",VYvqhSYf5:\"Get started\",width:\"100%\",WkP5Be1sp:\"ArrowRight\",Ya8y8XLuE:resolvedLinks1[0],yLKOccSzh:\"var(--token-633566a0-bd6c-448c-9835-674985c4de32, rgb(25, 27, 33))\"})})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h8wf03\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1byoqx7\",\"data-framer-name\":\"Full Width Tile\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ix2o7f\",\"data-framer-name\":\"Tile text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-mh9qu6\",\"data-styles-preset\":\"bSATG7Tue\",children:\"Drag and drop form builder\"})}),className:\"framer-1ppsilu\",\"data-framer-name\":\"Drag and drop form builder\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1501di6\",\"data-styles-preset\":\"XIcfrSolY\",children:\"Build and customize fillable forms in minutes with our easy drag-and-drop form builder. Add enhanced fields, including, checklists, dropdowns, dynamic tables, and more. Save time and look professional with stunning digital documents.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",children:\"Build and customize fillable forms in minutes with our easy drag-and-drop form builder. Add enhanced fields, including, checklists, dropdowns, dynamic tables, and more. Save time and look professional with stunning digital documents.\"})}),className:\"framer-zcoi2e\",\"data-framer-name\":\"Build and customize fillable forms in minutes with our easy drag-and-drop form builder. Add enhanced fields, including, checklists, dropdowns, dynamic tables, and more. Save time and look professional with stunning digital documents.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14wkkse\",\"data-framer-name\":\"Tile image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{background:{alt:\"drag and drop form builder\",fit:\"fill\",intrinsicHeight:409,intrinsicWidth:1169,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+947.4+96+0+952.8+0+0+0+234.7+265.3-265),pixelHeight:840,pixelWidth:2400,sizes:\"757.4205px\",src:\"https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp 2400w\"}},p724YwG9B:{background:{alt:\"drag and drop form builder\",fit:\"fill\",intrinsicHeight:409,intrinsicWidth:1169,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+413.6+96+0+0+1452.8+0+0+0+210.7+200-182),pixelHeight:840,pixelWidth:2400,sizes:\"508px\",src:\"https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"drag and drop form builder\",fit:\"fill\",intrinsicHeight:409,intrinsicWidth:1169,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1023.2+96+0+1172.8+0+0+0+234.7+365.3-409),pixelHeight:840,pixelWidth:2400,sizes:\"1169px\",src:\"https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/i70NyEed2QGSX5YZFcEwxbDnWM.webp 2400w\"},className:\"framer-1v9ccuq\",\"data-framer-name\":\"Features Form Builder Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4vtzp\",\"data-framer-name\":\"Fading Overflow\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rvbu4f\",\"data-framer-name\":\"2-Col Tile Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6k92im\",\"data-framer-name\":\"2-Col Tile\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w9ek7s\",\"data-framer-name\":\"Tile image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lpihdh\",\"data-framer-name\":\"Fading Overflow\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{background:{alt:\"fillable form forms\",fit:\"fill\",intrinsicHeight:414,intrinsicWidth:389,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+947.4+96+0+952.8+0+520+0+0+51.15+0+19),pixelHeight:826,pixelWidth:780,sizes:\"334px\",src:\"https://framerusercontent.com/images/WTSNKX5CgnlVoLudaFYAqiJfTk.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WTSNKX5CgnlVoLudaFYAqiJfTk.webp 780w\"}},p724YwG9B:{background:{alt:\"fillable form forms\",fit:\"fill\",intrinsicHeight:414,intrinsicWidth:389,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+413.6+96+0+0+1452.8+0+430.7+0+0+0+0+0+0),pixelHeight:826,pixelWidth:780,sizes:\"188px\",src:\"https://framerusercontent.com/images/WTSNKX5CgnlVoLudaFYAqiJfTk.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WTSNKX5CgnlVoLudaFYAqiJfTk.webp 780w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"fillable form forms\",fit:\"fill\",intrinsicHeight:414,intrinsicWidth:389,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1023.2+96+0+1172.8+0+620+0+0+0+0+10.3),pixelHeight:826,pixelWidth:780,sizes:\"334px\",src:\"https://framerusercontent.com/images/WTSNKX5CgnlVoLudaFYAqiJfTk.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WTSNKX5CgnlVoLudaFYAqiJfTk.webp 780w\"},className:\"framer-oc81x\",\"data-framer-name\":\"Features Mobile Forms\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rat7hb\",\"data-framer-name\":\"Tile text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-mh9qu6\",\"data-styles-preset\":\"bSATG7Tue\",children:\"Transform documents into a fillable mobile forms\"})}),className:\"framer-15b7na4\",\"data-framer-name\":\"Transform documents into a fillable mobile forms\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1501di6\",\"data-styles-preset\":\"XIcfrSolY\",children:\"Build device-friendly forms in one swoop and use them on all your devices. Joyfill auto-generates all your built forms to fillable mobile forms for iOS and Android devices.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",children:\"Build device-friendly forms in one swoop and use them on all your devices. Joyfill auto-generates all your built forms to fillable mobile forms for iOS and Android devices.\"})}),className:\"framer-wu6jwm\",\"data-framer-name\":\"Search and select from our public library of 1000+ industry-specific templates. In minutes, tailor the templates to match your brand and meet your specific company requirements.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1io1d18\",\"data-framer-name\":\"2-Col Tile\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10d9gsm\",\"data-framer-name\":\"Tile text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-mh9qu6\",\"data-styles-preset\":\"bSATG7Tue\",children:\"1000+ industry form templates\"})}),className:\"framer-11p7az3\",\"data-framer-name\":\"1000+ industry form templates\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1501di6\",\"data-styles-preset\":\"XIcfrSolY\",children:\"Search and select from our public library of 100+ industry-specific templates. In minutes, tailor the templates to match your brand and meet your specific company requirements.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",children:\"Search and select from our public library of 100+ industry-specific templates. In minutes, tailor the templates to match your brand and meet your specific company requirements.\"})}),className:\"framer-nqdmh2\",\"data-framer-name\":\"Search and select from our public library of 100+ industry-specific templates. In minutes, tailor the templates to match your brand and meet your specific company requirements.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qp7hvk\",\"data-framer-name\":\"Tile image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{background:{alt:\"thousands of form templates\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:572,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+947.4+96+0+952.8+0+520+0+0+270.85+30),pixelHeight:811,pixelWidth:1180,sizes:\"561px\",src:\"https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp 1180w\"}},p724YwG9B:{background:{alt:\"thousands of form templates\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:572,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+413.6+96+0+0+1452.8+0+430.7+0+430.7+0+210.7+10),pixelHeight:811,pixelWidth:1180,sizes:\"425px\",src:\"https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp 1180w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"thousands of form templates\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:572,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1023.2+96+0+1172.8+0+620+0+0+234.7+365.3-373),pixelHeight:811,pixelWidth:1180,sizes:\"561px\",src:\"https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8hdA2IHSYEZYyYG1RBncinnbk.webp 1180w\"},className:\"framer-wkr43i\",\"data-framer-name\":\"Features Form Template Library\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a8eflu\",\"data-framer-name\":\"Fading Overflow\"})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1558pcq\",\"data-framer-name\":\"Support\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kciblx\",\"data-framer-name\":\"Support Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b4fijf\",\"data-framer-name\":\"Support Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{y:(componentViewport?.y||0)+0+947.4+96+0+2283.8+0+0+0+0+0+0},p724YwG9B:{y:(componentViewport?.y||0)+0+413.6+96+0+0+2824.9+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+1023.2+96+0+2642.8+0+0+89.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1svo9u3-container\",nodeId:\"Hg0pfyiDg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(JoyfillBadge,{EC6Lf_RRx:\"Users\",height:\"100%\",id:\"Hg0pfyiDg\",layoutId:\"Hg0pfyiDg\",t5czWxx6v:\"Premium Form Support\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1h9pfrd\",\"data-styles-preset\":\"rPsGoGq4q\",style:{\"--framer-text-alignment\":\"left\"},children:\"Need help with your forms?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1h9pfrd\",\"data-styles-preset\":\"rPsGoGq4q\",children:\"Need help with your forms?\"})}),className:\"framer-3lnrml\",\"data-framer-name\":\"Need help with your forms?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our full premium support services are the easy way to get the help you need. Whether a new user or a pro, our support staff has you covered.\"})})},p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1501di6\",\"data-styles-preset\":\"XIcfrSolY\",children:\"Our full premium support services are the easy way to get the help you need. Whether a new user or a pro, our support staff has you covered.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bu32z\",\"data-styles-preset\":\"tvs_MnVgX\",children:\"Our full premium support services are the easy way to get the help you need. Whether a new user or a pro, our support staff has you covered.\"})}),className:\"framer-17hnqyz\",\"data-framer-name\":\"Our full premium support services are the easy way to get the help you need. Whether a new user or a pro, our support staff has you covered.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5jv7r2\",\"data-framer-name\":\"Benefits Checklist\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ftwm3v\",\"data-framer-name\":\"Icon with text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ckdvk\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ka68c2\",\"data-framer-name\":\"check\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"27\" viewBox=\"0 0 14 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_998_14733)\">\\n<path d=\"M13.7813 9.21885C14.075 9.5126 14.075 9.9876 13.7813 10.2782L5.53126 18.5313C5.23751 18.8251 4.76251 18.8251 4.47188 18.5313L0.218756 14.2813C-0.0749939 13.9876 -0.0749939 13.5126 0.218756 13.222C0.512506 12.9313 0.987506 12.9282 1.27813 13.222L4.99688 16.9407L12.7188 9.21885C13.0125 8.9251 13.4875 8.9251 13.7781 9.21885H13.7813Z\" fill=\"#191B21\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_998_14733\">\\n<rect width=\"14\" height=\"27\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1501di6\",\"data-styles-preset\":\"XIcfrSolY\",children:\"Convert old forms to mobile\"})}),className:\"framer-15gokcc\",\"data-framer-name\":\"Icon with text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aadt2a\",\"data-framer-name\":\"Icon with text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y1txkf\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-109gq0k\",\"data-framer-name\":\"check\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"27\" viewBox=\"0 0 14 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_998_14750)\">\\n<path d=\"M13.7813 9.21885C14.075 9.5126 14.075 9.9876 13.7813 10.2782L5.53126 18.5313C5.23751 18.8251 4.76251 18.8251 4.47188 18.5313L0.218756 14.2813C-0.0749939 13.9876 -0.0749939 13.5126 0.218756 13.222C0.512506 12.9313 0.987506 12.9282 1.27813 13.222L4.99688 16.9407L12.7188 9.21885C13.0125 8.9251 13.4875 8.9251 13.7781 9.21885H13.7813Z\" fill=\"#191B21\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_998_14750\">\\n<rect width=\"14\" height=\"27\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1501di6\",\"data-styles-preset\":\"XIcfrSolY\",children:\"Import your data\"})}),className:\"framer-177dw6b\",\"data-framer-name\":\"Icon with text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15oze2p\",\"data-framer-name\":\"Icon with text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v8jtoi\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2bjiol\",\"data-framer-name\":\"check\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"27\" viewBox=\"0 0 14 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_998_14688)\">\\n<path d=\"M13.7813 9.21885C14.075 9.5126 14.075 9.9876 13.7813 10.2782L5.53126 18.5313C5.23751 18.8251 4.76251 18.8251 4.47188 18.5313L0.218756 14.2813C-0.0749939 13.9876 -0.0749939 13.5126 0.218756 13.222C0.512506 12.9313 0.987506 12.9282 1.27813 13.222L4.99688 16.9407L12.7188 9.21885C13.0125 8.9251 13.4875 8.9251 13.7781 9.21885H13.7813Z\" fill=\"#191B21\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_998_14688\">\\n<rect width=\"14\" height=\"27\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1501di6\",\"data-styles-preset\":\"XIcfrSolY\",children:\"Team training & onboarding\"})}),className:\"framer-fg58rg\",\"data-framer-name\":\"Icon with text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kqvl9y\",\"data-framer-name\":\"Icon with text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y9x641\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rz9w81\",\"data-framer-name\":\"check\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"27\" viewBox=\"0 0 14 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_998_18608)\">\\n<path d=\"M13.7813 9.21885C14.075 9.5126 14.075 9.9876 13.7813 10.2782L5.53126 18.5313C5.23751 18.8251 4.76251 18.8251 4.47188 18.5313L0.218756 14.2813C-0.0749939 13.9876 -0.0749939 13.5126 0.218756 13.222C0.512506 12.9313 0.987506 12.9282 1.27813 13.222L4.99688 16.9407L12.7188 9.21885C13.0125 8.9251 13.4875 8.9251 13.7781 9.21885H13.7813Z\" fill=\"#191B21\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_998_18608\">\\n<rect width=\"14\" height=\"27\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1501di6\",\"data-styles-preset\":\"XIcfrSolY\",children:\"Live chat & phone support\"})}),className:\"framer-wa54ie\",\"data-framer-name\":\"Icon with text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lekhke\",\"data-framer-name\":\"Support Image Animation\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{background:{alt:\"form builder support worldwide\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+947.4+96+0+2283.8+0+0+0+421.2+0),pixelHeight:901,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"700px\",src:\"https://framerusercontent.com/images/Iu1OjJy4iMuRQZKbXiJGytKiIw.webp\",srcSet:\"https://framerusercontent.com/images/Iu1OjJy4iMuRQZKbXiJGytKiIw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Iu1OjJy4iMuRQZKbXiJGytKiIw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Iu1OjJy4iMuRQZKbXiJGytKiIw.webp 1400w\"},transformTemplate:transformTemplate2},p724YwG9B:{background:{alt:\"form builder support worldwide\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+413.6+96+0+0+2824.9+0+0+0+397.2+0),pixelHeight:502,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"370px\",src:\"https://framerusercontent.com/images/qaLBm41BF4c4knf4K8f87Vsfgg.webp\",srcSet:\"https://framerusercontent.com/images/qaLBm41BF4c4knf4K8f87Vsfgg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qaLBm41BF4c4knf4K8f87Vsfgg.webp 780w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"form builder support worldwide\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1023.2+96+0+2642.8+0+0+0+0),pixelHeight:901,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"700px\",src:\"https://framerusercontent.com/images/Iu1OjJy4iMuRQZKbXiJGytKiIw.webp\",srcSet:\"https://framerusercontent.com/images/Iu1OjJy4iMuRQZKbXiJGytKiIw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Iu1OjJy4iMuRQZKbXiJGytKiIw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Iu1OjJy4iMuRQZKbXiJGytKiIw.webp 1400w\"},className:\"framer-1yxpvt0\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q3eyg6\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p724YwG9B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1h9pfrd\",\"data-styles-preset\":\"rPsGoGq4q\",style:{\"--framer-text-alignment\":\"center\"},children:\"What people are saying\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1h9pfrd\",\"data-styles-preset\":\"rPsGoGq4q\",children:\"What people are saying\"})}),className:\"framer-63kwwk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nxpf3\",\"data-framer-name\":\"Quotes Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1opzfwe\",\"data-framer-name\":\"Col 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"250px\",y:(componentViewport?.y||0)+0+947.4+96+0+3405+0+85.2+0+0+0},p724YwG9B:{width:\"370px\",y:(componentViewport?.y||0)+0+413.6+96+0+0+3633.1+0+85.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"320px\",y:(componentViewport?.y||0)+0+1023.2+96+0+3492.8+0+115.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mcn8n9-container\",nodeId:\"s07XSpOpz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialTile,{height:\"100%\",id:\"s07XSpOpz\",IE50a9or8:\"With 30 years in the fire protection industry, Joyfill is easily the most user-friendly system we have encountered.\",layoutId:\"s07XSpOpz\",R_jHJtOwG:\"Don Grey\",SA376ibVK:\"Economy Fire\",style:{width:\"100%\"},variant:\"B9oNWOKP5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"250px\",y:(componentViewport?.y||0)+0+947.4+96+0+3405+0+85.2+0+0+214},p724YwG9B:{width:\"370px\",y:(componentViewport?.y||0)+0+413.6+96+0+0+3633.1+0+85.2+0+0+0+214}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"320px\",y:(componentViewport?.y||0)+0+1023.2+96+0+3492.8+0+115.2+0+0+214,children:/*#__PURE__*/_jsx(Container,{className:\"framer-905hp5-container\",nodeId:\"V5p4oBRsp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialTile,{height:\"100%\",id:\"V5p4oBRsp\",IE50a9or8:\"We complete 20% more jobs and revenue per week. My inspectors won back 1 day a week as a result of time saved on paperwork.\",layoutId:\"V5p4oBRsp\",R_jHJtOwG:\"Levi Marlatt\",SA376ibVK:\"Freedom Fire Pro\",style:{width:\"100%\"},variant:\"B9oNWOKP5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"250px\",y:(componentViewport?.y||0)+0+947.4+96+0+3405+0+85.2+0+0+428},p724YwG9B:{width:\"370px\",y:(componentViewport?.y||0)+0+413.6+96+0+0+3633.1+0+85.2+0+0+0+428}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"320px\",y:(componentViewport?.y||0)+0+1023.2+96+0+3492.8+0+115.2+0+0+428,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kkmbih-container\",nodeId:\"g4dzym4jC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialTile,{height:\"100%\",id:\"g4dzym4jC\",IE50a9or8:\"Joyfill is 40% more cost-effective than our prior software provider. The Joyfill app saves me and my team 30 minutes per inspection.\",layoutId:\"g4dzym4jC\",R_jHJtOwG:\"Daryl Tucker\",SA376ibVK:\"Securitas\",style:{width:\"100%\"},variant:\"B9oNWOKP5\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17cyo2f hidden-10trhkp\",\"data-framer-name\":\"Col 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"250px\",y:(componentViewport?.y||0)+0+947.4+96+0+3405+0+85.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"320px\",y:(componentViewport?.y||0)+0+1023.2+96+0+3492.8+0+115.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xow11m-container\",nodeId:\"jmoBR3GJ3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialTile,{height:\"100%\",id:\"jmoBR3GJ3\",IE50a9or8:\"If we could only rate the customer service out of 5, then we most definitely give Joyfill 5 stars.\",layoutId:\"jmoBR3GJ3\",R_jHJtOwG:\"Ryan Johnson\",SA376ibVK:\"Certizona\",style:{width:\"100%\"},variant:\"B9oNWOKP5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"250px\",y:(componentViewport?.y||0)+0+947.4+96+0+3405+0+85.2+0+0+214}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"320px\",y:(componentViewport?.y||0)+0+1023.2+96+0+3492.8+0+115.2+0+0+214,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b1wzj-container\",nodeId:\"R4W6AwjFy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialTile,{height:\"100%\",id:\"R4W6AwjFy\",IE50a9or8:\"We are able to retain and service more recurring customers due to an increase in team productivity.  We save 1 hour for each inspection. 25 hours saved per week, which saves us time and money on man hours. 15% increase in productivity among our techs.\",layoutId:\"R4W6AwjFy\",R_jHJtOwG:\"Roman Rudzik\",SA376ibVK:\"ACS Fire & Security\",style:{width:\"100%\"},variant:\"B9oNWOKP5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"250px\",y:(componentViewport?.y||0)+0+947.4+96+0+3405+0+85.2+0+0+428}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"320px\",y:(componentViewport?.y||0)+0+1023.2+96+0+3492.8+0+115.2+0+0+428,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dmbfzv-container\",nodeId:\"Xzf3uufjV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialTile,{height:\"100%\",id:\"Xzf3uufjV\",IE50a9or8:\"The time it takes to complete reports has reduced by 85%.\",layoutId:\"Xzf3uufjV\",R_jHJtOwG:\"Shawn Lasher\",SA376ibVK:\"Johnson Controls\",style:{width:\"100%\"},variant:\"B9oNWOKP5\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cg716j hidden-10trhkp\",\"data-framer-name\":\"Col 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"250px\",y:(componentViewport?.y||0)+0+947.4+96+0+3405+0+85.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"320px\",y:(componentViewport?.y||0)+0+1023.2+96+0+3492.8+0+115.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ltvbtk-container\",nodeId:\"UEb4qMvcO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialTile,{height:\"100%\",id:\"UEb4qMvcO\",IE50a9or8:\"We are saving 3,900 minutes per tech per year (yes, we did the math). Our inspectors are saving 65 hours per year compared to our prior process.  Over $16,000 a year saved in employee cost by switching to Joyfill.\",layoutId:\"UEb4qMvcO\",R_jHJtOwG:\"Taylor Winters\",SA376ibVK:\"Tilley Fire Solutions\",style:{width:\"100%\"},variant:\"B9oNWOKP5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"250px\",y:(componentViewport?.y||0)+0+947.4+96+0+3405+0+85.2+0+0+214}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"320px\",y:(componentViewport?.y||0)+0+1023.2+96+0+3492.8+0+115.2+0+0+214,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y8i9ln-container\",nodeId:\"FYsXcAVm6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialTile,{height:\"100%\",id:\"FYsXcAVm6\",IE50a9or8:\"A year into using Joyfill, our reports take 5 minutes, which used to take at least 20 minutes.\",layoutId:\"FYsXcAVm6\",R_jHJtOwG:\"Joe Parker\",SA376ibVK:\"Capitol Fire Protection Co.\",style:{width:\"100%\"},variant:\"B9oNWOKP5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gzFA8qZcQ:{width:\"250px\",y:(componentViewport?.y||0)+0+947.4+96+0+3405+0+85.2+0+0+428}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:\"320px\",y:(componentViewport?.y||0)+0+1023.2+96+0+3492.8+0+115.2+0+0+428,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p3v5pp-container\",nodeId:\"kCTjqF0am\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialTile,{height:\"100%\",id:\"kCTjqF0am\",IE50a9or8:\"We save around $100 per inspection. We are saving over $12K per year on employee labor costs.\",layoutId:\"kCTjqF0am\",R_jHJtOwG:\"Craig Wohl\",SA376ibVK:\"CW Security\",style:{width:\"100%\"},variant:\"B9oNWOKP5\",width:\"100%\"})})})})]})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kjfuqd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ba5upk1lx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Intercom,{appId:\"o6xi6xv0\",height:\"100%\",id:\"Ba5upk1lx\",layoutId:\"Ba5upk1lx\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dmao7.framer-lux5qc, .framer-dmao7 .framer-lux5qc { display: block; }\",\".framer-dmao7.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-dmao7 .framer-9r993i { flex: none; height: 810px; left: calc(50.00000000000002% - min(1440px, 1440px) / 2); max-height: 810px; max-width: 1440px; overflow: visible; position: absolute; top: 425px; width: 1440px; z-index: 1; }\",\".framer-dmao7 .framer-mml3u7 { aspect-ratio: 1.4285714285714286 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 700px); left: 440px; position: absolute; top: 400px; width: 1000px; z-index: 1; }\",\".framer-dmao7 .framer-bsq3kg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-dmao7 .framer-bnnvos { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-height: 100%; max-width: 1200px; overflow: visible; padding: 100px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-1d0phoy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-167aaun { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 50%; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-gu7mbn-container, .framer-dmao7 .framer-1l0vton-container, .framer-dmao7 .framer-hbdzfh-container, .framer-dmao7 .framer-1o0d0ve-container, .framer-dmao7 .framer-ksazwd-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-dmao7.framer-1r7o2zf { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-dmao7.framer-1x6zdkz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 46%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-dmao7 .framer-2axfa6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-dmao7 .framer-1dhn5ky { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.7961918735236395px 2.7070523699803744px -0.375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 8.20932088655536px -0.75px rgba(0, 0, 0, 0.02), 0px 6.382653521484461px 21.70102197304717px -1.125px rgba(0, 0, 0, 0.02), 0px 20px 68px -1.5px rgba(0, 0, 0, 0.03); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-dmao7 .framer-1bljuop-container, .framer-dmao7 .framer-kjerwr-container, .framer-dmao7 .framer-1vp08wn-container, .framer-dmao7 .framer-1s967i4-container { flex: none; height: 50px; position: relative; width: 50px; }\",\".framer-dmao7 .framer-19rn7vg, .framer-dmao7 .framer-1cu6vpl, .framer-dmao7 .framer-1mhc5dp, .framer-dmao7 .framer-wkzhfz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-x6scvv, .framer-dmao7 .framer-sooixw, .framer-dmao7 .framer-3iyj8b, .framer-dmao7 .framer-1f35j5d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-1g00atq, .framer-dmao7 .framer-1uy13sr, .framer-dmao7 .framer-lacntx, .framer-dmao7 .framer-79gk4p { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-ggykg { align-content: flex-start; align-items: flex-start; background-color: var(--token-633566a0-bd6c-448c-9835-674985c4de32, #191b21); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.7961918735236395px 2.7070523699803744px -0.375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 8.20932088655536px -0.75px rgba(0, 0, 0, 0.02), 0px 6.382653521484461px 21.70102197304717px -1.125px rgba(0, 0, 0, 0.02), 0px 20px 68px -1.5px rgba(0, 0, 0, 0.03); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-dmao7 .framer-soidy8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-1m73cb3 { flex: none; height: 680px; max-width: 1200px; overflow: visible; position: relative; width: 1200px; }\",\".framer-dmao7 .framer-835p6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-sqpie { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 250px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-dmao7 .framer-2j2row { align-content: center; align-items: center; background-color: var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-15g1dcf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-dmao7 .framer-1kpkwlc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-dmao7 .framer-1bszy8g-container, .framer-dmao7 .framer-mcn8n9-container, .framer-dmao7 .framer-905hp5-container, .framer-dmao7 .framer-kkmbih-container, .framer-dmao7 .framer-1xow11m-container, .framer-dmao7 .framer-b1wzj-container, .framer-dmao7 .framer-1dmbfzv-container, .framer-dmao7 .framer-1ltvbtk-container, .framer-dmao7 .framer-1y8i9ln-container, .framer-dmao7 .framer-1p3v5pp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dmao7 .framer-qpbuez { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-dmao7 .framer-1jh5v1i, .framer-dmao7 .framer-63kwwk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dmao7 .framer-bmpe2l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 400px; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-dmao7 .framer-14gbobu { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.7961918735236395px 2.7070523699803744px -0.375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 8.20932088655536px -0.75px rgba(0, 0, 0, 0.02), 0px 6.382653521484461px 21.70102197304717px -1.125px rgba(0, 0, 0, 0.02), 0px 20px 68px -1.5px rgba(0, 0, 0, 0.03); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-dmao7 .framer-1eo2c48 { align-content: flex-start; align-items: flex-start; background-color: var(--token-633566a0-bd6c-448c-9835-674985c4de32, #191b21); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.7961918735236395px 2.7070523699803744px -0.375px rgba(0, 0, 0, 0.02), 0px 2.414506143104518px 8.20932088655536px -0.75px rgba(0, 0, 0, 0.02), 0px 6.382653521484461px 21.70102197304717px -1.125px rgba(0, 0, 0, 0.02), 0px 20px 68px -1.5px rgba(0, 0, 0, 0.03); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-dmao7 .framer-1h8wf03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-1byoqx7 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 600px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-dmao7 .framer-ix2o7f, .framer-dmao7 .framer-1rat7hb, .framer-dmao7 .framer-10d9gsm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 40px 50px 40px 50px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-1ppsilu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1100px; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-zcoi2e { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 961px; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-14wkkse { flex: 1 0 0px; gap: 10px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dmao7 .framer-1v9ccuq { aspect-ratio: 2.858190709046455 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 409px); overflow: visible; position: absolute; right: 0px; width: 1169px; }\",\".framer-dmao7 .framer-4vtzp, .framer-dmao7 .framer-a8eflu { bottom: 0px; box-shadow: inset 0px 0px 30px 30px #ffffff; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-dmao7 .framer-1rvbu4f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-6k92im, .framer-dmao7 .framer-1io1d18 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.05), 0px 12px 32px -16px rgba(0, 0, 51, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 590px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dmao7 .framer-1w9ek7s { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); box-shadow: inset 0px 0px 30px 30px #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-lpihdh { bottom: 0px; box-shadow: inset 0px 0px 30px 30px #ffffff; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-dmao7 .framer-oc81x { flex: none; height: 355px; overflow: visible; position: relative; width: 334px; }\",\".framer-dmao7 .framer-15b7na4, .framer-dmao7 .framer-wu6jwm, .framer-dmao7 .framer-11p7az3, .framer-dmao7 .framer-nqdmh2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 490px; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-1qp7hvk { background-color: rgba(255, 255, 255, 0); box-shadow: inset 0px 0px 30px 30px #ffffff; flex: 1 0 0px; gap: 10px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dmao7 .framer-wkr43i { bottom: -12px; flex: none; height: 385px; overflow: visible; position: absolute; right: 0px; width: 561px; }\",\".framer-dmao7 .framer-1558pcq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-kciblx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-1b4fijf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-dmao7 .framer-1svo9u3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dmao7 .framer-3lnrml { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-17hnqyz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 478px; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-5jv7r2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 290px; }\",\".framer-dmao7 .framer-ftwm3v, .framer-dmao7 .framer-aadt2a, .framer-dmao7 .framer-15oze2p, .framer-dmao7 .framer-1kqvl9y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-18ckdvk, .framer-dmao7 .framer-1y1txkf, .framer-dmao7 .framer-1v8jtoi, .framer-dmao7 .framer-y9x641 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dmao7 .framer-1ka68c2, .framer-dmao7 .framer-109gq0k, .framer-dmao7 .framer-2bjiol, .framer-dmao7 .framer-rz9w81 { flex: none; height: 27px; position: relative; width: 14px; }\",\".framer-dmao7 .framer-15gokcc, .framer-dmao7 .framer-177dw6b, .framer-dmao7 .framer-fg58rg, .framer-dmao7 .framer-wa54ie { --framer-paragraph-spacing: 0px; flex: none; height: 28px; position: relative; white-space: pre-wrap; width: 266px; word-break: break-word; word-wrap: break-word; }\",\".framer-dmao7 .framer-lekhke { flex: 1 0 0px; height: 600px; overflow: hidden; position: relative; width: 1px; }\",\".framer-dmao7 .framer-1yxpvt0 { aspect-ratio: 1.1666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-dmao7 .framer-1q3eyg6 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dmao7 .framer-19nxpf3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-dmao7 .framer-1opzfwe, .framer-dmao7 .framer-17cyo2f, .framer-dmao7 .framer-cg716j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-dmao7 .framer-kjfuqd-container { bottom: 0px; flex: none; height: 100px; left: -221px; position: absolute; width: 200px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-dmao7.framer-72rtr7 { width: 810px; } .framer-dmao7 .framer-mml3u7 { height: var(--framer-aspect-ratio-supported, 567px); left: -5px; top: 300px; width: 810px; } .framer-dmao7 .framer-bnnvos { padding: 50px 0px 30px 0px; } .framer-dmao7 .framer-2axfa6 { flex: 1 0 0px; flex-wrap: nowrap; gap: 20px; padding: 0px 10px 0px 10px; width: 1px; } .framer-dmao7 .framer-1dhn5ky, .framer-dmao7 .framer-ggykg, .framer-dmao7 .framer-14gbobu, .framer-dmao7 .framer-1eo2c48 { height: 400px; } .framer-dmao7 .framer-soidy8 { width: min-content; } .framer-dmao7 .framer-1m73cb3 { aspect-ratio: 1.7647058823529411 / 1; height: var(--framer-aspect-ratio-supported, 453px); width: 800px; } .framer-dmao7 .framer-sqpie { gap: 100px; width: 790px; } .framer-dmao7 .framer-2j2row { padding: 0px 32px 0px 32px; } .framer-dmao7 .framer-15g1dcf, .framer-dmao7 .framer-1ppsilu, .framer-dmao7 .framer-zcoi2e, .framer-dmao7 .framer-15b7na4, .framer-dmao7 .framer-wu6jwm, .framer-dmao7 .framer-11p7az3, .framer-dmao7 .framer-nqdmh2, .framer-dmao7 .framer-3lnrml, .framer-dmao7 .framer-17hnqyz { width: 100%; } .framer-dmao7 .framer-qpbuez { padding: 80px 0px 0px 0px; width: 100%; } .framer-dmao7 .framer-bmpe2l { flex-wrap: nowrap; gap: 20px; height: min-content; padding: 0px 10px 0px 10px; width: 100%; } .framer-dmao7 .framer-1byoqx7 { height: 500px; } .framer-dmao7 .framer-1v9ccuq { height: var(--framer-aspect-ratio-supported, 265px); width: 757px; } .framer-dmao7 .framer-1rvbu4f { height: 711px; } .framer-dmao7 .framer-6k92im, .framer-dmao7 .framer-1io1d18 { flex: 1 0 0px; height: 100%; width: 1px; } .framer-dmao7 .framer-1w9ek7s { flex: none; height: 374px; } .framer-dmao7 .framer-1qp7hvk { flex: none; height: 404px; } .framer-dmao7 .framer-wkr43i { bottom: unset; left: 20px; right: unset; top: 30px; } .framer-dmao7 .framer-kciblx { flex-direction: column; } .framer-dmao7 .framer-5jv7r2 { width: 216px; } .framer-dmao7 .framer-ftwm3v { order: 0; } .framer-dmao7 .framer-15gokcc, .framer-dmao7 .framer-177dw6b, .framer-dmao7 .framer-fg58rg, .framer-dmao7 .framer-wa54ie { white-space: pre; width: auto; } .framer-dmao7 .framer-aadt2a { order: 1; } .framer-dmao7 .framer-15oze2p { order: 2; } .framer-dmao7 .framer-1kqvl9y { order: 3; } .framer-dmao7 .framer-lekhke { flex: none; width: 100%; } .framer-dmao7 .framer-1yxpvt0 { bottom: 0px; height: unset; left: 50%; right: unset; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 700px); } .framer-dmao7 .framer-1q3eyg6 { gap: 30px; }}\",\"@media (max-width: 809px) { .framer-dmao7.framer-72rtr7 { width: 390px; } .framer-dmao7 .framer-mml3u7 { height: var(--framer-aspect-ratio-supported, 273px); left: 0px; top: 270px; width: 390px; } .framer-dmao7 .framer-bnnvos { gap: 10px; padding: 50px 0px 30px 0px; } .framer-dmao7 .framer-167aaun { max-width: 65%; } .framer-dmao7 .framer-2axfa6 { flex-direction: column; width: min-content; } .framer-dmao7 .framer-1dhn5ky, .framer-dmao7 .framer-ggykg { flex: none; width: 330px; } .framer-dmao7 .framer-1m73cb3 { aspect-ratio: 1.7647058823529411 / 1; height: var(--framer-aspect-ratio-supported, 216px); width: 380px; } .framer-dmao7 .framer-835p6h, .framer-dmao7 .framer-1rvbu4f, .framer-dmao7 .framer-kciblx, .framer-dmao7 .framer-19nxpf3 { flex-direction: column; } .framer-dmao7 .framer-sqpie { gap: 100px; width: 370px; } .framer-dmao7 .framer-2j2row { padding: 0px 16px 0px 16px; } .framer-dmao7 .framer-15g1dcf, .framer-dmao7 .framer-1ppsilu, .framer-dmao7 .framer-zcoi2e, .framer-dmao7 .framer-15b7na4, .framer-dmao7 .framer-wu6jwm, .framer-dmao7 .framer-11p7az3, .framer-dmao7 .framer-nqdmh2, .framer-dmao7 .framer-3lnrml, .framer-dmao7 .framer-17hnqyz { width: 100%; } .framer-dmao7 .framer-1kpkwlc, .framer-dmao7 .framer-63kwwk { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-dmao7 .framer-qpbuez { padding: 0px 20px 0px 20px; width: 100%; } .framer-dmao7 .framer-1jh5v1i { max-width: 80%; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-dmao7 .framer-bmpe2l { flex-direction: column; height: min-content; width: min-content; } .framer-dmao7 .framer-14gbobu, .framer-dmao7 .framer-1eo2c48 { flex: none; height: min-content; width: 330px; } .framer-dmao7 .framer-1byoqx7 { height: min-content; } .framer-dmao7 .framer-14wkkse, .framer-dmao7 .framer-1w9ek7s, .framer-dmao7 .framer-1qp7hvk { flex: none; height: 200px; } .framer-dmao7 .framer-1v9ccuq { aspect-ratio: unset; bottom: 4px; height: 178px; right: -155px; width: 508px; } .framer-dmao7 .framer-4vtzp, .framer-dmao7 .framer-a8eflu { box-shadow: inset 0px 0px 10px 10px #ffffff; } .framer-dmao7 .framer-6k92im, .framer-dmao7 .framer-1io1d18 { height: min-content; width: 100%; } .framer-dmao7 .framer-lpihdh { order: 0; } .framer-dmao7 .framer-oc81x { height: 200px; order: 1; width: 188px; } .framer-dmao7 .framer-wkr43i { bottom: unset; height: 233px; left: 20px; right: -75px; top: 10px; width: unset; } .framer-dmao7 .framer-1b4fijf { padding: 0px 10px 0px 10px; width: 100%; } .framer-dmao7 .framer-lekhke { flex: none; height: 311px; width: 100%; } .framer-dmao7 .framer-1yxpvt0 { aspect-ratio: unset; bottom: 0px; height: unset; } .framer-dmao7 .framer-1q3eyg6 { gap: 30px; } .framer-dmao7 .framer-1opzfwe { flex: none; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7000\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gzFA8qZcQ\":{\"layout\":[\"fixed\",\"auto\"]},\"p724YwG9B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-dmao7\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7e3,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...JoyfillButtonFonts,...JoyfillIconFonts,...JoyfillLogoTickerFonts,...JoyfillBadgeFonts,...TestimonialTileFonts,...IntercomFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gzFA8qZcQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p724YwG9B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7000\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["_extends", "target", "i", "source", "key", "_objectWithoutPropertiesLoose", "excluded", "sourceKeys", "log", "level", "message", "packageName", "isEmptyObject", "obj", "isSSR", "window", "removeUndefined", "IntercomAPI", "method", "_len", "args", "_key", "NO_INTERCOM_PROVIDER_MESSAGE", "IntercomContext", "z", "initialize", "appId", "timeout", "w", "ic", "d", "l", "s", "x", "mapMessengerAttributesToRawMessengerAttributes", "attributes", "mapDataAttributesCompanyToRawDataAttributesCompany", "mapDataAttributesAvatarToRawDataAttributesAvatar", "mapDataAttributesToRawDataAttributes", "_attributes$companies", "mapIntercomPropsToRawIntercomProps", "props", "IntercomProvider", "_ref", "_ref$autoBoot", "autoBoot", "autoBootProps", "children", "onHide", "onShow", "onUnreadCountChange", "_ref$shouldInitialize", "shouldInitialize", "apiBase", "initializeDelay", "rest", "isBooted", "pe", "isInitialized", "boot", "te", "metaData", "ensureIntercom", "functionName", "callback", "shutdown", "hardShutdown", "refresh", "lastRequestedAt", "update", "rawProps", "hide", "show", "showMessages", "showNewMessages", "getVisitorId", "startTour", "tourId", "trackEvent", "event", "providerValue", "se", "content", "B", "emptyStateStyle", "containerStyles", "neutralStateStyle", "stateTitleStyle", "stateParagraphStyle", "Intercom", "appId", "style", "props", "RenderTarget", "u", "motion", "neutralStateStyle", "p", "stateTitleStyle", "stateParagraphStyle", "IntercomProvider", "addPropertyControls", "ControlType", "JoyfillButtonFonts", "getFonts", "FGWKrK26Y_default", "JoyfillIconFonts", "pfVpzfjrW_default", "JoyfillLogoTickerFonts", "FtLiZ47G5_default", "JoyfillBadgeFonts", "um89TSiz5_default", "TestimonialTileFonts", "eTwJRU1fv_default", "IntercomFonts", "Intercom", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "XETTrMAwB3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Image2", "getLoadingLazyAtYPosition", "SVG", "RichText2", "x", "PropertyOverrides2", "l", "ComponentViewportProvider", "Container", "AnimatePresence", "Ga", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
