















<!DOCTYPE html>
<html class="supports-responsive-font-size" lang="en">
  <head><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes" /><meta name="csrf-param" content="authenticity_token" />
<meta name="csrf-token" content="M-vnP7_UqAaf6ybjogpmesUyIFyukcwI1PYyYDrWFsyr8lYUe_6F0JKTOhBagurfFyvmBy1Lj7ggOQdldvlRWA" /><script>
//<![CDATA[

      var callbacks = []
      var waitingForLogincheck = true
      window.onLogincheckComplete = callback => {
        if (waitingForLogincheck) {
          callbacks.push(callback)
        } else {
          // Logincheck already done, call this now
          callback()
        }
      };

      function logincheck_request(url) {
        var lc = document.createElement('script'); lc.type = 'text/javascript'; lc.async = true; lc.src = url;
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(lc, s);
      }

      function logincheck_response(result) {
        if (result.token) {
          document.cookie = '_simplero_autologin=' + result.token + '; expires=' + new Date(new Date().getTime() + 1000*60).toUTCString() + '; SameSite=None; Secure';
          window.location.reload();
        } else if (result.autologin_url) {
          window.location.href = result.autologin_url;
        } else {
          callbacks.forEach(callback => callback())
          waitingForLogincheck = false
        }
      }

    logincheck_request('https://secure.simplero.com/logincheck.js?account_id=32914&return_to=https%3A%2F%2Faclevercat.com%2Ffeed&site_id=37200');
//]]>
</script><script data-turbo-eval="false">const CSRF_TOKEN = "Rs6gMOQ7buMpYDK6BxfkOVplcCyMNZO81FmfEkKjM2He1xEbIBFDNSQYLkn_n2iciHy2dw_v0AwglqoXDox09Q"
const UPDATE_PATH = "/preflex/preferences"
class PreflexPreference {
  constructor(klass, data) {
    this.klass = klass
    this.localStorageKey = `PreflexPreference-${klass}`

    this.data = data
    this.dataLocal = JSON.parse(localStorage.getItem(this.localStorageKey) || '{}')
  }

  get(name) {
    this.ensurePreferenceExists(name)

    const fromServer = this.data[name]
    const fromServerUpdatedAt = this.data[`${name}_updated_at_epoch`] || 0

    const fromLocal = this.dataLocal[name]
    const fromLocalUpdatedAt = this.dataLocal[`${name}_updated_at_epoch`] || 0

    if(fromLocalUpdatedAt > fromServerUpdatedAt) {
      this.updateOnServer(name, fromLocal)
      return fromLocal
    }

    return fromServer
  }

  set(name, value) {
    this.ensurePreferenceExists(name)

    this.dataLocal[name] = value
    this.dataLocal[`${name}_updated_at_epoch`] = Date.now()

    localStorage.setItem(this.localStorageKey, JSON.stringify(this.dataLocal))
    this.updateOnServer(name, value)
    document.dispatchEvent(new CustomEvent('preflex:preference-updated', { detail: { klass: this.klass, name, value } }))
  }

  updateOnServer(name, value) {
    fetch(UPDATE_PATH, {
      method: 'POST',
      headers: {
        "Content-Type": "application/json",
        "X-CSRF-TOKEN": CSRF_TOKEN
      },
      body: JSON.stringify({ klass: this.klass, name, value })
    })
  }

  ensurePreferenceExists(name) {
    if(!this.data.hasOwnProperty(name)) {
      throw new Error(`Preference ${name} was not defined.`)
    }
  }
}

window['UserPreference'] = new PreflexPreference('UserPreference', {"autoplay_next":true,"autoplay_next_updated_at_epoch":0,"theater_mode":false,"theater_mode_updated_at_epoch":0,"transcript":false,"transcript_updated_at_epoch":0,"subtitles":null,"subtitles_updated_at_epoch":0,"enhanced_audio":false,"enhanced_audio_updated_at_epoch":0,"preferred_voice":"eve","preferred_voice_updated_at_epoch":0,"theme":null,"theme_updated_at_epoch":0,"admin_theme":null,"admin_theme_updated_at_epoch":0,"mobile_app_theme":null,"mobile_app_theme_updated_at_epoch":0,"anonymous_mode":false,"anonymous_mode_updated_at_epoch":0,"last_active_checklist_instance_id":null,"last_active_checklist_instance_id_updated_at_epoch":0,"default_lesson_tab":"course_overview","default_lesson_tab_updated_at_epoch":0,"default_asset_version":"pdf","default_asset_version_updated_at_epoch":0,"events_on_admin_dashboard":true,"events_on_admin_dashboard_updated_at_epoch":0,"upcoming_bookings_on_admin_dashboard":true,"upcoming_bookings_on_admin_dashboard_updated_at_epoch":0,"dismissed_guides":[],"dismissed_guides_updated_at_epoch":0,"dismissed_coachmarks":[],"dismissed_coachmarks_updated_at_epoch":0,"dismissed_help_banners":[],"dismissed_help_banners_updated_at_epoch":0,"chat_bot_conversation_list_visible":true,"chat_bot_conversation_list_visible_updated_at_epoch":0,"chat_bot_source_list_visible":true,"chat_bot_source_list_visible_updated_at_epoch":0,"chat_bot_description_collapsed_by_bot_id":{},"chat_bot_description_collapsed_by_bot_id_updated_at_epoch":0,"chat_bot_left_sidebar_width":null,"chat_bot_left_sidebar_width_updated_at_epoch":0,"chat_bot_right_sidebar_width":null,"chat_bot_right_sidebar_width_updated_at_epoch":0,"chat_bot_source_editor_width":null,"chat_bot_source_editor_width_updated_at_epoch":0,"custom_view_sidebar_width":null,"custom_view_sidebar_width_updated_at_epoch":0,"admin_interactions_sidebar_width":null,"admin_interactions_sidebar_width_updated_at_epoch":0,"facet_sidebar_width":null,"facet_sidebar_width_updated_at_epoch":0,"builder_doc_left_sidebar_width":null,"builder_doc_left_sidebar_width_updated_at_epoch":0,"builder_doc_right_sidebar_width":null,"builder_doc_right_sidebar_width_updated_at_epoch":0,"trivial_sections":true,"trivial_sections_updated_at_epoch":0});</script>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

    <title>  A Clever Cat
</title>

    <style>
  .fa-vertical-align-middle {
    vertical-align: middle;
  }
  .fa-spin {
    --fa-animation-duration: 1s;
  }
</style>
<script>
  window.SIMPLERO_ICONS = {"s-accordion":{"name":"bars-staggered","fa":"fas"},"s-access":{"name":"lock","fa":"far"},"s-accounts":{"name":"users","fa":"fas"},"s-add-reaction":{"name":"face-smile-plus","fa":"far"},"s-admin-dashboard":{"name":"house-heart","fa":"fas"},"s-affiliate-programs":{"name":"people-arrows","fa":"fas"},"s-affiliates":{"name":"bullseye-pointer","fa":"far"},"s-ai":{"name":"sparkles","fa":"fas"},"s-ai-loader":{"name":"sparkles","fa":"fa-duotone fa-bounce"},"s-ai-headline":{"name":"exclamation-circle","fa":"fad"},"s-ai-emails":{"name":"envelope","fa":"fad"},"s-ai-brainstorm":{"name":"brain-circuit","fa":"fad"},"s-ai-other":{"name":"thought-bubble","fa":"fad"},"s-analytics":{"name":"chart-mixed","fa":"far"},"s-api":{"name":"code","fa":"far"},"s-archive":{"name":"box-archive","fa":"far"},"s-arrow-left":{"name":"arrow-left","fa":"far"},"s-arrow-right":{"name":"arrow-right","fa":"far"},"s-attachment":{"name":"paperclip","fa":"fas"},"s-asset-audio":{"name":"audio-note-regular","fa":"fak"},"s-asset-image":{"name":"image-circle-regular","fa":"fak"},"s-asset-javascript":{"name":"javascript-regular","fa":"fak"},"s-asset-pdf":{"name":"file-pdf","fa":"far"},"s-asset-svg":{"name":"file-svg","fa":"far"},"s-asset-video":{"name":"circle-play","fa":"far"},"s-asset-css":{"name":"code-circle-regular","fa":"fak"},"s-asset-other":{"name":"file-circle-info","fa":"far"},"s-auto-responses":{"name":"envelopes-bulk","fa":"fas"},"s-automations":{"name":"diagram-subtask","fa":"fas"},"s-back":{"name":"angle-left","fa":"far"},"s-blank":{"name":"square","class":"invisible"},"s-bell":{"name":"bell","fa":"far"},"s-bell-slash":{"name":"bell-slash","fa":"far"},"s-blog-posts":{"name":"pen-nib","fa":"far"},"s-box-open":{"name":"box-open","fa":"fal"},"s-border-rounded-none":{"name":"border-rounded-none","fa":"fak"},"s-border-rounded-md":{"name":"border-rounded-md","fa":"fak"},"s-border-rounded-mdl":{"name":"border-rounded-mdl","fa":"fak"},"s-border-rounded-lg":{"name":"border-rounded-lg","fa":"fak"},"s-bots":{"name":"message-bot","fa":"far"},"s-book":{"name":"book","fa":"far"},"s-bookmark":{"name":"bookmark","fa":"far"},"s-calendar":{"name":"calendar","fa":"far"},"s-cart":{"name":"cart-shopping","fa":"far"},"s-cart-check":{"name":"cart-circle-check","fa":"far"},"s-catalog":{"name":"book-open-cover","fa":"fas"},"s-changelog-feature":{"name":"gift","fa":"fas"},"s-changelog-fix":{"name":"suitcase-medical","fa":"fas"},"s-changelog-improvement":{"name":"wrench","fa":"fas"},"s-changelog-optimization":{"name":"gear","fa":"fas"},"s-changelog-simplification":{"name":"wand-magic-sparkles","fa":"fas"},"s-charge":{"name":"money-check-dollar","fa":"far"},"s-chat":{"name":"message","fa":"far"},"s-check":{"name":"check","fa":"far"},"s-choice-menus":{"name":"list-radio","fa":"far"},"s-circle-dollar":{"name":"circle-dollar","fa":"far"},"s-circle-xmark":{"name":"circle-xmark","fa":"fas"},"s-clipboard":{"name":"clipboard","fa":"far"},"s-coach":{"name":"user-headset","fa":"far"},"s-coaching-programs":{"name":"chalkboard-user","fa":"far"},"s-coins":{"name":"coins","fa":"fal"},"s-condition-split":{"name":"regular-split-circle-question","fa":"fak"},"s-conditions":{"name":"code-branch","fa":"far"},"s-contracts":{"name":"file-contract","fa":"far"},"s-conversations":{"name":"messages","fa":"far"},"s-comments":{"name":"message-lines","fa":"far"},"s-communities":{"name":"grid-2","fa":"far"},"s-compare":{"name":"compare","fa":"fa-kit-duotone"},"s-filter":{"name":"filter-list","fa":"far"},"s-customers":{"name":"address-card","fa":"fas"},"s-contacts":{"name":"user-group","fa":"fas"},"s-customer-cold":{"name":"snowflake","fa":"far"},"s-customer-warm":{"name":"sun","fa":"far"},"s-copy":{"name":"copy","fa":"far"},"s-copy-right":{"name":"regular-copy-circle-arrow-right","fa":"fak"},"s-copy-down":{"name":"regular-copy-circle-arrow-down","fa":"fak"},"s-countdown-timer":{"name":"timer","fa":"fas"},"s-courses":{"name":"graduation-cap","fa":"fas"},"s-course-modules":{"name":"book","fa":"far"},"s-course-lessons":{"name":"file-lines","fa":"far"},"s-cpu":{"name":"microchip","fa":"far"},"s-credits":{"name":"coin","fa":"fas"},"s-dashboard":{"name":"shop","fa":"far"},"s-deals":{"name":"handshake-simple","fa":"far"},"s-do-not-contact":{"name":"user-slash","fa":"far"},"s-distribute-spacing-horizontal":{"name":"distribute-spacing-horizontal","fa":"fak"},"s-distribute-spacing-vertical":{"name":"distribute-spacing-vertical","fa":"fak"},"s-distribute-spacing-between":{"name":"distribute-spacing-between","fa":"fak"},"s-do-contact":{"name":"light-hand-slash","fa":"fak"},"s-do-not-sms":{"name":"regular-message-sms-slash","fa":"fak"},"s-do-sms":{"name":"message-sms","fa":"far"},"s-email-bounced":{"name":"triangle-exclamation","fa":"far"},"s-done-for-you":{"name":"wand-magic-sparkles","fa":"far"},"s-download":{"name":"download","fa":"far"},"s-drag-handle":{"name":"grip-dots-vertical","fa":"fas"},"s-drag-handle-slim":{"name":"grip-lines","fa":"fas"},"s-duplicate":{"name":"clone","fa":"far"},"s-edges":{"name":"margin-paddings","fa":"fak"},"s-edit":{"name":"pen","fa":"far"},"s-edit-form":{"name":"pen-to-square","fa":"far"},"s-edit-occurrence-time":{"name":"light-pencil-clock","fa":"fak"},"s-email":{"name":"at","fa":"far"},"s-email-automations":{"name":"envelopes","fa":"fas"},"s-email-broadcasts":{"name":"envelopes-bulk","fa":"fas"},"s-email-designs":{"name":"paintbrush","fa":"far"},"s-events":{"name":"calendar-day","fa":"fas"},"s-event-occurrences":{"name":"calendars","fa":"fas"},"s-event-occurrence-participants":{"name":"calendar-circle-user","fa":"far"},"s-expand":{"name":"angle-right","fa":"far"},"s-expand-window":{"name":"up-right-and-down-left-from-center","fa":"fas"},"s-external-link":{"name":"external-link","fa":"far"},"s-facets":{"name":"layer-group","fa":"fal"},"s-finish":{"name":"flag-checkered","fa":"fas"},"s-forums":{"name":"objects-column","fa":"far"},"s-forward":{"name":"angle-right","fa":"far"},"s-funnels":{"name":"filter-list","fa":"fas"},"s-heart":{"name":"heart","fa":"fas"},"s-heart-outline":{"name":"heart","fa":"far"},"s-help":{"name":"circle-info","fa":"far fa-sharp"},"s-help-desks":{"name":"headset","fa":"far"},"s-hidden":{"name":"eye-regular-closed","fa":"fak"},"s-highlight":{"name":"highlighter-line","fa":"fas"},"s-history":{"name":"clock-rotate-left"},"s-ideas":{"name":"lightbulb","fa":"far"},"s-invoice":{"name":"receipt","fa":"far"},"s-labels":{"name":"thumbtack","fa":"fal"},"s-landing-pages":{"name":"window","fa":"far"},"s-link":{"name":"link","fa":"fas"},"s-lists":{"name":"list-ul","fa":"fas"},"s-list-subscribe":{"name":"solid-list-ul-circle-plus","fa":"fak"},"s-list-unsubscribe":{"name":"solid-list-ul-circle-xmark","fa":"fak"},"s-interactions":{"name":"messages","fa":"far"},"s-login":{"name":"arrow-right-to-bracket","fa":"far"},"s-logout":{"name":"arrow-right-from-bracket","fa":"far"},"s-main-website":{"name":"display-code","fa":"fas"},"s-markdown":{"name":"hashtag","fa":"far"},"s-media":{"name":"photo-film","fa":"fas"},"s-membership-sites":{"name":"window","fa":"fas"},"s-messages-question":{"name":"messages-question","fa":"fas"},"s-new-conversation":{"name":"pen-to-square","fa":"far"},"s-newsletters":{"name":"newspaper","fa":"fas"},"s-customer-notes":{"name":"notes","fa":"fas"},"s-notes":{"name":"note-sticky","fa":"far"},"s-note-meeting":{"name":"handshake-simple","fa":"far"},"s-note-phone":{"name":"phone","fa":"far"},"s-note-session":{"name":"face-smiling-hands","fa":"far"},"s-note-email":{"name":"envelope","fa":"far"},"s-note-general":{"name":"note-sticky","fa":"far"},"s-notice-feature":{"name":"gift","fa":"fas"},"s-notice-feedback":{"name":"circle-question","fa":"fas"},"s-notice-status":{"name":"circle-exclamation","fa":"fas"},"s-notice-tip":{"name":"thumbs-up","fa":"fas"},"s-notifications":{"name":"bell","fa":"far"},"s-notifications-email":{"name":"envelope-open","fa":"far"},"s-notifications-push-browser":{"name":"browser","fa":"far"},"s-notifications-push-mobile-app":{"name":"mobile-notch","fa":"far"},"s-notifications-in-app":{"name":"globe","fa":"far"},"s-notifications-off":{"name":"bell-slash","fa":"far"},"s-opt-ins":{"name":"address-card","fa":"far"},"s-pages":{"name":"window","fa":"far"},"s-page-speed":{"name":"gauge-high","fa":"far"},"s-entrants":{"name":"graduation-cap","fa":"far"},"s-pencil":{"name":"pencil","fa":"fal"},"s-pin":{"name":"thumbtack","fa":"fas"},"s-pin-outline":{"name":"thumbtack","fa":"fal"},"s-pipelines":{"name":"road","fa":"far"},"s-pipeline-stages":{"name":"circle-dot","fa":"far"},"s-playlists":{"name":"list-ol","fa":"far"},"s-playlist":{"name":"playlist","fa":"fak"},"s-playlist-full":{"name":"playlist-full","fa":"fak"},"s-plus":{"name":"plus","fa":"far"},"s-plus-circle":{"name":"plus-circle","fa":"far"},"s-podcasts":{"name":"microphone-lines","fa":"far"},"s-minus":{"name":"minus","fa":"far"},"s-products":{"name":"window-restore","fa":"fas"},"s-objects-align-justify":{"name":"objects-align-justify","fa":"fak"},"s-objects-align-justify-horizontal":{"name":"objects-align-justify-horizontal","fa":"fak"},"s-order-form":{"name":"money-check-dollar-pen","fa":"far"},"s-publish-status-draft":{"name":"pencil-alt","fa":"far"},"s-paste":{"name":"paste","fa":"far"},"s-publish-status-published":{"name":"eye","fa":"far"},"s-publish-status-scheduled":{"name":"hourglass-clock","fa":"far"},"s-publish-status-drip":{"name":"unlock-keyhole","fa":"far"},"s-purchases":{"name":"bag-shopping","fa":"far"},"s-question":{"name":"question","fa":"fas"},"s-quizzes":{"name":"list-check","fa":"fas"},"s-invoices":{"name":"file-invoice-dollar","fa":"fas"},"s-recurring":{"name":"arrows-spin","fa":"fas"},"s-redirects":{"name":"right-left-large","fa":"far"},"s-redo":{"name":"arrow-rotate-right","fa":"far"},"s-reject-with-msg":{"name":"message-xmark","fa":"far"},"s-refresh":{"name":"arrows-rotate","fa":"far"},"s-robot":{"name":"robot","fa":"fal"},"s-save":{"name":"floppy-disk","fa":"far"},"s-scheduling-links":{"name":"calendar-circle-user","fa":"fas"},"s-scheduling-links-regular":{"name":"calendar-circle-user","fa":"far"},"s-search":{"name":"magnifying-glass","fa":"far"},"s-secondary-actions":{"name":"arrow-turn-down-right","fa":"far"},"s-segments":{"name":"chart-tree-map","fa":"fas"},"s-settings":{"name":"sliders","fa":"far"},"s-short-links":{"name":"link","fa":"far"},"s-sidebar":{"name":"bars","fa":"fas"},"s-sidebar-left":{"name":"sidebar-left","fa":"fak"},"s-sidebar-right":{"name":"sidebar-right","fa":"fak"},"s-sidebar-left-active":{"name":"sidebar-left-active","fa":"fak"},"s-sidebar-right-active":{"name":"sidebar-right-active","fa":"fak"},"s-simplero":{"name":"simplero","fa":"fak"},"s-simplero-chat":{"name":"simplero","fa":"fak"},"s-simplero-coach":{"name":"simplero-coach","fa":"fak"},"s-site-members":{"name":"user","fa":"far"},"s-site-groups":{"name":"user-group","fa":"far"},"s-site-group-requests":{"name":"users-medical","fa":"far"},"s-sites":{"name":"browser","fa":"far"},"s-spaces":{"name":"people-group","fa":"fas"},"s-spear-emails":{"name":"reply","fa":"far"},"s-spinner":{"name":"spinner-third","fa":"far","spin":true},"s-split-test":{"name":"split","fa":"fas"},"s-star":{"name":"star","fa":"fas"},"s-start":{"name":"plug","fa":"fas"},"s-step-wait":{"name":"timer","fa":"far"},"s-step-stop":{"name":"circle-stop","fa":"fas"},"s-step-goto-up":{"name":"turn-left-up","fa":"fas"},"s-step-goto-down":{"name":"turn-left-down","fa":"fas"},"s-step-skip-if-wait-exceeded":{"name":"right-long-to-line","fa":"fas"},"s-visible":{"name":"eye-regular","fa":"fak"},"s-invisible":{"name":"eye-slash","fa":"fas"},"s-subscriptions":{"name":"envelope-circle-check","fa":"far"},"s-surveys":{"name":"clipboard-question","fa":"far"},"s-survey-responses":{"name":"clipboard-check","fa":"far"},"s-tags":{"name":"tags","fa":"fas"},"s-tag":{"name":"tag","fa":"fas"},"s-tag-remove":{"name":"solid-tag-circle-xmark-bl","fa":"fak"},"s-taks-canceled":{"name":"square-xmark","fa":"fas"},"s-task-completed":{"name":"square-check","fa":"fas"},"s-task-pending":{"name":"square","fa":"far"},"s-tasks":{"name":"list-check","fa":"fas"},"s-testimonials":{"name":"hand-holding-star","fa":"far"},"s-text-message":{"name":"message-sms","fa":"far"},"s-theme":{"name":"paintbrush","fa":"far"},"s-theme-dark":{"name":"moon","fa":"far"},"s-theme-light":{"name":"sun","fa":"far"},"s-tickets":{"name":"messages-question","fa":"fas"},"s-time":{"name":"clock","fa":"far"},"s-transcript":{"name":"message-quote","fa":"far"},"s-trash":{"name":"trash","fa":"far"},"s-triggers":{"name":"bolt","fa":"fas"},"s-unstar":{"name":"star","fa":"fal"},"s-undo":{"name":"arrow-rotate-left","fa":"far"},"s-view-link":{"name":"arrow-up-right-from-square"},"s-obj-link":{"name":"angle-right"},"s-wiki":{"name":"book-bookmark","fa":"far"},"s-worksheets":{"name":"file-spreadsheet","fa":"far"},"s-worksheet-responses":{"name":"memo-circle-check","fa":"far"},"s-xmark":{"name":"xmark","fa":"fas"},"s-screwdriver-wrench":{"name":"screwdriver-wrench","fa":"fas"},"s-angle-up":{"name":"angle-up","fa":"fas"},"s-angle-down":{"name":"angle-down","fa":"fas"},"s-warning":{"name":"triangle-exclamation","fa":"fas"},"s-wrench":{"name":"wrench","fa":"far"},"s-sync":{"name":"sync","fa":"fas"},"s-titlecaps":{"name":"titlecaps","fa":"fak"},"s-bars-progress":{"name":"bars-progress","fa":"far"},"s-arrows-up-down":{"name":"arrows-up-down","fa":"fas"},"s-builder-popup":{"name":"window-restore","fa":"far"},"s-builder-global-block":{"name":"link","fa":"far"},"s-builder-global-block-unlink":{"name":"link-slash","fa":"far"},"s-to-simplero":{"name":"to-simplero","fa":"fak"},"s-desktop":{"name":"desktop","fa":"far"},"s-desktop-slash":{"name":"desktop-slash","fa":"fak"},"s-tablet":{"name":"tablet","fa":"far"},"s-tablet-slash":{"name":"tablet-slash","fa":"fak"},"s-mobile":{"name":"mobile","fa":"far"},"s-mobile-slash":{"name":"mobile-slash","fa":"fak"},"s-video":{"name":"video","fa":"far"},"s-audio":{"name":"headphones","fa":"far"},"s-pdf":{"name":"file-pdf","fa":"far"},"s-image":{"name":"image","fa":"far"},"s-wait":{"name":"stopwatch","fa":"far","class":"text-amber-500"},"s-wait-time":{"name":"calendar","fa":"far","class":"text-amber-500"},"s-wait-course-start":{"name":"book-open-reader","fa":"far","class":"text-amber-500"},"s-wait-period-ends":{"name":"reply-clock","fa":"far","class":"text-amber-500"},"s-white-label-mobile-apps":{"name":"mobile-screen-button","fa":"far"},"s-stop":{"name":"circle-stop","fa":"fas","class":"text-red-600"},"s-goto":{"name":"arrow-turn-up","fa":"fas","class":"fa-flip-horizontal text-amber-500"},"s-action":{"name":"bolt","fa":"fad","class":"text-red-600"},"f-in-table-name":{"name":"id-card-clip","fa":"fad","class":"text-primary-500"},"f-in-table-email":{"name":"envelope","fa":"fad","class":"text-primary-500"},"f-phone":{"name":"mobile-screen-button","fa":"fad","class":"text-primary-500"},"f-text":{"name":"font-case","fa":"fad","class":"text-neutral-500"},"f-text-area":{"name":"align-left","fa":"fad","class":"text-neutral-500"},"f-integer":{"name":"brackets-round","fa":"fad","class":"text-neutral-500"},"f-decimal":{"name":"square-6","fa":"fad","class":"text-neutral-500"},"f-date":{"name":"calendar-day","fa":"fad","class":"text-neutral-500"},"f-datetime":{"name":"calendar-clock","fa":"fad","class":"text-neutral-500"},"f-countdown-timer-option":{"name":"timer","fa":"fad","class":"text-neutral-500"},"f-currency":{"name":"circle-dollar","fa":"fad","class":"text-neutral-500"},"f-money":{"name":"coins","fa":"fad","class":"text-neutral-500"},"f-radio-button":{"name":"circle-dot","fa":"fad","class":"text-neutral-500"},"f-check-box":{"name":"square-check","fa":"fad","class":"text-neutral-500"},"f-check-boxes":{"name":"square-check","fa":"fad","class":"text-neutral-500"},"f-switch":{"name":"toggle-on","fa":"fad","class":"text-neutral-500"},"f-select":{"name":"square-caret-down","fa":"fad","class":"text-neutral-500"},"f-acceptance":{"name":"circle-check","fa":"fad","class":"text-neutral-500"},"f-scale-rating":{"name":"star-half-stroke","fa":"fad","class":"text-neutral-500"},"f-yes-no":{"name":"scale-balanced","fa":"fad","class":"text-neutral-500"},"f-url":{"name":"brackets-curly","fa":"fad","class":"text-neutral-500"},"f-gender":{"name":"venus-mars","fa":"fad","class":"text-amber-500"},"f-age":{"name":"hourglass-end","fa":"fad","class":"text-amber-500"},"f-birth-date":{"name":"calendar-circle-user","fa":"fad","class":"text-amber-500"},"f-time-zone":{"name":"earth-americas","fa":"fad","class":"text-amber-500"},"f-address":{"name":"location-dot","fa":"fad","class":"text-primary-500"},"f-country":{"name":"map-location-dot","fa":"fad","class":"text-primary-500"},"f-us-state":{"name":"flag-usa","fa":"fad","class":"text-primary-500"},"f-facebook-url":{"name":"square-facebook","fa":"fab","class":"text-teal-600"},"f-twitter-username":{"name":"square-x-twitter","fa":"fab","class":"text-teal-600"},"f-twitter-handle":{"name":"square-x-twitter","fa":"fab","class":"text-teal-600"},"f-x-username":{"name":"square-x-twitter","fa":"fab","class":"text-teal-600"},"f-x-handle":{"name":"square-x-twitter","fa":"fab","class":"text-teal-600"},"f-skype-name":{"name":"skype","fa":"fab","class":"text-teal-600"},"f-tiktok-handle":{"name":"tiktok","fa":"fab","class":"text-teal-600"},"f-instagram-username":{"name":"square-instagram","fa":"fab","class":"text-teal-600"},"f-linkedin-username":{"name":"linkedin","fa":"fab","class":"text-teal-600"},"f-youtube-handle":{"name":"square-youtube","fa":"fab","class":"text-teal-600"},"f-pinterest-username":{"name":"square-pinterest","fa":"fab","class":"text-teal-600"},"f-reddit-username":{"name":"square-reddit","fa":"fab","class":"text-teal-600"},"f-heading":{"name":"heading","fa":"fad","class":"text-neutral-500"},"f-divider":{"name":"horizontal-rule","fa":"fad","class":"text-neutral-500"},"f-section":{"name":"circle-caret-down","fa":"fad","class":"text-neutral-500"},"f-file":{"name":"file","fa":"fad","class":"text-neutral-500"},"f-hidden":{"name":"eye-slash","fa":"fad","class":"text-neutral-500"},"s-brand-google":{"image_path":"global/google-logo.svg"},"s-brand-google-meet":{"image_path":"global/google-meet-logo.svg"},"s-brand-zoom":{"image_path":"global/zoom-logo.svg"},"s-brand-microsoft":{"image_path":"global/microsoft-logo.svg"},"s-brand-office365":{"image_path":"global/office365-logo.svg"},"s-brand-outlook":{"image_path":"global/outlook-logo.svg"},"s-brand-outlook-com":{"image_path":"global/outlook-com-logo.svg"}}
  window.SUPPORTS_FONT_AWESOME = true;
</script>
    <script src="https://kit.fontawesome.com/7602b1db9f.js" crossorigin="anonymous"></script>
    <style>
      :root {
        --fa-width: auto;
      }
    </style>

    <link rel="stylesheet" href="https://assets0.simplero.com/packs/vite/assets/index-C2eva29m.css" />


  <style>
    :root {
      --color-button-50-rgb:   253.0, 250.0, 240.0;
      --color-button-100-rgb:  250.0, 241.0, 212.0;
      --color-button-200-rgb:  247.0, 231.0, 184.0;
      --color-button-300-rgb:  243.0, 221.0, 153.0;
      --color-button-400-rgb:  232.0, 189.0, 56.0;
      --color-button-500-rgb:  226.0, 170.0, 0.0;
      --color-button-600-rgb:  185.0, 139.0, 0.0;
      --color-button-700-rgb:  170.0, 128.0, 0.0;
      --color-button-contrast: #000;

      --color-accent-400-rgb:  232.0, 189.0, 56.0;
      --color-accent-500-rgb:  226.0, 170.0, 0.0;
      --color-accent-600-rgb:  185.0, 139.0, 0.0;
      --color-accent-contrast: #000;

      --input-checkbox-checked-bg-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0676 0.653377 10.0953 1.22061 9.7903 1.6129L9.70711 1.70711L4.70711 6.70711C4.34662 7.06759 3.77939 7.09532 3.3871 6.7903L3.29289 6.70711L0.292893 3.70711C-0.0976311 3.31658 -0.0976311 2.68342 0.292893 2.29289C0.653377 1.93241 1.22061 1.90468 1.6129 2.2097L1.70711 2.29289L4 4.585L8.29289 0.292893Z' fill='%23000'/%3E%3C/svg%3E%0A");
      --input-radio-checked-bg-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23000' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
    }
  </style>

    <script src="https://assets0.simplero.com/packs/vite/assets/jquery-CrX2mhET.js" crossorigin="" type="module" data-turbolinks-track="true"></script><link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/chunk-DrXEqYTP.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/jquery-DUdOgot1.js" as="script" crossorigin="" data-turbolinks-track="true">
    <script src="https://assets0.simplero.com/packs/vite/assets/global_essentials-PCWPNpQ0.js" crossorigin="" type="module" data-turbolinks-track="true"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/builder_doc-35k1w9uH.js" crossorigin="" type="module" data-turbolinks-track="true"></script><link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/chunk-DrXEqYTP.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/preload-helper-DU5aYtaA.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/jquery-DUdOgot1.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_baseGetTag-DTxP6JBo.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/isObject-CvuDp1Fj.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_getNative-DbqyTYjA.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_baseRest-CgY34g6V.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dom_ready-DKh4szzN.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/form_focus-DlZ0b8xo.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/highlight-BOC3WrV_.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/iframe-DgLr9n3H.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dist-CM_0y879.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/popper-D4vrNLcm.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/tippy.esm-BZmZIwFV.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/ajax_helpers-xZcSt3Cr.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/inherits_from-2rs6Dv3i.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dist-CAoRinbg.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/morphdom-esm-CfooI83-.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/esm-lqQQO_20.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/local_draft_manager-BLXba5KR.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/progress_bar-CfBpzSFH.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/title_caps-D4HkXoRC.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/classnames-D9FOKa7P.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/checkboxes_group-BuQBl5Mb.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dom-CzkwLhqk.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/one_click_purchase-Crw_WBEl.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/rails-ujs-C0XZQMqh.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/rails_ujs-vqR7cDUJ.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/admin_bar-wUF2ErMX.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/stealme-C3l_bx_j.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/__vite-browser-external-Dxw5dlvL.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/video.es-DhB7uhbt.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/videojs-BTNtM5jk.js" as="script" crossorigin="" data-turbolinks-track="true"><link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/builder_doc-C6XpIQV4.css" media="all" data-turbolinks-track="true" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/switch-CJpUZktV.css" media="all" data-turbolinks-track="true" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/progress_bar-BFcr2gK-.css" media="all" data-turbolinks-track="true" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/checkboxes_group-DlIXLSUS.css" media="all" data-turbolinks-track="true" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/one_click_purchase-qx1phkNE.css" media="all" data-turbolinks-track="true" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/admin_bar-yCMslUly.css" media="all" data-turbolinks-track="true" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/stealme-CAN7ZdnS.css" media="all" data-turbolinks-track="true" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/videojs-DbXKFZm2.css" media="all" data-turbolinks-track="true" />
    <script src="https://assets0.simplero.com/packs/vite/assets/altcha-CsBlpUQq.js" crossorigin="" type="module" data-turbolinks-track="true"></script>
    <script src="https://assets0.simplero.com/packs/vite/assets/input_component_controller-DxDGL1we.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/field_component_controller-BcXqzoae.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/truncated_html_component_controller-BUr8W6d9.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/site_controller-DD8PGnmz.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/notification_manager_component_controller-C7hTJp0z.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/input_visibility_component_controller-B0UiIM2H.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/adding_indicator_component_controller-CLepNNhu.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/header_component_controller-CLkdIsw-.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/utils_controller-ChYoS6Zt.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/adaptive_theme_component_controller-CNHKhWsu.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/dropdown_component_controller-DHRfe4gm.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/panes_component_controller-CpN3f2fY.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/menu_component_controller-C1UiEond.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/sidebar_nav_component_controller-Dja4HFE-.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/revealable_controller-BLPV4d-q.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/node_component_controller-gTfWKriW.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/node_edit_in_layout_editor_overlay_component_controller-C2wZdMLu.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/node_empty_state_component_controller-BR2-CPON.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/footer_component_controller-DgVrAGZ5.js" crossorigin="" type="module"></script><link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/application-CICdy77j.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/chunk-DrXEqYTP.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/jquery-DUdOgot1.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/esm-lqQQO_20.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/stimulus-Bw1mFN5T.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dist-j5dIIYed.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/popper-D4vrNLcm.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/tippy.esm-BZmZIwFV.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/iframe-DgLr9n3H.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_baseGetTag-DTxP6JBo.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/isObject-CvuDp1Fj.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_getNative-DbqyTYjA.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_baseRest-CgY34g6V.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dom_ready-DKh4szzN.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/el-transition-DQcBm-Hy.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/form_focus-DlZ0b8xo.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dom-CzkwLhqk.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/animation-Yi8pTobZ.js" as="script" crossorigin=""><link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/input_component_controller-5QiFeclm.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/field_component_controller-3bFl1DPh.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/header_component_controller-BWapLXGI.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/panes_component_controller-K5fyDXVH.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/menu_component_controller-CWaR4CxT.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/sidebar_nav_component_controller-BHAYhsxx.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/node_component_controller-BBK_F0jd.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/node_edit_in_layout_editor_overlay_component_controller-CUbaajv4.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/node_empty_state_component_controller-CBCcNjpU.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/footer_component_controller-BPywWdoD.css" media="all" />
<script src="https://assets0.simplero.com/packs/vite/assets/stimulus_lazy_loader-CGupf9WM.js" crossorigin="" type="module" data-turbolinks-track="true"></script><link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/preload-helper-DU5aYtaA.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/helpers-B5Zhrmyh.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/stimulus-Bw1mFN5T.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/lazy_loader-CnztQv07.js" as="script" crossorigin="" data-turbolinks-track="true">


    

    <style>      .wysiwyg-content .btn.btn, html body .tw .wysiwyg-content .btn.btn {
        background-color: var(--style-guide-primary-light);
        color: var(--style-guide-primary-contrast);
        border-color: var(--style-guide-primary-600);
      }

      html.dark .wysiwyg-content .btn.btn, html.dark body .tw .wysiwyg-content .btn.btn {
        background-color: var(--style-guide-primary-dark);
      }

      .wysiwyg-content .btn.btn:hover,
      .wysiwyg-content .btn.btn:active,
      .wysiwyg-content .btn.btn:focus,
      html body .tw .wysiwyg-content .btn.btn:hover,
      html body .tw .wysiwyg-content .btn.btn:active,
      html body .tw .wysiwyg-content .btn.btn:focus {
        color: var(--style-guide-primary-contrast);
        background-color: var(--style-guide-primary-400);
      }

      /* This is to override the account WYSIWYG CSS for builder docs */
      html body .tw .builder-wysiwyg .wysiwyg-content :is(h1, h2, h3, h4, h5, h6) {
        font: inherit;
        margin: 0;
        line-height: inherit;
      }
</style><style>:root {
  --style-guide-neutral-0: #ffffff;
--style-guide-neutral-50: #fcfcfd;
--style-guide-neutral-100: #f8fafc;
--style-guide-neutral-200: #f1f5f9;
--style-guide-neutral-300: #e2e8f0;
--style-guide-neutral-400: #cbd5e1;
--style-guide-neutral-500: #94a3b8;
--style-guide-neutral-600: #64748b;
--style-guide-neutral-700: #475569;
--style-guide-neutral-800: #334155;
--style-guide-neutral-825: #282f40;
--style-guide-neutral-850: #1a2133;
--style-guide-neutral-900: #0f172a;
--style-guide-primary-light: #e2aa00;
--style-guide-primary-50: #fdfaf0;
--style-guide-primary-100: #faf1d4;
--style-guide-primary-200: #f7e7b8;
--style-guide-primary-300: #f3dd99;
--style-guide-primary-400: #e8bd38;
--style-guide-primary-500: #e2aa00;
--style-guide-primary-600: #b98b00;
--style-guide-primary-700: #aa8000;
--style-guide-primary-800: #8e6b00;
--style-guide-primary-900: #785a00;
--style-guide-primary-contrast: #fff;
--style-guide-primary-dark: #e2aa00;
--style-guide-secondary-light: #e2aa00;
--style-guide-secondary-50: #fdfaf0;
--style-guide-secondary-100: #faf1d4;
--style-guide-secondary-200: #f7e7b8;
--style-guide-secondary-300: #f3dd99;
--style-guide-secondary-400: #e8bd38;
--style-guide-secondary-500: #e2aa00;
--style-guide-secondary-600: #b98b00;
--style-guide-secondary-700: #aa8000;
--style-guide-secondary-800: #8e6b00;
--style-guide-secondary-900: #785a00;
--style-guide-secondary-contrast: #fff;
--style-guide-secondary-dark: #e2aa00;;
}

:root.dark, :root:is(.dark *), :root .dark {
  --style-guide-primary-50: #fdfaf0;
--style-guide-primary-100: #faf1d4;
--style-guide-primary-200: #f7e7b8;
--style-guide-primary-300: #f3dd99;
--style-guide-primary-400: #e8bd38;
--style-guide-primary-500: #e2aa00;
--style-guide-primary-600: #b98b00;
--style-guide-primary-700: #aa8000;
--style-guide-primary-800: #8e6b00;
--style-guide-primary-900: #785a00;
--style-guide-primary-contrast: #fff;
--style-guide-secondary-50: #fdfaf0;
--style-guide-secondary-100: #faf1d4;
--style-guide-secondary-200: #f7e7b8;
--style-guide-secondary-300: #f3dd99;
--style-guide-secondary-400: #e8bd38;
--style-guide-secondary-500: #e2aa00;
--style-guide-secondary-600: #b98b00;
--style-guide-secondary-700: #aa8000;
--style-guide-secondary-800: #8e6b00;
--style-guide-secondary-900: #785a00;
--style-guide-secondary-contrast: #fff;
}

a.t-btn.t-btn-secondary,
a.t-btn.t-btn-secondary:active,
a.t-btn.t-btn-secondary:focus,
a.t-btn.t-btn-secondary:hover,
a.t-btn.t-btn-secondary .s-icon,
button.t-btn.t-btn-secondary,
button.t-btn.t-btn-secondary:active,
button.t-btn.t-btn-secondary:focus,
button.t-btn.t-btn-secondary:hover,
button.t-btn.t-btn-secondary .s-icon {
  color: rgb(var(--color-secondary-500-rgb, var(--color-primary-500-rgb, 63, 115, 229)))
}
</style>


    <style>:root, .dark  { --color-primary-50-rgb: var(--sg-system-color-primary-50-rgb);
--color-primary-100-rgb: var(--sg-system-color-primary-100-rgb);
--color-primary-200-rgb: var(--sg-system-color-primary-200-rgb);
--color-primary-300-rgb: var(--sg-system-color-primary-300-rgb);
--color-primary-400-rgb: var(--sg-system-color-primary-400-rgb);
--color-primary-500-rgb: var(--sg-system-color-primary-500-rgb);
--color-primary-600-rgb: var(--sg-system-color-primary-600-rgb);
--color-primary-700-rgb: var(--sg-system-color-primary-700-rgb);
--color-primary-800-rgb: var(--sg-system-color-primary-800-rgb);
--color-primary-900-rgb: var(--sg-system-color-primary-900-rgb);
--color-primary-contrast-rgb: var(--sg-system-color-primary-contrast-rgb);
--color-secondary-50-rgb: var(--sg-system-color-secondary-50-rgb);
--color-secondary-100-rgb: var(--sg-system-color-secondary-100-rgb);
--color-secondary-200-rgb: var(--sg-system-color-secondary-200-rgb);
--color-secondary-300-rgb: var(--sg-system-color-secondary-300-rgb);
--color-secondary-400-rgb: var(--sg-system-color-secondary-400-rgb);
--color-secondary-500-rgb: var(--sg-system-color-secondary-500-rgb);
--color-secondary-600-rgb: var(--sg-system-color-secondary-600-rgb);
--color-secondary-700-rgb: var(--sg-system-color-secondary-700-rgb);
--color-secondary-800-rgb: var(--sg-system-color-secondary-800-rgb);
--color-secondary-900-rgb: var(--sg-system-color-secondary-900-rgb);
--color-secondary-contrast-rgb: var(--sg-system-color-secondary-contrast-rgb);
--color-neutral-0-rgb: var(--sg-system-color-neutral-0-rgb);
--color-neutral-50-rgb: var(--sg-system-color-neutral-50-rgb);
--color-neutral-100-rgb: var(--sg-system-color-neutral-100-rgb);
--color-neutral-200-rgb: var(--sg-system-color-neutral-200-rgb);
--color-neutral-300-rgb: var(--sg-system-color-neutral-300-rgb);
--color-neutral-400-rgb: var(--sg-system-color-neutral-400-rgb);
--color-neutral-500-rgb: var(--sg-system-color-neutral-500-rgb);
--color-neutral-600-rgb: var(--sg-system-color-neutral-600-rgb);
--color-neutral-700-rgb: var(--sg-system-color-neutral-700-rgb);
--color-neutral-800-rgb: var(--sg-system-color-neutral-800-rgb);
--color-neutral-825-rgb: var(--sg-system-color-neutral-825-rgb);
--color-neutral-850-rgb: var(--sg-system-color-neutral-850-rgb);
--color-neutral-900-rgb: var(--sg-system-color-neutral-900-rgb); }</style><style>:root, .dark  { --tw-base-font-size: var(--sg-effective-system-base-font-size, var(--sg-system-base-font-size)); }</style>
      
  <link rel="alternate" type="application/rss+xml" title="Blog" href="https://aclevercat.com/blog.xml" />
  
  
  
  

  <script src="https://assets0.simplero.com/packs/vite/assets/site_layout-BcBHkpLH.js" crossorigin="" type="module" data-turbolinks-track="true"></script><link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/chunk-DrXEqYTP.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/jquery-DUdOgot1.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_baseGetTag-DTxP6JBo.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/isObject-CvuDp1Fj.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_getNative-DbqyTYjA.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_baseRest-CgY34g6V.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dom_ready-DKh4szzN.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/clippy-CzbgQGBI.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/form_focus-DlZ0b8xo.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/highlight-BOC3WrV_.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/iframe-DgLr9n3H.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dist-CM_0y879.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/popper-D4vrNLcm.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/tippy.esm-BZmZIwFV.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/ajax_helpers-xZcSt3Cr.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/simplero_pusher-Bzl2YyiK.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/pusher_waiter-DzlXNuxN.js" as="script" crossorigin="" data-turbolinks-track="true">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/jquery_event_delegator-Dda9g02C.js" as="script" crossorigin="" data-turbolinks-track="true"><link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/site_layout-Ck5jq9bR.css" media="all" data-turbolinks-track="true" />

    <style>
      .account-accent-color {
  color: var(--style-guide-secondary-light) !important; }

.account-accent-color-bg {
  background-color: var(--style-guide-secondary-light) !important; }

.account-button-color {
  color: var(--style-guide-secondary-light) !important; }

.account-button-color-bg {
  background-color: var(--style-guide-secondary-light) !important; }

a, a:active, a:hover {
  text-decoration: underline; }

a .btn, a .btn:active, a .btn:hover {
  text-decoration: none; }

.btn-accent {
  color: #fff;
  background-color: #e2aa00;
  border-color: #c99700; }
  .btn-accent:hover, .btn-accent:focus, .btn-accent:active, .btn-accent.focus, .btn-accent.active {
    color: white !important;
    background-color: #af8400;
    border-color: #8b6900; }
  .btn-accent .badge {
    color: #e2aa00;
    background-color: #fff; }

.btn-account {
  color: #fff;
  background-color: #e2aa00;
  border-color: #c99700; }
  .btn-account:hover, .btn-account:focus, .btn-account:active, .btn-account.focus, .btn-account.active {
    color: white !important;
    background-color: #af8400;
    border-color: #8b6900; }
  .btn-account .badge {
    color: #e2aa00;
    background-color: #fff; }

p, pre, blockquote, td {
  font-family: "Helvetica Neue", Helvetica, Arial, Verdana, Trebuchet MS, sans-serif; }

body.public, body.space {
  background: #1d64a2 none;
  font-family: "Helvetica Neue", Helvetica, Arial, Verdana, Trebuchet MS, sans-serif; }
  body.public .page-header h1, body.public .page-header h1 small, body.space .page-header h1, body.space .page-header h1 small {
    color: #5fd1b3;
    font-family: "Helvetica Neue", Helvetica, Arial, Verdana, Trebuchet MS, sans-serif;
    font-weight: bold; }
  body.public footer, body.public footer a, body.space footer, body.space footer a {
    background-color: #1a1a1a !important;
    color: #aaaaaa !important; }
  body.public footer a:hover, body.space footer a:hover {
    color: #1a1a1a !important;
    background-color: #aaaaaa !important; }
  body.public .sidebar-container, body.space .sidebar-container {
    background-color: #ffffff; }

body.space #space_menu {
  background-color: #e7f8f3; }
  body.space #space_menu .nav > li > a {
    color: #5dccaf; }
    body.space #space_menu .nav > li > a i:before {
      color: #5dccaf; }
  body.space #space_menu .nav > li.open > a, body.space #space_menu .nav > li > a:hover {
    background-color: white;
    color: if false, #abe4d5, #3bbb9a; }

body.space #categories_sidebar ol li.active > div > .category_label, body.space #categories_sidebar ol li .category_label:hover {
  background-color: #e2aa00; }

.interact-promotion-announcement-bar-p {
  font-family: "Comfortaa", sans-serif !important; }

#interact-promotion-announcement-bar-btn {
  font-family: "Comfortaa", sans-serif !important; }

.interact_responsive_padding {
  padding: 0 !important;
  margin-bottom: 0 !important;
  position: static !important;
  height: auto !important; }

.interact_responsive_wrapper {
  position: static !important;
  height: auto !important; }

.interact_responsive_wrapper iframe {
  height: 500px !important; }
@charset "UTF-8";
.wysiwyg-content h1, .wysiwyg-content h2, .wysiwyg-content h3, .wysiwyg-content h4, .wysiwyg-content h5, .wysiwyg-content h6, .wysiwyg-content p, .wysiwyg-content td, .wysiwyg-content th, html body .tw .wysiwyg-content h1, html body .tw .wysiwyg-content h2, html body .tw .wysiwyg-content h3, html body .tw .wysiwyg-content h4, html body .tw .wysiwyg-content h5, html body .tw .wysiwyg-content h6, html body .tw .wysiwyg-content p, html body .tw .wysiwyg-content td, html body .tw .wysiwyg-content th {
  font-size: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  font: inherit;
  line-height: 1.4;
  vertical-align: baseline; }

.wysiwyg-content p, html body .tw .wysiwyg-content p {
  margin: 0 0 1em; }

.wysiwyg-content h1, .wysiwyg-content h2, .wysiwyg-content h3, .wysiwyg-content h4, .wysiwyg-content h5, .wysiwyg-content h6, html body .tw .wysiwyg-content h1, html body .tw .wysiwyg-content h2, html body .tw .wysiwyg-content h3, html body .tw .wysiwyg-content h4, html body .tw .wysiwyg-content h5, html body .tw .wysiwyg-content h6 {
  margin: 1em 0 1em;
  font-size: 18px;
  font-weight: bold; }

.wysiwyg-content h1, html body .tw .wysiwyg-content h1 {
  font-size: 26px; }

.wysiwyg-content h2, html body .tw .wysiwyg-content h2 {
  font-size: 22px; }

.wysiwyg-content h3, html body .tw .wysiwyg-content h3 {
  font-size: 18px; }

.wysiwyg-content h4, html body .tw .wysiwyg-content h4 {
  font-size: 16px; }

.wysiwyg-content h5, html body .tw .wysiwyg-content h5 {
  font-size: 14px; }

.wysiwyg-content h6, html body .tw .wysiwyg-content h6 {
  font-size: 12px; }

.wysiwyg-content:is(html.supports-responsive-font-size *) h1, html body .tw .wysiwyg-content:is(html.supports-responsive-font-size *) h1 {
  font-size: 1.625rem; }

.wysiwyg-content:is(html.supports-responsive-font-size *) h2, html body .tw .wysiwyg-content:is(html.supports-responsive-font-size *) h2 {
  font-size: 1.375rem; }

.wysiwyg-content:is(html.supports-responsive-font-size *) h3, html body .tw .wysiwyg-content:is(html.supports-responsive-font-size *) h3 {
  font-size: 1.125rem; }

.wysiwyg-content:is(html.supports-responsive-font-size *) h4, html body .tw .wysiwyg-content:is(html.supports-responsive-font-size *) h4 {
  font-size: 1rem; }

.wysiwyg-content:is(html.supports-responsive-font-size *) h5, html body .tw .wysiwyg-content:is(html.supports-responsive-font-size *) h5 {
  font-size: 0.875rem; }

.wysiwyg-content:is(html.supports-responsive-font-size *) h6, html body .tw .wysiwyg-content:is(html.supports-responsive-font-size *) h6 {
  font-size: 0.75rem; }

.wysiwyg-content blockquote, html body .tw .wysiwyg-content blockquote {
  margin: 0 0 1em 5px;
  padding: 0 0 0 10px;
  border-left: 5px solid #ccc; }

.wysiwyg-content pre, html body .tw .wysiwyg-content pre {
  font-family: monospace;
  font-size: 12px;
  margin: 0;
  padding: 10px;
  white-space: pre-wrap;
  background-color: #eee; }

.wysiwyg-content:is(html.supports-responsive-font-size *) pre, html body .tw .wysiwyg-content:is(html.supports-responsive-font-size *) pre {
  font-size: 0.875rem; }

.wysiwyg-content ul, .wysiwyg-content ol, html body .tw .wysiwyg-content ul, html body .tw .wysiwyg-content ol {
  margin: 0 0 1em;
  padding: 0; }
  .wysiwyg-content ul:last-child, .wysiwyg-content ol:last-child, html body .tw .wysiwyg-content ul:last-child, html body .tw .wysiwyg-content ol:last-child {
    margin-bottom: 0; }

.wysiwyg-content li, html body .tw .wysiwyg-content li {
  margin: 0 0 0 30px;
  padding: 0; }

.wysiwyg-content img, html body .tw .wysiwyg-content img {
  max-width: 100%;
  height: auto; }

.wysiwyg-content ul.prosemirror-list li > p, .wysiwyg-content ol.prosemirror-list li > p, html body .tw .wysiwyg-content ul.prosemirror-list li > p, html body .tw .wysiwyg-content ol.prosemirror-list li > p {
  margin: 0; }

.wysiwyg-content ul.prosemirror-ul-bullet-hollow-square, .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square ul, html body .tw .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square, html body .tw .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square ul {
  padding-left: -7px; }

.wysiwyg-content ul.prosemirror-ul-bullet-hollow-square > li, html body .tw .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square > li {
  list-style-type: "●";
  padding-left: 7px; }
  .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square > li > ul > li {
    list-style-type: "○";
    padding-left: 7px; }
    .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square > li > ul > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square > li > ul > li > ul > li {
      list-style-type: "■";
      padding-left: 7px; }
      .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square > li > ul > li > ul > li li, html body .tw .wysiwyg-content ul.prosemirror-ul-bullet-hollow-square > li > ul > li > ul > li li {
        list-style-type: "■";
        padding-left: 7px; }

.wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square, .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square ul, html body .tw .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square, html body .tw .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square ul {
  padding-left: -7px; }

.wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square > li, html body .tw .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square > li {
  list-style-type: "❖";
  padding-left: 7px; }
  .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square > li > ul > li {
    list-style-type: "➢";
    padding-left: 7px; }
    .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square > li > ul > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square > li > ul > li > ul > li {
      list-style-type: "■";
      padding-left: 7px; }
      .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square > li > ul > li > ul > li li, html body .tw .wysiwyg-content ul.prosemirror-ul-crossed-diamond-threed-arrow-square > li > ul > li > ul > li li {
        list-style-type: "■";
        padding-left: 7px; }

.wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet, .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet ul, html body .tw .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet, html body .tw .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet ul {
  padding-left: -7px; }

.wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet > li, html body .tw .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet > li {
  list-style-type: "→";
  padding-left: 7px; }
  .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet > li > ul > li {
    list-style-type: "◆";
    padding-left: 7px; }
    .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet > li > ul > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet > li > ul > li > ul > li {
      list-style-type: "●";
      padding-left: 7px; }
      .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet > li > ul > li > ul > li li, html body .tw .wysiwyg-content ul.prosemirror-ul-arrow-diamond-bullet > li > ul > li > ul > li li {
        list-style-type: "●";
        padding-left: 7px; }

.wysiwyg-content ul.prosemirror-ul-star-hollow-square, .wysiwyg-content ul.prosemirror-ul-star-hollow-square ul, html body .tw .wysiwyg-content ul.prosemirror-ul-star-hollow-square, html body .tw .wysiwyg-content ul.prosemirror-ul-star-hollow-square ul {
  padding-left: -7px; }

.wysiwyg-content ul.prosemirror-ul-star-hollow-square > li, html body .tw .wysiwyg-content ul.prosemirror-ul-star-hollow-square > li {
  list-style-type: "★";
  padding-left: 7px; }
  .wysiwyg-content ul.prosemirror-ul-star-hollow-square > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-star-hollow-square > li > ul > li {
    list-style-type: "○";
    padding-left: 7px; }
    .wysiwyg-content ul.prosemirror-ul-star-hollow-square > li > ul > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-star-hollow-square > li > ul > li > ul > li {
      list-style-type: "■";
      padding-left: 7px; }
      .wysiwyg-content ul.prosemirror-ul-star-hollow-square > li > ul > li > ul > li li, html body .tw .wysiwyg-content ul.prosemirror-ul-star-hollow-square > li > ul > li > ul > li li {
        list-style-type: "■";
        padding-left: 7px; }

.wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square, .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square ul, html body .tw .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square, html body .tw .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square ul {
  padding-left: -7px; }

.wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square > li, html body .tw .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square > li {
  list-style-type: "➢";
  padding-left: 7px; }
  .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square > li > ul > li {
    list-style-type: "○";
    padding-left: 7px; }
    .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square > li > ul > li > ul > li, html body .tw .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square > li > ul > li > ul > li {
      list-style-type: "■";
      padding-left: 7px; }
      .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square > li > ul > li > ul > li li, html body .tw .wysiwyg-content ul.prosemirror-ul-threed-arrow-hollow-square > li > ul > li > ul > li li {
        list-style-type: "■";
        padding-left: 7px; }

.wysiwyg-content ul.prosemirror-ul-tick-box li, html body .tw .wysiwyg-content ul.prosemirror-ul-tick-box li {
  list-style-type: '\274f';
  padding-left: 5px; }

.wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman, .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman ol, html body .tw .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman, html body .tw .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman ol {
  padding-left: -7px; }

.wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman > li, html body .tw .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman > li {
  list-style-type: decimal;
  padding-left: 7px; }
  .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman > li > ol > li, html body .tw .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman > li > ol > li {
    list-style-type: lower-alpha;
    padding-left: 7px; }
    .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman > li > ol > li > ol > li, html body .tw .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman > li > ol > li > ol > li {
      list-style-type: lower-roman;
      padding-left: 7px; }
      .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman > li > ol > li > ol > li li, html body .tw .wysiwyg-content ol.prosemirror-ol-number-lower-alpha-lower-roman > li > ol > li > ol > li li {
        list-style-type: lower-roman;
        padding-left: 7px; }

.wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman, .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman ol, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman ol {
  padding-left: -7px; }

.wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman > li, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman > li {
  list-style-type: upper-alpha;
  padding-left: 7px; }
  .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman > li > ol > li, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman > li > ol > li {
    list-style-type: lower-alpha;
    padding-left: 7px; }
    .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman > li > ol > li > ol > li, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman > li > ol > li > ol > li {
      list-style-type: lower-roman;
      padding-left: 7px; }
      .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman > li > ol > li > ol > li li, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-alpha-lower-alpha-lower-roman > li > ol > li > ol > li li {
        list-style-type: lower-roman;
        padding-left: 7px; }

.wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number, .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number ol, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number ol {
  padding-left: -7px; }

.wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number > li, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number > li {
  list-style-type: upper-roman;
  padding-left: 7px; }
  .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number > li > ol > li, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number > li > ol > li {
    list-style-type: upper-alpha;
    padding-left: 7px; }
    .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number > li > ol > li > ol > li, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number > li > ol > li > ol > li {
      list-style-type: decimal;
      padding-left: 7px; }
      .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number > li > ol > li > ol > li li, html body .tw .wysiwyg-content ol.prosemirror-ol-upper-roman-upper-alpha-number > li > ol > li > ol > li li {
        list-style-type: decimal;
        padding-left: 7px; }

.wysiwyg-content .notice-box, html body .tw .wysiwyg-content .notice-box {
  border: 1px solid #af8400;
  background-color: #e2aa00;
  padding: 15px 25px;
  margin: 0 20px 1em; }
  .wysiwyg-content .notice-box, .wysiwyg-content .notice-box div, .wysiwyg-content .notice-box p, html body .tw .wysiwyg-content .notice-box, html body .tw .wysiwyg-content .notice-box div, html body .tw .wysiwyg-content .notice-box p {
    color: #fff;
    font-size: 18px; }
  .wysiwyg-content .notice-box :last-child, html body .tw .wysiwyg-content .notice-box :last-child {
    margin-bottom: 0; }
  .wysiwyg-content .notice-box :first-child, html body .tw .wysiwyg-content .notice-box :first-child {
    margin-top: 0; }

.wysiwyg-content .btn, html body .tw .wysiwyg-content .btn {
  color: #000;
  background-color: #e2aa00;
  display: inline-block;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  border: 1px solid #af8400; }
  .wysiwyg-content .btn:hover, .wysiwyg-content .btn:active, .wysiwyg-content .btn:focus, html body .tw .wysiwyg-content .btn:hover, html body .tw .wysiwyg-content .btn:active, html body .tw .wysiwyg-content .btn:focus {
    color: white;
    background-color: #af8400; }

.wysiwyg-content .simplero--action-click, html body .tw .wysiwyg-content .simplero--action-click {
  border: 1px solid #C8D2D5;
  border-radius: 2px;
  padding: 0 2px; }

.wysiwyg-content .simplero--warning-box, html body .tw .wysiwyg-content .simplero--warning-box {
  background-color: #F9F9F2;
  border-radius: 2px;
  padding: 8px 15px 10px 34px;
  position: relative; }
  .wysiwyg-content .simplero--warning-box:before, html body .tw .wysiwyg-content .simplero--warning-box:before {
    position: absolute;
    top: 8px;
    left: 12px;
    color: #F0D24B;
    content: '⚠️';
    font-style: normal;
    font-weight: normal;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.wysiwyg-content .wysiwyg-font-size-smaller, html body .tw .wysiwyg-content .wysiwyg-font-size-smaller {
  font-size: smaller; }

.wysiwyg-content .wysiwyg-font-size-larger, html body .tw .wysiwyg-content .wysiwyg-font-size-larger {
  font-size: larger; }

.wysiwyg-content .wysiwyg-font-size-xx-large, html body .tw .wysiwyg-content .wysiwyg-font-size-xx-large {
  font-size: xx-large; }

.wysiwyg-content .wysiwyg-font-size-x-large, html body .tw .wysiwyg-content .wysiwyg-font-size-x-large {
  font-size: x-large; }

.wysiwyg-content .wysiwyg-font-size-large, html body .tw .wysiwyg-content .wysiwyg-font-size-large {
  font-size: large; }

.wysiwyg-content .wysiwyg-font-size-medium, html body .tw .wysiwyg-content .wysiwyg-font-size-medium {
  font-size: medium; }

.wysiwyg-content .wysiwyg-font-size-small, html body .tw .wysiwyg-content .wysiwyg-font-size-small {
  font-size: small; }

.wysiwyg-content .wysiwyg-font-size-x-small, html body .tw .wysiwyg-content .wysiwyg-font-size-x-small {
  font-size: x-small; }

.wysiwyg-content .wysiwyg-font-size-xx-small, html body .tw .wysiwyg-content .wysiwyg-font-size-xx-small {
  font-size: xx-small; }

.wysiwyg-content .wysiwyg-color-black, html body .tw .wysiwyg-content .wysiwyg-color-black {
  color: #000000; }

.wysiwyg-content .wysiwyg-color-silver, html body .tw .wysiwyg-content .wysiwyg-color-silver {
  color: #c0c0c0; }

.wysiwyg-content .wysiwyg-color-gray, html body .tw .wysiwyg-content .wysiwyg-color-gray {
  color: #808080; }

.wysiwyg-content .wysiwyg-color-white, html body .tw .wysiwyg-content .wysiwyg-color-white {
  color: #ffffff; }

.wysiwyg-content .wysiwyg-color-maroon, html body .tw .wysiwyg-content .wysiwyg-color-maroon {
  color: #800000; }

.wysiwyg-content .wysiwyg-color-red, html body .tw .wysiwyg-content .wysiwyg-color-red {
  color: #ff0000; }

.wysiwyg-content .wysiwyg-color-purple, html body .tw .wysiwyg-content .wysiwyg-color-purple {
  color: #800080; }

.wysiwyg-content .wysiwyg-color-fuchsia, html body .tw .wysiwyg-content .wysiwyg-color-fuchsia {
  color: #ff00ff; }

.wysiwyg-content .wysiwyg-color-green, html body .tw .wysiwyg-content .wysiwyg-color-green {
  color: #008000; }

.wysiwyg-content .wysiwyg-color-lime, html body .tw .wysiwyg-content .wysiwyg-color-lime {
  color: #00ff00; }

.wysiwyg-content .wysiwyg-color-olive, html body .tw .wysiwyg-content .wysiwyg-color-olive {
  color: #808000; }

.wysiwyg-content .wysiwyg-color-orange, html body .tw .wysiwyg-content .wysiwyg-color-orange {
  color: #ffa500; }

.wysiwyg-content .wysiwyg-color-yellow, html body .tw .wysiwyg-content .wysiwyg-color-yellow {
  color: #ffff00; }

.wysiwyg-content .wysiwyg-color-navy, html body .tw .wysiwyg-content .wysiwyg-color-navy {
  color: #000080; }

.wysiwyg-content .wysiwyg-color-blue, html body .tw .wysiwyg-content .wysiwyg-color-blue {
  color: #0000ff; }

.wysiwyg-content .wysiwyg-color-teal, html body .tw .wysiwyg-content .wysiwyg-color-teal {
  color: #008080; }

.wysiwyg-content .wysiwyg-color-aqua, html body .tw .wysiwyg-content .wysiwyg-color-aqua {
  color: #00ffff; }

.wysiwyg-content .wysiwyg-text-align-right, html body .tw .wysiwyg-content .wysiwyg-text-align-right {
  text-align: right; }

.wysiwyg-content .wysiwyg-text-align-center, html body .tw .wysiwyg-content .wysiwyg-text-align-center {
  text-align: center; }

.wysiwyg-content .wysiwyg-text-align-left, html body .tw .wysiwyg-content .wysiwyg-text-align-left {
  text-align: left; }

.wysiwyg-content .wysiwyg-float-left, html body .tw .wysiwyg-content .wysiwyg-float-left {
  float: left;
  margin: 0 8px 8px 0; }

.wysiwyg-content .wysiwyg-float-right, html body .tw .wysiwyg-content .wysiwyg-float-right {
  float: right;
  margin: 0 0 8px 8px; }

.wysiwyg-content .wysiwyg-clear-right, html body .tw .wysiwyg-content .wysiwyg-clear-right {
  clear: right; }

.wysiwyg-content .wysiwyg-clear-left, html body .tw .wysiwyg-content .wysiwyg-clear-left {
  clear: left; }

.wysiwyg-content .wysiwyg-color-navy, html body .tw .wysiwyg-content .wysiwyg-color-navy {
  color: #003766; }

.wysiwyg-content .wysiwyg-color-blue, html body .tw .wysiwyg-content .wysiwyg-color-blue {
  color: #1d64a2; }

.wysiwyg-content .wysiwyg-color-silver, html body .tw .wysiwyg-content .wysiwyg-color-silver {
  color: #d1d1d8; }

.wysiwyg-content .wysiwyg-color-gold, html body .tw .wysiwyg-content .wysiwyg-color-gold {
  color: #e2aa00; }

.wysiwyg-content .wysiwyg-color-ltblue, html body .tw .wysiwyg-content .wysiwyg-color-ltblue {
  color: #b8d9f4; }

      <style>      .wysiwyg-content .btn.btn, html body .tw .wysiwyg-content .btn.btn {
        background-color: var(--style-guide-primary-light);
        color: var(--style-guide-primary-contrast);
        border-color: var(--style-guide-primary-600);
      }

      html.dark .wysiwyg-content .btn.btn, html.dark body .tw .wysiwyg-content .btn.btn {
        background-color: var(--style-guide-primary-dark);
      }

      .wysiwyg-content .btn.btn:hover,
      .wysiwyg-content .btn.btn:active,
      .wysiwyg-content .btn.btn:focus,
      html body .tw .wysiwyg-content .btn.btn:hover,
      html body .tw .wysiwyg-content .btn.btn:active,
      html body .tw .wysiwyg-content .btn.btn:focus {
        color: var(--style-guide-primary-contrast);
        background-color: var(--style-guide-primary-400);
      }

      /* This is to override the account WYSIWYG CSS for builder docs */
      html body .tw .builder-wysiwyg .wysiwyg-content :is(h1, h2, h3, h4, h5, h6) {
        font: inherit;
        margin: 0;
        line-height: inherit;
      }
</style><style>:root {
  --style-guide-neutral-0: #ffffff;
--style-guide-neutral-50: #fcfcfd;
--style-guide-neutral-100: #f8fafc;
--style-guide-neutral-200: #f1f5f9;
--style-guide-neutral-300: #e2e8f0;
--style-guide-neutral-400: #cbd5e1;
--style-guide-neutral-500: #94a3b8;
--style-guide-neutral-600: #64748b;
--style-guide-neutral-700: #475569;
--style-guide-neutral-800: #334155;
--style-guide-neutral-825: #282f40;
--style-guide-neutral-850: #1a2133;
--style-guide-neutral-900: #0f172a;
--style-guide-primary-light: #e2aa00;
--style-guide-primary-50: #fdfaf0;
--style-guide-primary-100: #faf1d4;
--style-guide-primary-200: #f7e7b8;
--style-guide-primary-300: #f3dd99;
--style-guide-primary-400: #e8bd38;
--style-guide-primary-500: #e2aa00;
--style-guide-primary-600: #b98b00;
--style-guide-primary-700: #aa8000;
--style-guide-primary-800: #8e6b00;
--style-guide-primary-900: #785a00;
--style-guide-primary-contrast: #fff;
--style-guide-primary-dark: #e2aa00;
--style-guide-secondary-light: #e2aa00;
--style-guide-secondary-50: #fdfaf0;
--style-guide-secondary-100: #faf1d4;
--style-guide-secondary-200: #f7e7b8;
--style-guide-secondary-300: #f3dd99;
--style-guide-secondary-400: #e8bd38;
--style-guide-secondary-500: #e2aa00;
--style-guide-secondary-600: #b98b00;
--style-guide-secondary-700: #aa8000;
--style-guide-secondary-800: #8e6b00;
--style-guide-secondary-900: #785a00;
--style-guide-secondary-contrast: #fff;
--style-guide-secondary-dark: #e2aa00;;
}

:root.dark, :root:is(.dark *), :root .dark {
  --style-guide-primary-50: #fdfaf0;
--style-guide-primary-100: #faf1d4;
--style-guide-primary-200: #f7e7b8;
--style-guide-primary-300: #f3dd99;
--style-guide-primary-400: #e8bd38;
--style-guide-primary-500: #e2aa00;
--style-guide-primary-600: #b98b00;
--style-guide-primary-700: #aa8000;
--style-guide-primary-800: #8e6b00;
--style-guide-primary-900: #785a00;
--style-guide-primary-contrast: #fff;
--style-guide-secondary-50: #fdfaf0;
--style-guide-secondary-100: #faf1d4;
--style-guide-secondary-200: #f7e7b8;
--style-guide-secondary-300: #f3dd99;
--style-guide-secondary-400: #e8bd38;
--style-guide-secondary-500: #e2aa00;
--style-guide-secondary-600: #b98b00;
--style-guide-secondary-700: #aa8000;
--style-guide-secondary-800: #8e6b00;
--style-guide-secondary-900: #785a00;
--style-guide-secondary-contrast: #fff;
}

a.t-btn.t-btn-secondary,
a.t-btn.t-btn-secondary:active,
a.t-btn.t-btn-secondary:focus,
a.t-btn.t-btn-secondary:hover,
a.t-btn.t-btn-secondary .s-icon,
button.t-btn.t-btn-secondary,
button.t-btn.t-btn-secondary:active,
button.t-btn.t-btn-secondary:focus,
button.t-btn.t-btn-secondary:hover,
button.t-btn.t-btn-secondary .s-icon {
  color: rgb(var(--color-secondary-500-rgb, var(--color-primary-500-rgb, 63, 115, 229)))
}
</style>
    </style>
<script>function simpleroJSCodedbde88aa2b3c20a0767f536793944b370c8132c4() {
  try {
    ['click', 'scroll', 'mousemove', 'touchstart'].forEach(function(e) {
  window.addEventListener(e, simpleroGtmFirstInteraction, {
    once: true,
    passive: true,
  });
});
let simpleroGtmFirstInteractionRun = false;

function simpleroGtmFirstInteraction() {
  if (!simpleroGtmFirstInteractionRun) {
    simpleroGtmFirstInteractionRun = true;
    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-K9NBNQ');

  }
}

  } catch(err) { console.log('an error occurred while running your js', err) }
}

function simpleroJSCodedbde88aa2b3c20a0767f536793944b370c8132c4Wrapper() {
  if (typeof simpleroCookieConsent == 'undefined') {
    console.log("simpleroCookieConsent is undefined, running provided JS anyway.")
    simpleroJSCodedbde88aa2b3c20a0767f536793944b370c8132c4()
  } else {
    simpleroCookieConsent.whenCookiesAllowed(simpleroJSCodedbde88aa2b3c20a0767f536793944b370c8132c4)
  }
}

// Wait for the document to be ready, otherwise simpleroCookieConsent may not be defined yet.
if (typeof simpleroCookieConsent != 'undefined' || document.readyState === "complete" || document.readyState === "loaded") {
  simpleroJSCodedbde88aa2b3c20a0767f536793944b370c8132c4Wrapper()
} else {
  document.addEventListener('DOMContentLoaded', simpleroJSCodedbde88aa2b3c20a0767f536793944b370c8132c4Wrapper)
}
</script><script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=646a8f49413e9c001905a113&product=inline-share-buttons&source=platform" async="async"></script><script>function simpleroJSCode9a330050aa3f867acaa393bbffff6511505dbd69() {
  try {
    ['click', 'scroll', 'mousemove', 'touchstart'].forEach(function(e) {
  window.addEventListener(e, simpleroGtmFirstInteraction, {
    once: true,
    passive: true,
  });
});
let simpleroGtmFirstInteractionRun = false;

function simpleroGtmFirstInteraction() {
  if (!simpleroGtmFirstInteractionRun) {
    simpleroGtmFirstInteractionRun = true;
    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-K9NBNQ');

  }
}

  } catch(err) { console.log('an error occurred while running your js', err) }
}

function simpleroJSCode9a330050aa3f867acaa393bbffff6511505dbd69Wrapper() {
  if (typeof simpleroCookieConsent == 'undefined') {
    console.log("simpleroCookieConsent is undefined, running provided JS anyway.")
    simpleroJSCode9a330050aa3f867acaa393bbffff6511505dbd69()
  } else {
    simpleroCookieConsent.whenCookiesAllowed(simpleroJSCode9a330050aa3f867acaa393bbffff6511505dbd69)
  }
}

// Wait for the document to be ready, otherwise simpleroCookieConsent may not be defined yet.
if (typeof simpleroCookieConsent != 'undefined' || document.readyState === "complete" || document.readyState === "loaded") {
  simpleroJSCode9a330050aa3f867acaa393bbffff6511505dbd69Wrapper()
} else {
  document.addEventListener('DOMContentLoaded', simpleroJSCode9a330050aa3f867acaa393bbffff6511505dbd69Wrapper)
}
</script>  <script src="https://assets0.simplero.com/packs/vite/assets/builder_doc_layout-L0dtb0dI.js" crossorigin="" type="module" data-turbolinks-track="true"></script><link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/builder_doc_layout-CAybvIOx.css" media="all" data-turbolinks-track="true" />
  <style id="style-guide">:root  {
--sg-palette-color-1: #FFFFFF;
--sg-palette-color-2: #e3edf2;
--sg-palette-color-3: #1d64a2;
--sg-palette-color-4: #003766;
--sg-palette-color-5: #e2aa00;

--sg-palette-color-lightest: var(--sg-palette-color-1);
--sg-palette-color-light: var(--sg-palette-color-2);
--sg-palette-color-accent: var(--sg-palette-color-5);
--sg-palette-color-dark: var(--sg-palette-color-3);
--sg-palette-color-darkest: var(--sg-palette-color-4);

--sg-palette-color-1-contrast: #003766;
--sg-palette-color-2-contrast: #003766;
--sg-palette-color-3-contrast: #FFFFFF;
--sg-palette-color-4-contrast: #FFFFFF;
--sg-palette-color-5-contrast: #003766;

--sg-palette-color-lightest-contrast: var(--sg-palette-color-1-contrast);
--sg-palette-color-light-contrast: var(--sg-palette-color-2-contrast);
--sg-palette-color-accent-contrast: var(--sg-palette-color-5-contrast);
--sg-palette-color-dark-contrast: var(--sg-palette-color-3-contrast);
--sg-palette-color-darkest-constrast: var(--sg-palette-color-4-contrast);

}
:root  {
--sg-custom-colors: "var(--sg-custom-color-yyrw1fclev),var(--sg-custom-color-7nrhsrnf51),var(--sg-custom-color-zisjy00exn)";
--sg-custom-color-yyrw1fclev: #be7c4d;
--sg-custom-color-7nrhsrnf51: #b8d9f4;
--sg-custom-color-zisjy00exn: #e7ecef;

}
:root  {
--sg-system-color-neutral-0-rgb: 255.0, 255.0, 255.0;
--sg-system-color-neutral-0: rgb(var(--sg-system-color-neutral-0-rgb));
--sg-system-color-neutral-50-rgb: 252.0, 252.0, 253.0;
--sg-system-color-neutral-50: rgb(var(--sg-system-color-neutral-50-rgb));
--sg-system-color-neutral-100-rgb: 248.0, 250.0, 252.0;
--sg-system-color-neutral-100: rgb(var(--sg-system-color-neutral-100-rgb));
--sg-system-color-neutral-200-rgb: 241.0, 245.0, 249.0;
--sg-system-color-neutral-200: rgb(var(--sg-system-color-neutral-200-rgb));
--sg-system-color-neutral-300-rgb: 226.0, 232.0, 240.0;
--sg-system-color-neutral-300: rgb(var(--sg-system-color-neutral-300-rgb));
--sg-system-color-neutral-400-rgb: 203.0, 213.0, 225.0;
--sg-system-color-neutral-400: rgb(var(--sg-system-color-neutral-400-rgb));
--sg-system-color-neutral-500-rgb: 148.0, 163.0, 184.0;
--sg-system-color-neutral-500: rgb(var(--sg-system-color-neutral-500-rgb));
--sg-system-color-neutral-600-rgb: 100.0, 116.0, 139.0;
--sg-system-color-neutral-600: rgb(var(--sg-system-color-neutral-600-rgb));
--sg-system-color-neutral-700-rgb: 71.0, 85.0, 105.0;
--sg-system-color-neutral-700: rgb(var(--sg-system-color-neutral-700-rgb));
--sg-system-color-neutral-800-rgb: 51.0, 65.0, 85.0;
--sg-system-color-neutral-800: rgb(var(--sg-system-color-neutral-800-rgb));
--sg-system-color-neutral-825-rgb: 40.0, 47.0, 64.0;
--sg-system-color-neutral-825: rgb(var(--sg-system-color-neutral-825-rgb));
--sg-system-color-neutral-850-rgb: 26.0, 33.0, 51.0;
--sg-system-color-neutral-850: rgb(var(--sg-system-color-neutral-850-rgb));
--sg-system-color-neutral-900-rgb: 15.0, 23.0, 42.0;
--sg-system-color-neutral-900: rgb(var(--sg-system-color-neutral-900-rgb));
--sg-system-color-primary-light: #e2aa00;
--sg-system-color-primary-50-rgb: 253.0, 250.0, 240.0;
--sg-system-color-primary-100-rgb: 250.0, 241.0, 212.0;
--sg-system-color-primary-200-rgb: 247.0, 231.0, 184.0;
--sg-system-color-primary-300-rgb: 243.0, 221.0, 153.0;
--sg-system-color-primary-400-rgb: 232.0, 189.0, 56.0;
--sg-system-color-primary-500-rgb: 226.0, 170.0, 0.0;
--sg-system-color-primary-600-rgb: 185.0, 139.0, 0.0;
--sg-system-color-primary-700-rgb: 170.0, 128.0, 0.0;
--sg-system-color-primary-800-rgb: 142.0, 107.0, 0.0;
--sg-system-color-primary-900-rgb: 120.0, 90.0, 0.0;
--sg-system-color-primary-contrast-rgb: 255.0, 255.0, 255.0;
--sg-system-color-primary-dark: #e2aa00;
--sg-system-color-secondary-light: #e2aa00;
--sg-system-color-secondary-50-rgb: 253.0, 250.0, 240.0;
--sg-system-color-secondary-100-rgb: 250.0, 241.0, 212.0;
--sg-system-color-secondary-200-rgb: 247.0, 231.0, 184.0;
--sg-system-color-secondary-300-rgb: 243.0, 221.0, 153.0;
--sg-system-color-secondary-400-rgb: 232.0, 189.0, 56.0;
--sg-system-color-secondary-500-rgb: 226.0, 170.0, 0.0;
--sg-system-color-secondary-600-rgb: 185.0, 139.0, 0.0;
--sg-system-color-secondary-700-rgb: 170.0, 128.0, 0.0;
--sg-system-color-secondary-800-rgb: 142.0, 107.0, 0.0;
--sg-system-color-secondary-900-rgb: 120.0, 90.0, 0.0;
--sg-system-color-secondary-contrast-rgb: 255.0, 255.0, 255.0;
--sg-system-color-secondary-dark: #e2aa00;

}
:root.dark, :root:is(.dark *), :root .dark {
--sg-system-color-primary-50-rgb: 253.0, 250.0, 240.0;
--sg-system-color-primary-100-rgb: 250.0, 241.0, 212.0;
--sg-system-color-primary-200-rgb: 247.0, 231.0, 184.0;
--sg-system-color-primary-300-rgb: 243.0, 221.0, 153.0;
--sg-system-color-primary-400-rgb: 232.0, 189.0, 56.0;
--sg-system-color-primary-500-rgb: 226.0, 170.0, 0.0;
--sg-system-color-primary-600-rgb: 185.0, 139.0, 0.0;
--sg-system-color-primary-700-rgb: 170.0, 128.0, 0.0;
--sg-system-color-primary-800-rgb: 142.0, 107.0, 0.0;
--sg-system-color-primary-900-rgb: 120.0, 90.0, 0.0;
--sg-system-color-primary-contrast-rgb: 255.0, 255.0, 255.0;
--sg-system-color-secondary-50-rgb: 253.0, 250.0, 240.0;
--sg-system-color-secondary-100-rgb: 250.0, 241.0, 212.0;
--sg-system-color-secondary-200-rgb: 247.0, 231.0, 184.0;
--sg-system-color-secondary-300-rgb: 243.0, 221.0, 153.0;
--sg-system-color-secondary-400-rgb: 232.0, 189.0, 56.0;
--sg-system-color-secondary-500-rgb: 226.0, 170.0, 0.0;
--sg-system-color-secondary-600-rgb: 185.0, 139.0, 0.0;
--sg-system-color-secondary-700-rgb: 170.0, 128.0, 0.0;
--sg-system-color-secondary-800-rgb: 142.0, 107.0, 0.0;
--sg-system-color-secondary-900-rgb: 120.0, 90.0, 0.0;
--sg-system-color-secondary-contrast-rgb: 255.0, 255.0, 255.0;

}
:root  {

          --sg-color-style-1-background: var(--sg-palette-color-lightest);
          --sg-color-style-1-headline: var(--sg-palette-color-darkest);
          --sg-color-style-1-paragraph: #000000;
          --sg-color-style-1-subheadline: var(--sg-palette-color-4);
          --sg-color-style-1-preheadline: var(--sg-custom-color-yyrw1fclev);
          --sg-color-style-1-link: #e2aa00;
          --sg-color-style-1-input-accent: var(--sg-custom-color-yyrw1fclev);
          --sg-color-style-1-input-text: rgb(15, 23, 42);
          --sg-color-style-1-input-label: rgb(100, 116, 139);
          --sg-color-style-1-input-border: rgb(203, 213, 225);
          --sg-color-style-1-input-background: rgb(255, 255, 255);
        
}
:root  {

          --sg-color-style-2-background: var(--sg-palette-color-darkest);
          --sg-color-style-2-headline: var(--sg-palette-color-lightest);
          --sg-color-style-2-paragraph: #FFFFFF;
          --sg-color-style-2-subheadline: var(--sg-palette-color-lightest);
          --sg-color-style-2-preheadline: var(--sg-palette-color-lightest);
          --sg-color-style-2-link: var(--sg-palette-color-accent);
          --sg-color-style-2-input-accent: rgb(var(--color-accent-500-rgb));
          --sg-color-style-2-input-text: rgb(15, 23, 42);
          --sg-color-style-2-input-label: #d1d5db;
          --sg-color-style-2-input-border: rgb(203, 213, 225);
          --sg-color-style-2-input-background: rgb(255, 255, 255);
        
}
:root  {

          --sg-color-style-3-background: var(--sg-palette-color-darkest);
          --sg-color-style-3-headline: #FFFFFF;
          --sg-color-style-3-paragraph: var(--sg-palette-color-light);
          --sg-color-style-3-subheadline: var(--sg-custom-color-yyrw1fclev);
          --sg-color-style-3-preheadline: var(--sg-palette-color-2);
          --sg-color-style-3-link: var(--sg-palette-color-lightest);
          --sg-color-style-3-input-accent: rgb(var(--color-accent-500-rgb));
          --sg-color-style-3-input-text: rgb(15, 23, 42);
          --sg-color-style-3-input-label: rgb(100, 116, 139);
          --sg-color-style-3-input-border: rgb(203, 213, 225);
          --sg-color-style-3-input-background: rgb(255, 255, 255);
        
}
:root  {

          --sg-color-style-4-background: var(--sg-palette-color-3);
          --sg-color-style-4-headline: var(--sg-palette-color-1);
          --sg-color-style-4-paragraph: #FFFFFF;
          --sg-color-style-4-subheadline: var(--sg-custom-color-7nrhsrnf51);
          --sg-color-style-4-preheadline: var(--sg-custom-color-yyrw1fclev);
          --sg-color-style-4-link: var(--sg-palette-color-5);
          --sg-color-style-4-input-accent: var(--sg-custom-color-yyrw1fclev);
          --sg-color-style-4-input-text: rgb(15, 23, 42);
          --sg-color-style-4-input-label: #000000;
          --sg-color-style-4-input-border: rgb(203, 213, 225);
          --sg-color-style-4-input-background: rgb(255, 255, 255);
        
}
:root  {

          --sg-color-style-5-background: var(--sg-custom-color-yyrw1fclev);
          --sg-color-style-5-headline: var(--sg-palette-color-1);
          --sg-color-style-5-paragraph: #000000;
          --sg-color-style-5-subheadline: #000000;
          --sg-color-style-5-preheadline: var(--sg-palette-color-3);
          --sg-color-style-5-link: #FFFFFF;
          --sg-color-style-5-input-accent: var(--sg-palette-color-3);
          --sg-color-style-5-input-text: #111827;
          --sg-color-style-5-input-label: #111827;
          --sg-color-style-5-input-border: rgb(203, 213, 225);
          --sg-color-style-5-input-background: rgb(255, 255, 255);
        
}
:root  {

          --sg-color-style-6-background: var(--sg-palette-color-light);
          --sg-color-style-6-headline: var(--sg-palette-color-darkest);
          --sg-color-style-6-paragraph: #111827;
          --sg-color-style-6-subheadline: var(--sg-custom-color-yyrw1fclev);
          --sg-color-style-6-preheadline: var(--sg-custom-color-yyrw1fclev);
          --sg-color-style-6-link: var(--sg-palette-color-accent);
          --sg-color-style-6-input-accent: var(--sg-palette-color-3);
          --sg-color-style-6-input-text: rgb(15, 23, 42);
          --sg-color-style-6-input-label: #374151;
          --sg-color-style-6-input-border: rgb(203, 213, 225);
          --sg-color-style-6-input-background: rgb(255, 255, 255);
        
}
:root  {
--sg-cookie-banner-text-color: var(--sg-palette-color-dark);
--sg-cookie-banner-background-color: var(--sg-palette-color-lightest);
--sg-cookie-banner-button-text-color: var(--sg-palette-color-light);
--sg-cookie-banner-button-background-color: var(--sg-palette-color-accent);

}
:root  {
.cc-highlight .cc-btn:first-child {
  background-color: var(--sg-palette-color-accent) !important;
  border-color: var(--sg-palette-color-accent) !important;
  color: var(--sg-palette-color-light) !important;
}

}
:root  {
--sg-base-font-size-factor: 1.0;
}
:root  {
--sg-base-font-size-base: 16px;
}
:root  {
--sg-base-font-size: var(--sg-base-font-size-base);
}
@media (max-width: 1024px) {
:root  {
--sg-base-font-size-factor: 1.0;
}
}
:root  {
--sg-base-font-size-tab: 16px;
}
@media (max-width: 1024px) {
:root  {
--sg-base-font-size: var(--sg-base-font-size-tab);
}
}
@media (max-width: 640px) {
:root  {
--sg-base-font-size-factor: 0.9;
}
}
:root  {
--sg-base-font-size-mob: 14.4px;
}
@media (max-width: 640px) {
:root  {
--sg-base-font-size: var(--sg-base-font-size-mob);
}
}
:root  {
--sg-font-headline-font-family: Comfortaa;
--sg-font-headline-font-weight: 600;
--sg-font-headline-letter-spacing: 0px;
--sg-font-headline-line-height: 125%;
--sg-font-headline-size-xl: calc(3.052 * var(--sg-effective-base-font-size, 1rem));
--sg-font-headline-size-lg: calc(2.441 * var(--sg-effective-base-font-size, 1rem));
--sg-font-headline-size-md: calc(1.953 * var(--sg-effective-base-font-size, 1rem));
--sg-font-headline-size-sm: calc(1.563 * var(--sg-effective-base-font-size, 1rem));

}
:root .sg-font-headline {
font-family: var(--sg-font-headline-font-family);
font-weight: var(--sg-font-headline-font-weight);
letter-spacing: var(--sg-font-headline-letter-spacing);
line-height: var(--sg-font-headline-line-height);

}
:root .sg-font-headline.sg-font-size-xl {
font-size: var(--sg-font-headline-size-xl);

}
:root .sg-font-headline.sg-font-size-lg {
font-size: var(--sg-font-headline-size-lg);

}
:root .sg-font-headline.sg-font-size-md {
font-size: var(--sg-font-headline-size-md);

}
:root .sg-font-headline.sg-font-size-sm {
font-size: var(--sg-font-headline-size-sm);

}
@media (max-width: 640px) {
:root  {
--sg-font-headline-font-family: Comfortaa;
--sg-font-headline-font-weight: 600;
--sg-font-headline-letter-spacing: 0px;
--sg-font-headline-line-height: 125%;
--sg-font-headline-size-xl: calc(3.052 * var(--sg-effective-base-font-size, 1rem));
--sg-font-headline-size-lg: calc(2.441 * var(--sg-effective-base-font-size, 1rem));
--sg-font-headline-size-md: calc(1.953 * var(--sg-effective-base-font-size, 1rem));
--sg-font-headline-size-sm: calc(1.563 * var(--sg-effective-base-font-size, 1rem));

}
}
@media (max-width: 640px) {
:root .sg-font-headline {
font-family: var(--sg-font-headline-font-family);
font-weight: var(--sg-font-headline-font-weight);
letter-spacing: var(--sg-font-headline-letter-spacing);
line-height: var(--sg-font-headline-line-height);

}
}
@media (max-width: 640px) {
:root .sg-font-headline.sg-font-size-xl {
font-size: var(--sg-font-headline-size-xl);

}
}
@media (max-width: 640px) {
:root .sg-font-headline.sg-font-size-lg {
font-size: var(--sg-font-headline-size-lg);

}
}
@media (max-width: 640px) {
:root .sg-font-headline.sg-font-size-md {
font-size: var(--sg-font-headline-size-md);

}
}
@media (max-width: 640px) {
:root .sg-font-headline.sg-font-size-sm {
font-size: var(--sg-font-headline-size-sm);

}
}
:root  {
--sg-font-paragraph-font-family: Raleway;
--sg-font-paragraph-font-weight: 400;
--sg-font-paragraph-letter-spacing: 0px;
--sg-font-paragraph-line-height: 150%;
--sg-font-paragraph-size-xl: calc(1.375 * var(--sg-effective-base-font-size, 1rem));
--sg-font-paragraph-size-lg: calc(1.25 * var(--sg-effective-base-font-size, 1rem));
--sg-font-paragraph-size-md: calc(1.125 * var(--sg-effective-base-font-size, 1rem));
--sg-font-paragraph-size-sm: calc(1 * var(--sg-effective-base-font-size, 1rem));

}
:root .sg-font-paragraph {
font-family: var(--sg-font-paragraph-font-family);
font-weight: var(--sg-font-paragraph-font-weight);
letter-spacing: var(--sg-font-paragraph-letter-spacing);
line-height: var(--sg-font-paragraph-line-height);

}
:root .sg-font-paragraph.sg-font-size-xl {
font-size: var(--sg-font-paragraph-size-xl);

}
:root .sg-font-paragraph.sg-font-size-lg {
font-size: var(--sg-font-paragraph-size-lg);

}
:root .sg-font-paragraph.sg-font-size-md {
font-size: var(--sg-font-paragraph-size-md);

}
:root .sg-font-paragraph.sg-font-size-sm {
font-size: var(--sg-font-paragraph-size-sm);

}
@media (max-width: 640px) {
:root  {
--sg-font-paragraph-font-family: Raleway;
--sg-font-paragraph-font-weight: 400;
--sg-font-paragraph-letter-spacing: 0px;
--sg-font-paragraph-line-height: 150%;
--sg-font-paragraph-size-xl: calc(1.375 * var(--sg-effective-base-font-size, 1rem));
--sg-font-paragraph-size-lg: calc(1.25 * var(--sg-effective-base-font-size, 1rem));
--sg-font-paragraph-size-md: calc(1.125 * var(--sg-effective-base-font-size, 1rem));
--sg-font-paragraph-size-sm: calc(1 * var(--sg-effective-base-font-size, 1rem));

}
}
@media (max-width: 640px) {
:root .sg-font-paragraph {
font-family: var(--sg-font-paragraph-font-family);
font-weight: var(--sg-font-paragraph-font-weight);
letter-spacing: var(--sg-font-paragraph-letter-spacing);
line-height: var(--sg-font-paragraph-line-height);

}
}
@media (max-width: 640px) {
:root .sg-font-paragraph.sg-font-size-xl {
font-size: var(--sg-font-paragraph-size-xl);

}
}
@media (max-width: 640px) {
:root .sg-font-paragraph.sg-font-size-lg {
font-size: var(--sg-font-paragraph-size-lg);

}
}
@media (max-width: 640px) {
:root .sg-font-paragraph.sg-font-size-md {
font-size: var(--sg-font-paragraph-size-md);

}
}
@media (max-width: 640px) {
:root .sg-font-paragraph.sg-font-size-sm {
font-size: var(--sg-font-paragraph-size-sm);

}
}
:root  {
--sg-font-subheadline-font-family: Comfortaa;
--sg-font-subheadline-font-weight: 500;
--sg-font-subheadline-letter-spacing: 0px;
--sg-font-subheadline-line-height: 125%;
--sg-font-subheadline-size-xl: calc(1.728 * var(--sg-effective-base-font-size, 1rem));
--sg-font-subheadline-size-lg: calc(1.44 * var(--sg-effective-base-font-size, 1rem));
--sg-font-subheadline-size-md: calc(1.2 * var(--sg-effective-base-font-size, 1rem));
--sg-font-subheadline-size-sm: calc(1 * var(--sg-effective-base-font-size, 1rem));

}
:root .sg-font-subheadline {
font-family: var(--sg-font-subheadline-font-family);
font-weight: var(--sg-font-subheadline-font-weight);
letter-spacing: var(--sg-font-subheadline-letter-spacing);
line-height: var(--sg-font-subheadline-line-height);

}
:root .sg-font-subheadline.sg-font-size-xl {
font-size: var(--sg-font-subheadline-size-xl);

}
:root .sg-font-subheadline.sg-font-size-lg {
font-size: var(--sg-font-subheadline-size-lg);

}
:root .sg-font-subheadline.sg-font-size-md {
font-size: var(--sg-font-subheadline-size-md);

}
:root .sg-font-subheadline.sg-font-size-sm {
font-size: var(--sg-font-subheadline-size-sm);

}
@media (max-width: 640px) {
:root  {
--sg-font-subheadline-font-family: Comfortaa;
--sg-font-subheadline-font-weight: 500;
--sg-font-subheadline-letter-spacing: 0px;
--sg-font-subheadline-line-height: 125%;
--sg-font-subheadline-size-xl: calc(1.728 * var(--sg-effective-base-font-size, 1rem));
--sg-font-subheadline-size-lg: calc(1.44 * var(--sg-effective-base-font-size, 1rem));
--sg-font-subheadline-size-md: calc(1.2 * var(--sg-effective-base-font-size, 1rem));
--sg-font-subheadline-size-sm: calc(1 * var(--sg-effective-base-font-size, 1rem));

}
}
@media (max-width: 640px) {
:root .sg-font-subheadline {
font-family: var(--sg-font-subheadline-font-family);
font-weight: var(--sg-font-subheadline-font-weight);
letter-spacing: var(--sg-font-subheadline-letter-spacing);
line-height: var(--sg-font-subheadline-line-height);

}
}
@media (max-width: 640px) {
:root .sg-font-subheadline.sg-font-size-xl {
font-size: var(--sg-font-subheadline-size-xl);

}
}
@media (max-width: 640px) {
:root .sg-font-subheadline.sg-font-size-lg {
font-size: var(--sg-font-subheadline-size-lg);

}
}
@media (max-width: 640px) {
:root .sg-font-subheadline.sg-font-size-md {
font-size: var(--sg-font-subheadline-size-md);

}
}
@media (max-width: 640px) {
:root .sg-font-subheadline.sg-font-size-sm {
font-size: var(--sg-font-subheadline-size-sm);

}
}
:root  {
--sg-font-preheadline-font-family: Raleway;
--sg-font-preheadline-font-weight: 500;
--sg-font-preheadline-letter-spacing: 0px;
--sg-font-preheadline-line-height: 125%;
--sg-font-preheadline-size-xl: calc(1.266 * var(--sg-effective-base-font-size, 1rem));
--sg-font-preheadline-size-lg: calc(1.125 * var(--sg-effective-base-font-size, 1rem));
--sg-font-preheadline-size-md: calc(1 * var(--sg-effective-base-font-size, 1rem));
--sg-font-preheadline-size-sm: calc(0.889 * var(--sg-effective-base-font-size, 1rem));

}
:root .sg-font-preheadline {
font-family: var(--sg-font-preheadline-font-family);
font-weight: var(--sg-font-preheadline-font-weight);
letter-spacing: var(--sg-font-preheadline-letter-spacing);
line-height: var(--sg-font-preheadline-line-height);

}
:root .sg-font-preheadline.sg-font-size-xl {
font-size: var(--sg-font-preheadline-size-xl);

}
:root .sg-font-preheadline.sg-font-size-lg {
font-size: var(--sg-font-preheadline-size-lg);

}
:root .sg-font-preheadline.sg-font-size-md {
font-size: var(--sg-font-preheadline-size-md);

}
:root .sg-font-preheadline.sg-font-size-sm {
font-size: var(--sg-font-preheadline-size-sm);

}
@media (max-width: 640px) {
:root  {
--sg-font-preheadline-font-family: Raleway;
--sg-font-preheadline-font-weight: 500;
--sg-font-preheadline-letter-spacing: 0px;
--sg-font-preheadline-line-height: 125%;
--sg-font-preheadline-size-xl: calc(1.266 * var(--sg-effective-base-font-size, 1rem));
--sg-font-preheadline-size-lg: calc(1.125 * var(--sg-effective-base-font-size, 1rem));
--sg-font-preheadline-size-md: calc(1 * var(--sg-effective-base-font-size, 1rem));
--sg-font-preheadline-size-sm: calc(0.889 * var(--sg-effective-base-font-size, 1rem));

}
}
@media (max-width: 640px) {
:root .sg-font-preheadline {
font-family: var(--sg-font-preheadline-font-family);
font-weight: var(--sg-font-preheadline-font-weight);
letter-spacing: var(--sg-font-preheadline-letter-spacing);
line-height: var(--sg-font-preheadline-line-height);

}
}
@media (max-width: 640px) {
:root .sg-font-preheadline.sg-font-size-xl {
font-size: var(--sg-font-preheadline-size-xl);

}
}
@media (max-width: 640px) {
:root .sg-font-preheadline.sg-font-size-lg {
font-size: var(--sg-font-preheadline-size-lg);

}
}
@media (max-width: 640px) {
:root .sg-font-preheadline.sg-font-size-md {
font-size: var(--sg-font-preheadline-size-md);

}
}
@media (max-width: 640px) {
:root .sg-font-preheadline.sg-font-size-sm {
font-size: var(--sg-font-preheadline-size-sm);

}
}
:root  {
--sg-system-base-font-size-factor: 1.125;
}
:root  {
--sg-system-base-font-size: 18px;
}
:root  {
--sg-system-font-body-font-family: Raleway;
}
:root  {
--sg-btn-button-content-1-pt: 24px;
--sg-btn-button-content-1-pl: 48px;
--sg-btn-button-content-1-pr: 48px;
--sg-btn-button-content-1-pb: 24px;

}
@media (max-width: 1024px) {
:root  {
--sg-btn-button-content-1-pt: 24px;
--sg-btn-button-content-1-pl: 48px;
--sg-btn-button-content-1-pr: 48px;
--sg-btn-button-content-1-pb: 24px;

}
}
@media (max-width: 640px) {
:root  {
--sg-btn-button-content-1-pt: 16px;
--sg-btn-button-content-1-pl: 16px;
--sg-btn-button-content-1-pr: 16px;
--sg-btn-button-content-1-pb: 16px;

}
}
:root  {

          --sg-btn-button-content-1-border-color: var(--sg-border-none-color);
          --sg-btn-button-content-1-border-style: var(--sg-border-none-style, 'none');
          --sg-btn-button-content-1-border-top-width: var(--sg-border-none-top-width, 0px);
          --sg-btn-button-content-1-border-bottom-width: var(--sg-border-none-bottom-width, 0px);
          --sg-btn-button-content-1-border-left-width: var(--sg-border-none-left-width, 0px);
          --sg-btn-button-content-1-border-right-width: var(--sg-border-none-right-width, 0px);
        
}
:root  {
--sg-border-sg-btn-button-content-1-custom-color: var(--sg-palette-color-5);
--sg-border-sg-btn-button-content-1-custom-style: solid;
--sg-border-sg-btn-button-content-1-custom-top-width: 1px;
--sg-border-sg-btn-button-content-1-custom-left-width: 1px;
--sg-border-sg-btn-button-content-1-custom-right-width: 1px;
--sg-border-sg-btn-button-content-1-custom-bottom-width: 1px;

}
:root  {
--sg-btn-button-content-1-br-tl: 4px;
--sg-btn-button-content-1-br-tr: 4px;
--sg-btn-button-content-1-br-bl: 4px;
--sg-btn-button-content-1-br-br: 4px;

}
:root  {
--sg-btn-button-content-1-color-bg: var(--sg-palette-color-accent);
--sg-btn-button-content-1-image-bg: none;


}
:root  {
--sg-btn-button-content-1-color-text: var(--sg-palette-color-1);
--sg-btn-button-content-1-font-size-text: 1em;
--sg-btn-button-content-1-line-height-text: 110%;
--sg-btn-button-content-1-letter-spacing-text: 0px;
--sg-btn-button-content-1-font-weight-text: 500;
--sg-btn-button-content-1-font-family-text: var(--sg-font-headline-font-family);

--sg-btn-button-content-1-color-sub-text: var(--sg-palette-color-1);
--sg-btn-button-content-1-font-size-sub-text: 0.85em;
--sg-btn-button-content-1-line-height-sub-text: 100%;
--sg-btn-button-content-1-letter-spacing-sub-text: 0px;
--sg-btn-button-content-1-font-weight-sub-text: 400;
--sg-btn-button-content-1-font-family-sub-text: var(--sg-font-headline-font-family);

}
@media (max-width: 640px) {
:root  {
--sg-btn-button-content-1-color-bg: var(--sg-palette-color-accent);
--sg-btn-button-content-1-image-bg: none;


}
}
@media (max-width: 640px) {
:root  {
--sg-btn-button-content-1-color-text: var(--sg-palette-color-1);
--sg-btn-button-content-1-font-size-text: 1em;
--sg-btn-button-content-1-line-height-text: 110%;
--sg-btn-button-content-1-letter-spacing-text: 0px;
--sg-btn-button-content-1-font-weight-text: 500;
--sg-btn-button-content-1-font-family-text: Comfortaa;

--sg-btn-button-content-1-color-sub-text: var(--sg-palette-color-1);
--sg-btn-button-content-1-font-size-sub-text: 0.85em;
--sg-btn-button-content-1-line-height-sub-text: 100%;
--sg-btn-button-content-1-letter-spacing-sub-text: 0px;
--sg-btn-button-content-1-font-weight-sub-text: 400;
--sg-btn-button-content-1-font-family-sub-text: Raleway;

}
}
:root  {
--sg-btn-button-content-2-pt: 24px;
--sg-btn-button-content-2-pl: 48px;
--sg-btn-button-content-2-pr: 48px;
--sg-btn-button-content-2-pb: 24px;

}
@media (max-width: 1024px) {
:root  {
--sg-btn-button-content-2-pt: 24px;
--sg-btn-button-content-2-pl: 48px;
--sg-btn-button-content-2-pr: 48px;
--sg-btn-button-content-2-pb: 24px;

}
}
@media (max-width: 640px) {
:root  {
--sg-btn-button-content-2-pt: 16px;
--sg-btn-button-content-2-pl: 16px;
--sg-btn-button-content-2-pr: 16px;
--sg-btn-button-content-2-pb: 16px;

}
}
:root  {

          --sg-btn-button-content-2-border-color: var(--sg-border-sg-btn-button-content-2-custom-color);
          --sg-btn-button-content-2-border-style: var(--sg-border-sg-btn-button-content-2-custom-style, 'none');
          --sg-btn-button-content-2-border-top-width: var(--sg-border-sg-btn-button-content-2-custom-top-width, 0px);
          --sg-btn-button-content-2-border-bottom-width: var(--sg-border-sg-btn-button-content-2-custom-bottom-width, 0px);
          --sg-btn-button-content-2-border-left-width: var(--sg-border-sg-btn-button-content-2-custom-left-width, 0px);
          --sg-btn-button-content-2-border-right-width: var(--sg-border-sg-btn-button-content-2-custom-right-width, 0px);
        
}
:root  {
--sg-border-sg-btn-button-content-2-custom-color: var(--sg-palette-color-accent);
--sg-border-sg-btn-button-content-2-custom-style: solid;
--sg-border-sg-btn-button-content-2-custom-top-width: 1px;
--sg-border-sg-btn-button-content-2-custom-left-width: 1px;
--sg-border-sg-btn-button-content-2-custom-right-width: 1px;
--sg-border-sg-btn-button-content-2-custom-bottom-width: 1px;

}
:root  {
--sg-btn-button-content-2-br-tl: 4px;
--sg-btn-button-content-2-br-tr: 4px;
--sg-btn-button-content-2-br-bl: 4px;
--sg-btn-button-content-2-br-br: 4px;

}
:root  {
--sg-btn-button-content-2-color-bg: transparent;
--sg-btn-button-content-2-image-bg: none;


}
:root  {
--sg-btn-button-content-2-color-text: var(--sg-custom-color-yyrw1fclev);
--sg-btn-button-content-2-font-size-text: 1em;
--sg-btn-button-content-2-line-height-text: 110%;
--sg-btn-button-content-2-letter-spacing-text: 0px;
--sg-btn-button-content-2-font-weight-text: 500;
--sg-btn-button-content-2-font-family-text: var(--sg-font-headline-font-family);

--sg-btn-button-content-2-color-sub-text: var(--sg-palette-color-accent);
--sg-btn-button-content-2-font-size-sub-text: 0.85em;
--sg-btn-button-content-2-line-height-sub-text: 100%;
--sg-btn-button-content-2-letter-spacing-sub-text: 0px;
--sg-btn-button-content-2-font-weight-sub-text: 400;
--sg-btn-button-content-2-font-family-sub-text: var(--sg-font-headline-font-family);

}
:root  {
--sg-btn-button-content-3-pt: 32px;
--sg-btn-button-content-3-pl: 64px;
--sg-btn-button-content-3-pr: 64px;
--sg-btn-button-content-3-pb: 32px;

}
@media (max-width: 1024px) {
:root  {
--sg-btn-button-content-3-pt: 32px;
--sg-btn-button-content-3-pl: 64px;
--sg-btn-button-content-3-pr: 64px;
--sg-btn-button-content-3-pb: 32px;

}
}
@media (max-width: 640px) {
:root  {
--sg-btn-button-content-3-pt: 24px;
--sg-btn-button-content-3-pl: 48px;
--sg-btn-button-content-3-pr: 48px;
--sg-btn-button-content-3-pb: 24px;

}
}
:root  {

          --sg-btn-button-content-3-border-color: var(--sg-border-none-color);
          --sg-btn-button-content-3-border-style: var(--sg-border-none-style, 'none');
          --sg-btn-button-content-3-border-top-width: var(--sg-border-none-top-width, 0px);
          --sg-btn-button-content-3-border-bottom-width: var(--sg-border-none-bottom-width, 0px);
          --sg-btn-button-content-3-border-left-width: var(--sg-border-none-left-width, 0px);
          --sg-btn-button-content-3-border-right-width: var(--sg-border-none-right-width, 0px);
        
}
:root  {
--sg-border-sg-btn-button-content-3-custom-color: var(--sg-palette-color-5);
--sg-border-sg-btn-button-content-3-custom-style: solid;
--sg-border-sg-btn-button-content-3-custom-top-width: 1px;
--sg-border-sg-btn-button-content-3-custom-left-width: 1px;
--sg-border-sg-btn-button-content-3-custom-right-width: 1px;
--sg-border-sg-btn-button-content-3-custom-bottom-width: 1px;

}
:root  {
--sg-btn-button-content-3-br-tl: 9999px;
--sg-btn-button-content-3-br-tr: 9999px;
--sg-btn-button-content-3-br-bl: 9999px;
--sg-btn-button-content-3-br-br: 9999px;

}
:root  {
--sg-btn-button-content-3-color-bg: var(--sg-palette-color-accent);
--sg-btn-button-content-3-image-bg: none;


}
:root  {
--sg-btn-button-content-3-color-text: var(--sg-palette-color-1);
--sg-btn-button-content-3-font-size-text: 1.2em;
--sg-btn-button-content-3-line-height-text: 120%;
--sg-btn-button-content-3-letter-spacing-text: 0px;
--sg-btn-button-content-3-font-weight-text: 500;
--sg-btn-button-content-3-font-family-text: var(--sg-font-headline-font-family);

--sg-btn-button-content-3-color-sub-text: var(--sg-palette-color-1);
--sg-btn-button-content-3-font-size-sub-text: 1em;
--sg-btn-button-content-3-line-height-sub-text: 105%;
--sg-btn-button-content-3-letter-spacing-sub-text: 0px;
--sg-btn-button-content-3-font-weight-sub-text: 400;
--sg-btn-button-content-3-font-family-sub-text: var(--sg-font-subheadline-font-family);

}
@media (max-width: 640px) {
:root  {
--sg-btn-button-content-3-color-bg: var(--sg-palette-color-accent);
--sg-btn-button-content-3-image-bg: none;


}
}
@media (max-width: 640px) {
:root  {
--sg-btn-button-content-3-color-text: var(--sg-palette-color-1);
--sg-btn-button-content-3-font-size-text: 1.2em;
--sg-btn-button-content-3-line-height-text: 120%;
--sg-btn-button-content-3-letter-spacing-text: 0px;
--sg-btn-button-content-3-font-weight-text: 700;
--sg-btn-button-content-3-font-family-text: Comfortaa;

--sg-btn-button-content-3-color-sub-text: var(--sg-palette-color-1);
--sg-btn-button-content-3-font-size-sub-text: 1em;
--sg-btn-button-content-3-line-height-sub-text: 105%;
--sg-btn-button-content-3-letter-spacing-sub-text: 0px;
--sg-btn-button-content-3-font-weight-sub-text: 500;
--sg-btn-button-content-3-font-family-sub-text: Raleway;

}
}
:root  {
--sg-border-1-color: var(--sg-palette-color-dark);
--sg-border-1-style: solid;
--sg-border-1-top-width: 1px;
--sg-border-1-left-width: 1px;
--sg-border-1-right-width: 1px;
--sg-border-1-bottom-width: 1px;

}
@media (max-width: 640px) {
:root  {
--sg-border-1-color: var(--sg-palette-color-4);
--sg-border-1-style: solid;
--sg-border-1-top-width: 1px;
--sg-border-1-left-width: 1px;
--sg-border-1-right-width: 1px;
--sg-border-1-bottom-width: 1px;

}
}
:root  {
--sg-border-2-color: var(--sg-palette-color-light);
--sg-border-2-style: solid;
--sg-border-2-top-width: 1px;
--sg-border-2-left-width: 1px;
--sg-border-2-right-width: 1px;
--sg-border-2-bottom-width: 1px;

}
@media (max-width: 640px) {
:root  {
--sg-border-2-color: var(--sg-palette-color-2);
--sg-border-2-style: solid;
--sg-border-2-top-width: 1px;
--sg-border-2-left-width: 1px;
--sg-border-2-right-width: 1px;
--sg-border-2-bottom-width: 1px;

}
}
:root  {
--sg-border-3-color: var(--sg-palette-color-accent);
--sg-border-3-style: dotted;
--sg-border-3-top-width: 3px;
--sg-border-3-left-width: 3px;
--sg-border-3-right-width: 3px;
--sg-border-3-bottom-width: 3px;

}
@media (max-width: 640px) {
:root  {
--sg-border-3-color: var(--sg-palette-color-4);
--sg-border-3-style: dotted;
--sg-border-3-top-width: 3px;
--sg-border-3-left-width: 3px;
--sg-border-3-right-width: 3px;
--sg-border-3-bottom-width: 3px;

}
}
:root  {
--sg-box-shadow-1: 0px 4px 8px -2px rgba(15, 23, 42, 0.10);

}
:root  {
--sg-box-shadow-2: 0px 12px 16px -4px rgba(15, 23, 42, 0.08);

}
:root  {
--sg-box-shadow-3: 0px 24px 48px -12px rgba(15, 23, 42, 0.18);

}
:root  {
--sg-content-br-tl: 8px;
--sg-content-br-tr: 8px;
--sg-content-br-bl: 8px;
--sg-content-br-br: 8px;

}
:root  {
--sg-bg-image-1-size: cover; --sg-bg-image-1-position: center center; --sg-bg-image-1-parallax: none;
}
:root  {
--sg-bg-image-2-size: cover; --sg-bg-image-2-position: center center; --sg-bg-image-2-parallax: none;
}
:root  {
--sg-bg-image-3-size: cover; --sg-bg-image-3-position: center center; --sg-bg-image-3-parallax: none;
}</style>
  <link rel="preload" href="https://fonts.googleapis.com/css?family=Comfortaa:regular,500,600,700|Raleway:regular,italic,500,500italic,600,600italic,700,700italic&amp;display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Comfortaa:regular,500,600,700|Raleway:regular,italic,500,500italic,600,600italic,700,700italic&amp;display=swap"></noscript>



        <link rel="icon" type="image/x-icon" href="https://img.simplerousercontent.net/scaled_image/6511125/f89f04c6783c1a2684c0ab09f78418c88b09c843/favicon-192w-192h.png" /><link rel="apple-touch-icon" href="https://img.simplerousercontent.net/scaled_image/6511125/f89f04c6783c1a2684c0ab09f78418c88b09c843/favicon-192w-192h.png"><link rel="shortcut icon" href="https://img.simplerousercontent.net/scaled_image/6511125/f89f04c6783c1a2684c0ab09f78418c88b09c843/favicon-192w-192h.png">


    
  <script>
    window.defaultColorScheme = "system"
    function setDarkClassBasedOnUserPreference() {
      // If URL has explicit color_scheme, use it; otherwise fall back to user preference
      var theme = false
        ? window.defaultColorScheme
        : (UserPreference.get('theme') || localStorage.getItem('theme') || window.defaultColorScheme)
      if (theme == 'system') {
        theme = window.matchMedia('(prefers-color-scheme: dark)').matches
          ? 'dark'
          : 'light'
      }
      document.documentElement.classList.toggle('dark', theme === 'dark')
    }
    setDarkClassBasedOnUserPreference()

    window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', window.setDarkClassBasedOnUserPreference)

    // Listen for theme change messages from parent window (for preview iframes)
    window.addEventListener('message', function(event) {
      if (event.data.type === 'theme-change') {
        var theme = event.data.theme
        if (theme === 'system') {
          theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'
        }
        document.documentElement.classList.toggle('dark', theme === 'dark')
      }
    })
  </script>
<style id="recent-colors-css-variable">:root { --recent-colors: ""; }</style></head>  <body style="margin: 0" data-controller="object-picker embedded-iframe site" data-action="object-picker:openModal-&gt;object-picker#modal object-picker:pickFromJSEvent-&gt;object-picker#pickFromJSEvent community--post-modal:recordView-&gt;site#recordView" data-pusher-key="8306da79b06cc8f17e1a" data-pusher-options="{&quot;cluster&quot;:&quot;mt1&quot;,&quot;channelAuthorization&quot;:{&quot;headers&quot;:{&quot;X-CSRF-Token&quot;:&quot;jtWN9BWHJJRM6Vg1XSovtawYohWRfPDyCzuU-K2rojUWzDzf0a0JQkGRRMaloqMQfgFkThKms0L_9KH94YTloQ&quot;}}}" data-account-id="32914" data-request-id="ecdc040e539ab1c6ebab922bf2a427ae" data-username="" data-locale="en" data-time-zone="America/Chicago" data-use-modern-video-js-style="true" data-fonts="[{&quot;name&quot;:&quot;Helvetica Neue&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;&#39;Helvetica Neue&#39;, Helvetica, Arial, Verdana, Trebuchet MS, sans-serif&quot;,&quot;css_string&quot;:&quot;&#39;Helvetica Neue&#39;&quot;,&quot;category&quot;:&quot;sans-serif&quot;,&quot;key&quot;:&quot;helvetica_neue&quot;},{&quot;name&quot;:&quot;Lucida Grande&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;&#39;Lucida Grande&#39;, Lucida, Helvetica, Arial, Verdana, Trebuchet MS, sans-serif&quot;,&quot;css_string&quot;:&quot;&#39;Lucida Grande&#39;, Lucida&quot;,&quot;category&quot;:&quot;sans-serif&quot;,&quot;key&quot;:&quot;lucida_grande&quot;},{&quot;name&quot;:&quot;Helvetica&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;Helvetica, Helvetica, Arial, Verdana, Trebuchet MS, sans-serif&quot;,&quot;css_string&quot;:&quot;Helvetica&quot;,&quot;category&quot;:&quot;sans-serif&quot;,&quot;key&quot;:&quot;helvetica&quot;},{&quot;name&quot;:&quot;Arial&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;Arial, Helvetica, Arial, Verdana, Trebuchet MS, sans-serif&quot;,&quot;css_string&quot;:&quot;Arial&quot;,&quot;category&quot;:&quot;sans-serif&quot;,&quot;key&quot;:&quot;arial&quot;},{&quot;name&quot;:&quot;Arial Black&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;&#39;Arial Black&#39;, Helvetica, Arial, Verdana, Trebuchet MS, sans-serif&quot;,&quot;css_string&quot;:&quot;&#39;Arial Black&#39;&quot;,&quot;category&quot;:&quot;sans-serif&quot;,&quot;key&quot;:&quot;arial_black&quot;},{&quot;name&quot;:&quot;Tahoma&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;Tahoma, Helvetica, Arial, Verdana, Trebuchet MS, sans-serif&quot;,&quot;css_string&quot;:&quot;Tahoma&quot;,&quot;category&quot;:&quot;sans-serif&quot;,&quot;key&quot;:&quot;tahoma&quot;},{&quot;name&quot;:&quot;Trebuchet MS&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;&#39;Trebuchet MS&#39;, Helvetica, Arial, Verdana, Trebuchet MS, sans-serif&quot;,&quot;css_string&quot;:&quot;&#39;Trebuchet MS&#39;&quot;,&quot;category&quot;:&quot;sans-serif&quot;,&quot;key&quot;:&quot;trebuchet_ms&quot;},{&quot;name&quot;:&quot;Verdana&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;Verdana, Helvetica, Arial, Verdana, Trebuchet MS, sans-serif&quot;,&quot;css_string&quot;:&quot;Verdana&quot;,&quot;category&quot;:&quot;sans-serif&quot;,&quot;key&quot;:&quot;verdana&quot;},{&quot;name&quot;:&quot;Georgia&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;Georgia, Georgia, Times New Roman, Courier, serif&quot;,&quot;css_string&quot;:&quot;Georgia&quot;,&quot;category&quot;:&quot;serif&quot;,&quot;key&quot;:&quot;georgia&quot;},{&quot;name&quot;:&quot;Times&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;Times, Georgia, Times New Roman, Courier, serif&quot;,&quot;css_string&quot;:&quot;Times&quot;,&quot;category&quot;:&quot;serif&quot;,&quot;key&quot;:&quot;times&quot;},{&quot;name&quot;:&quot;Times New Roman&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;&#39;Times New Roman&#39;, Georgia, Times New Roman, Courier, serif&quot;,&quot;css_string&quot;:&quot;&#39;Times New Roman&#39;&quot;,&quot;category&quot;:&quot;serif&quot;,&quot;key&quot;:&quot;times_new_roman&quot;},{&quot;name&quot;:&quot;Garamond&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;Garamond,&#39;Hoefler Text&#39;, Georgia, Times New Roman, Courier, serif&quot;,&quot;css_string&quot;:&quot;Garamond,&#39;Hoefler Text&#39;&quot;,&quot;category&quot;:&quot;serif&quot;,&quot;key&quot;:&quot;garamond&quot;},{&quot;name&quot;:&quot;Cambria&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;Cambria,Georgia, Georgia, Times New Roman, Courier, serif&quot;,&quot;css_string&quot;:&quot;Cambria,Georgia&quot;,&quot;category&quot;:&quot;serif&quot;,&quot;key&quot;:&quot;cambria&quot;},{&quot;name&quot;:&quot;Courier&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;Courier, courier, mono&quot;,&quot;css_string&quot;:&quot;Courier&quot;,&quot;category&quot;:&quot;monospace&quot;,&quot;key&quot;:&quot;courier&quot;},{&quot;name&quot;:&quot;Courier New&quot;,&quot;source&quot;:null,&quot;css&quot;:&quot;&#39;Courier New&#39;, courier, mono&quot;,&quot;css_string&quot;:&quot;&#39;Courier New&#39;&quot;,&quot;category&quot;:&quot;monospace&quot;,&quot;key&quot;:&quot;courier_new&quot;}]" data-wysiwyg-colors="[[&quot;black&quot;,&quot;Black&quot;,&quot;#000000&quot;],[&quot;silver&quot;,&quot;Silver&quot;,&quot;#c0c0c0&quot;],[&quot;gray&quot;,&quot;Gray&quot;,&quot;#808080&quot;],[&quot;white&quot;,&quot;White&quot;,&quot;#ffffff&quot;],[&quot;maroon&quot;,&quot;Maroon&quot;,&quot;#800000&quot;],[&quot;red&quot;,&quot;Red&quot;,&quot;#ff0000&quot;],[&quot;purple&quot;,&quot;Purple&quot;,&quot;#800080&quot;],[&quot;fuchsia&quot;,&quot;Fuchsia&quot;,&quot;#ff00ff&quot;],[&quot;green&quot;,&quot;Green&quot;,&quot;#008000&quot;],[&quot;lime&quot;,&quot;Lime&quot;,&quot;#00ff00&quot;],[&quot;olive&quot;,&quot;Olive&quot;,&quot;#808000&quot;],[&quot;orange&quot;,&quot;Orange&quot;,&quot;#ffa500&quot;],[&quot;yellow&quot;,&quot;Yellow&quot;,&quot;#ffff00&quot;],[&quot;navy&quot;,&quot;Navy&quot;,&quot;#000080&quot;],[&quot;blue&quot;,&quot;Blue&quot;,&quot;#0000ff&quot;],[&quot;teal&quot;,&quot;Teal&quot;,&quot;#008080&quot;],[&quot;aqua&quot;,&quot;Aqua&quot;,&quot;#00ffff&quot;]]" data-prosemirror="1" data-adobe-client-id="b9fe32a26c864da9aff7a24dc566ea78" data-css-compiled-at="1759003132" data-cookie-consent-manager="{&quot;consentType&quot;:&quot;opt_in&quot;,&quot;countryCode&quot;:&quot;US&quot;,&quot;createConsentRecordURL&quot;:&quot;https://aclevercat.com/cookie_consent_records/create&quot;,&quot;content&quot;:{&quot;href&quot;:&quot;https://aclevercat.simplero.com/privacy-policy&quot;,&quot;header&quot;:&quot;Cookies used on the website!&quot;,&quot;message&quot;:&quot;This website uses cookies to ensure you get the best experience on our website.&quot;,&quot;dismiss&quot;:&quot;Got it!&quot;,&quot;allow&quot;:&quot;Allow cookies&quot;,&quot;deny&quot;:&quot;Decline&quot;,&quot;link&quot;:&quot;Learn more&quot;,&quot;policy&quot;:&quot;Cookie Policy&quot;},&quot;popupBg&quot;:&quot;var(--sg-palette-color-lightest)&quot;,&quot;popupText&quot;:&quot;var(--sg-palette-color-dark)&quot;,&quot;buttonBg&quot;:&quot;var(--sg-palette-color-accent)&quot;,&quot;buttonText&quot;:&quot;var(--sg-palette-color-light)&quot;}" data-site-record-view-url-value="/members/record_view" id="site-sites_feed" class="site-sites production satellite"><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K9NBNQ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>

    
    
    <div class="tw tw-for-content-container">
      <!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZX5XGSNPHJ"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-ZX5XGSNPHJ');
</script>
<!-- END Google tag (gtag.js) -->

<meta name='impact-site-verification' value='422056710'>

<!-- MagicForm  -->

      <div id="magicform-root" style="z-index: 9999;position: relative;"></div> 
      <script>
        (function (w, d, s, o, f, js, fjs) {
            w["Simple-Widget"] = o; w[o] = w[o] || function () { (w[o].q = w[o].q || []).push(arguments) };
            js = d.createElement(s), fjs = d.getElementsByTagName(s)[0];
            js.id = o; js.src = f; js.async = 1; fjs.parentNode.insertBefore(js, fjs);
        }(window, document, "script", "w1", 'https://magicform-widget-assets.s3.us-west-2.amazonaws.com/widget.js'));
        w1("init", 
{"popUpTimer":3000,"imageUrl":null,"chatHeight":"min(630px,70vh)","chatWidth":"371px","placeholder":"Type a message...","title":"Kitty","subtitle":"Typically Responds within 5 Seconds","widgetType":"bubble","targetElementId":"magicform-root","stackId":"stack_62aac051-486a-45ec-b847-adb67bba3b99","userId":"e7ea2003-7a82-43a4-9952-79850b86fc29","colors":{"main":"#e2aa06","userMessageBubble":"#e2aa06"}}
);
      </script>
    
    <!-- END MagicForm  --><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K9NBNQ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>

      <div class="font-body text-sm content-container ">
        


    <div newly_created_and_empty="false" id="doc_wrapper_builder_doc_290994" class="builder-doc-wrapper flex flex-col items-center has-saved-section-blocks has-saved-element-blocks has-saved-row-blocks" data-controller="builder--input-visibility" data-action="resize@window-&gt;builder--input-visibility#handleInputVisibility modal:shown-&gt;builder--input-visibility#handleInputVisibility modal:hidden-&gt;builder--input-visibility#handleInputVisibility" data-builder-doc-editing="false" data-builder-doc-previewing="false" data-enable-click-to-view-node-settings="false"><div id="node_n_NhzYWHhVO1CszMIX" class="builder-node js-builder-node builder-body builder-node-container node-n_NhzYWHhVO1CszMIX w-full apply-node-styles node-n_NhzYWHhVO1CszMIX-apply-node-styles apply-node-styles-padding apply-node-styles-border apply-node-styles-border-radius apply-node-styles-box-shadow" data-controller="builder--node" data-node-id="n_NhzYWHhVO1CszMIX" data-node-dom-id="node_n_NhzYWHhVO1CszMIX"><style id="style_node_n_NhzYWHhVO1CszMIX">.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--color-background: var(--sg-color-style-1-background);
--color-headline: var(--sg-color-style-1-headline);
--color-subheadline: var(--sg-color-style-1-subheadline);
--color-preheadline: var(--sg-color-style-1-preheadline);
--color-paragraph: var(--sg-color-style-1-paragraph);
--color-link: var(--sg-color-style-1-link);
--color-input-accent: var(--sg-color-style-1-input-accent);
--color-input-text: var(--sg-color-style-1-input-text);
--color-input-label: var(--sg-color-style-1-input-label);
--color-input-border: var(--sg-color-style-1-input-border);
--color-input-background: var(--sg-color-style-1-input-background);

}
.node-n_NhzYWHhVO1CszMIX-apply-node-styles .node-content {
--parent-node-color-background: var(--color-background);

}
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
display: flex;
}
@media (max-width: 1024px) {
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
display: flex;
}
}
@media (max-width: 640px) {
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
display: flex;
}
}
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--mt: 0px;
--ml: 0px;
--mr: 0px;
--mb: 0px;

}
@media (max-width: 1024px) {
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--mt: 0px;
--ml: 0px;
--mr: 0px;
--mb: 0px;

}
}
@media (max-width: 640px) {
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--mt: 0px;
--ml: 0px;
--mr: 0px;
--mb: 0px;

}
}
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--pt: 0px;
--pl: 0px;
--pr: 0px;
--pb: 0px;

}
@media (max-width: 1024px) {
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--pt: 0px;
--pl: 0px;
--pr: 0px;
--pb: 0px;

}
}
@media (max-width: 640px) {
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--pt: 0px;
--pl: 0px;
--pr: 0px;
--pb: 0px;

}
}
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {

          --border-color: var(--sg-border-none-color);
          --border-style: var(--sg-border-none-style, 'none');
          --border-top-width: var(--sg-border-none-top-width, 0px);
          --border-bottom-width: var(--sg-border-none-bottom-width, 0px);
          --border-left-width: var(--sg-border-none-left-width, 0px);
          --border-right-width: var(--sg-border-none-right-width, 0px);
        
}
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--sg-border-custom-color: var(--sg-palette-color-5);
--sg-border-custom-style: solid;
--sg-border-custom-top-width: 1px;
--sg-border-custom-left-width: 1px;
--sg-border-custom-right-width: 1px;
--sg-border-custom-bottom-width: 1px;

}
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--br-tl: 0px;
--br-tr: 0px;
--br-bl: 0px;
--br-br: 0px;

}
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--box-shadow: none;
}
.node-n_NhzYWHhVO1CszMIX-apply-node-styles  {
--sg-box-shadow-custom: 0px 0px 4px 4px #EEEEEE;

}
</style><div class="node-bg js-node-bg z-0 absolute top-0 left-0 right-0 bottom-0 overflow-hidden"></div><div class="node-content js-node-content flex-1 min-w-0 relative flex flex-col items-center"><div id="node_n_x4vc5PCAvJTQ5BVo" class="builder-node js-builder-node builder-header builder-node-element node-n_x4vc5PCAvJTQ5BVo whitespace-nowrap nav-sticky-top-bar w-full apply-node-styles node-n_x4vc5PCAvJTQ5BVo-apply-node-styles apply-node-styles-padding apply-node-styles-border apply-node-styles-border-radius apply-node-styles-box-shadow" data-controller="builder--node builder--elements--header" data-node-id="n_x4vc5PCAvJTQ5BVo" data-node-dom-id="node_n_x4vc5PCAvJTQ5BVo"><style id="style_node_n_x4vc5PCAvJTQ5BVo">.node-n_x4vc5PCAvJTQ5BVo-apply-node-styles  {
display: flex;
}
@media (max-width: 1024px) {
.node-n_x4vc5PCAvJTQ5BVo-apply-node-styles  {
display: flex;
}
}
@media (max-width: 640px) {
.node-n_x4vc5PCAvJTQ5BVo-apply-node-styles  {
display: flex;
}
}
.node-n_x4vc5PCAvJTQ5BVo-apply-node-styles  {
--header-gap: 24px;
--header-font-size-xs: calc(14px * 0.714285714);
--header-font-size-md: 14px;
--header-font-size-lg: calc(14px * 1.14285714);
--header-font-size-xl: calc(14px * 1.42857143);
--header-divider-font-size: 20px;

}
.node-n_x4vc5PCAvJTQ5BVo-apply-node-styles .header-link-font-size {
font-size: 14px;

}
.node-n_x4vc5PCAvJTQ5BVo-apply-node-styles  {
--header-color-background: var(--sg-palette-color-4, var(--sg-system-color-neutral-0));
--header-color-title: var(--sg-palette-color-1, var(--sg-system-color-neutral-900));
--header-color-links: var(--sg-palette-color-1, var(--sg-system-color-neutral-800));
--header-color-active-link-background: var(--sg-palette-color-3, var(--sg-system-color-neutral-800));
--header-color-cta-button: var(--sg-palette-color-5, #FACC15);
--header-color-divider: var(--sg-system-color-neutral-800, var(--sg-system-color-neutral-800));
--header-lighten-direction: 1;
--header-bg-alt-shift: 3;

}
.node-n_x4vc5PCAvJTQ5BVo-apply-node-styles.dark, .node-n_x4vc5PCAvJTQ5BVo-apply-node-styles:is(.dark *:not(.dark .light *):not(.dark .light)) {
--header-color-background: var(--sg-palette-color-4, var(--sg-system-color-neutral-900));
--header-color-title: var(--sg-palette-color-1, var(--sg-system-color-neutral-0));
--header-color-links: var(--sg-palette-color-2, var(--sg-system-color-neutral-100));
--header-color-active-link-background: var(--sg-palette-color-2, var(--sg-system-color-neutral-100));
--header-color-cta-button: var(--sg-palette-color-5, #FACC15);
--header-color-divider: var(--sg-system-color-neutral-100, var(--sg-system-color-neutral-100));
--header-lighten-direction: -1;
--header-bg-alt-shift: 9;

}
.node-n_x4vc5PCAvJTQ5BVo-apply-node-styles .logo-image {
object-fit: contain;
width: auto;
height: 70px;

}
</style><div class="node-bg js-node-bg z-0 absolute top-0 left-0 right-0 bottom-0 overflow-hidden"></div><div class="node-content js-node-content flex-1 min-w-0 relative">
  <div class="relative z-50 shadow-sm dark:border-b header-container header-border-color flex items-center justify-between px-2 sm:px-4 md:px-5 py-2.5">
      <div class="js-logo-and-nav-toggle-container flex items-center gap-x-1 justify-between lg:flex-shrink-0">
        <div class="show-when-nav-style-left">
          <button type="button" data-controller="utils" data-utils-name-param="toggleSidebar" data-action="click-&gt;utils#dispatchEvent" aria-label="Toggle sidebar" style="" class="t-btn t-btn-tertiary-gray t-btn-md header-sidebar-toggle t-btn-icon-only">
    
    <i class="fa fa-bars-sort s-icon"></i> 
    
  
  
  
</button>
        </div>

        <div class="quick-flex-center min-w-0 -ml-2 -mr-2">
          
<a style="" class="t-btn t-btn-tertiary-gray t-btn-xs px-2 min-w-0" href="/">
      <span class="t-btn-main-label truncate">
        
    <div class="inline-flex gap-2 items-center max-w-full">
          <img alt="logo" class="logo-image" decoding="async" src="https://img.simplerousercontent.net/scaled_image/6511122/890923bbaf1dc1964346347e22e5310c4fed27ea/logo-350w-150h.png" width="233" height="100" />
      

  </div>

      </span>
  
  
  
</a>

          </div></div>
      

      <div class="show-when-nav-style-left max-sm:!hidden flex justify-center flex-[9999] header-search-input">
        <div class="flex-1 max-w-100">
          <form id="search_form" class="formbuilder community-search-input-component flex-1 tw" role="form" data-focus="none" data-controller="community--search--input" data-action="keydown.ctrl+k@document-&gt;community--search--input#focusInput:prevent keydown.meta+k@document-&gt;community--search--input#focusInput:prevent" action="/search" accept-charset="UTF-8" method="get">



    <div class="mb-0 t-field-bg-transparent search-input-wrapper q t-field t-field--type-input t-field--style-bordered t-field--size-sm t-field--rounded-full t-field--label-style-placeholder t-field--with-prefix t-field--with-suffix" data-controller="form--field" data-action="click-&gt;form--field#focusControl">
    
    
    

    <div class="t-field__body" data-action="click-&gt;form--field#focusControl">
      <div class="t-field__prefix">    <div class="flex flex-row items-center gap-x-2">
      <i class="far fa-magnifying-glass s-icon"></i> 

    </div>
</div>

      <div class="t-field__control-wrapper">
        <input data-community--search--input-target="input" aria-label="Search" placeholder=" " type="text" name="q" id="q" />
        
        <label class="t-field__label t-field__label--placeholder" for="q">Search</label>
</div>
      <div class="t-field__suffix"><span class="text-neutral-400 dark:text-neutral-600">⌘K</span></div>

      
      
</div>
    <div class="t-field__help t-with-links">
</div></div>

  
  
  
  
  
  
  
</form>
        </div>
</div>
      <div class="hide-when-nav-style-left ml-auto">
        <div>
  <div class="flex font-semibold">
      
<div class="relative js-dropdown header-dropdown" data-controller="dropdown" data-dropdown-placement-value="bottom-end" data-dropdown-min-width-value="xs" data-dropdown-offset-distance-value="[12,12]" data-dropdown-autoflip-value="true" data-dropdown-use-transforms-value="true" data-dropdown-start-open-value="false" data-dropdown-auto-focus-on-mobile-value="true" data-dropdown-max-width-value="432px" data-dropdown-append-to-body-value="false" data-dropdown-close-on-click-value="true" data-action="dropdown:setupIfLazy-&gt;dropdown#setupIfLazy dropdown:toggle-&gt;dropdown#toggleMenu dropdown:open-&gt;dropdown#openMenu dropdown:close-&gt;dropdown#closeMenu dropdown:reposition-&gt;dropdown#reposition dropdown:setTippyProps-&gt;dropdown#setTippyProps lazy-content:loaded-&gt;dropdown#reposition">
  <div class="inline-block" data-dropdown-target="button" data-action="
      focusout-&gt;dropdown#closeIfDropdownLostFocus
      keydown-&gt;dropdown#onKeydown
      keydown.up-&gt;dropdown#onArrowUp
      keydown.down-&gt;dropdown#onArrowDown
      keydown.left-&gt;dropdown#onArrowLeft
      keydown.right-&gt;dropdown#onArrowRight
      keydown.enter-&gt;dropdown#onEnterKey
      keydown.esc-&gt;dropdown#closeMenu
     click-&gt;dropdown#toggleMenu" aria-haspopup="menu" aria-expanded="false"><a style="" class="t-btn t-btn-link-gray t-btn-md header-link-color header-link-font-size rounded-none relative !px-3 xl:!px-4 2xl:!px-5 after:absolute after:left-1 after:right-1 after:-bottom-2 after:border-b-2 after:border-transparent hover:after:border-current !font-light" href="https://aclevercat.com/work-with-me">
      <span class="t-btn-main-label ">
        <span data-prevent-dropdown-open="true">Work With Me</span>
      </span>
  <i class="ml-1 fa fa-caret-down s-icon"></i> 
  
  
</a></div>

    <template data-dropdown-target=lazyContent>    <div
      class=" dropdown-content-container js-dropdown-content-container rounded-lg dark:shadow-neutral-850/15 bg-bg-alt text-neutral-800 dark:text-neutral-200 border border-border-base dark:border-neutral-800/50 focus:outline-none z-150 overflow-y-auto overscroll-contain flex flex-col min-w-32 max-h-112 shadow-lg text-sm hidden
      "
      role="menu" aria-orientation="vertical"
      data-dropdown-target="content"
      data-transition-enter="transform transition ease-out duration-100"
      data-transition-enter-start="opacity-0 scale-95"
      data-transition-enter-end="opacity-100 scale-100"
      data-transition-leave="transform transition ease-in duration-75"
      data-transition-leave-start="opacity-100 scale-100"
      data-transition-leave-end="opacity-0 scale-95"
      data-action="
        focusout-&gt;dropdown#closeIfDropdownLostFocus
        click-&gt;dropdown#closeMenu
      "
      >
      

      <div class="t-panes" data-controller="panes" data-action="panes:push-&gt;panes#push panes:pop-&gt;panes#pop panes:popToRoot-&gt;panes#popToRoot panes:replace-&gt;panes#replace panes:set-&gt;panes#set keydown.left-&gt;panes#onArrowLeft"><div class="t-pane" data-panes-target="pane">
  <div class="t-pane__header p-1">
    <button type="button" data-action="panes#pop:prevent:stop" style="" class="t-btn t-btn-link-gray t-btn-sm t-pane__back t-btn-icon-left">
      <i class="fa fa-chevron-left s-icon"></i> 
      <span class="t-btn-main-label ">
        Back
      </span>
  
  
  
</button>
    
    
</div>  <div class="t-pane__body p-1"><ul class="text-fg-base" data-controller="menu" data-menu-auto-activate-on-connect-value="false" data-menu-has-sections-value="false" data-menu-cols-value="0" data-menu-with-search-value="false" data-menu-active-class="menu-item-active bg-primary-50 dark:bg-neutral-850 " data-action="menu:arrowDown-&gt;menu#onArrowDown menu:arrowUp-&gt;menu#onArrowUp menu:arrowLeft-&gt;menu#onArrowLeft menu:arrowRight-&gt;menu#onArrowRight menu:enterKey-&gt;menu#onEnterKey menu:autoActivateItem-&gt;menu#autoActivateItem menu:deactivateActiveItem-&gt;menu#deactivateActiveItem menu:activateItem-&gt;menu#activateGivenItem menu:updateContent-&gt;menu#updateContent menu:excludeItemsBySelector-&gt;menu#excludeItemsBySelector menu:searchKeypress-&gt;menu#onSearchKeypress" data-dropdown-target="menu"><li class="sticky -top-2 w-full bg-bg-alt hidden rounded-md js-menu-item" data-menu-target="searchBoxContainer" data-action="" data-menu-target="item" data-permanent-item="1">
  

  <span class="block rounded-md text-left w-full text-inherit">
    <span class="js-menu-item-content pl-4 pr-4 cursor-pointer py-2 flex items-center">
        <div class="flex grow gap-2 items-center"><i class="text-neutral-500 fa fa-search s-icon"></i> <input type="text" id="" placeholder="Search..." class="grow focus:outline-none bg-transparent" data-menu-target="searchBox" data-action="input-&gt;menu#handleSearch keydown.up-&gt;menu#onArrowUp:stop keydown.down-&gt;menu#onArrowDown:stop keydown.left-&gt;menu#onArrowLeft:stop keydown.right-&gt;menu#onArrowRight:stop keydown.tab-&gt;menu#onArrowDown:stop keydown.enter-&gt;menu#onEnterKey:stop keydown.space-&gt;menu#onSpacebar:stop keydown.esc-&gt;menu#onSearchEscape" /><i data-menu-target="searchClear" data-action="click-&gt;menu#clearSearchBox" class="hidden text-neutral-400 hover:text-neutral-600 cursor-pointer fas fa-circle-xmark s-icon"></i> 
</div>
</span></span>
  
</li><li class="hidden rounded-md js-menu-item" data-menu-target="searchEmptyPlaceholder" data-action="" data-menu-target="emptyState" data-permanent-item="1">
  

  <span class="block rounded-md text-left w-full text-neutral-500 text-center py-4">
    <span class="js-menu-item-content pl-4 pr-4 flex items-center">
                          <span class="grow" data-menu-label="true">No matching results found.</span>
                </span></span>
  
</li><li class="rounded-md js-menu-item" data-action=" mouseover-&gt;menu#onItemHover" data-menu-target="item" data-tabbable-item="1">
  

  <a class="header-link-font-size font-normal block rounded-md text-left w-full text-inherit" href="https://aclevercat.com/funnel/68367/vip-day" target="_blank">
    <span class="js-menu-item-content pl-4 pr-4 cursor-pointer py-2 flex items-center">
        <span class="mr-1">
          <i style="font-size: var(--header-font-size-lg, 16px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);" class="nav-list-link-icon nav-list-link-fa-icon flex-shrink-0 leading-none quick-flex-center text-neutral-800 dark:text-neutral-600 far fa-external-link s-icon fa-fw"></i> 
</span>                  <span class="grow" data-menu-label="true">VIP Day</span>
                </span></a>
  
</li><li class="rounded-md js-menu-item" data-action=" mouseover-&gt;menu#onItemHover" data-menu-target="item" data-tabbable-item="1">
  

  <a class="header-link-font-size font-normal block rounded-md text-left w-full text-inherit" href="https://aclevercat.com/case-studies">
    <span class="js-menu-item-content pl-4 pr-4 cursor-pointer py-2 flex items-center">
        <span class="mr-1">
          <span class="nav-list-link-icon nav-list-link-letter-icon flex-shrink-0 uppercase leading-none rounded-full quick-flex-center font-semibold bg-neutral-800 dark:bg-neutral-600 text-neutral-0" style="font-size: var(--header-font-size-xs, 10px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);">c</span>
</span>                  <span class="grow" data-menu-label="true">Case Studies</span>
                </span></a>
  
</li><li class="rounded-md js-menu-item" data-action=" mouseover-&gt;menu#onItemHover" data-menu-target="item" data-tabbable-item="1">
  

  <a class="header-link-font-size font-normal block rounded-md text-left w-full text-inherit" href="https://aclevercat.com/products">
    <span class="js-menu-item-content pl-4 pr-4 cursor-pointer py-2 flex items-center">
        <span class="mr-1">
          <i style="font-size: var(--header-font-size-lg, 16px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);" class="nav-list-link-icon nav-list-link-fa-icon flex-shrink-0 leading-none quick-flex-center text-neutral-800 dark:text-neutral-600 far fa-book-open-cover s-icon fa-fw"></i> 
</span>                  <span class="grow" data-menu-label="true">Pricing</span>
                </span></a>
  
</li>
<li class="sticky bottom-0 z-10 block h-0 pointer-events-none opacity-0" data-menu-target="overflowIndicator"><span class="absolute left-1/2 -ml-3 bottom-2 bg-primary-500 text-neutral-0 rounded-full size-6 flex items-center justify-center shrink-0 menu-overflow-indicator"><i class="fas fa-angle-down s-icon"></i> </span></li></ul></div>
</div></div>
      
      
    </div>
</template>
</div>
      <a style="" class="t-btn t-btn-link-gray t-btn-md header-link-color header-link-font-size rounded-none relative !px-3 xl:!px-4 2xl:!px-5 after:absolute after:left-1 after:right-1 after:-bottom-2 after:border-b-2 after:border-transparent hover:after:border-current !font-light" href="https://aclevercat.com/systems-in-sync">
      <span class="t-btn-main-label ">
        Get Your Systems in Sync™
      </span>
  
  
  
</a>
      <a style="" class="t-btn t-btn-link-gray t-btn-md header-link-color header-link-font-size rounded-none relative !px-3 xl:!px-4 2xl:!px-5 after:absolute after:left-1 after:right-1 after:-bottom-2 after:border-b-2 after:border-transparent hover:after:border-current !font-light" href="https://aclevercat.com/scorecard">
      <span class="t-btn-main-label ">
        Quiz
      </span>
  
  
  
</a>
      <a style="" class="t-btn t-btn-link-gray t-btn-md header-link-color header-link-font-size rounded-none relative !px-3 xl:!px-4 2xl:!px-5 after:absolute after:left-1 after:right-1 after:-bottom-2 after:border-b-2 after:border-transparent hover:after:border-current !font-light" href="https://aclevercat.com/simplero-free-trial">
      <span class="t-btn-main-label ">
        Simplero Free Trial
      </span>
  
  
  
</a>
      <a style="" class="t-btn t-btn-link-gray t-btn-md header-link-color header-link-font-size rounded-none relative !px-3 xl:!px-4 2xl:!px-5 after:absolute after:left-1 after:right-1 after:-bottom-2 after:border-b-2 after:border-transparent hover:after:border-current !font-light" href="https://aclevercat.com/resources">
      <span class="t-btn-main-label ">
        Resources
      </span>
  
  
  
</a>
      <a style="" class="t-btn t-btn-link-gray t-btn-md header-link-color header-link-font-size rounded-none relative !px-3 xl:!px-4 2xl:!px-5 after:absolute after:left-1 after:right-1 after:-bottom-2 after:border-b-2 after:border-transparent hover:after:border-current !font-light" href="https://aclevercat.com/contact">
      <span class="t-btn-main-label ">
        Contact
      </span>
  
  
  
</a>
      <a style="" class="t-btn t-btn-link-gray t-btn-md header-link-color header-link-font-size rounded-none relative !px-3 xl:!px-4 2xl:!px-5 after:absolute after:left-1 after:right-1 after:-bottom-2 after:border-b-2 after:border-transparent hover:after:border-current !font-light" href="https://aclevercat.com/about">
      <span class="t-btn-main-label ">
        About
      </span>
  
  
  
</a>
  </div>

</div>

</div>
      <span class="show-when-nav-style-left flex-grow"></span>

      <div class="lg:ml-2 flex items-center gap-x-0 whitespace-normal">
        <a aria-label="Search" data-behavior=" tooltip" data-placement="bottom" data-modern-tooltip="true" title="Search" style="" class="t-btn t-btn-tertiary-gray t-btn-md max-sm:!flex hide-when-nav-style-left t-btn-icon-only" href="https://aclevercat.com/search">
    
    <i class="far fa-magnifying-glass s-icon"></i> 
    
  
  
  
</a>

        

        
        

        

          <div class="hide-when-nav-style-left-below-lg flex-shrink-0">
            
          </div>

        <div id="js-cart-header-button"></div>

        

        <div class="ml-2 xl:ml-3 2xl:ml-4 hide-when-nav-style-left-below-lg whitespace-nowrap"><a style="" class="t-btn t-btn-custom t-btn-md header-cta-button t-btn-full-width" href="https://aclevercat.com/book">
      <span class="t-btn-main-label ">
        Book a Discovery Call
      </span>
  
  
  
</a></div>
      </div>
  </div>

    <div class="js-community-sidebar-nav site-sidebar-nav site-sidebar-nav-position-left show-when-nav-style-left" data-controller="community--sidebar-nav" data-action="toggleSidebar@document-&gt;community--sidebar-nav#toggleSidebar">

  <div class="flex flex-col gap-y-0.5">
      <div class="js-nav-list-link-container" data-action="revealable:toggled-&gt;community--sidebar-nav#saveLinkChildrenCollapsedState community--sidebar-nav:toggleChildren-&gt;revealable#toggleWithHeightAnimation" data-controller="revealable" data-link-id="1531888"><a class="header-button header-link-font-size s-truncate-attach-tooltip-target transition flex items-center p-3 gap-x-2 rounded-lg hover:bg-neutral-200 dark:hover:bg-bg-base" style="min-height: 46px;" data-action="click-&gt;community--sidebar-nav#toggleChildrenOrNavigate" href="https://aclevercat.com/work-with-me"><span class="nav-list-link-icon nav-list-link-letter-icon flex-shrink-0 uppercase leading-none rounded-full quick-flex-center font-semibold bg-neutral-800 dark:bg-neutral-600 text-neutral-0" style="font-size: var(--header-font-size-xs, 10px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);">w</span><span class="header-button-label s-truncate s-truncate-show-tooltip-if-hidden leading-normal hide-when-sidebar-collapsed js-navigate-to-link-on-click hover:text-primary-500 text-neutral-600 dark:text-neutral-400" data-placement="right">Work With Me</span><i class="js-children-chevron-icon transition duration-200 leading-none ml-auto hide-when-sidebar-collapsed text-neutral-600 dark:text-neutral-400 fa fa-angle-right s-icon"></i> </a><div class="hide-when-sidebar-collapsed ml-5 js-nav-list-link-children-container header-border-color border-l border-border-base hidden" data-revealable-target="toggle"><div><a class="header-link-color header-link-font-size hover:brightness-150 dark:hover:brightness-75 is-active:font-semibold flex items-center gap-x-2 pl-2.5 py-1.5 text-neutral-700 dark:text-neutral-500 hover:text-primary-500 is-active:text-primary-500" data-action="" target="_blank" href="https://aclevercat.com/funnel/68367/vip-day"><i style="font-size: var(--header-font-size-lg, 16px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);" class="nav-list-link-icon nav-list-link-fa-icon flex-shrink-0 leading-none quick-flex-center text-neutral-800 dark:text-neutral-600 far fa-external-link s-icon fa-fw"></i> <span class="s-truncate" data-placement="right">VIP Day</span></a></div><div><a class="header-link-color header-link-font-size hover:brightness-150 dark:hover:brightness-75 is-active:font-semibold flex items-center gap-x-2 pl-2.5 py-1.5 text-neutral-700 dark:text-neutral-500 hover:text-primary-500 is-active:text-primary-500" data-action="" href="https://aclevercat.com/case-studies"><span class="nav-list-link-icon nav-list-link-letter-icon flex-shrink-0 uppercase leading-none rounded-full quick-flex-center font-semibold bg-neutral-800 dark:bg-neutral-600 text-neutral-0" style="font-size: var(--header-font-size-xs, 10px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);">c</span><span class="s-truncate" data-placement="right">Case Studies</span></a></div><div><a class="header-link-color header-link-font-size hover:brightness-150 dark:hover:brightness-75 is-active:font-semibold flex items-center gap-x-2 pl-2.5 py-1.5 text-neutral-700 dark:text-neutral-500 hover:text-primary-500 is-active:text-primary-500" data-action="" href="https://aclevercat.com/products"><i style="font-size: var(--header-font-size-lg, 16px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);" class="nav-list-link-icon nav-list-link-fa-icon flex-shrink-0 leading-none quick-flex-center text-neutral-800 dark:text-neutral-600 far fa-book-open-cover s-icon fa-fw"></i> <span class="s-truncate" data-placement="right">Pricing</span></a></div></div></div>
      <div class="js-nav-list-link-container" data-action="revealable:toggled-&gt;community--sidebar-nav#saveLinkChildrenCollapsedState community--sidebar-nav:toggleChildren-&gt;revealable#toggleWithHeightAnimation" data-controller="revealable" data-link-id="1530752"><a class="header-button header-link-font-size s-truncate-attach-tooltip-target transition flex items-center p-3 gap-x-2 rounded-lg hover:bg-neutral-200 dark:hover:bg-bg-base" style="min-height: 46px;" data-action="" href="https://aclevercat.com/systems-in-sync"><span class="nav-list-link-icon nav-list-link-letter-icon flex-shrink-0 uppercase leading-none rounded-full quick-flex-center font-semibold bg-neutral-800 dark:bg-neutral-600 text-neutral-0" style="font-size: var(--header-font-size-xs, 10px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);">g</span><span class="header-button-label s-truncate s-truncate-show-tooltip-if-hidden leading-normal hide-when-sidebar-collapsed text-neutral-600 dark:text-neutral-400" data-placement="right">Get Your Systems in Sync™</span></a></div>
      <div class="js-nav-list-link-container" data-action="revealable:toggled-&gt;community--sidebar-nav#saveLinkChildrenCollapsedState community--sidebar-nav:toggleChildren-&gt;revealable#toggleWithHeightAnimation" data-controller="revealable" data-link-id="1545961"><a class="header-button header-link-font-size s-truncate-attach-tooltip-target transition flex items-center p-3 gap-x-2 rounded-lg hover:bg-neutral-200 dark:hover:bg-bg-base" style="min-height: 46px;" data-action="" href="https://aclevercat.com/scorecard"><i style="font-size: var(--header-font-size-lg, 16px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);" class="nav-list-link-icon nav-list-link-fa-icon flex-shrink-0 leading-none quick-flex-center text-neutral-800 dark:text-neutral-600 far fa-external-link s-icon fa-fw"></i> <span class="header-button-label s-truncate s-truncate-show-tooltip-if-hidden leading-normal hide-when-sidebar-collapsed text-neutral-600 dark:text-neutral-400" data-placement="right">Quiz</span></a></div>
      <div class="js-nav-list-link-container" data-action="revealable:toggled-&gt;community--sidebar-nav#saveLinkChildrenCollapsedState community--sidebar-nav:toggleChildren-&gt;revealable#toggleWithHeightAnimation" data-controller="revealable" data-link-id="1527256"><a class="header-button header-link-font-size s-truncate-attach-tooltip-target transition flex items-center p-3 gap-x-2 rounded-lg hover:bg-neutral-200 dark:hover:bg-bg-base" style="min-height: 46px;" data-action="" href="https://aclevercat.com/simplero-free-trial"><span class="nav-list-link-icon nav-list-link-letter-icon flex-shrink-0 uppercase leading-none rounded-full quick-flex-center font-semibold bg-neutral-800 dark:bg-neutral-600 text-neutral-0" style="font-size: var(--header-font-size-xs, 10px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);">s</span><span class="header-button-label s-truncate s-truncate-show-tooltip-if-hidden leading-normal hide-when-sidebar-collapsed text-neutral-600 dark:text-neutral-400" data-placement="right">Simplero Free Trial</span></a></div>
      <div class="js-nav-list-link-container" data-action="revealable:toggled-&gt;community--sidebar-nav#saveLinkChildrenCollapsedState community--sidebar-nav:toggleChildren-&gt;revealable#toggleWithHeightAnimation" data-controller="revealable" data-link-id="1540168"><a class="header-button header-link-font-size s-truncate-attach-tooltip-target transition flex items-center p-3 gap-x-2 rounded-lg hover:bg-neutral-200 dark:hover:bg-bg-base" style="min-height: 46px;" data-action="" href="https://aclevercat.com/resources"><span class="nav-list-link-icon nav-list-link-letter-icon flex-shrink-0 uppercase leading-none rounded-full quick-flex-center font-semibold bg-neutral-800 dark:bg-neutral-600 text-neutral-0" style="font-size: var(--header-font-size-xs, 10px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);">r</span><span class="header-button-label s-truncate s-truncate-show-tooltip-if-hidden leading-normal hide-when-sidebar-collapsed text-neutral-600 dark:text-neutral-400" data-placement="right">Resources</span></a></div>
      <div class="js-nav-list-link-container" data-action="revealable:toggled-&gt;community--sidebar-nav#saveLinkChildrenCollapsedState community--sidebar-nav:toggleChildren-&gt;revealable#toggleWithHeightAnimation" data-controller="revealable" data-link-id="1527168"><a class="header-button header-link-font-size s-truncate-attach-tooltip-target transition flex items-center p-3 gap-x-2 rounded-lg hover:bg-neutral-200 dark:hover:bg-bg-base" style="min-height: 46px;" data-action="" href="https://aclevercat.com/contact"><span class="nav-list-link-icon nav-list-link-letter-icon flex-shrink-0 uppercase leading-none rounded-full quick-flex-center font-semibold bg-neutral-800 dark:bg-neutral-600 text-neutral-0" style="font-size: var(--header-font-size-xs, 10px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);">c</span><span class="header-button-label s-truncate s-truncate-show-tooltip-if-hidden leading-normal hide-when-sidebar-collapsed text-neutral-600 dark:text-neutral-400" data-placement="right">Contact</span></a></div>
      <div class="js-nav-list-link-container" data-action="revealable:toggled-&gt;community--sidebar-nav#saveLinkChildrenCollapsedState community--sidebar-nav:toggleChildren-&gt;revealable#toggleWithHeightAnimation" data-controller="revealable" data-link-id="1531846"><a class="header-button header-link-font-size s-truncate-attach-tooltip-target transition flex items-center p-3 gap-x-2 rounded-lg hover:bg-neutral-200 dark:hover:bg-bg-base" style="min-height: 46px;" data-action="" href="https://aclevercat.com/about"><span class="nav-list-link-icon nav-list-link-letter-icon flex-shrink-0 uppercase leading-none rounded-full quick-flex-center font-semibold bg-neutral-800 dark:bg-neutral-600 text-neutral-0" style="font-size: var(--header-font-size-xs, 10px); width: var(--header-font-size-xl, 20px); height: var(--header-font-size-xl, 20px);">a</span><span class="header-button-label s-truncate s-truncate-show-tooltip-if-hidden leading-normal hide-when-sidebar-collapsed text-neutral-600 dark:text-neutral-400" data-placement="right">About</span></a></div>
  </div>


  <script>
    var isCollapsed = JSON.parse(localStorage.getItem('community-sidebar-nav-collapsed') ?? false)
    document.querySelector('.js-community-sidebar-nav').classList.toggle('is-collapsed', isCollapsed)

    document.querySelectorAll('.js-nav-list-link-container').forEach(link => {
      const isCollapsed = JSON.parse(localStorage.getItem(`community-sidebar-nav-link-${link.dataset.linkId}-collapsed`) ?? true)
      if(isCollapsed) return
      link.querySelector('.js-nav-list-link-children-container')?.classList.remove('hidden')
      link.querySelector('.js-children-chevron-icon')?.classList.add('fa-rotate-90')
    })
  </script>

    <div class="my-2 header-border-color border-t border-border-base divider-after-main-nav-list"></div>
    <div class="empty:hidden mt-3 lg:hidden"><a style="" class="t-btn t-btn-custom t-btn-md header-cta-button t-btn-full-width" href="https://aclevercat.com/book">
      <span class="t-btn-main-label ">
        Book a Discovery Call
      </span>
  
  
  
</a></div>
</div>

    <script>
      var headerNode = document.querySelector('.js-builder-node.builder-header')

      function topBarOverflowing() {
        const windowWidth = window.innerWidth || document.documentElement.clientWidth
        if(headerNode.scrollWidth > (windowWidth + 2)) return true

        const truncatedItems = headerNode.querySelectorAll('.truncate')
        for (const truncatedItem of truncatedItems) {
          if(truncatedItem.scrollWidth > (truncatedItem.clientWidth + 2)) return true
        }

        return false
      }

      /* If the top bar is overflowing, let's switch to the left nav style, except for the left nav to be fixed even on desktop (not occupy space any space) */
      function toggleNavStyleLeft() {
        headerNode.classList.remove('nav-style-left', 'nav-style-left-forced')
        void headerNode.offsetWidth
        if(topBarOverflowing()) headerNode.classList.add('nav-style-left', 'nav-style-left-forced')
        toggleLeftSidebarPositionFixed()
      }

      /* Make the left sidebar position fixed (i.e an overlay instead of occupying space). We do this on mobile, but you can also set a class to force it on desktop. */
      function toggleLeftSidebarPositionFixed() {
        if(headerNode.classList.contains('nav-style-left-forced')) {
          return headerNode.classList.add('nav-sidebar-position-fixed')
        }

        const theaterModeContainer = document.getElementById('theater-mode-container')
        if(theaterModeContainer && theaterModeContainer.children.length > 0) {
          return headerNode.classList.add('nav-sidebar-position-fixed')
        }

          const belowLg = window.innerWidth < 1024

          headerNode.classList.toggle('nav-sidebar-position-fixed', belowLg)
      }

      /* If the top bar is sticky & transparent, we want it to not be transparent as soon as someone scrolls down a bit*/
      function toggleNavTransparentTopBarOnScroll() {
        const topBarHeight = headerNode.clientHeight
        const scrollY = window.scrollY

        headerNode.classList.toggle('nav-transparent-top-bar', scrollY <= (topBarHeight / 2))
      }

      /* Only toggle nav transparent top bar on scroll if the header is transparent & sticky */
      if(headerNode.classList.contains('nav-transparent-top-bar') && headerNode.classList.contains('nav-sticky-top-bar')) {
        toggleNavTransparentTopBarOnScroll()
        window.addEventListener('scroll', toggleNavTransparentTopBarOnScroll, { passive: true })
        window.addEventListener('resize', toggleNavTransparentTopBarOnScroll, { passive: true })
      }

      /* For centered logo: viewport-based sidebar on mobile + overflow menus on desktop */
      if(headerNode.classList.contains('logo-position-center')) {
        function toggleCenteredMobileNav() {
          var belowLg = window.innerWidth < 1024
          headerNode.classList.toggle('nav-style-left', belowLg)
          headerNode.classList.toggle('nav-style-left-forced', belowLg)
          toggleLeftSidebarPositionFixed()
          if(!belowLg) updateOverflowMenus()
        }

        function updateOverflowMenus() {
          headerNode.querySelectorAll('.js-center-nav').forEach(function(nav) {
            var links = Array.from(nav.querySelectorAll(':scope > .js-collapsible-link'))
            var trigger = nav.querySelector(':scope > .js-overflow-trigger')
            if(!links.length || !trigger) return

            /* Reset: show all links, hide trigger */
            links.forEach(function(l) { l.hidden = false })
            trigger.hidden = true
            void nav.offsetWidth

            var navWidth = nav.clientWidth
            var gap = parseFloat(getComputedStyle(nav).columnGap)
            if (isNaN(gap)) gap = 0

            /* Measure each link */
            var totalWidth = 0
            var linkWidths = links.map(function(link, i) {
              var w = link.getBoundingClientRect().width
              totalWidth += w + (i > 0 ? gap : 0)
              return w
            })

            /* Everything fits */
            if(totalWidth <= navWidth) return

            /* Show trigger to measure its width */
            trigger.hidden = false
            var triggerWidth = trigger.getBoundingClientRect().width
            var spaceForLinks = navWidth - triggerWidth - gap

            /* Hide links that don't fit - once overflow starts, all subsequent links go to More */
            var usedWidth = 0
            var overflow = false
            for(var i = 0; i < links.length; i++) {
              var w = linkWidths[i] + (i > 0 ? gap : 0)
              if(!overflow && (usedWidth + w) <= spaceForLinks) {
                links[i].hidden = false
                usedWidth += w
              } else {
                overflow = true
                links[i].hidden = true
              }
              nav.querySelectorAll('.js-overflow-for-' + i).forEach(function(el) { el.hidden = !links[i].hidden })
            }
          })
        }

        window.addEventListener('resize', toggleCenteredMobileNav)
        toggleCenteredMobileNav()
      }

      /* Only toggle Nav style left if the header is not already nav-style-left (non-centered layout) */
      if(!headerNode.classList.contains('nav-style-left') && !headerNode.classList.contains('logo-position-center')) {
        window.addEventListener('resize', toggleNavStyleLeft)
        toggleNavStyleLeft()
      }

      window.addEventListener('resize', toggleLeftSidebarPositionFixed)
      document.addEventListener('theater-mode-toggled', toggleLeftSidebarPositionFixed)
      toggleLeftSidebarPositionFixed()
    </script>
</div><div class="node-divider"></div></div><div id="node_n_1HleF2pF2zuZY6t6" class="builder-node js-builder-node builder-placeholder-content builder-node-element node-n_1HleF2pF2zuZY6t6 flex flex-col flex-1 items-center w-full apply-node-styles node-n_1HleF2pF2zuZY6t6-apply-node-styles apply-node-styles-padding apply-node-styles-border apply-node-styles-border-radius apply-node-styles-box-shadow" data-controller="builder--node" data-node-id="n_1HleF2pF2zuZY6t6" data-node-dom-id="node_n_1HleF2pF2zuZY6t6" data-preserve-during-replace="true"><style id="style_node_n_1HleF2pF2zuZY6t6">.node-n_1HleF2pF2zuZY6t6-apply-node-styles  {
display: flex;
}
@media (max-width: 1024px) {
.node-n_1HleF2pF2zuZY6t6-apply-node-styles  {
display: flex;
}
}
@media (max-width: 640px) {
.node-n_1HleF2pF2zuZY6t6-apply-node-styles  {
display: flex;
}
}
</style><div class="node-bg js-node-bg z-0 absolute top-0 left-0 right-0 bottom-0 overflow-hidden"></div><div class="node-content js-node-content flex-1 min-w-0 relative w-full">    <div class="site-layout-content-area system-content">
      <div class="site-layout-theater-mode-container tw" id="theater-mode-container"></div>

      <div class="site-layout-content-area-two-col">
          <div
            class="site-layout-right-sidebar js-layout-right-sidebar layout-collapse-right-sidebar-to-top tw"
            style=""
          >
              <div class="flex flex-col gap-y-6">
    <div class="widget-component relative bg-bg-alt layout-remove-x-padding-below-sm p-4 sm:p-6 sm:rounded-sg">
  <div>
    
          <div class="rounded-t-sg overflow-hidden -mt-6 -mx-6 mb-6">
      <img alt="A Clever Cat card image" class="w-full video-card-without-padding object-cover" decoding="async" src="https://img.simplerousercontent.net/scaled_image/7832905/97ab65fba3b63d89284934360c80facf9cd99295/A-Clever-Cat-card-image-700w-175h.jpg" width="350" height="88" />
</div>    <h3 class="text-base font-semibold text-fg-base">A Clever Cat</h3>


    <div class="mt-4">
            
  <div class="flex flex-col gap-4">
    <form id="search_form" class="formbuilder community-search-input-component flex-1 tw" role="form" data-focus="none" data-controller="community--search--input" action="/search" accept-charset="UTF-8" method="get">



    <div class="mb-0 t-field-bg-transparent search-input-wrapper q t-field t-field--type-input t-field--style-bordered t-field--size-sm t-field--rounded-full t-field--label-style-placeholder t-field--with-prefix t-field--with-suffix" data-controller="form--field" data-action="click-&gt;form--field#focusControl">
    
    
    

    <div class="t-field__body" data-action="click-&gt;form--field#focusControl">
      <div class="t-field__prefix">    <div class="flex flex-row items-center gap-x-2">
      <i class="far fa-magnifying-glass s-icon"></i> 

    </div>
</div>

      <div class="t-field__control-wrapper">
        <input data-community--search--input-target="input" data-action="input-&gt;community--search--input#liveSearch" aria-label="Search" placeholder=" " type="text" name="q" id="q" />
        
        <label class="t-field__label t-field__label--placeholder" for="q">Search</label>
</div>
      <div class="t-field__suffix">    <button type="submit" data-disable-with="<i class=&quot;far fa-spinner-third s-icon fa-spin&quot;></i> " style="" class="t-btn t-btn-primary t-btn-xs ml-auto size-6 rounded-full sm:hidden min-w-0 t-btn-icon-only">
    
    <i class="!text-xs fa fa-paper-plane-top s-icon"></i> 
    
  
  
  
</button>
</div>

      
      
</div>
    <div class="t-field__help t-with-links">
</div></div>

  
  
  
  
  
  
  
</form>

    

    <div>
      
    </div>

      <div class="flex items-center -space-x-2"><div class="relative flex ring-2 ring-bg-alt rounded-full"><span class="relative inline-block shrink-0 size-8"><span class="absolute inset-0 rounded-full quick-inline-flex-center text-neutral-0 bg-red-500 text-xs font-medium"><span class="__anon__">VT</span></span><span class="__anon__"><img class="relative inline-block rounded-full object-cover size-8" src="https://active-storage.simplerousercontent.net/rails/active_storage/representations/proxy/eyJfcmFpbHMiOnsiZGF0YSI6ODM3MzI4LCJwdXIiOiJibG9iX2lkIn19--d3ab38627c9c120b30be0af42657d1ba49e04f77/eyJfcmFpbHMiOnsiZGF0YSI6eyJmb3JtYXQiOiJwbmciLCJyZXNpemVfdG9fZmlsbCI6WzEwMCwxMDBdLCJzYXZlciI6eyJzdHJpcCI6dHJ1ZX19LCJwdXIiOiJ2YXJpYXRpb24ifX0=--be076b13c00753cd8698edcb28dd54eb48fdc71f/Valerie%20headshot.png" /></span></span></div><div class="relative flex ring-2 ring-bg-alt rounded-full"><span class="relative inline-block shrink-0 size-8"><span class="absolute inset-0 rounded-full quick-inline-flex-center text-neutral-0 bg-neutral-500 text-xs font-medium"><span class="__anon__">ST</span></span><span class="__anon__"><img class="relative inline-block rounded-full object-cover size-8" src="https://active-storage.simplerousercontent.net/rails/active_storage/representations/proxy/eyJfcmFpbHMiOnsiZGF0YSI6NTAxMTA5LCJwdXIiOiJibG9iX2lkIn19--303a474ecf0908820991d3003d99fd0c3f9c8bec/eyJfcmFpbHMiOnsiZGF0YSI6eyJmb3JtYXQiOiJqcGciLCJyZXNpemVfdG9fZmlsbCI6WzEwMCwxMDBdLCJzYXZlciI6eyJzdHJpcCI6dHJ1ZX19LCJwdXIiOiJ2YXJpYXRpb24ifX0=--d579f445f097cf06793ca120d159edab3b86b3cc/OGO_Secondary_CircleStamp_RGB_Sunray.jpg" /></span></span></div><div class="relative flex ring-2 ring-bg-alt rounded-full"><span class="relative inline-block shrink-0 size-8"><span class="absolute inset-0 rounded-full quick-inline-flex-center text-neutral-0 bg-cyan-500 text-xs font-medium"><span class="__anon__">NM</span></span><span class="__anon__"><img class="relative inline-block rounded-full object-cover size-8" src="https://active-storage.simplerousercontent.net/rails/active_storage/representations/proxy/eyJfcmFpbHMiOnsiZGF0YSI6MTM0NTQzNiwicHVyIjoiYmxvYl9pZCJ9fQ==--b1bb86573b78f07553140a658bcdcaf9a756d0ff/eyJfcmFpbHMiOnsiZGF0YSI6eyJmb3JtYXQiOiJqcGVnIiwicmVzaXplX3RvX2ZpbGwiOlsxMDAsMTAwXSwic2F2ZXIiOnsic3RyaXAiOnRydWV9fSwicHVyIjoidmFyaWF0aW9uIn19--b8074412d8c8decbb9d660ea6093796eb059d113/Nadine%20Mazzola%20-%20IMG_8113%20crop8%201-1.JPG" /></span></span></div><div class="relative flex ring-2 ring-bg-alt rounded-full"><span class="relative inline-block shrink-0 size-8"><span class="absolute inset-0 rounded-full quick-inline-flex-center text-neutral-0 bg-cyan-500 text-xs font-medium"><span class="__anon__">NC</span></span><span class="__anon__"><img class="relative inline-block rounded-full object-cover size-8" src="https://secure.gravatar.com/avatar/023021eae9f584e48a89e20945e584cb.png?d=blank&amp;r=PG&amp;s=100" /></span></span></div><div class="relative flex ring-2 ring-bg-alt rounded-full"><span class="relative inline-block shrink-0 size-8"><span class="absolute inset-0 rounded-full quick-inline-flex-center text-neutral-0 bg-red-500 text-xs font-medium"><span class="__anon__">SW</span></span><span class="__anon__"><img class="relative inline-block rounded-full object-cover size-8" src="https://active-storage.simplerousercontent.net/rails/active_storage/representations/proxy/eyJfcmFpbHMiOnsiZGF0YSI6NTU1NTc3LCJwdXIiOiJibG9iX2lkIn19--bd73992831386e1e2098a30d0372b73863add04e/eyJfcmFpbHMiOnsiZGF0YSI6eyJmb3JtYXQiOiJqcGciLCJyZXNpemVfdG9fZmlsbCI6WzEwMCwxMDBdLCJzYXZlciI6eyJzdHJpcCI6dHJ1ZX19LCJwdXIiOiJ2YXJpYXRpb24ifX0=--d579f445f097cf06793ca120d159edab3b86b3cc/Image%20from%20iOS%20(1).jpg" /></span></span></div><div class="relative flex ring-2 ring-bg-alt rounded-full"><span class="relative inline-block shrink-0 size-8"><span class="absolute inset-0 rounded-full quick-inline-flex-center text-neutral-0 bg-yellow-500 text-xs font-medium"><span class="__anon__">MB</span></span><span class="__anon__"><img class="relative inline-block rounded-full object-cover size-8" src="https://active-storage.simplerousercontent.net/rails/active_storage/representations/proxy/eyJfcmFpbHMiOnsiZGF0YSI6NTE3NzczLCJwdXIiOiJibG9iX2lkIn19--b873b3fe3856cb23070025ea31d06d20eb871f9d/eyJfcmFpbHMiOnsiZGF0YSI6eyJmb3JtYXQiOiJqcGciLCJyZXNpemVfdG9fZmlsbCI6WzEwMCwxMDBdLCJzYXZlciI6eyJzdHJpcCI6dHJ1ZX19LCJwdXIiOiJ2YXJpYXRpb24ifX0=--d579f445f097cf06793ca120d159edab3b86b3cc/VLM_1754.jpg" /></span></span></div><div class="relative flex ring-2 ring-bg-alt rounded-full"><span class="relative inline-block shrink-0 size-8"><span class="absolute inset-0 rounded-full quick-inline-flex-center text-neutral-0 bg-blue-500 text-xs font-medium"><span class="__anon__">JM</span></span><span class="__anon__"><img class="relative inline-block rounded-full object-cover size-8" src="https://secure.gravatar.com/avatar/4a713217132588f8b735dd4bba988a2c.png?d=blank&amp;r=PG&amp;s=100" /></span></span></div><div class="relative flex ring-2 ring-bg-alt rounded-full"><span class="relative inline-block shrink-0 size-8"><span class="absolute inset-0 rounded-full quick-inline-flex-center text-neutral-0 bg-lime-500 text-xs font-medium"><span class="__anon__">KI</span></span><span class="__anon__"><img class="relative inline-block rounded-full object-cover size-8" src="https://secure.gravatar.com/avatar/833f70ccd4683e7985127c01e3e042db.png?d=blank&amp;r=PG&amp;s=100" /></span></span></div></div>
  </div>

</div></div>
  
</div>
  </div>

          </div>

        <div class="site-layout-content-area-inner tw">
            

<div class="flex flex-col gap-y-6">
  
  
  
  



  </div>

        </div>
      </div>
    </div>
  
</div><div class="node-divider"></div></div>




<div id="node_n_csEdCTKolXFp4zEJ" class="builder-node js-builder-node builder-footer builder-node-element node-n_csEdCTKolXFp4zEJ w-full apply-node-styles node-n_csEdCTKolXFp4zEJ-apply-node-styles apply-node-styles-padding apply-node-styles-border apply-node-styles-border-radius apply-node-styles-box-shadow" data-controller="builder--node builder--elements--footer" data-node-id="n_csEdCTKolXFp4zEJ" data-node-dom-id="node_n_csEdCTKolXFp4zEJ"><style id="style_node_n_csEdCTKolXFp4zEJ">.node-n_csEdCTKolXFp4zEJ-apply-node-styles  {
display: flex;
}
@media (max-width: 1024px) {
.node-n_csEdCTKolXFp4zEJ-apply-node-styles  {
display: flex;
}
}
@media (max-width: 640px) {
.node-n_csEdCTKolXFp4zEJ-apply-node-styles  {
display: flex;
}
}
.node-n_csEdCTKolXFp4zEJ-apply-node-styles  {
--footer-color-background: var(--sg-palette-color-4);
--footer-color-text: var(--sg-palette-color-1);
--footer-color-links: var(--sg-palette-color-2);
--footer-color-link-folders: var(--sg-palette-color-2);

}
.node-n_csEdCTKolXFp4zEJ-apply-node-styles.dark, .node-n_csEdCTKolXFp4zEJ-apply-node-styles:is(.dark *:not(.dark .light *):not(.dark .light)) {
--footer-color-background: var(--sg-system-color-neutral-900);
--footer-color-text: var(--sg-system-color-neutral-0);
--footer-color-links: var(--sg-system-color-neutral-600);
--footer-color-link-folders: var(--sg-system-color-neutral-600);

}
.node-n_csEdCTKolXFp4zEJ-apply-node-styles .logo-image {
object-fit: contain;
width: auto;
height: 32px;

}
</style><div class="node-bg js-node-bg z-0 absolute top-0 left-0 right-0 bottom-0 overflow-hidden"></div><div class="node-content js-node-content flex-1 min-w-0 relative">
  <div class="px-6 md:px-8 lg:px-11 py-8 md:py-11 lg:py-14 flex flex-col gap-8 text-sm">
    <div class="flex flex-row flex-wrap justify-between gap-8">
      <div class="flex flex-col gap-4 sm:max-w-1/2 md:max-w-1/4 lg:max-w-1/3">
          <a class="flex items-center gap-4" href="/">
              <div class="inline-flex gap-2 items-center">
                    <img alt="logo" class="logo-image" decoding="async" src="https://img.simplerousercontent.net/scaled_image/6511122/890923bbaf1dc1964346347e22e5310c4fed27ea/logo-350w-150h.png" width="233" height="100" />
                

  </div>
</a>
        

          <div class="">PO Box 16882<br>Sugar Land, TX 77496<br>United States</div>


        

        
      </div>

      <div class="flex-1 self-baseline flex flex-wrap sm:justify-end gap-y-6 xl:gap-y-8 gap-x-6 md:gap-x-8 lg:gap-x-12 xl:gap-x-16 2xl:gap-x-20">
            <div class="">
                <a class="footer-nav-link" href="https://aclevercat.com/resources">Resources</a>

            </div>
            <div class="">
                <a class="footer-nav-link" href="https://aclevercat.com/blog">Blog</a>

            </div>
            <div class="">
                <a class="footer-nav-link" href="https://aclevercat.com/deleted:contact2:22a9446ad8d91bff28625d1a">Contact</a>

            </div>
            <div class="">
                <a class="footer-nav-link" href="https://aclevercat.com/terms">Terms</a>

            </div>
            <div class="">
                <a class="footer-nav-link" href="https://aclevercat.com/privacy-policy">Privacy</a>

            </div>
      </div>
    </div>

    <div class="flex flex-col md:flex-row flex-wrap items-center md:items-end justify-between gap-x-8 gap-y-3">
      

      <div class="flex flex-col items-center gap-y-8 sm:flex-row">
            <div class="grow md:last:text-center">
      Copyright &copy; 2026 A Clever Cat

    </div>


      </div>


</div>
    <div class="flex items-center justify-center mt-2"></div>
  </div>
</div><div class="node-divider"></div></div></div><div class="node-divider"></div></div></div>

        <div id="side_panel" class="side_panel " data-controller="side-panel" data-action="show-&gt;side-panel#show hide-&gt;side-panel#hide">
  <div id="side_panel_content" style="min-height: 100%;">
    
  </div>

  <div class="side_panel__resize-handle"
    data-controller='resize-handle'
    data-action='resize-handle:startResize->side-panel#resizeStarted resize-handle:resize->side-panel#resized resize-handle:stopResize->side-panel#resizeStopped'
  ></div>
</div>
        <div class="fixed inset-0 pointer-events-none overflow-y-auto" style="z-index: 99999"><div id="toasts" class="min-h-full flex flex-col justify-end items-end p-4 gap-2"></div></div>
        <div class="fixed top-16 left-1/2 transform -translate-x-1/2 t-with-links" data-controller='notice-manager' style="z-index: 99999;">
    <template data-notice-manager-target="noticeTemplate"><div class="hidden animated bounceIn text-sm mb-2 px-4 py-2 rounded w-max max-w-80vw bg-green-100 text-green-800" data-notice-manager-target="notice"><i class="mr-1 fa fa-check s-icon"></i>___MESSAGE___</div></template>
    <template data-notice-manager-target="alertTemplate"><div class="hidden animated bounceIn text-sm mb-2 px-4 py-2 rounded w-max max-w-80vw bg-red-100 text-red-800" data-notice-manager-target="notice"><i class="mr-1 fa fa-exclamation-triangle s-icon"></i>___MESSAGE___</div></template>
</div>

      </div>
    </div>
<div id="modal-container"><div id="modal-container-ajax"></div><div id="modal-container-ajax-2"></div><div class="tw tw-modal-containers"><div id="tw-modal-container-ajax"></div><div id="tw-modal-container-ajax-2"></div></div></div><div class="tw tippy-portal"></div><script src="https://assets0.simplero.com/packs/vite/assets/embedded_iframe_controller-DXiRy_A_.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/object_picker_controller-BrSzILu0.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/side_panel_controller-BUdu8YWx.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/resize_handle_controller-B5bizMMo.js" crossorigin="" type="module"></script>
<script src="https://assets0.simplero.com/packs/vite/assets/notice_manager_component_controller-jh8Ba4cJ.js" crossorigin="" type="module"></script><link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/application-CICdy77j.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/chunk-DrXEqYTP.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/jquery-DUdOgot1.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_baseGetTag-DTxP6JBo.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/isObject-CvuDp1Fj.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_getNative-DbqyTYjA.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/_baseRest-CgY34g6V.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dom_ready-DKh4szzN.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/form_focus-DlZ0b8xo.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/highlight-BOC3WrV_.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/iframe-DgLr9n3H.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/dist-CM_0y879.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/popper-D4vrNLcm.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/tippy.esm-BZmZIwFV.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/ajax_helpers-xZcSt3Cr.js" as="script" crossorigin="">
<link rel="modulepreload" href="https://assets0.simplero.com/packs/vite/assets/object_picker-BBf9ci33.js" as="script" crossorigin=""><link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/side_panel_controller-BI_1IcIx.css" media="all" />
<link rel="stylesheet" crossorigin="" href="https://assets0.simplero.com/packs/vite/assets/animate-BjmUaGCc.css" media="all" /></body></html>

