@import url(https://fonts.googleapis.com/css?family=Droid+Sans+Mono|Open+Sans);
@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Mono|Muli:400,500,600,700,800&display=swap);
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Common */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --ifm-color-scheme: light;

  /* Colors. */
  --ifm-dark-value: 10%;
  --ifm-darker-value: 15%;
  --ifm-darkest-value: 30%;
  --ifm-light-value: 15%;
  --ifm-lighter-value: 30%;
  --ifm-lightest-value: 50%;

  /*
  This seems like a lot, but we want to ensure enough contrast.
  Goal is to have a min score of 3 on https://www.myndex.com/APCA/fullmatrix
  For fontWeight 400 + score 3, the cell must show a value < 16px (fontsize we use in places like alerts)
  See also https://github.com/facebookincubator/infima/issues/55#issuecomment-884023075
   */
  --ifm-contrast-background-value: 90%;
  --ifm-contrast-foreground-value: 70%;
  /* Using slightly different values for dark mode */
  --ifm-contrast-background-dark-value: 70%;
  --ifm-contrast-foreground-dark-value: 90%;

  --ifm-color-primary: #3578e5;
  --ifm-color-secondary: #ebedf0;
  --ifm-color-success: #00a400;
  --ifm-color-info: #54c7ec;
  --ifm-color-warning: #ffba00;
  --ifm-color-danger: #fa383e;
    --ifm-color-primary-dark: rgb(48, 108, 206);
    --ifm-color-primary-darker: rgb(45, 102, 195);
    --ifm-color-primary-darkest: rgb(37, 84, 160);
    --ifm-color-primary-light: rgb(83, 140, 233);
    --ifm-color-primary-lighter: rgb(114, 161, 237);
    --ifm-color-primary-lightest: rgb(154, 188, 242);
    --ifm-color-primary-contrast-background: rgb(235, 242, 252);
    --ifm-color-primary-contrast-foreground: rgb(16, 36, 69);
    --ifm-color-secondary-dark: rgb(212, 213, 216);
    --ifm-color-secondary-darker: rgb(200, 201, 204);
    --ifm-color-secondary-darkest: rgb(164, 166, 168);
    --ifm-color-secondary-light: rgb(238, 240, 242);
    --ifm-color-secondary-lighter: rgb(241, 242, 245);
    --ifm-color-secondary-lightest: rgb(245, 246, 248);
    --ifm-color-secondary-contrast-background: rgb(253, 253, 254);
    --ifm-color-secondary-contrast-foreground: rgb(71, 71, 72);
    --ifm-color-success-dark: rgb(0, 148, 0);
    --ifm-color-success-darker: rgb(0, 139, 0);
    --ifm-color-success-darkest: rgb(0, 115, 0);
    --ifm-color-success-light: rgb(38, 178, 38);
    --ifm-color-success-lighter: rgb(77, 191, 77);
    --ifm-color-success-lightest: rgb(128, 210, 128);
    --ifm-color-success-contrast-background: rgb(230, 246, 230);
    --ifm-color-success-contrast-foreground: rgb(0, 49, 0);
    --ifm-color-info-dark: rgb(76, 179, 212);
    --ifm-color-info-darker: rgb(71, 169, 201);
    --ifm-color-info-darkest: rgb(59, 139, 165);
    --ifm-color-info-light: rgb(110, 207, 239);
    --ifm-color-info-lighter: rgb(135, 216, 242);
    --ifm-color-info-lightest: rgb(170, 227, 246);
    --ifm-color-info-contrast-background: rgb(238, 249, 253);
    --ifm-color-info-contrast-foreground: rgb(25, 60, 71);
    --ifm-color-warning-dark: rgb(230, 167, 0);
    --ifm-color-warning-darker: rgb(217, 158, 0);
    --ifm-color-warning-darkest: rgb(179, 130, 0);
    --ifm-color-warning-light: rgb(255, 196, 38);
    --ifm-color-warning-lighter: rgb(255, 207, 77);
    --ifm-color-warning-lightest: rgb(255, 221, 128);
    --ifm-color-warning-contrast-background: rgb(255, 248, 230);
    --ifm-color-warning-contrast-foreground: rgb(77, 56, 0);
    --ifm-color-danger-dark: rgb(225, 50, 56);
    --ifm-color-danger-darker: rgb(213, 48, 53);
    --ifm-color-danger-darkest: rgb(175, 39, 43);
    --ifm-color-danger-light: rgb(251, 86, 91);
    --ifm-color-danger-lighter: rgb(251, 116, 120);
    --ifm-color-danger-lightest: rgb(253, 156, 159);
    --ifm-color-danger-contrast-background: rgb(255, 235, 236);
    --ifm-color-danger-contrast-foreground: rgb(75, 17, 19);

  --ifm-color-white: #fff;
  --ifm-color-black: #000;

  --ifm-color-gray-0: var(--ifm-color-white);
  --ifm-color-gray-100: #f5f6f7;
  --ifm-color-gray-200: #ebedf0;
  --ifm-color-gray-300: #dadde1;
  --ifm-color-gray-400: #ccd0d5;
  --ifm-color-gray-500: #bec3c9;
  --ifm-color-gray-600: #8d949e;
  --ifm-color-gray-700: #606770;
  --ifm-color-gray-800: #444950;
  --ifm-color-gray-900: #1c1e21;
  --ifm-color-gray-1000: var(--ifm-color-black);

  --ifm-color-emphasis-0: var(--ifm-color-gray-0);
  --ifm-color-emphasis-100: var(--ifm-color-gray-100);
  --ifm-color-emphasis-200: var(--ifm-color-gray-200);
  --ifm-color-emphasis-300: var(--ifm-color-gray-300);
  --ifm-color-emphasis-400: var(--ifm-color-gray-400);
  --ifm-color-emphasis-500: var(--ifm-color-gray-500);
  --ifm-color-emphasis-600: var(--ifm-color-gray-600);
  --ifm-color-emphasis-700: var(--ifm-color-gray-700);
  --ifm-color-emphasis-800: var(--ifm-color-gray-800);
  --ifm-color-emphasis-900: var(--ifm-color-gray-900);
  --ifm-color-emphasis-1000: var(--ifm-color-gray-1000);

  /* Base. */
  --ifm-color-content: var(--ifm-color-emphasis-900);
  --ifm-color-content-inverse: var(--ifm-color-emphasis-0);
  --ifm-color-content-secondary: #525860;

  --ifm-background-color: transparent; /* Body's background. */
  --ifm-background-surface-color: var(--ifm-color-content-inverse);
  --ifm-global-border-width: 1px;
  --ifm-global-radius: 0.4rem;

  --ifm-hover-overlay: rgba(0, 0, 0, 0.05);

  /* Typography. */
  --ifm-font-color-base: var(--ifm-color-content);
  --ifm-font-color-base-inverse: var(--ifm-color-content-inverse);
  --ifm-font-color-secondary: var(--ifm-color-content-secondary);
  --ifm-font-family-base: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont,
    'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
  --ifm-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  --ifm-font-size-base: 100%;

  --ifm-font-weight-light: 300;
  --ifm-font-weight-normal: 400;
  --ifm-font-weight-semibold: 500;
  --ifm-font-weight-bold: 700;

  --ifm-font-weight-base: var(--ifm-font-weight-normal);
  --ifm-line-height-base: 1.65;

  /* Spacing. */
  --ifm-global-spacing: 1rem;
  --ifm-spacing-vertical: var(--ifm-global-spacing);
  --ifm-spacing-horizontal: var(--ifm-global-spacing);

  /* Transitions. */
  --ifm-transition-fast: 200ms;
  --ifm-transition-slow: 400ms;
  --ifm-transition-timing-default: cubic-bezier(0.08, 0.52, 0.52, 1);

  /* Shadows. */
  --ifm-global-shadow-lw: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  --ifm-global-shadow-md: 0 5px 40px rgba(0, 0, 0, 0.2);
  --ifm-global-shadow-tl: 0 12px 28px 0 rgba(0, 0, 0, 0.2),
    0 2px 4px 0 rgba(0, 0, 0, 0.1);

  /* Z-index. */
  --ifm-z-index-dropdown: 100;
  --ifm-z-index-fixed: 200;
  --ifm-z-index-overlay: 400;
  --ifm-container-width: 1140px;
  --ifm-container-width-xl: 1320px;
  --ifm-code-background: rgb(246, 247, 248);
  --ifm-code-border-radius: var(--ifm-global-radius);
  --ifm-code-font-size: 90%;
  --ifm-code-padding-horizontal: 0.1rem;
  --ifm-code-padding-vertical: 0.1rem;

  --ifm-pre-background: var(--ifm-code-background);
  --ifm-pre-border-radius: var(--ifm-code-border-radius);
  --ifm-pre-color: inherit;
  --ifm-pre-line-height: 1.45;
  --ifm-pre-padding: 1rem;
  --ifm-heading-color: inherit;
  --ifm-heading-margin-top: 0;
  --ifm-heading-margin-bottom: var(--ifm-spacing-vertical);
  --ifm-heading-font-family: var(--ifm-font-family-base);
  --ifm-heading-font-weight: var(--ifm-font-weight-bold);
  --ifm-heading-line-height: 1.25;

  --ifm-h1-font-size: 2rem;
  --ifm-h2-font-size: 1.5rem;
  --ifm-h3-font-size: 1.25rem;
  --ifm-h4-font-size: 1rem;
  --ifm-h5-font-size: 0.875rem;
  --ifm-h6-font-size: 0.85rem;
  --ifm-image-alignment-padding: 1.25rem;
  /* Leading is the distance between two baselines */
  /* TODO: add appropriate mobile leading */
  --ifm-leading-desktop: 1.25;
  --ifm-leading: calc(var(--ifm-leading-desktop) * 1rem);
  --ifm-list-left-padding: 2rem;
  --ifm-list-margin: 1rem;
  --ifm-list-item-margin: 0.25rem;
  --ifm-list-paragraph-margin: 1rem;
  --ifm-table-cell-padding: 0.75rem;

  --ifm-table-background: transparent;
  --ifm-table-stripe-background: rgba(0, 0, 0, 0.03);

  --ifm-table-border-width: 1px;
  --ifm-table-border-color: var(--ifm-color-emphasis-300);

  --ifm-table-head-background: inherit;
  --ifm-table-head-color: inherit;
  --ifm-table-head-font-weight: var(--ifm-font-weight-bold);

  --ifm-table-cell-color: inherit;
  /* Links. */
  --ifm-link-color: var(--ifm-color-primary);
  --ifm-link-decoration: none;
  --ifm-link-hover-color: var(--ifm-link-color);
  --ifm-link-hover-decoration: underline;

  /* Paragraphs. */
  --ifm-paragraph-margin-bottom: var(--ifm-leading);

  /* Blockquotes. */
  --ifm-blockquote-font-size: var(--ifm-font-size-base);
  --ifm-blockquote-border-left-width: 2px;
  --ifm-blockquote-padding-horizontal: var(--ifm-spacing-horizontal);
  --ifm-blockquote-padding-vertical: 0;
  --ifm-blockquote-shadow: none;
  --ifm-blockquote-color: var(--ifm-color-emphasis-800);
  --ifm-blockquote-border-color: var(--ifm-color-emphasis-300);

  /* Horizontal Rules. */
  --ifm-hr-background-color: var(--ifm-color-emphasis-500);
  --ifm-hr-height: 1px;
  --ifm-hr-margin-vertical: 1.5rem;
  --ifm-scrollbar-size: 7px;
  --ifm-scrollbar-track-background-color: #f1f1f1;
  --ifm-scrollbar-thumb-background-color: #c0c0c0;
  --ifm-scrollbar-thumb-hover-background-color: #a7a7a7;
  --ifm-alert-background-color: inherit; /* Set a default which will be overridden later. */
  --ifm-alert-border-color: inherit; /* Set a default which will be overridden later. */
  --ifm-alert-border-radius: var(--ifm-global-radius);
  --ifm-alert-border-width: 0px; /* For users that want to easily add a border */
  --ifm-alert-border-left-width: 5px;
  --ifm-alert-color: var(--ifm-font-color-base);
  --ifm-alert-padding-horizontal: var(--ifm-spacing-horizontal);
  --ifm-alert-padding-vertical: var(--ifm-spacing-vertical);
  --ifm-alert-shadow: var(--ifm-global-shadow-lw);
  --ifm-avatar-intro-margin: 1rem;
  --ifm-avatar-intro-alignment: inherit;
  --ifm-avatar-photo-size: 3rem;
  --ifm-badge-background-color: inherit; /* Set a default which will be overridden later. */
  --ifm-badge-border-color: inherit; /* Set a default which will be overridden later. */
  --ifm-badge-border-radius: var(--ifm-global-radius);
  --ifm-badge-border-width: var(--ifm-global-border-width);
  --ifm-badge-color: var(--ifm-color-white);
  --ifm-badge-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 0.5);
  --ifm-badge-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25);
  --ifm-breadcrumb-border-radius: 1.5rem;
  --ifm-breadcrumb-spacing: 0.5rem;
  --ifm-breadcrumb-color-active: var(--ifm-color-primary);
  --ifm-breadcrumb-item-background-active: var(--ifm-hover-overlay);
  --ifm-breadcrumb-padding-horizontal: 0.8rem;
  --ifm-breadcrumb-padding-vertical: 0.4rem;
  --ifm-breadcrumb-size-multiplier: 1;
  --ifm-breadcrumb-separator: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 256 256"><g><g><polygon points="79.093,0 48.907,30.187 146.72,128 48.907,225.813 79.093,256 207.093,128"/></g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>');
  --ifm-breadcrumb-separator-filter: none;
  --ifm-breadcrumb-separator-size: 0.5rem;
  --ifm-breadcrumb-separator-size-multiplier: 1.25;
  --ifm-button-background-color: inherit;
  --ifm-button-border-color: var(--ifm-button-background-color);
  --ifm-button-border-width: var(--ifm-global-border-width);
  --ifm-button-color: var(--ifm-font-color-base-inverse);
  --ifm-button-font-weight: var(--ifm-font-weight-bold);
  --ifm-button-padding-horizontal: 1.5rem;
  --ifm-button-padding-vertical: 0.375rem;
  --ifm-button-size-multiplier: 1;
  --ifm-button-transition-duration: var(--ifm-transition-fast);
  --ifm-button-border-radius: calc(
    var(--ifm-global-radius) * var(--ifm-button-size-multiplier)
  );
  --ifm-button-group-spacing: 2px;
  --ifm-card-background-color: var(--ifm-background-surface-color);
  --ifm-card-border-radius: calc(var(--ifm-global-radius) * 2);
  --ifm-card-horizontal-spacing: var(--ifm-global-spacing);
  --ifm-card-vertical-spacing: var(--ifm-global-spacing);
  --ifm-toc-border-color: var(--ifm-color-emphasis-300);
  --ifm-toc-link-color: var(--ifm-color-content-secondary);
  --ifm-toc-padding-vertical: 0.5rem;
  --ifm-toc-padding-horizontal: 0.5rem;
  --ifm-dropdown-background-color: var(--ifm-background-surface-color);
  --ifm-dropdown-font-weight: var(--ifm-font-weight-semibold);
  --ifm-dropdown-link-color: var(--ifm-font-color-base);
  --ifm-dropdown-hover-background-color: var(--ifm-hover-overlay);
  --ifm-footer-background-color: var(--ifm-color-emphasis-100);
  --ifm-footer-color: inherit;
  --ifm-footer-link-color: var(--ifm-color-emphasis-700);
  --ifm-footer-link-hover-color: var(--ifm-color-primary);
  --ifm-footer-link-horizontal-spacing: 0.5rem;
  --ifm-footer-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 2);
  --ifm-footer-padding-vertical: calc(var(--ifm-spacing-vertical) * 2);
  --ifm-footer-title-color: inherit;
  --ifm-footer-logo-max-width: min(30rem, 90vw);
  --ifm-hero-background-color: var(--ifm-background-surface-color);
  --ifm-hero-text-color: var(--ifm-color-emphasis-800);
  --ifm-menu-color: var(--ifm-color-emphasis-700);
  --ifm-menu-color-active: var(--ifm-color-primary);
  --ifm-menu-color-background-active: var(--ifm-hover-overlay);
  --ifm-menu-color-background-hover: var(--ifm-hover-overlay);
  --ifm-menu-link-padding-horizontal: 0.75rem;
  --ifm-menu-link-padding-vertical: 0.375rem;
  --ifm-menu-link-sublist-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path fill="rgba(0,0,0,0.5)" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>');
  --ifm-menu-link-sublist-icon-filter: none;
  --ifm-navbar-background-color: var(--ifm-background-surface-color);
  --ifm-navbar-height: 3.75rem;
  --ifm-navbar-item-padding-horizontal: 0.75rem;
  --ifm-navbar-item-padding-vertical: 0.25rem;
  --ifm-navbar-link-color: var(--ifm-font-color-base);
  --ifm-navbar-link-hover-color: var(--ifm-color-primary);
  --ifm-navbar-link-active-color: var(--ifm-link-color);
  --ifm-navbar-padding-horizontal: var(--ifm-spacing-horizontal);
  --ifm-navbar-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.5);
  --ifm-navbar-shadow: var(--ifm-global-shadow-lw);
  --ifm-navbar-search-input-background-color: var(--ifm-color-emphasis-200);
  --ifm-navbar-search-input-color: var(--ifm-color-emphasis-800);
  --ifm-navbar-search-input-placeholder-color: var(--ifm-color-emphasis-500);
  --ifm-navbar-search-input-icon: url('data:image/svg+xml;utf8,<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="16px" width="16px"><path d="M6.02945,10.20327a4.17382,4.17382,0,1,1,4.17382-4.17382A4.15609,4.15609,0,0,1,6.02945,10.20327Zm9.69195,4.2199L10.8989,9.59979A5.88021,5.88021,0,0,0,12.058,6.02856,6.00467,6.00467,0,1,0,9.59979,10.8989l4.82338,4.82338a.89729.89729,0,0,0,1.29912,0,.89749.89749,0,0,0-.00087-1.29909Z" /></svg>');
  --ifm-navbar-sidebar-width: 83vw;
  --ifm-pagination-border-radius: var(--ifm-global-radius);
  --ifm-pagination-color-active: var(--ifm-color-primary);
  --ifm-pagination-font-size: 1rem;
  --ifm-pagination-item-active-background: var(--ifm-hover-overlay);
  --ifm-pagination-page-spacing: 0.2em;
  --ifm-pagination-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 1);
  --ifm-pagination-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25);
  --ifm-pagination-nav-border-radius: var(--ifm-global-radius);
  --ifm-pagination-nav-color-hover: var(--ifm-color-primary);
  --ifm-pills-color-active: var(--ifm-color-primary);
  --ifm-pills-color-background-active: var(--ifm-hover-overlay);
  --ifm-pills-spacing: 0.125rem;
  --ifm-tabs-color: var(--ifm-font-color-secondary);
  --ifm-tabs-color-active: var(--ifm-color-primary);
  --ifm-tabs-color-active-border: var(--ifm-tabs-color-active);
  --ifm-tabs-padding-horizontal: 1rem;
  --ifm-tabs-padding-vertical: 1rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

* {
  box-sizing: border-box;
}

html {
  background-color: var(--ifm-background-color);
  color: var(--ifm-font-color-base);
  color-scheme: var(--ifm-color-scheme);
  font: var(--ifm-font-size-base) / var(--ifm-line-height-base)
    var(--ifm-font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  margin: 0;
  word-wrap: break-word;
}

iframe {
  border: 0;
  color-scheme: auto;
}

/* Layout */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.container {
  margin: 0 auto;
  max-width: var(--ifm-container-width);
  padding: 0 var(--ifm-spacing-horizontal);
  width: 100%;
}

.container--fluid {
    max-width: inherit;
  }

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--ifm-spacing-horizontal) * -1);
}

.row--no-gutters {
    margin-left: 0;
    margin-right: 0;
  }

.row--no-gutters > .col {
      padding-left: 0;
      padding-right: 0;
    }

.row--align-top {
    align-items: flex-start;
  }

.row--align-bottom {
    align-items: flex-end;
  }

.row--align-center {
    align-items: center;
  }

.row--align-stretch {
    align-items: stretch;
  }

.row--align-baseline {
    align-items: baseline;
  }

.col {
  --ifm-col-width: 100%;

  flex: 1 0;
  margin-left: 0;
  max-width: var(--ifm-col-width);
  padding: 0 var(--ifm-spacing-horizontal);
  width: 100%;
}

.col[class*='col--'] {
    flex: 0 0 var(--ifm-col-width);
  }

.col--1 {
      --ifm-col-width: calc(1 / 12 * 100%);
    }

.col--offset-1 {
      margin-left: calc(1 / 12 * 100%);
    }

.col--2 {
      --ifm-col-width: calc(2 / 12 * 100%);
    }

.col--offset-2 {
      margin-left: calc(2 / 12 * 100%);
    }

.col--3 {
      --ifm-col-width: calc(3 / 12 * 100%);
    }

.col--offset-3 {
      margin-left: calc(3 / 12 * 100%);
    }

.col--4 {
      --ifm-col-width: calc(4 / 12 * 100%);
    }

.col--offset-4 {
      margin-left: calc(4 / 12 * 100%);
    }

.col--5 {
      --ifm-col-width: calc(5 / 12 * 100%);
    }

.col--offset-5 {
      margin-left: calc(5 / 12 * 100%);
    }

.col--6 {
      --ifm-col-width: calc(6 / 12 * 100%);
    }

.col--offset-6 {
      margin-left: calc(6 / 12 * 100%);
    }

.col--7 {
      --ifm-col-width: calc(7 / 12 * 100%);
    }

.col--offset-7 {
      margin-left: calc(7 / 12 * 100%);
    }

.col--8 {
      --ifm-col-width: calc(8 / 12 * 100%);
    }

.col--offset-8 {
      margin-left: calc(8 / 12 * 100%);
    }

.col--9 {
      --ifm-col-width: calc(9 / 12 * 100%);
    }

.col--offset-9 {
      margin-left: calc(9 / 12 * 100%);
    }

.col--10 {
      --ifm-col-width: calc(10 / 12 * 100%);
    }

.col--offset-10 {
      margin-left: calc(10 / 12 * 100%);
    }

.col--11 {
      --ifm-col-width: calc(11 / 12 * 100%);
    }

.col--offset-11 {
      margin-left: calc(11 / 12 * 100%);
    }

.col--12 {
      --ifm-col-width: calc(12 / 12 * 100%);
    }

.col--offset-12 {
      margin-left: calc(12 / 12 * 100%);
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.margin--none {
      margin: 0 !important;
    }

.margin-top--none {
        margin-top: 0 !important;
      }

.margin-left--none {
        margin-left: 0 !important;
      }

.margin-bottom--none {
        margin-bottom: 0 !important;
      }

.margin-right--none {
        margin-right: 0 !important;
      }

.margin-vert--none {
      margin-bottom: 0 !important;
      margin-top: 0 !important;
    }

.margin-horiz--none {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

.margin--xs {
      margin: 0.25rem !important;
    }

.margin-top--xs {
        margin-top: 0.25rem !important;
      }

.margin-left--xs {
        margin-left: 0.25rem !important;
      }

.margin-bottom--xs {
        margin-bottom: 0.25rem !important;
      }

.margin-right--xs {
        margin-right: 0.25rem !important;
      }

.margin-vert--xs {
      margin-bottom: 0.25rem !important;
      margin-top: 0.25rem !important;
    }

.margin-horiz--xs {
      margin-left: 0.25rem !important;
      margin-right: 0.25rem !important;
    }

.margin--sm {
      margin: 0.5rem !important;
    }

.margin-top--sm {
        margin-top: 0.5rem !important;
      }

.margin-left--sm {
        margin-left: 0.5rem !important;
      }

.margin-bottom--sm {
        margin-bottom: 0.5rem !important;
      }

.margin-right--sm {
        margin-right: 0.5rem !important;
      }

.margin-vert--sm {
      margin-bottom: 0.5rem !important;
      margin-top: 0.5rem !important;
    }

.margin-horiz--sm {
      margin-left: 0.5rem !important;
      margin-right: 0.5rem !important;
    }

.margin--md {
      margin: 1rem !important;
    }

.margin-top--md {
        margin-top: 1rem !important;
      }

.margin-left--md {
        margin-left: 1rem !important;
      }

.margin-bottom--md {
        margin-bottom: 1rem !important;
      }

.margin-right--md {
        margin-right: 1rem !important;
      }

.margin-vert--md {
      margin-bottom: 1rem !important;
      margin-top: 1rem !important;
    }

.margin-horiz--md {
      margin-left: 1rem !important;
      margin-right: 1rem !important;
    }

.margin--lg {
      margin: 2rem !important;
    }

.margin-top--lg {
        margin-top: 2rem !important;
      }

.margin-left--lg {
        margin-left: 2rem !important;
      }

.margin-bottom--lg {
        margin-bottom: 2rem !important;
      }

.margin-right--lg {
        margin-right: 2rem !important;
      }

.margin-vert--lg {
      margin-bottom: 2rem !important;
      margin-top: 2rem !important;
    }

.margin-horiz--lg {
      margin-left: 2rem !important;
      margin-right: 2rem !important;
    }

.margin--xl {
      margin: 5rem !important;
    }

.margin-top--xl {
        margin-top: 5rem !important;
      }

.margin-left--xl {
        margin-left: 5rem !important;
      }

.margin-bottom--xl {
        margin-bottom: 5rem !important;
      }

.margin-right--xl {
        margin-right: 5rem !important;
      }

.margin-vert--xl {
      margin-bottom: 5rem !important;
      margin-top: 5rem !important;
    }

.margin-horiz--xl {
      margin-left: 5rem !important;
      margin-right: 5rem !important;
    }

.padding--none {
      padding: 0 !important;
    }

.padding-top--none {
        padding-top: 0 !important;
      }

.padding-left--none {
        padding-left: 0 !important;
      }

.padding-bottom--none {
        padding-bottom: 0 !important;
      }

.padding-right--none {
        padding-right: 0 !important;
      }

.padding-vert--none {
      padding-bottom: 0 !important;
      padding-top: 0 !important;
    }

.padding-horiz--none {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

.padding--xs {
      padding: 0.25rem !important;
    }

.padding-top--xs {
        padding-top: 0.25rem !important;
      }

.padding-left--xs {
        padding-left: 0.25rem !important;
      }

.padding-bottom--xs {
        padding-bottom: 0.25rem !important;
      }

.padding-right--xs {
        padding-right: 0.25rem !important;
      }

.padding-vert--xs {
      padding-bottom: 0.25rem !important;
      padding-top: 0.25rem !important;
    }

.padding-horiz--xs {
      padding-left: 0.25rem !important;
      padding-right: 0.25rem !important;
    }

.padding--sm {
      padding: 0.5rem !important;
    }

.padding-top--sm {
        padding-top: 0.5rem !important;
      }

.padding-left--sm {
        padding-left: 0.5rem !important;
      }

.padding-bottom--sm {
        padding-bottom: 0.5rem !important;
      }

.padding-right--sm {
        padding-right: 0.5rem !important;
      }

.padding-vert--sm {
      padding-bottom: 0.5rem !important;
      padding-top: 0.5rem !important;
    }

.padding-horiz--sm {
      padding-left: 0.5rem !important;
      padding-right: 0.5rem !important;
    }

.padding--md {
      padding: 1rem !important;
    }

.padding-top--md {
        padding-top: 1rem !important;
      }

.padding-left--md {
        padding-left: 1rem !important;
      }

.padding-bottom--md {
        padding-bottom: 1rem !important;
      }

.padding-right--md {
        padding-right: 1rem !important;
      }

.padding-vert--md {
      padding-bottom: 1rem !important;
      padding-top: 1rem !important;
    }

.padding-horiz--md {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }

.padding--lg {
      padding: 2rem !important;
    }

.padding-top--lg {
        padding-top: 2rem !important;
      }

.padding-left--lg {
        padding-left: 2rem !important;
      }

.padding-bottom--lg {
        padding-bottom: 2rem !important;
      }

.padding-right--lg {
        padding-right: 2rem !important;
      }

.padding-vert--lg {
      padding-bottom: 2rem !important;
      padding-top: 2rem !important;
    }

.padding-horiz--lg {
      padding-left: 2rem !important;
      padding-right: 2rem !important;
    }

.padding--xl {
      padding: 5rem !important;
    }

.padding-top--xl {
        padding-top: 5rem !important;
      }

.padding-left--xl {
        padding-left: 5rem !important;
      }

.padding-bottom--xl {
        padding-bottom: 5rem !important;
      }

.padding-right--xl {
        padding-right: 5rem !important;
      }

.padding-vert--xl {
      padding-bottom: 5rem !important;
      padding-top: 5rem !important;
    }

.padding-horiz--xl {
      padding-left: 5rem !important;
      padding-right: 5rem !important;
    }

/* Content */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

code {
  background-color: var(--ifm-code-background);
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-radius: var(--ifm-code-border-radius);
  font-family: var(--ifm-font-family-monospace);
  font-size: var(--ifm-code-font-size);
  padding: var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal);
  vertical-align: middle;
}

a code {
  color: inherit;
}

pre {
  background-color: var(--ifm-pre-background);
  border-radius: var(--ifm-pre-border-radius);
  color: var(--ifm-pre-color);
  font: var(--ifm-code-font-size) / var(--ifm-pre-line-height)
    var(--ifm-font-family-monospace);
  margin: 0 0 var(--ifm-spacing-vertical);
  overflow: auto;
  padding: var(--ifm-pre-padding);
}

pre code {
    background-color: transparent;
    border: none;
    font-size: 100%;
    line-height: inherit;
    padding: 0;
  }

kbd {
  background-color: var(--ifm-color-emphasis-0);
  border: 1px solid var(--ifm-color-emphasis-400);
  border-radius: 0.2rem;
  box-shadow: inset 0 -1px 0 var(--ifm-color-emphasis-400);
  color: var(--ifm-color-emphasis-800);
  font: 80% var(--ifm-font-family-monospace);
  padding: 0.15rem 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ifm-heading-color);
  font-family: var(--ifm-heading-font-family);
  font-weight: var(--ifm-heading-font-weight);
  line-height: var(--ifm-heading-line-height);
  margin: var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0;
}

h1 {
    font-size: var(--ifm-h1-font-size);
  }

h2 {
    font-size: var(--ifm-h2-font-size);
  }

h3 {
    font-size: var(--ifm-h3-font-size);
  }

h4 {
    font-size: var(--ifm-h4-font-size);
  }

h5 {
    font-size: var(--ifm-h5-font-size);
  }

h6 {
    font-size: var(--ifm-h6-font-size);
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

img {
  max-width: 100%;
}

img[align='right'] {
  padding-left: var(--image-alignment-padding);
}

img[align='left'] {
  padding-right: var(--image-alignment-padding);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.markdown {
  --ifm-h1-vertical-rhythm-top: 3;
  --ifm-h2-vertical-rhythm-top: 2;
  --ifm-h3-vertical-rhythm-top: 1.5;
  --ifm-heading-vertical-rhythm-top: 1.25;

  --ifm-h1-vertical-rhythm-bottom: 1.25;
  --ifm-heading-vertical-rhythm-bottom: 1;
}

.markdown:before {
    content: '';
    display: table;
  }

.markdown:after {
    clear: both;
    content: '';
    display: table;
  }

.markdown > *:last-child {
    margin-bottom: 0 !important;
  }

.markdown h1:first-child {
    --ifm-h1-font-size: 3rem;

    margin-bottom: calc(
      var(--ifm-h1-vertical-rhythm-bottom) * var(--ifm-leading)
    );
  }

.markdown > h2 {
    --ifm-h2-font-size: 2rem;

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(var(--ifm-h2-vertical-rhythm-top) * var(--ifm-leading));
  }

.markdown > h3 {
    --ifm-h3-font-size: 1.5rem;

    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(var(--ifm-h3-vertical-rhythm-top) * var(--ifm-leading));
  }

.markdown > h4,
  .markdown > h5,
  .markdown > h6 {
    margin-bottom: calc(
      var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading)
    );
    margin-top: calc(
      var(--ifm-heading-vertical-rhythm-top) * var(--ifm-leading)
    );
  }

/* Consistent spacing between content paragraphs. */

.markdown > pre,
  .markdown > ul,
  .markdown > p {
    margin-bottom: var(--ifm-leading);
  }

.markdown li {
    word-wrap: break-word;
  }

.markdown li > p {
      margin-top: var(--ifm-list-paragraph-margin);
    }

.markdown li + li {
      margin-top: var(--ifm-list-item-margin);
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Lists */

ul,
ol {
  margin: 0 0 var(--ifm-list-margin);
  padding-left: var(--ifm-list-left-padding);
}

ol ol,
ul ol {
  list-style-type: lower-roman;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0;
}

ul ul ol,
ul ol ol,
ol ul ol,
ol ol ol {
  list-style-type: lower-alpha;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

table {
  border-collapse: collapse;
  display: block;
  margin-bottom: var(--ifm-spacing-vertical);
  overflow: auto;
}

table thead tr {
    border-bottom: 2px solid var(--ifm-table-border-color);
  }

table thead {
    background-color: var(--ifm-table-stripe-background);
  }

table tr {
    background-color: var(--ifm-table-background);
    border-top: var(--ifm-table-border-width) solid
      var(--ifm-table-border-color);
  }

table tr:nth-child(2n) {
    background-color: var(--ifm-table-stripe-background);
  }

table th,
  table td {
    border: var(--ifm-table-border-width) solid var(--ifm-table-border-color);
    padding: var(--ifm-table-cell-padding);
  }

table th {
    background-color: var(--ifm-table-head-background);
    color: var(--ifm-table-head-color);
    font-weight: var(--ifm-table-head-font-weight);
  }

table td {
    color: var(--ifm-table-cell-color);
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

strong {
  font-weight: var(--ifm-font-weight-bold);
}

/* Links */

a {
  color: var(--ifm-link-color);
  /* autoprefixer: ignore next */
  text-decoration: var(--ifm-link-decoration);
  transition: color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
}

a:hover {
    color: var(--ifm-link-hover-color);
    /* autoprefixer: ignore next */
    text-decoration: var(--ifm-link-hover-decoration);
  }

a:not([href]) {
    text-decoration: none;
  }

/* Paragraphs */

p {
  margin: 0 0 var(--ifm-paragraph-margin-bottom);
}

/* Blockquotes */

blockquote {
  border-left: var(--ifm-blockquote-border-left-width) solid
    var(--ifm-blockquote-border-color);
  box-shadow: var(--ifm-blockquote-shadow);
  color: var(--ifm-blockquote-color);
  font-size: var(--ifm-blockquote-font-size);
  margin: 0 0 var(--ifm-spacing-vertical);
  padding: var(--ifm-blockquote-padding-vertical)
    var(--ifm-blockquote-padding-horizontal);
}

blockquote > :first-child {
    margin-top: 0;
  }

blockquote > :last-child {
    margin-bottom: 0;
  }

/* Horizontal Rules */

hr {
  background-color: var(--ifm-hr-background-color);
  border: 0;
  height: var(--ifm-hr-height);
  margin: var(--ifm-hr-margin-vertical) 0;
}

/* Utilities */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.shadow--lw {
    box-shadow: var(--ifm-global-shadow-lw) !important;
  }

.shadow--md {
    box-shadow: var(--ifm-global-shadow-md) !important;
  }

.shadow--tl {
    box-shadow: var(--ifm-global-shadow-tl) !important;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.text--primary {
    color: var(--ifm-color-primary);
  }

.text--secondary {
    color: var(--ifm-color-secondary);
  }

.text--success {
    color: var(--ifm-color-success);
  }

.text--info {
    color: var(--ifm-color-info);
  }

.text--warning {
    color: var(--ifm-color-warning);
  }

.text--danger {
    color: var(--ifm-color-danger);
  }

.text--center {
    text-align: center;
  }

.text--left {
    text-align: left;
  }

.text--justify {
    text-align: justify;
  }

.text--right {
    text-align: right;
  }

.text--capitalize {
    text-transform: capitalize;
  }

.text--lowercase {
    text-transform: lowercase;
  }

.text--uppercase {
    text-transform: uppercase;
  }

.text--light {
    font-weight: var(--ifm-font-weight-light);
  }

.text--normal {
    font-weight: var(--ifm-font-weight-normal);
  }

.text--semibold {
    font-weight: var(--ifm-font-weight-semibold);
  }

.text--bold {
    font-weight: var(--ifm-font-weight-bold);
  }

.text--italic {
  font-style: italic;
}

.text--truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text--break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text--no-decoration,
  .text--no-decoration:hover {
    text-decoration: none;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.clean-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.clean-list {
  list-style: none;
  padding-left: 0;
}

/* Components */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.alert--primary {
      --ifm-alert-background-color: var(
        --ifm-color-primary-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(53, 120, 229, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-primary-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-primary-dark);
    }

.alert--secondary {
      --ifm-alert-background-color: var(
        --ifm-color-secondary-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(235, 237, 240, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-secondary-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-secondary-dark);
    }

.alert--success {
      --ifm-alert-background-color: var(
        --ifm-color-success-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(0, 164, 0, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-success-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-success-dark);
    }

.alert--info {
      --ifm-alert-background-color: var(
        --ifm-color-info-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(84, 199, 236, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-info-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-info-dark);
    }

.alert--warning {
      --ifm-alert-background-color: var(
        --ifm-color-warning-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(255, 186, 0, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-warning-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-warning-dark);
    }

.alert--danger {
      --ifm-alert-background-color: var(
        --ifm-color-danger-contrast-background
      );
      --ifm-alert-background-color-highlight: rgba(250, 56, 62, 0.15);
      --ifm-alert-foreground-color: var(
        --ifm-color-danger-contrast-foreground
      );
      --ifm-alert-border-color: var(--ifm-color-danger-dark);
    }

.alert {

  --ifm-code-background: var(--ifm-alert-background-color-highlight);
  --ifm-link-color: var(--ifm-alert-foreground-color);
  --ifm-link-hover-color: var(--ifm-alert-foreground-color);
  --ifm-link-decoration: underline;
  --ifm-tabs-color: var(--ifm-alert-foreground-color);
  --ifm-tabs-color-active: var(--ifm-alert-foreground-color);
  --ifm-tabs-color-active-border: var(--ifm-alert-border-color);

  background-color: var(--ifm-alert-background-color);
  border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color);
  border-left-width: var(--ifm-alert-border-left-width);
  border-radius: var(--ifm-alert-border-radius);
  box-shadow: var(--ifm-alert-shadow);
  color: var(--ifm-alert-foreground-color);
  padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal);
}

.alert__heading {
    align-items: center;
    display: flex;
    font: bold var(--ifm-h5-font-size) / var(--ifm-heading-line-height)
      var(--ifm-heading-font-family);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

.alert__icon {
    display: inline-flex;
    margin-right: 0.4em;
  }

.alert__icon svg {
      fill: var(--ifm-alert-foreground-color);
      stroke: var(--ifm-alert-foreground-color);
      stroke-width: 0;
    }

.alert .close {
    color: var(--ifm-alert-foreground-color);
    margin: calc(var(--ifm-alert-padding-vertical) * -1)
      calc(var(--ifm-alert-padding-horizontal) * -1) 0 0;

    opacity: 0.75;
  }

.alert .close:hover,
    .alert .close:focus {
      opacity: 1;
    }

.alert a {
    text-decoration-color: var(--ifm-alert-border-color);
  }

.alert a:hover {
      text-decoration-thickness: 2px;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.avatar {
  column-gap: var(--ifm-avatar-intro-margin);
  display: flex;
}

.avatar__photo {
    border-radius: 50%;
    display: block;
    height: var(--ifm-avatar-photo-size);
    overflow: hidden;
    width: var(--ifm-avatar-photo-size);
  }

.avatar__photo--sm {
      --ifm-avatar-photo-size: 2rem;
    }

.avatar__photo--lg {
      --ifm-avatar-photo-size: 4rem;
    }

.avatar__photo--xl {
      --ifm-avatar-photo-size: 6rem;
    }

.avatar__intro {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    justify-content: center;
    text-align: var(--ifm-avatar-intro-alignment);
  }

.avatar__name {
    font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height)
      var(--ifm-font-family-base);
  }

.avatar__subtitle {
    margin-top: 0.25rem;
  }

.avatar--vertical {
    --ifm-avatar-intro-alignment: center;
    --ifm-avatar-intro-margin: 0.5rem;

    align-items: center;
    flex-direction: column;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.badge {
  background-color: var(--ifm-badge-background-color);
  border: var(--ifm-badge-border-width) solid var(--ifm-badge-border-color);
  border-radius: var(--ifm-badge-border-radius);
  color: var(--ifm-badge-color);
  display: inline-block;
  font-size: 75%;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  padding: var(--ifm-badge-padding-vertical) var(--ifm-badge-padding-horizontal);
}

.badge--primary {
      --ifm-badge-background-color: var(--ifm-color-primary);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--secondary {
      --ifm-badge-background-color: var(--ifm-color-secondary);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    color: var(--ifm-color-black);
    }

.badge--success {
      --ifm-badge-background-color: var(--ifm-color-success);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--info {
      --ifm-badge-background-color: var(--ifm-color-info);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--warning {
      --ifm-badge-background-color: var(--ifm-color-warning);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

.badge--danger {
      --ifm-badge-background-color: var(--ifm-color-danger);
      --ifm-badge-border-color: var(--ifm-badge-background-color);
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.breadcrumbs {
  margin-bottom: 0;
  padding-left: 0;
}

.breadcrumbs__item {
    display: inline-block;
  }

.breadcrumbs__item:not(:last-child):after {
      background: var(--ifm-breadcrumb-separator) center;
      content: ' ';
      display: inline-block;
      filter: var(--ifm-breadcrumb-separator-filter);
      height: calc(
        var(--ifm-breadcrumb-separator-size) *
          var(--ifm-breadcrumb-size-multiplier) *
          var(--ifm-breadcrumb-separator-size-multiplier)
      );
      margin: 0 var(--ifm-breadcrumb-spacing);
      opacity: 0.5;
      width: calc(
        var(--ifm-breadcrumb-separator-size) *
          var(--ifm-breadcrumb-size-multiplier) *
          var(--ifm-breadcrumb-separator-size-multiplier)
      );
      /*rtl:raw:
      transform: rotate(180deg);
      */
    }

.breadcrumbs__item--active .breadcrumbs__link {
        background: var(--ifm-breadcrumb-item-background-active);
        color: var(--ifm-breadcrumb-color-active);
      }

.breadcrumbs__link {
    border-radius: var(--ifm-breadcrumb-border-radius);
    color: var(--ifm-font-color-base);
    display: inline-block;
    font-size: calc(1rem * var(--ifm-breadcrumb-size-multiplier));
    padding: calc(
        var(--ifm-breadcrumb-padding-vertical) *
          var(--ifm-breadcrumb-size-multiplier)
      )
      calc(
        var(--ifm-breadcrumb-padding-horizontal) *
          var(--ifm-breadcrumb-size-multiplier)
      );
    transition-property: background, color;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: var(--ifm-transition-timing-default);
  }

.breadcrumbs__link:link:hover, .breadcrumbs__link:visited:hover, area[href].breadcrumbs__link:hover {
      background: var(--ifm-breadcrumb-item-background-active);
      text-decoration: none;
    }

.breadcrumbs__link:any-link:hover {
      background: var(--ifm-breadcrumb-item-background-active);
      text-decoration: none;
    }

.breadcrumbs--sm {
    --ifm-breadcrumb-size-multiplier: 0.8;
  }

.breadcrumbs--lg {
    --ifm-breadcrumb-size-multiplier: 1.2;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.button {
  background-color: var(--ifm-button-background-color);
  border: var(--ifm-button-border-width) solid var(--ifm-button-border-color);
  border-radius: var(--ifm-button-border-radius);
  color: var(--ifm-button-color);
  cursor: pointer;
  display: inline-block;
  font-size: calc(0.875rem * var(--ifm-button-size-multiplier));
  font-weight: var(--ifm-button-font-weight);
  line-height: 1.5;
  padding: calc(
      var(--ifm-button-padding-vertical) * var(--ifm-button-size-multiplier)
    )
    calc(
      var(--ifm-button-padding-horizontal) * var(--ifm-button-size-multiplier)
    );
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  transition-property: color, background, border-color;
  transition-duration: var(--ifm-button-transition-duration);
  transition-timing-function: var(--ifm-transition-timing-default);
}

.button:hover {
    color: var(--ifm-button-color); /* Override for button links. */
    text-decoration: none;
  }

.button--outline {
    --ifm-button-background-color: transparent;
    --ifm-button-color: var(--ifm-button-border-color);
  }

.button--outline:hover {
      --ifm-button-background-color: var(--ifm-button-border-color);
    }

.button--outline:hover,
    .button--outline:active,
    .button--outline.button--active {
      --ifm-button-color: var(--ifm-font-color-base-inverse);
    }

.button--link {
    --ifm-button-background-color: transparent;
    --ifm-button-border-color: transparent;

    color: var(--ifm-link-color);
    /* autoprefixer: ignore next */
    text-decoration: var(--ifm-link-decoration);
  }

.button--link:hover,
    .button--link:active,
    .button--link.button--active {
      color: var(--ifm-link-hover-color);
      /* autoprefixer: ignore next */
      text-decoration: var(--ifm-link-hover-decoration);
    }

.button.disabled,
  .button:disabled,
  .button[disabled] {
    opacity: 0.65;
    pointer-events: none;
  }

.button--sm {
    --ifm-button-size-multiplier: 0.8;
  }

.button--lg {
    --ifm-button-size-multiplier: 1.35;
  }

.button--block {
    display: block;
    width: 100%;
  }

.button.button--secondary {
    color: var(--ifm-color-gray-900);
  }

.button.button--secondary.button--outline:not(.button--active):not(:hover) {
      color: var(--ifm-font-color-base);
    }

:where(.button--primary) {
      --ifm-button-background-color: var(--ifm-color-primary);
      --ifm-button-border-color: var(--ifm-color-primary);
    }

:where(.button--primary):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-primary-dark);
        --ifm-button-border-color: var(--ifm-color-primary-dark);
      }

.button--primary:active,
      .button--primary.button--active {
        --ifm-button-background-color: var(--ifm-color-primary-darker);
        --ifm-button-border-color: var(--ifm-color-primary-darker);
      }

:where(.button--secondary) {
      --ifm-button-background-color: var(--ifm-color-secondary);
      --ifm-button-border-color: var(--ifm-color-secondary);
    }

:where(.button--secondary):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-secondary-dark);
        --ifm-button-border-color: var(--ifm-color-secondary-dark);
      }

.button--secondary:active,
      .button--secondary.button--active {
        --ifm-button-background-color: var(--ifm-color-secondary-darker);
        --ifm-button-border-color: var(--ifm-color-secondary-darker);
      }

:where(.button--success) {
      --ifm-button-background-color: var(--ifm-color-success);
      --ifm-button-border-color: var(--ifm-color-success);
    }

:where(.button--success):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-success-dark);
        --ifm-button-border-color: var(--ifm-color-success-dark);
      }

.button--success:active,
      .button--success.button--active {
        --ifm-button-background-color: var(--ifm-color-success-darker);
        --ifm-button-border-color: var(--ifm-color-success-darker);
      }

:where(.button--info) {
      --ifm-button-background-color: var(--ifm-color-info);
      --ifm-button-border-color: var(--ifm-color-info);
    }

:where(.button--info):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-info-dark);
        --ifm-button-border-color: var(--ifm-color-info-dark);
      }

.button--info:active,
      .button--info.button--active {
        --ifm-button-background-color: var(--ifm-color-info-darker);
        --ifm-button-border-color: var(--ifm-color-info-darker);
      }

:where(.button--warning) {
      --ifm-button-background-color: var(--ifm-color-warning);
      --ifm-button-border-color: var(--ifm-color-warning);
    }

:where(.button--warning):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-warning-dark);
        --ifm-button-border-color: var(--ifm-color-warning-dark);
      }

.button--warning:active,
      .button--warning.button--active {
        --ifm-button-background-color: var(--ifm-color-warning-darker);
        --ifm-button-border-color: var(--ifm-color-warning-darker);
      }

:where(.button--danger) {
      --ifm-button-background-color: var(--ifm-color-danger);
      --ifm-button-border-color: var(--ifm-color-danger);
    }

:where(.button--danger):not(.button--outline):hover {
        --ifm-button-background-color: var(--ifm-color-danger-dark);
        --ifm-button-border-color: var(--ifm-color-danger-dark);
      }

.button--danger:active,
      .button--danger.button--active {
        --ifm-button-background-color: var(--ifm-color-danger-darker);
        --ifm-button-border-color: var(--ifm-color-danger-darker);
      }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.button-group {
  display: inline-flex;
  gap: var(--ifm-button-group-spacing);
}

.button-group > .button:not(:first-child) {
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
    }

.button-group > .button:not(:last-child) {
      border-bottom-right-radius: 0;
      border-top-right-radius: 0;
    }

.button-group--block {
    display: flex;
    justify-content: stretch;
  }

.button-group--block > .button {
      flex-grow: 1;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.card {
  background-color: var(--ifm-card-background-color);
  border-radius: var(--ifm-card-border-radius);
  box-shadow: var(--ifm-global-shadow-lw);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Because of border-radius. */

.card--full-height {
    height: 100%;
  }

.card__image {
    padding-top: var(--ifm-card-vertical-spacing);
  }

.card__image:first-child {
      padding-top: 0;
    }

.card__header,
  .card__body,
  .card__footer {
    padding: var(--ifm-card-vertical-spacing) var(--ifm-card-horizontal-spacing);
  }

.card__header:not(:last-child), .card__body:not(:last-child), .card__footer:not(:last-child) {
      padding-bottom: 0;
    }

.card__header > :last-child, .card__body > :last-child, .card__footer > :last-child {
      margin-bottom: 0;
    }

.card__footer {
    margin-top: auto; /* Pushes the footer to the bottom of the card. */
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.table-of-contents {
  font-size: 0.8rem;
  margin-bottom: 0;
  padding: var(--ifm-toc-padding-vertical) 0;
}

.table-of-contents,
  .table-of-contents ul {
    list-style: none;
    padding-left: var(--ifm-toc-padding-horizontal);
  }

.table-of-contents li {
    margin: var(--ifm-toc-padding-vertical) var(--ifm-toc-padding-horizontal);
  }

.table-of-contents__left-border {
    border-left: 1px solid var(--ifm-toc-border-color);
  }

.table-of-contents__link {
    color: var(--ifm-toc-link-color);
    display: block;
  }

.table-of-contents__link:hover,
    .table-of-contents__link:hover code,
    .table-of-contents__link--active,
    .table-of-contents__link--active code {
      color: var(--ifm-color-primary);
      text-decoration: none;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.close {
  color: var(--ifm-color-black);
  float: right;
  font-size: 1.5rem;
  font-weight: var(--ifm-font-weight-bold);
  line-height: 1;
  opacity: 0.5;
  padding: 1rem;
  transition: opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default);
}

.close:hover {
    opacity: 0.7;
  }

.close:focus {
    opacity: 0.8;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.dropdown {
  display: inline-flex;
  font-weight: var(--ifm-dropdown-font-weight);
  position: relative;
  vertical-align: top;
}

.dropdown--hoverable:hover .dropdown__menu, .dropdown--show .dropdown__menu {
      opacity: 1;
      pointer-events: all;
      transform: translateY(-1px);
      visibility: visible;
    }

.dropdown--right .dropdown__menu {
      left: inherit;
      right: 0;
    }

.dropdown--nocaret .navbar__link:after {
    content: none !important;
  }

.dropdown__menu {
    background-color: var(--ifm-dropdown-background-color);
    border-radius: var(--ifm-global-radius);
    box-shadow: var(--ifm-global-shadow-md);
    left: 0;
    list-style: none;
    max-height: 80vh;
    min-width: 10rem;
    opacity: 0;
    overflow-y: auto;
    padding: 0.5rem;
    pointer-events: none;
    position: absolute;
    top: calc(100% - var(--ifm-navbar-item-padding-vertical) + 0.3rem);
    transform: translateY(-0.625rem);
    visibility: hidden;
    z-index: var(--ifm-z-index-dropdown);
    transition-property: opacity, transform, visibility;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: var(--ifm-transition-timing-default);
  }

.dropdown__link {
    border-radius: 0.25rem;
    color: var(--ifm-dropdown-link-color);
    display: block;
    font-size: 0.875rem;
    margin-top: 0.2rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
  }

.dropdown__link:hover,
    .dropdown__link--active {
      background-color: var(--ifm-dropdown-hover-background-color);
      color: var(--ifm-dropdown-link-color);
      text-decoration: none;
    }

.dropdown__link--active,
    .dropdown__link--active:hover {
      --ifm-dropdown-link-color: var(--ifm-link-color);
    }

.dropdown > .navbar__link:after {
    border-color: currentColor transparent;
    border-style: solid;
    border-width: 0.4em 0.4em 0;
    content: '';
    display: inline-block;
    margin-left: 0.3em;
    position: relative;
    top: 2px;
    transform: translateY(-50%);
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.footer {
  background-color: var(--ifm-footer-background-color);
  color: var(--ifm-footer-color);
  padding: var(--ifm-footer-padding-vertical)
    var(--ifm-footer-padding-horizontal);
}

.footer--dark {
    --ifm-footer-background-color: #303846;
    --ifm-footer-color: var(--ifm-footer-link-color);
    --ifm-footer-link-color: var(--ifm-color-secondary);
    --ifm-footer-title-color: var(--ifm-color-white);
  }

.footer__links {
    margin-bottom: 1rem;
  }

.footer__link-item {
    color: var(--ifm-footer-link-color);
    line-height: 2;
  }

.footer__link-item:hover {
      color: var(--ifm-footer-link-hover-color);
    }

.footer__link-separator {
    margin: 0 var(--ifm-footer-link-horizontal-spacing);
  }

.footer__logo {
    margin-top: 1rem;
    max-width: var(--ifm-footer-logo-max-width);
  }

.footer__title {
    color: var(--ifm-footer-title-color);
    font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height)
      var(--ifm-font-family-base);
    margin-bottom: var(--ifm-heading-margin-bottom);
  }

.footer__item {
    margin-top: 0;
  }

.footer__items {
    margin-bottom: 0;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

[type='checkbox'] {
  padding: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.hero {
  align-items: center;
  background-color: var(--ifm-hero-background-color);
  color: var(--ifm-hero-text-color);
  display: flex;
  padding: 4rem 2rem;
}

.hero--primary {
    --ifm-hero-background-color: var(--ifm-color-primary);
    --ifm-hero-text-color: var(--ifm-font-color-base-inverse);
  }

.hero--dark {
    --ifm-hero-background-color: #303846;
    --ifm-hero-text-color: var(--ifm-color-white);
  }

.hero__title {
    font-size: 3rem;
  }

.hero__subtitle {
    font-size: 1.5rem;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.menu {
  font-weight: var(--ifm-font-weight-semibold);
  overflow-x: hidden;
}

.menu__list {
    list-style: none;
    margin: 0;
    padding-left: 0;
  }

/* Non-top level menus */

.menu__list .menu__list {
      flex: 0 0 100%;
      margin-top: 0.25rem;
      padding-left: var(--ifm-menu-link-padding-horizontal);
    }

.menu__list-item:not(:first-child) {
      margin-top: 0.25rem;
    }

.menu__list-item--collapsed .menu__list {
        height: 0;
        overflow: hidden;
      }

.menu__list-item--collapsed .menu__link--sublist:after,
      .menu__list-item--collapsed .menu__caret:before {
        transform: rotateZ(90deg);
      }

.menu__list-item-collapsible {
      flex-wrap: wrap;
      position: relative;
      border-radius: 0.25rem;
      display: flex;
      transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
    }

.menu__list-item-collapsible:hover {
    background: var(--ifm-menu-color-background-hover);
  }

.menu__list-item-collapsible--active {
        background: var(--ifm-menu-color-background-hover);
      }

.menu__list-item-collapsible .menu__link:hover,
        .menu__list-item-collapsible .menu__link--active {
          background: none !important;
        }

.menu__link,
  .menu__caret {
    align-items: center;
    border-radius: 0.25rem;
    display: flex;
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.menu__link:hover, .menu__caret:hover {
    background: var(--ifm-menu-color-background-hover);
  }

.menu__link {
    color: var(--ifm-menu-color);
    flex: 1;
    line-height: 1.25;
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }

.menu__link:hover {
      text-decoration: none;
      color: var(--ifm-menu-color);
      transition: color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
    }

.menu__link--sublist-caret:after {
      content: '';
      margin-left: auto;
      min-width: 1.25rem;
      background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
      filter: var(--ifm-menu-link-sublist-icon-filter);
      height: 1.25rem;
      transform: rotate(180deg);
      width: 1.25rem;
      transition: transform var(--ifm-transition-fast) linear;
    }

.menu__link--active {
      color: var(--ifm-menu-color-active);
    }

.menu__link--active:hover {
        color: var(--ifm-menu-color-active);
      }

.menu__link--active:not(.menu__link--sublist) {
        background-color: var(--ifm-menu-color-background-active);
      }

.menu__caret {
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }

.menu__caret:before {
      content: '';
      background: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem;
      filter: var(--ifm-menu-link-sublist-icon-filter);
      height: 1.25rem;
      transform: rotate(180deg);
      width: 1.25rem;
      transition: transform var(--ifm-transition-fast) linear;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

html[data-theme='dark'],
.navbar--dark {
  --ifm-menu-link-sublist-icon-filter: invert(100%) sepia(94%) saturate(17%)
    hue-rotate(223deg) brightness(104%) contrast(98%);
}

.navbar {
  background-color: var(--ifm-navbar-background-color);
  box-shadow: var(--ifm-navbar-shadow);
  display: flex;
  height: var(--ifm-navbar-height);
  padding: var(--ifm-navbar-padding-vertical)
    var(--ifm-navbar-padding-horizontal);
}

.navbar > .container,
  .navbar > .container-fluid {
    display: flex;
  }

.navbar--fixed-top {
    position: sticky;
    top: 0;
    z-index: var(--ifm-z-index-fixed);
  }

.navbar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

.navbar__brand {
    align-items: center;
    color: var(--ifm-navbar-link-color);
    display: flex;
    margin-right: 1rem;
    min-width: 0;
  }

.navbar__brand:hover {
      color: var(--ifm-navbar-link-hover-color);
      text-decoration: none;
    }

.navbar__title {
    flex: 1 1 auto;
  }

.navbar__toggle {
    display: none;
    margin-right: 0.5rem;
  }

.navbar__logo {
    flex: 0 0 auto;
    height: 2rem;
    margin-right: 0.5rem;
  }

.navbar__logo img {
      height: 100%;
    }

.navbar__items {
    align-items: center;
    display: flex;
    flex: 1;
    min-width: 0;
  }

.navbar__items--center {
      flex: 0 0 auto;
    }

.navbar__items--center .navbar__brand {
        margin: 0;
      }

.navbar__items--center + .navbar__items--right {
        flex: 1;
      }

.navbar__items--right {
      flex: 0 0 auto;
      justify-content: flex-end;
    }

.navbar__items--right > :last-child {
        padding-right: 0;
      }

.navbar__item {
    display: inline-block;
    padding: var(--ifm-navbar-item-padding-vertical)
      var(--ifm-navbar-item-padding-horizontal);
  }

.navbar__item.dropdown .navbar__link:not([href]) {
        pointer-events: none;
      }

.navbar__link {
    color: var(--ifm-navbar-link-color);
    font-weight: var(--ifm-font-weight-semibold);
  }

.navbar__link:hover,
    .navbar__link--active {
      color: var(--ifm-navbar-link-hover-color);
      text-decoration: none;
    }

.navbar--dark,
  .navbar--primary {
    --ifm-menu-color: var(--ifm-color-gray-300);
    --ifm-navbar-link-color: var(--ifm-color-gray-100);
    --ifm-navbar-search-input-background-color: rgba(255, 255, 255, 0.1);
    --ifm-navbar-search-input-placeholder-color: rgba(255, 255, 255, 0.5);

    color: var(--ifm-color-white);
  }

.navbar--dark {
    --ifm-navbar-background-color: #242526;
    --ifm-navbar-link-hover-color: var(--ifm-color-primary);
    --ifm-menu-color-background-active: rgba(255, 255, 255, 0.05);
    --ifm-navbar-search-input-color: var(--ifm-color-white);
  }

.navbar--primary {
    --ifm-navbar-background-color: var(--ifm-color-primary);
    --ifm-navbar-link-hover-color: var(--ifm-color-white);
    --ifm-menu-color-active: var(--ifm-color-white);
    --ifm-navbar-search-input-color: var(--ifm-color-emphasis-500);
  }

.navbar__search-input {
      -webkit-appearance: none;
              appearance: none; /* Algolia will add type="search" to the input in Safari and Safari's styling will override the styling here. */
      background: var(--ifm-navbar-search-input-background-color)
        var(--ifm-navbar-search-input-icon) no-repeat 0.75rem center / 1rem 1rem;
      border: none;
      border-radius: 2rem;
      color: var(--ifm-navbar-search-input-color);
      cursor: text;
      display: inline-block;
      font-size: 0.9rem;
      height: 2rem;
      padding: 0 0.5rem 0 2.25rem;
      width: 12.5rem;
    }

.navbar__search-input::placeholder {
        color: var(--ifm-navbar-search-input-placeholder-color);
      }

.navbar-sidebar {
    background-color: var(--ifm-navbar-background-color);
    bottom: 0;
    box-shadow: var(--ifm-global-shadow-md);
    left: 0;
    opacity: 0;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
    width: var(--ifm-navbar-sidebar-width);
    transition-property: opacity, visibility, transform;
    transition-duration: var(--ifm-transition-fast);
    transition-timing-function: ease-in-out;
  }

.navbar-sidebar--show .navbar-sidebar,
      .navbar-sidebar--show .navbar-sidebar__backdrop {
        opacity: 1;
        visibility: visible;
      }

.navbar-sidebar--show .navbar-sidebar {
        transform: translate3d(0, 0, 0);
      }

.navbar-sidebar__backdrop {
      background-color: rgba(0, 0, 0, 0.6);
      bottom: 0;
      left: 0;
      opacity: 0;
      position: fixed;
      right: 0;
      top: 0;
      visibility: hidden;
      transition-property: opacity, visibility;
      transition-duration: var(--ifm-transition-fast);
      transition-timing-function: ease-in-out;
    }

.navbar-sidebar__brand {
      align-items: center;
      box-shadow: var(--ifm-navbar-shadow);
      display: flex;
      flex: 1;
      height: var(--ifm-navbar-height);
      padding: var(--ifm-navbar-padding-vertical)
        var(--ifm-navbar-padding-horizontal);
    }

.navbar-sidebar__items {
      display: flex;
      height: calc(100% - var(--ifm-navbar-height));
      transform: translateZ(0);
      transition: transform var(--ifm-transition-fast) ease-in-out;
    }

.navbar-sidebar__items--show-secondary {
        transform: translate3d(
          calc((var(--ifm-navbar-sidebar-width)) * -1),
          0,
          0
        );
      }

.navbar-sidebar__item {
      flex-shrink: 0;
      padding: 0.5rem;
      width: calc(var(--ifm-navbar-sidebar-width));
    }

.navbar-sidebar__back {
      background: var(--ifm-menu-color-background-active);
      font-size: 15px;
      font-weight: var(--ifm-button-font-weight);
      margin: 0 0 0.2rem -0.5rem;
      padding: 0.6rem 1.5rem;
      position: relative;
      text-align: left;
      top: -0.5rem;
      width: calc(100% + 1rem);
    }

.navbar-sidebar__close {
      display: flex;
      margin-left: auto;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.pagination {
  column-gap: var(--ifm-pagination-page-spacing);
  display: flex;
  font-size: var(--ifm-pagination-font-size);
  padding-left: 0;
}

.pagination--sm {
    --ifm-pagination-font-size: 0.8rem;
    --ifm-pagination-padding-horizontal: 0.8rem;
    --ifm-pagination-padding-vertical: 0.2rem;
  }

.pagination--lg {
    --ifm-pagination-font-size: 1.2rem;
    --ifm-pagination-padding-horizontal: 1.2rem;
    --ifm-pagination-padding-vertical: 0.3rem;
  }

.pagination__item {
    display: inline-flex;
  }

.pagination__item > span {
      padding: var(--ifm-pagination-padding-vertical);
    }

.pagination__item--active .pagination__link {
        background: var(--ifm-pagination-item-active-background);
        color: var(--ifm-pagination-color-active);
      }

.pagination__item:not(.pagination__item--active):hover .pagination__link {
        background: var(--ifm-pagination-item-active-background);
      }

.pagination__item--disabled,
    .pagination__item[disabled] {
      opacity: 0.25;
      pointer-events: none;
    }

.pagination__link {
    border-radius: var(--ifm-pagination-border-radius);
    color: var(--ifm-font-color-base);
    display: inline-block;
    padding: var(--ifm-pagination-padding-vertical)
      var(--ifm-pagination-padding-horizontal);
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pagination__link:hover {
      text-decoration: none;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.pagination-nav {
  display: grid;
  grid-gap: var(--ifm-spacing-horizontal);
  gap: var(--ifm-spacing-horizontal);
  grid-template-columns: repeat(2, 1fr);
}

.pagination-nav__link {
    border: 1px solid var(--ifm-color-emphasis-300);
    border-radius: var(--ifm-pagination-nav-border-radius);
    display: block;
    height: 100%;
    line-height: var(--ifm-heading-line-height);
    padding: var(--ifm-global-spacing);
    transition: border-color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pagination-nav__link:hover {
      border-color: var(--ifm-pagination-nav-color-hover);
      text-decoration: none;
    }

.pagination-nav__link--next {
      grid-column: 2/3;
      text-align: right;
    }

.pagination-nav__label {
    font-size: var(--ifm-h4-font-size);
    font-weight: var(--ifm-heading-font-weight);
    word-break: break-word;
  }

.pagination-nav__link--prev .pagination-nav__label::before {
      content: '« ';
    }

.pagination-nav__link--next .pagination-nav__label::after {
      content: ' »';
    }

.pagination-nav__sublabel {
    color: var(--ifm-color-content-secondary);
    font-size: var(--ifm-h5-font-size);
    font-weight: var(--ifm-font-weight-semibold);
    margin-bottom: 0.25rem;
  }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.pills {
  display: flex;
  gap: var(--ifm-pills-spacing);
  padding-left: 0;
}

.pills__item {
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-block;
    font-weight: var(--ifm-font-weight-bold);
    padding: 0.25rem 1rem;
    transition: background var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.pills__item--active {
      background: var(--ifm-pills-color-background-active);
      color: var(--ifm-pills-color-active);
    }

.pills__item:not(.pills__item--active):hover {
      background: var(--ifm-pills-color-background-active);
    }

.pills--block {
    justify-content: stretch;
  }

.pills--block .pills__item {
      flex-grow: 1;
      text-align: center;
    }

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tabs {
  color: var(--ifm-tabs-color);
  display: flex;
  font-weight: var(--ifm-font-weight-bold);
  margin-bottom: 0;
  overflow-x: auto;
  padding-left: 0;
}

.tabs__item {
    border-bottom: 3px solid transparent;
    border-radius: var(--ifm-global-radius);
    cursor: pointer;
    display: inline-flex;
    padding: var(--ifm-tabs-padding-vertical) var(--ifm-tabs-padding-horizontal);
    transition: background-color var(--ifm-transition-fast) var(--ifm-transition-timing-default);
  }

.tabs__item--active {
      border-bottom-color: var(--ifm-tabs-color-active-border);
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      color: var(--ifm-tabs-color-active);
    }

.tabs__item:hover {
      background-color: var(--ifm-hover-overlay);
    }

.tabs--block {
    justify-content: stretch;
  }

.tabs--block .tabs__item {
      flex-grow: 1;
      justify-content: center;
    }

/* Mode */

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

html[data-theme='dark'] {
  --ifm-color-scheme: dark;

  --ifm-color-emphasis-0: var(--ifm-color-gray-1000);
  --ifm-color-emphasis-100: var(--ifm-color-gray-900);
  --ifm-color-emphasis-200: var(--ifm-color-gray-800);
  --ifm-color-emphasis-300: var(--ifm-color-gray-700);
  --ifm-color-emphasis-400: var(--ifm-color-gray-600);
  --ifm-color-emphasis-500: var(--ifm-color-gray-500);
  --ifm-color-emphasis-600: var(--ifm-color-gray-400);
  --ifm-color-emphasis-700: var(--ifm-color-gray-300);
  --ifm-color-emphasis-800: var(--ifm-color-gray-200);
  --ifm-color-emphasis-900: var(--ifm-color-gray-100);
  --ifm-color-emphasis-1000: var(--ifm-color-gray-0);

  --ifm-background-color: #1b1b1d;
  --ifm-background-surface-color: #242526;

  --ifm-hover-overlay: rgba(255, 255, 255, 0.05);

  --ifm-color-content: #e3e3e3;
  --ifm-color-content-secondary: rgba(255, 255, 255, 1);

  --ifm-breadcrumb-separator-filter: invert(64%) sepia(11%) saturate(0%)
    hue-rotate(149deg) brightness(99%) contrast(95%);

  --ifm-code-background: rgba(255, 255, 255, 0.1);

  --ifm-scrollbar-track-background-color: #444444;
  --ifm-scrollbar-thumb-background-color: #686868;
  --ifm-scrollbar-thumb-hover-background-color: #7a7a7a;

  --ifm-table-stripe-background: rgba(255, 255, 255, 0.07);

  --ifm-toc-border-color: var(--ifm-color-emphasis-200);
    --ifm-color-primary-contrast-background: rgb(16, 36, 69);
    --ifm-color-primary-contrast-foreground: rgb(235, 242, 252);
    --ifm-color-secondary-contrast-background: rgb(71, 71, 72);
    --ifm-color-secondary-contrast-foreground: rgb(253, 253, 254);
    --ifm-color-success-contrast-background: rgb(0, 49, 0);
    --ifm-color-success-contrast-foreground: rgb(230, 246, 230);
    --ifm-color-info-contrast-background: rgb(25, 60, 71);
    --ifm-color-info-contrast-foreground: rgb(238, 249, 253);
    --ifm-color-warning-contrast-background: rgb(77, 56, 0);
    --ifm-color-warning-contrast-foreground: rgb(255, 248, 230);
    --ifm-color-danger-contrast-background: rgb(75, 17, 19);
    --ifm-color-danger-contrast-foreground: rgb(255, 235, 236)
}

@media (min-width: 1440px) {
    .container {
      max-width: var(--ifm-container-width-xl);
    }
}

@media (max-width: 996px) {
    .col {
      --ifm-col-width: 100%;
      flex-basis: var(--ifm-col-width);
      margin-left: 0;
    }

.footer {
    --ifm-footer-padding-horizontal: 0
}

    .footer__link-separator {
      display: none;
    }

    .footer__col {
      margin-bottom: calc(var(--ifm-spacing-vertical) * 3);
    }

    .footer__link-item {
      display: block;
    }

.hero {
    padding-left: 0;
    padding-right: 0
}

.navbar > .container,
  .navbar > .container-fluid {
      padding: 0
  }

.navbar__toggle {
      display: inherit
  }

.navbar__item {
      display: none
  }

.navbar__search-input {
        width: 9rem
    }

.pills--block {
      flex-direction: column
  }

.tabs--block {
      flex-direction: column
  }
}

@media (max-width: 576px) {
    .markdown h1:first-child {
      --ifm-h1-font-size: 2rem;
    }
    .markdown > h2 {
      --ifm-h2-font-size: 1.5rem;
    }
    .markdown > h3 {
      --ifm-h3-font-size: 1.25rem;
    }
}

@media (pointer: fine) {
  .thin-scrollbar {
    scrollbar-width: thin;
  }
  .thin-scrollbar::-webkit-scrollbar {
    height: var(--ifm-scrollbar-size);
    width: var(--ifm-scrollbar-size);
  }
  .thin-scrollbar::-webkit-scrollbar-track {
    background: var(--ifm-scrollbar-track-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb {
    background: var(--ifm-scrollbar-thumb-background-color);
    border-radius: 10px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--ifm-scrollbar-thumb-hover-background-color);
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --ifm-transition-fast: 0ms;
    --ifm-transition-slow: 0ms;
  }
}

@media print {

.table-of-contents {
    display: none
}

.footer {
    display: none
}

.menu {
    display: none
}

.navbar {
    display: none
}

.pagination-nav {
    display: none
}

.tabs {
    page-break-inside: avoid
}
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/**
 * Styles for NProgress
 * Copied over to remove unused styles for the spinner.
 * https://github.com/rstacruz/nprogress/blob/master/nprogress.css
 */

:root {
  --docusaurus-progress-bar-color: var(--ifm-color-primary);
}

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: var(--docusaurus-progress-bar-color);
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

#nprogress .peg {
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px var(--docusaurus-progress-bar-color),
    0 0 5px var(--docusaurus-progress-bar-color);
  opacity: 1;
  transform: rotate(3deg) translate(0, -4px);
}

:root{--ifm-color-primary: #ec305d;--ifm-color-secondary: #aaaaaa;--ifm-color-primary-dark: #ea1649;--ifm-color-primary-darker: #dd1444;--ifm-color-primary-darkest: #b61138;--ifm-color-primary-light: #ee4a71;--ifm-color-primary-lighter: #f0577c;--ifm-color-primary-lightest: #f37e9a;--ifm-code-font-size: 85%}.docusaurus-highlight-code-line{background-color:rgba(0,0,0,.15);display:block;margin:0 calc(-1*var(--ifm-pre-padding));padding:0 var(--ifm-pre-padding)}html[data-theme=dark] .docusaurus-highlight-code-line{background-color:rgba(0,0,0,.25)}.prism-code{counter-reset:line-number}.prism-code.language-ts .token-line::before,.prism-code.language-javascript .token-line::before{counter-increment:line-number;content:counter(line-number);margin-right:calc(var(--ifm-pre-padding)*1.1);text-align:right;min-width:1.1rem;display:inline-block;opacity:.3;position:sticky;left:var(--ifm-pre-padding)}
html.landing-page-only[data-theme=dark],html.landing-page-only[data-theme=light]{background-color:#f6f4fe}html.landing-page-only[data-theme=dark] .nav-pills .nav-link.industries-tabs-button,html.landing-page-only[data-theme=light] .nav-pills .nav-link.industries-tabs-button{color:#000}html.landing-page-only{/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */}html.landing-page-only :root{--blue: #897fd4;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #ffffff;--gray: #a6a8b7;--gray-dark: #444452;--primary: #ed3b42;--secondary: #a6a8b7;--success: #52cf6e;--info: #897fd4;--warning: #ffc107;--danger: #dc3545;--light: #fafaff;--dark: #444452;--blue: #897fd4;--transparent: rgba(0, 0, 0, 0);--white: #ffffff;--white-100: #f9f9fd;--gray-100: #fafaff;--gray-200: #f7f7fc;--gray-300: #f2f1f7;--gray-400: #e7e8f3;--gray-500: #cccedc;--gray-600: #a6a8b7;--gray-700: #6c6e82;--gray-800: #444452;--gray-900: #393946;--gray-1000: #23242d;--black: #2f303b;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1152px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}html.landing-page-only *,html.landing-page-only *::before,html.landing-page-only *::after{box-sizing:border-box}html.landing-page-only html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(47,48,59,0)}html.landing-page-only article,html.landing-page-only aside,html.landing-page-only figcaption,html.landing-page-only figure,html.landing-page-only footer,html.landing-page-only header,html.landing-page-only hgroup,html.landing-page-only main,html.landing-page-only nav,html.landing-page-only section{display:block}html.landing-page-only body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:500;line-height:1.5;color:#393946;text-align:left;background-color:#fff}html.landing-page-only [tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}html.landing-page-only hr{box-sizing:content-box;height:0;overflow:visible}html.landing-page-only h1,html.landing-page-only h2,html.landing-page-only h3,html.landing-page-only h4,html.landing-page-only h5,html.landing-page-only h6{margin-top:0;margin-bottom:.5rem}html.landing-page-only p{margin-top:0;margin-bottom:1rem}html.landing-page-only abbr[title],html.landing-page-only abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}html.landing-page-only address{margin-bottom:1rem;font-style:normal;line-height:inherit}html.landing-page-only ol,html.landing-page-only ul,html.landing-page-only dl{margin-top:0;margin-bottom:1rem}html.landing-page-only ol ol,html.landing-page-only ul ul,html.landing-page-only ol ul,html.landing-page-only ul ol{margin-bottom:0}html.landing-page-only dt{font-weight:800}html.landing-page-only dd{margin-bottom:.5rem;margin-left:0}html.landing-page-only blockquote{margin:0 0 1rem}html.landing-page-only b,html.landing-page-only strong{font-weight:bolder}html.landing-page-only small{font-size:80%}html.landing-page-only sub,html.landing-page-only sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}html.landing-page-only sub{bottom:-0.25em}html.landing-page-only sup{top:-0.5em}html.landing-page-only a{color:#ed3b42;text-decoration:none;background-color:rgba(0,0,0,0)}html.landing-page-only a:hover{color:#c9121a;text-decoration:underline}html.landing-page-only a:not([href]):not([class]){color:inherit;text-decoration:none}html.landing-page-only a:not([href]):not([class]):hover{color:inherit;text-decoration:none}html.landing-page-only pre,html.landing-page-only code,html.landing-page-only kbd,html.landing-page-only samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}html.landing-page-only pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}html.landing-page-only figure{margin:0 0 1rem}html.landing-page-only img{vertical-align:middle;border-style:none}html.landing-page-only svg{overflow:hidden;vertical-align:middle}html.landing-page-only table{border-collapse:collapse}html.landing-page-only caption{padding-top:.75rem;padding-bottom:.75rem;color:#a6a8b7;text-align:left;caption-side:bottom}html.landing-page-only th{text-align:inherit;text-align:-webkit-match-parent}html.landing-page-only label{display:inline-block;margin-bottom:.5rem}html.landing-page-only button{border-radius:0}html.landing-page-only button:focus:not(:focus-visible){outline:0}html.landing-page-only input,html.landing-page-only button,html.landing-page-only select,html.landing-page-only optgroup,html.landing-page-only textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}html.landing-page-only button,html.landing-page-only input{overflow:visible}html.landing-page-only button,html.landing-page-only select{text-transform:none}html.landing-page-only [role=button]{cursor:pointer}html.landing-page-only select{word-wrap:normal}html.landing-page-only button,html.landing-page-only [type=button],html.landing-page-only [type=reset],html.landing-page-only [type=submit]{-webkit-appearance:button}html.landing-page-only button:not(:disabled),html.landing-page-only [type=button]:not(:disabled),html.landing-page-only [type=reset]:not(:disabled),html.landing-page-only [type=submit]:not(:disabled){cursor:pointer}html.landing-page-only button::-moz-focus-inner,html.landing-page-only [type=button]::-moz-focus-inner,html.landing-page-only [type=reset]::-moz-focus-inner,html.landing-page-only [type=submit]::-moz-focus-inner{padding:0;border-style:none}html.landing-page-only input[type=radio],html.landing-page-only input[type=checkbox]{box-sizing:border-box;padding:0}html.landing-page-only textarea{overflow:auto;resize:vertical}html.landing-page-only fieldset{min-width:0;padding:0;margin:0;border:0}html.landing-page-only legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}html.landing-page-only progress{vertical-align:baseline}html.landing-page-only [type=number]::-webkit-inner-spin-button,html.landing-page-only [type=number]::-webkit-outer-spin-button{height:auto}html.landing-page-only [type=search]{outline-offset:-2px;-webkit-appearance:none}html.landing-page-only [type=search]::-webkit-search-decoration{-webkit-appearance:none}html.landing-page-only ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}html.landing-page-only output{display:inline-block}html.landing-page-only summary{display:list-item;cursor:pointer}html.landing-page-only template{display:none}html.landing-page-only [hidden]{display:none !important}html.landing-page-only h1,html.landing-page-only h2,html.landing-page-only h3,html.landing-page-only h4,html.landing-page-only h5,html.landing-page-only h6,html.landing-page-only .h1,html.landing-page-only .h2,html.landing-page-only .h3,html.landing-page-only .h4,html.landing-page-only .h5,html.landing-page-only .h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}html.landing-page-only h1,html.landing-page-only .h1{font-size:2.5rem}html.landing-page-only h2,html.landing-page-only .h2{font-size:2rem}html.landing-page-only h3,html.landing-page-only .h3{font-size:1.75rem}html.landing-page-only h4,html.landing-page-only .h4{font-size:1.5rem}html.landing-page-only h5,html.landing-page-only .h5{font-size:1.375rem}html.landing-page-only h6,html.landing-page-only .h6{font-size:1rem}html.landing-page-only .lead{font-size:1.25rem;font-weight:300}html.landing-page-only .display-1{font-size:6rem;font-weight:800;line-height:1.2}html.landing-page-only .display-2{font-size:5.5rem;font-weight:800;line-height:1.2}html.landing-page-only .display-3{font-size:4.5rem;font-weight:800;line-height:1.2}html.landing-page-only .display-4{font-size:3.5rem;font-weight:800;line-height:1.2}html.landing-page-only hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(47,48,59,.1)}html.landing-page-only small,html.landing-page-only .small{font-size:0.875em;font-weight:500}html.landing-page-only mark,html.landing-page-only .mark{padding:.2em;background-color:#fcf8e3}html.landing-page-only .list-unstyled{padding-left:0;list-style:none}html.landing-page-only .list-inline{padding-left:0;list-style:none}html.landing-page-only .list-inline-item{display:inline-block}html.landing-page-only .list-inline-item:not(:last-child){margin-right:.5rem}html.landing-page-only .initialism{font-size:90%;text-transform:uppercase}html.landing-page-only .blockquote{margin-bottom:1rem;font-size:1.25rem}html.landing-page-only .blockquote-footer{display:block;font-size:0.875em;color:#a6a8b7}html.landing-page-only .blockquote-footer::before{content:"— "}html.landing-page-only .img-fluid{max-width:100%;height:auto}html.landing-page-only .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #f2f1f7;border-radius:8px;max-width:100%;height:auto}html.landing-page-only .figure{display:inline-block}html.landing-page-only .figure-img{margin-bottom:.5rem;line-height:1}html.landing-page-only .figure-caption{font-size:90%;color:#a6a8b7}html.landing-page-only code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>html.landing-page-only code{color:inherit}html.landing-page-only kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#393946;border-radius:.2rem}html.landing-page-only kbd kbd{padding:0;font-size:100%;font-weight:800}html.landing-page-only pre{display:block;font-size:87.5%;color:#393946}html.landing-page-only pre code{font-size:inherit;color:inherit;word-break:normal}html.landing-page-only .pre-scrollable{max-height:340px;overflow-y:scroll}html.landing-page-only .container,html.landing-page-only .container-fluid,html.landing-page-only .container-xl,html.landing-page-only .container-lg,html.landing-page-only .container-md,html.landing-page-only .container-sm{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width: 576px){html.landing-page-only .container-sm,html.landing-page-only .container{max-width:540px}}@media(min-width: 768px){html.landing-page-only .container-md,html.landing-page-only .container-sm,html.landing-page-only .container{max-width:720px}}@media(min-width: 992px){html.landing-page-only .container-lg,html.landing-page-only .container-md,html.landing-page-only .container-sm,html.landing-page-only .container{max-width:960px}}@media(min-width: 1152px){html.landing-page-only .container-xl,html.landing-page-only .container-lg,html.landing-page-only .container-md,html.landing-page-only .container-sm,html.landing-page-only .container{max-width:1152px}}html.landing-page-only .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}html.landing-page-only .no-gutters{margin-right:0;margin-left:0}html.landing-page-only .no-gutters>.col,html.landing-page-only .no-gutters>[class*=col-]{padding-right:0;padding-left:0}html.landing-page-only .col-xl,html.landing-page-only .col-xl-auto,html.landing-page-only .col-xl-12,html.landing-page-only .col-xl-11,html.landing-page-only .col-xl-10,html.landing-page-only .col-xl-9,html.landing-page-only .col-xl-8,html.landing-page-only .col-xl-7,html.landing-page-only .col-xl-6,html.landing-page-only .col-xl-5,html.landing-page-only .col-xl-4,html.landing-page-only .col-xl-3,html.landing-page-only .col-xl-2,html.landing-page-only .col-xl-1,html.landing-page-only .col-lg,html.landing-page-only .col-lg-auto,html.landing-page-only .col-lg-12,html.landing-page-only .col-lg-11,html.landing-page-only .col-lg-10,html.landing-page-only .col-lg-9,html.landing-page-only .col-lg-8,html.landing-page-only .col-lg-7,html.landing-page-only .col-lg-6,html.landing-page-only .col-lg-5,html.landing-page-only .col-lg-4,html.landing-page-only .col-lg-3,html.landing-page-only .col-lg-2,html.landing-page-only .col-lg-1,html.landing-page-only .col-md,html.landing-page-only .col-md-auto,html.landing-page-only .col-md-12,html.landing-page-only .col-md-11,html.landing-page-only .col-md-10,html.landing-page-only .col-md-9,html.landing-page-only .col-md-8,html.landing-page-only .col-md-7,html.landing-page-only .col-md-6,html.landing-page-only .col-md-5,html.landing-page-only .col-md-4,html.landing-page-only .col-md-3,html.landing-page-only .col-md-2,html.landing-page-only .col-md-1,html.landing-page-only .col-sm,html.landing-page-only .col-sm-auto,html.landing-page-only .col-sm-12,html.landing-page-only .col-sm-11,html.landing-page-only .col-sm-10,html.landing-page-only .col-sm-9,html.landing-page-only .col-sm-8,html.landing-page-only .col-sm-7,html.landing-page-only .col-sm-6,html.landing-page-only .col-sm-5,html.landing-page-only .col-sm-4,html.landing-page-only .col-sm-3,html.landing-page-only .col-sm-2,html.landing-page-only .col-sm-1,html.landing-page-only .col,html.landing-page-only .col-auto,html.landing-page-only .col-12,html.landing-page-only .col-11,html.landing-page-only .col-10,html.landing-page-only .col-9,html.landing-page-only .col-8,html.landing-page-only .col-7,html.landing-page-only .col-6,html.landing-page-only .col-5,html.landing-page-only .col-4,html.landing-page-only .col-3,html.landing-page-only .col-2,html.landing-page-only .col-1{position:relative;width:100%;padding-right:15px;padding-left:15px}html.landing-page-only .col{flex-basis:0;flex-grow:1;max-width:100%}html.landing-page-only .row-cols-1>*{flex:0 0 100%;max-width:100%}html.landing-page-only .row-cols-2>*{flex:0 0 50%;max-width:50%}html.landing-page-only .row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}html.landing-page-only .row-cols-4>*{flex:0 0 25%;max-width:25%}html.landing-page-only .row-cols-5>*{flex:0 0 20%;max-width:20%}html.landing-page-only .row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}html.landing-page-only .col-auto{flex:0 0 auto;width:auto;max-width:100%}html.landing-page-only .col-1{flex:0 0 8.33333333%;max-width:8.33333333%}html.landing-page-only .col-2{flex:0 0 16.66666667%;max-width:16.66666667%}html.landing-page-only .col-3{flex:0 0 25%;max-width:25%}html.landing-page-only .col-4{flex:0 0 33.33333333%;max-width:33.33333333%}html.landing-page-only .col-5{flex:0 0 41.66666667%;max-width:41.66666667%}html.landing-page-only .col-6{flex:0 0 50%;max-width:50%}html.landing-page-only .col-7{flex:0 0 58.33333333%;max-width:58.33333333%}html.landing-page-only .col-8{flex:0 0 66.66666667%;max-width:66.66666667%}html.landing-page-only .col-9{flex:0 0 75%;max-width:75%}html.landing-page-only .col-10{flex:0 0 83.33333333%;max-width:83.33333333%}html.landing-page-only .col-11{flex:0 0 91.66666667%;max-width:91.66666667%}html.landing-page-only .col-12{flex:0 0 100%;max-width:100%}html.landing-page-only .order-first{order:-1}html.landing-page-only .order-last{order:13}html.landing-page-only .order-0{order:0}html.landing-page-only .order-1{order:1}html.landing-page-only .order-2{order:2}html.landing-page-only .order-3{order:3}html.landing-page-only .order-4{order:4}html.landing-page-only .order-5{order:5}html.landing-page-only .order-6{order:6}html.landing-page-only .order-7{order:7}html.landing-page-only .order-8{order:8}html.landing-page-only .order-9{order:9}html.landing-page-only .order-10{order:10}html.landing-page-only .order-11{order:11}html.landing-page-only .order-12{order:12}html.landing-page-only .offset-1{margin-left:8.33333333%}html.landing-page-only .offset-2{margin-left:16.66666667%}html.landing-page-only .offset-3{margin-left:25%}html.landing-page-only .offset-4{margin-left:33.33333333%}html.landing-page-only .offset-5{margin-left:41.66666667%}html.landing-page-only .offset-6{margin-left:50%}html.landing-page-only .offset-7{margin-left:58.33333333%}html.landing-page-only .offset-8{margin-left:66.66666667%}html.landing-page-only .offset-9{margin-left:75%}html.landing-page-only .offset-10{margin-left:83.33333333%}html.landing-page-only .offset-11{margin-left:91.66666667%}@media(min-width: 576px){html.landing-page-only .col-sm{flex-basis:0;flex-grow:1;max-width:100%}html.landing-page-only .row-cols-sm-1>*{flex:0 0 100%;max-width:100%}html.landing-page-only .row-cols-sm-2>*{flex:0 0 50%;max-width:50%}html.landing-page-only .row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}html.landing-page-only .row-cols-sm-4>*{flex:0 0 25%;max-width:25%}html.landing-page-only .row-cols-sm-5>*{flex:0 0 20%;max-width:20%}html.landing-page-only .row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}html.landing-page-only .col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}html.landing-page-only .col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}html.landing-page-only .col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}html.landing-page-only .col-sm-3{flex:0 0 25%;max-width:25%}html.landing-page-only .col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}html.landing-page-only .col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}html.landing-page-only .col-sm-6{flex:0 0 50%;max-width:50%}html.landing-page-only .col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}html.landing-page-only .col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}html.landing-page-only .col-sm-9{flex:0 0 75%;max-width:75%}html.landing-page-only .col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}html.landing-page-only .col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}html.landing-page-only .col-sm-12{flex:0 0 100%;max-width:100%}html.landing-page-only .order-sm-first{order:-1}html.landing-page-only .order-sm-last{order:13}html.landing-page-only .order-sm-0{order:0}html.landing-page-only .order-sm-1{order:1}html.landing-page-only .order-sm-2{order:2}html.landing-page-only .order-sm-3{order:3}html.landing-page-only .order-sm-4{order:4}html.landing-page-only .order-sm-5{order:5}html.landing-page-only .order-sm-6{order:6}html.landing-page-only .order-sm-7{order:7}html.landing-page-only .order-sm-8{order:8}html.landing-page-only .order-sm-9{order:9}html.landing-page-only .order-sm-10{order:10}html.landing-page-only .order-sm-11{order:11}html.landing-page-only .order-sm-12{order:12}html.landing-page-only .offset-sm-0{margin-left:0}html.landing-page-only .offset-sm-1{margin-left:8.33333333%}html.landing-page-only .offset-sm-2{margin-left:16.66666667%}html.landing-page-only .offset-sm-3{margin-left:25%}html.landing-page-only .offset-sm-4{margin-left:33.33333333%}html.landing-page-only .offset-sm-5{margin-left:41.66666667%}html.landing-page-only .offset-sm-6{margin-left:50%}html.landing-page-only .offset-sm-7{margin-left:58.33333333%}html.landing-page-only .offset-sm-8{margin-left:66.66666667%}html.landing-page-only .offset-sm-9{margin-left:75%}html.landing-page-only .offset-sm-10{margin-left:83.33333333%}html.landing-page-only .offset-sm-11{margin-left:91.66666667%}}@media(min-width: 768px){html.landing-page-only .col-md{flex-basis:0;flex-grow:1;max-width:100%}html.landing-page-only .row-cols-md-1>*{flex:0 0 100%;max-width:100%}html.landing-page-only .row-cols-md-2>*{flex:0 0 50%;max-width:50%}html.landing-page-only .row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}html.landing-page-only .row-cols-md-4>*{flex:0 0 25%;max-width:25%}html.landing-page-only .row-cols-md-5>*{flex:0 0 20%;max-width:20%}html.landing-page-only .row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}html.landing-page-only .col-md-auto{flex:0 0 auto;width:auto;max-width:100%}html.landing-page-only .col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}html.landing-page-only .col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}html.landing-page-only .col-md-3{flex:0 0 25%;max-width:25%}html.landing-page-only .col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}html.landing-page-only .col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}html.landing-page-only .col-md-6{flex:0 0 50%;max-width:50%}html.landing-page-only .col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}html.landing-page-only .col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}html.landing-page-only .col-md-9{flex:0 0 75%;max-width:75%}html.landing-page-only .col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}html.landing-page-only .col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}html.landing-page-only .col-md-12{flex:0 0 100%;max-width:100%}html.landing-page-only .order-md-first{order:-1}html.landing-page-only .order-md-last{order:13}html.landing-page-only .order-md-0{order:0}html.landing-page-only .order-md-1{order:1}html.landing-page-only .order-md-2{order:2}html.landing-page-only .order-md-3{order:3}html.landing-page-only .order-md-4{order:4}html.landing-page-only .order-md-5{order:5}html.landing-page-only .order-md-6{order:6}html.landing-page-only .order-md-7{order:7}html.landing-page-only .order-md-8{order:8}html.landing-page-only .order-md-9{order:9}html.landing-page-only .order-md-10{order:10}html.landing-page-only .order-md-11{order:11}html.landing-page-only .order-md-12{order:12}html.landing-page-only .offset-md-0{margin-left:0}html.landing-page-only .offset-md-1{margin-left:8.33333333%}html.landing-page-only .offset-md-2{margin-left:16.66666667%}html.landing-page-only .offset-md-3{margin-left:25%}html.landing-page-only .offset-md-4{margin-left:33.33333333%}html.landing-page-only .offset-md-5{margin-left:41.66666667%}html.landing-page-only .offset-md-6{margin-left:50%}html.landing-page-only .offset-md-7{margin-left:58.33333333%}html.landing-page-only .offset-md-8{margin-left:66.66666667%}html.landing-page-only .offset-md-9{margin-left:75%}html.landing-page-only .offset-md-10{margin-left:83.33333333%}html.landing-page-only .offset-md-11{margin-left:91.66666667%}}@media(min-width: 992px){html.landing-page-only .col-lg{flex-basis:0;flex-grow:1;max-width:100%}html.landing-page-only .row-cols-lg-1>*{flex:0 0 100%;max-width:100%}html.landing-page-only .row-cols-lg-2>*{flex:0 0 50%;max-width:50%}html.landing-page-only .row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}html.landing-page-only .row-cols-lg-4>*{flex:0 0 25%;max-width:25%}html.landing-page-only .row-cols-lg-5>*{flex:0 0 20%;max-width:20%}html.landing-page-only .row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}html.landing-page-only .col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}html.landing-page-only .col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}html.landing-page-only .col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}html.landing-page-only .col-lg-3{flex:0 0 25%;max-width:25%}html.landing-page-only .col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}html.landing-page-only .col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}html.landing-page-only .col-lg-6{flex:0 0 50%;max-width:50%}html.landing-page-only .col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}html.landing-page-only .col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}html.landing-page-only .col-lg-9{flex:0 0 75%;max-width:75%}html.landing-page-only .col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}html.landing-page-only .col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}html.landing-page-only .col-lg-12{flex:0 0 100%;max-width:100%}html.landing-page-only .order-lg-first{order:-1}html.landing-page-only .order-lg-last{order:13}html.landing-page-only .order-lg-0{order:0}html.landing-page-only .order-lg-1{order:1}html.landing-page-only .order-lg-2{order:2}html.landing-page-only .order-lg-3{order:3}html.landing-page-only .order-lg-4{order:4}html.landing-page-only .order-lg-5{order:5}html.landing-page-only .order-lg-6{order:6}html.landing-page-only .order-lg-7{order:7}html.landing-page-only .order-lg-8{order:8}html.landing-page-only .order-lg-9{order:9}html.landing-page-only .order-lg-10{order:10}html.landing-page-only .order-lg-11{order:11}html.landing-page-only .order-lg-12{order:12}html.landing-page-only .offset-lg-0{margin-left:0}html.landing-page-only .offset-lg-1{margin-left:8.33333333%}html.landing-page-only .offset-lg-2{margin-left:16.66666667%}html.landing-page-only .offset-lg-3{margin-left:25%}html.landing-page-only .offset-lg-4{margin-left:33.33333333%}html.landing-page-only .offset-lg-5{margin-left:41.66666667%}html.landing-page-only .offset-lg-6{margin-left:50%}html.landing-page-only .offset-lg-7{margin-left:58.33333333%}html.landing-page-only .offset-lg-8{margin-left:66.66666667%}html.landing-page-only .offset-lg-9{margin-left:75%}html.landing-page-only .offset-lg-10{margin-left:83.33333333%}html.landing-page-only .offset-lg-11{margin-left:91.66666667%}}@media(min-width: 1152px){html.landing-page-only .col-xl{flex-basis:0;flex-grow:1;max-width:100%}html.landing-page-only .row-cols-xl-1>*{flex:0 0 100%;max-width:100%}html.landing-page-only .row-cols-xl-2>*{flex:0 0 50%;max-width:50%}html.landing-page-only .row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}html.landing-page-only .row-cols-xl-4>*{flex:0 0 25%;max-width:25%}html.landing-page-only .row-cols-xl-5>*{flex:0 0 20%;max-width:20%}html.landing-page-only .row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}html.landing-page-only .col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}html.landing-page-only .col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}html.landing-page-only .col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}html.landing-page-only .col-xl-3{flex:0 0 25%;max-width:25%}html.landing-page-only .col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}html.landing-page-only .col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}html.landing-page-only .col-xl-6{flex:0 0 50%;max-width:50%}html.landing-page-only .col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}html.landing-page-only .col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}html.landing-page-only .col-xl-9{flex:0 0 75%;max-width:75%}html.landing-page-only .col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}html.landing-page-only .col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}html.landing-page-only .col-xl-12{flex:0 0 100%;max-width:100%}html.landing-page-only .order-xl-first{order:-1}html.landing-page-only .order-xl-last{order:13}html.landing-page-only .order-xl-0{order:0}html.landing-page-only .order-xl-1{order:1}html.landing-page-only .order-xl-2{order:2}html.landing-page-only .order-xl-3{order:3}html.landing-page-only .order-xl-4{order:4}html.landing-page-only .order-xl-5{order:5}html.landing-page-only .order-xl-6{order:6}html.landing-page-only .order-xl-7{order:7}html.landing-page-only .order-xl-8{order:8}html.landing-page-only .order-xl-9{order:9}html.landing-page-only .order-xl-10{order:10}html.landing-page-only .order-xl-11{order:11}html.landing-page-only .order-xl-12{order:12}html.landing-page-only .offset-xl-0{margin-left:0}html.landing-page-only .offset-xl-1{margin-left:8.33333333%}html.landing-page-only .offset-xl-2{margin-left:16.66666667%}html.landing-page-only .offset-xl-3{margin-left:25%}html.landing-page-only .offset-xl-4{margin-left:33.33333333%}html.landing-page-only .offset-xl-5{margin-left:41.66666667%}html.landing-page-only .offset-xl-6{margin-left:50%}html.landing-page-only .offset-xl-7{margin-left:58.33333333%}html.landing-page-only .offset-xl-8{margin-left:66.66666667%}html.landing-page-only .offset-xl-9{margin-left:75%}html.landing-page-only .offset-xl-10{margin-left:83.33333333%}html.landing-page-only .offset-xl-11{margin-left:91.66666667%}}html.landing-page-only .table{width:100%;margin-bottom:1rem;color:#393946}html.landing-page-only .table th,html.landing-page-only .table td{padding:.75rem;vertical-align:top;border-top:1px solid #f2f1f7}html.landing-page-only .table thead th{vertical-align:bottom;border-bottom:2px solid #f2f1f7}html.landing-page-only .table tbody+tbody{border-top:2px solid #f2f1f7}html.landing-page-only .table-sm th,html.landing-page-only .table-sm td{padding:.3rem}html.landing-page-only .table-bordered{border:1px solid #f2f1f7}html.landing-page-only .table-bordered th,html.landing-page-only .table-bordered td{border:1px solid #f2f1f7}html.landing-page-only .table-bordered thead th,html.landing-page-only .table-bordered thead td{border-bottom-width:2px}html.landing-page-only .table-borderless th,html.landing-page-only .table-borderless td,html.landing-page-only .table-borderless thead th,html.landing-page-only .table-borderless tbody+tbody{border:0}html.landing-page-only .table-striped tbody tr:nth-of-type(odd){background-color:rgba(47,48,59,.05)}html.landing-page-only .table-hover tbody tr:hover{color:#393946;background-color:rgba(47,48,59,.075)}html.landing-page-only .table-primary,html.landing-page-only .table-primary>th,html.landing-page-only .table-primary>td{background-color:#fac8ca}html.landing-page-only .table-primary th,html.landing-page-only .table-primary td,html.landing-page-only .table-primary thead th,html.landing-page-only .table-primary tbody+tbody{border-color:#f6999d}html.landing-page-only .table-hover .table-primary:hover{background-color:#f8b1b3}html.landing-page-only .table-hover .table-primary:hover>td,html.landing-page-only .table-hover .table-primary:hover>th{background-color:#f8b1b3}html.landing-page-only .table-secondary,html.landing-page-only .table-secondary>th,html.landing-page-only .table-secondary>td{background-color:#e6e7eb}html.landing-page-only .table-secondary th,html.landing-page-only .table-secondary td,html.landing-page-only .table-secondary thead th,html.landing-page-only .table-secondary tbody+tbody{border-color:#d1d2da}html.landing-page-only .table-hover .table-secondary:hover{background-color:#d8d9e0}html.landing-page-only .table-hover .table-secondary:hover>td,html.landing-page-only .table-hover .table-secondary:hover>th{background-color:#d8d9e0}html.landing-page-only .table-success,html.landing-page-only .table-success>th,html.landing-page-only .table-success>td{background-color:#cff2d6}html.landing-page-only .table-success th,html.landing-page-only .table-success td,html.landing-page-only .table-success thead th,html.landing-page-only .table-success tbody+tbody{border-color:#a5e6b4}html.landing-page-only .table-hover .table-success:hover{background-color:#bbedc5}html.landing-page-only .table-hover .table-success:hover>td,html.landing-page-only .table-hover .table-success:hover>th{background-color:#bbedc5}html.landing-page-only .table-info,html.landing-page-only .table-info>th,html.landing-page-only .table-info>td{background-color:#dedbf3}html.landing-page-only .table-info th,html.landing-page-only .table-info td,html.landing-page-only .table-info thead th,html.landing-page-only .table-info tbody+tbody{border-color:#c2bce9}html.landing-page-only .table-hover .table-info:hover{background-color:#ccc8ed}html.landing-page-only .table-hover .table-info:hover>td,html.landing-page-only .table-hover .table-info:hover>th{background-color:#ccc8ed}html.landing-page-only .table-warning,html.landing-page-only .table-warning>th,html.landing-page-only .table-warning>td{background-color:#ffeeba}html.landing-page-only .table-warning th,html.landing-page-only .table-warning td,html.landing-page-only .table-warning thead th,html.landing-page-only .table-warning tbody+tbody{border-color:#ffdf7e}html.landing-page-only .table-hover .table-warning:hover{background-color:#ffe8a1}html.landing-page-only .table-hover .table-warning:hover>td,html.landing-page-only .table-hover .table-warning:hover>th{background-color:#ffe8a1}html.landing-page-only .table-danger,html.landing-page-only .table-danger>th,html.landing-page-only .table-danger>td{background-color:#f5c6cb}html.landing-page-only .table-danger th,html.landing-page-only .table-danger td,html.landing-page-only .table-danger thead th,html.landing-page-only .table-danger tbody+tbody{border-color:#ed969e}html.landing-page-only .table-hover .table-danger:hover{background-color:#f1b0b7}html.landing-page-only .table-hover .table-danger:hover>td,html.landing-page-only .table-hover .table-danger:hover>th{background-color:#f1b0b7}html.landing-page-only .table-light,html.landing-page-only .table-light>th,html.landing-page-only .table-light>td{background-color:#fefeff}html.landing-page-only .table-light th,html.landing-page-only .table-light td,html.landing-page-only .table-light thead th,html.landing-page-only .table-light tbody+tbody{border-color:#fcfcff}html.landing-page-only .table-hover .table-light:hover{background-color:#e5e5ff}html.landing-page-only .table-hover .table-light:hover>td,html.landing-page-only .table-hover .table-light:hover>th{background-color:#e5e5ff}html.landing-page-only .table-dark,html.landing-page-only .table-dark>th,html.landing-page-only .table-dark>td{background-color:#cbcbcf}html.landing-page-only .table-dark th,html.landing-page-only .table-dark td,html.landing-page-only .table-dark thead th,html.landing-page-only .table-dark tbody+tbody{border-color:#9e9ea5}html.landing-page-only .table-hover .table-dark:hover{background-color:#bebec3}html.landing-page-only .table-hover .table-dark:hover>td,html.landing-page-only .table-hover .table-dark:hover>th{background-color:#bebec3}html.landing-page-only .table-blue,html.landing-page-only .table-blue>th,html.landing-page-only .table-blue>td{background-color:#dedbf3}html.landing-page-only .table-blue th,html.landing-page-only .table-blue td,html.landing-page-only .table-blue thead th,html.landing-page-only .table-blue tbody+tbody{border-color:#c2bce9}html.landing-page-only .table-hover .table-blue:hover{background-color:#ccc8ed}html.landing-page-only .table-hover .table-blue:hover>td,html.landing-page-only .table-hover .table-blue:hover>th{background-color:#ccc8ed}html.landing-page-only .table-transparent,html.landing-page-only .table-transparent>th,html.landing-page-only .table-transparent>td{background-color:rgba(255,255,255,.72)}html.landing-page-only .table-transparent th,html.landing-page-only .table-transparent td,html.landing-page-only .table-transparent thead th,html.landing-page-only .table-transparent tbody+tbody{border-color:rgba(255,255,255,.48)}html.landing-page-only .table-hover .table-transparent:hover{background-color:rgba(242,242,242,.72)}html.landing-page-only .table-hover .table-transparent:hover>td,html.landing-page-only .table-hover .table-transparent:hover>th{background-color:rgba(242,242,242,.72)}html.landing-page-only .table-white,html.landing-page-only .table-white>th,html.landing-page-only .table-white>td{background-color:#fff}html.landing-page-only .table-white th,html.landing-page-only .table-white td,html.landing-page-only .table-white thead th,html.landing-page-only .table-white tbody+tbody{border-color:#fff}html.landing-page-only .table-hover .table-white:hover{background-color:#f2f2f2}html.landing-page-only .table-hover .table-white:hover>td,html.landing-page-only .table-hover .table-white:hover>th{background-color:#f2f2f2}html.landing-page-only .table-white-100,html.landing-page-only .table-white-100>th,html.landing-page-only .table-white-100>td{background-color:#fdfdfe}html.landing-page-only .table-white-100 th,html.landing-page-only .table-white-100 td,html.landing-page-only .table-white-100 thead th,html.landing-page-only .table-white-100 tbody+tbody{border-color:#fcfcfe}html.landing-page-only .table-hover .table-white-100:hover{background-color:#ececf6}html.landing-page-only .table-hover .table-white-100:hover>td,html.landing-page-only .table-hover .table-white-100:hover>th{background-color:#ececf6}html.landing-page-only .table-gray-100,html.landing-page-only .table-gray-100>th,html.landing-page-only .table-gray-100>td{background-color:#fefeff}html.landing-page-only .table-gray-100 th,html.landing-page-only .table-gray-100 td,html.landing-page-only .table-gray-100 thead th,html.landing-page-only .table-gray-100 tbody+tbody{border-color:#fcfcff}html.landing-page-only .table-hover .table-gray-100:hover{background-color:#e5e5ff}html.landing-page-only .table-hover .table-gray-100:hover>td,html.landing-page-only .table-hover .table-gray-100:hover>th{background-color:#e5e5ff}html.landing-page-only .table-gray-200,html.landing-page-only .table-gray-200>th,html.landing-page-only .table-gray-200>td{background-color:#fdfdfe}html.landing-page-only .table-gray-200 th,html.landing-page-only .table-gray-200 td,html.landing-page-only .table-gray-200 thead th,html.landing-page-only .table-gray-200 tbody+tbody{border-color:#fbfbfd}html.landing-page-only .table-hover .table-gray-200:hover{background-color:#ececf6}html.landing-page-only .table-hover .table-gray-200:hover>td,html.landing-page-only .table-hover .table-gray-200:hover>th{background-color:#ececf6}html.landing-page-only .table-gray-300,html.landing-page-only .table-gray-300>th,html.landing-page-only .table-gray-300>td{background-color:#fbfbfd}html.landing-page-only .table-gray-300 th,html.landing-page-only .table-gray-300 td,html.landing-page-only .table-gray-300 thead th,html.landing-page-only .table-gray-300 tbody+tbody{border-color:#f8f8fb}html.landing-page-only .table-hover .table-gray-300:hover{background-color:#eaeaf5}html.landing-page-only .table-hover .table-gray-300:hover>td,html.landing-page-only .table-hover .table-gray-300:hover>th{background-color:#eaeaf5}html.landing-page-only .table-gray-400,html.landing-page-only .table-gray-400>th,html.landing-page-only .table-gray-400>td{background-color:#f8f9fc}html.landing-page-only .table-gray-400 th,html.landing-page-only .table-gray-400 td,html.landing-page-only .table-gray-400 thead th,html.landing-page-only .table-gray-400 tbody+tbody{border-color:#f3f3f9}html.landing-page-only .table-hover .table-gray-400:hover{background-color:#e6eaf4}html.landing-page-only .table-hover .table-gray-400:hover>td,html.landing-page-only .table-hover .table-gray-400:hover>th{background-color:#e6eaf4}html.landing-page-only .table-gray-500,html.landing-page-only .table-gray-500>th,html.landing-page-only .table-gray-500>td{background-color:#f1f1f5}html.landing-page-only .table-gray-500 th,html.landing-page-only .table-gray-500 td,html.landing-page-only .table-gray-500 thead th,html.landing-page-only .table-gray-500 tbody+tbody{border-color:#e4e6ed}html.landing-page-only .table-hover .table-gray-500:hover{background-color:#e2e2ea}html.landing-page-only .table-hover .table-gray-500:hover>td,html.landing-page-only .table-hover .table-gray-500:hover>th{background-color:#e2e2ea}html.landing-page-only .table-gray-600,html.landing-page-only .table-gray-600>th,html.landing-page-only .table-gray-600>td{background-color:#e6e7eb}html.landing-page-only .table-gray-600 th,html.landing-page-only .table-gray-600 td,html.landing-page-only .table-gray-600 thead th,html.landing-page-only .table-gray-600 tbody+tbody{border-color:#d1d2da}html.landing-page-only .table-hover .table-gray-600:hover{background-color:#d8d9e0}html.landing-page-only .table-hover .table-gray-600:hover>td,html.landing-page-only .table-hover .table-gray-600:hover>th{background-color:#d8d9e0}html.landing-page-only .table-gray-700,html.landing-page-only .table-gray-700>th,html.landing-page-only .table-gray-700>td{background-color:#d6d6dc}html.landing-page-only .table-gray-700 th,html.landing-page-only .table-gray-700 td,html.landing-page-only .table-gray-700 thead th,html.landing-page-only .table-gray-700 tbody+tbody{border-color:#b3b4be}html.landing-page-only .table-hover .table-gray-700:hover{background-color:#c8c8d0}html.landing-page-only .table-hover .table-gray-700:hover>td,html.landing-page-only .table-hover .table-gray-700:hover>th{background-color:#c8c8d0}html.landing-page-only .table-gray-800,html.landing-page-only .table-gray-800>th,html.landing-page-only .table-gray-800>td{background-color:#cbcbcf}html.landing-page-only .table-gray-800 th,html.landing-page-only .table-gray-800 td,html.landing-page-only .table-gray-800 thead th,html.landing-page-only .table-gray-800 tbody+tbody{border-color:#9e9ea5}html.landing-page-only .table-hover .table-gray-800:hover{background-color:#bebec3}html.landing-page-only .table-hover .table-gray-800:hover>td,html.landing-page-only .table-hover .table-gray-800:hover>th{background-color:#bebec3}html.landing-page-only .table-gray-900,html.landing-page-only .table-gray-900>th,html.landing-page-only .table-gray-900>td{background-color:#c8c8cb}html.landing-page-only .table-gray-900 th,html.landing-page-only .table-gray-900 td,html.landing-page-only .table-gray-900 thead th,html.landing-page-only .table-gray-900 tbody+tbody{border-color:#98989f}html.landing-page-only .table-hover .table-gray-900:hover{background-color:#bbbbbf}html.landing-page-only .table-hover .table-gray-900:hover>td,html.landing-page-only .table-hover .table-gray-900:hover>th{background-color:#bbbbbf}html.landing-page-only .table-gray-1000,html.landing-page-only .table-gray-1000>th,html.landing-page-only .table-gray-1000>td{background-color:#c1c2c4}html.landing-page-only .table-gray-1000 th,html.landing-page-only .table-gray-1000 td,html.landing-page-only .table-gray-1000 thead th,html.landing-page-only .table-gray-1000 tbody+tbody{border-color:#8d8d92}html.landing-page-only .table-hover .table-gray-1000:hover{background-color:#b4b5b8}html.landing-page-only .table-hover .table-gray-1000:hover>td,html.landing-page-only .table-hover .table-gray-1000:hover>th{background-color:#b4b5b8}html.landing-page-only .table-black,html.landing-page-only .table-black>th,html.landing-page-only .table-black>td{background-color:#c5c5c8}html.landing-page-only .table-black th,html.landing-page-only .table-black td,html.landing-page-only .table-black thead th,html.landing-page-only .table-black tbody+tbody{border-color:#939399}html.landing-page-only .table-hover .table-black:hover{background-color:#b8b8bc}html.landing-page-only .table-hover .table-black:hover>td,html.landing-page-only .table-hover .table-black:hover>th{background-color:#b8b8bc}html.landing-page-only .table-active,html.landing-page-only .table-active>th,html.landing-page-only .table-active>td{background-color:rgba(47,48,59,.075)}html.landing-page-only .table-hover .table-active:hover{background-color:rgba(36,36,45,.075)}html.landing-page-only .table-hover .table-active:hover>td,html.landing-page-only .table-hover .table-active:hover>th{background-color:rgba(36,36,45,.075)}html.landing-page-only .table .thead-dark th{color:#fff;background-color:#444452;border-color:#555567}html.landing-page-only .table .thead-light th{color:#6c6e82;background-color:#f7f7fc;border-color:#f2f1f7}html.landing-page-only .table-dark{color:#fff;background-color:#444452}html.landing-page-only .table-dark th,html.landing-page-only .table-dark td,html.landing-page-only .table-dark thead th{border-color:#555567}html.landing-page-only .table-dark.table-bordered{border:0}html.landing-page-only .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}html.landing-page-only .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media(max-width: 575.98px){html.landing-page-only .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html.landing-page-only .table-responsive-sm>.table-bordered{border:0}}@media(max-width: 767.98px){html.landing-page-only .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html.landing-page-only .table-responsive-md>.table-bordered{border:0}}@media(max-width: 991.98px){html.landing-page-only .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html.landing-page-only .table-responsive-lg>.table-bordered{border:0}}@media(max-width: 1151.98px){html.landing-page-only .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html.landing-page-only .table-responsive-xl>.table-bordered{border:0}}html.landing-page-only .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html.landing-page-only .table-responsive>.table-bordered{border:0}html.landing-page-only .form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:500;line-height:1.5;color:#6c6e82;background-color:#fff;background-clip:padding-box;border:1px solid #e7e8f3;border-radius:8px;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){html.landing-page-only .form-control{transition:none}}html.landing-page-only .form-control::-ms-expand{background-color:rgba(0,0,0,0);border:0}html.landing-page-only .form-control:focus{color:#6c6e82;background-color:#fff;border-color:#f8b0b3;outline:0;box-shadow:0 0 0 .2rem rgba(237,59,66,.25)}html.landing-page-only .form-control::placeholder{color:#a6a8b7;opacity:1}html.landing-page-only .form-control:disabled,html.landing-page-only .form-control[readonly]{background-color:#f7f7fc;opacity:1}html.landing-page-only input[type=date].form-control,html.landing-page-only input[type=time].form-control,html.landing-page-only input[type=datetime-local].form-control,html.landing-page-only input[type=month].form-control{-webkit-appearance:none;appearance:none}html.landing-page-only select.form-control:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #6c6e82}html.landing-page-only select.form-control:focus::-ms-value{color:#6c6e82;background-color:#fff}html.landing-page-only .form-control-file,html.landing-page-only .form-control-range{display:block;width:100%}html.landing-page-only .col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}html.landing-page-only .col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem;line-height:1.5}html.landing-page-only .col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem;line-height:1.5}html.landing-page-only .form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#393946;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:1px 0}html.landing-page-only .form-control-plaintext.form-control-sm,html.landing-page-only .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}html.landing-page-only .form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:.25rem .5rem;font-size:0.875rem;line-height:1.5;border-radius:.2rem}html.landing-page-only .form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}html.landing-page-only select.form-control[size],html.landing-page-only select.form-control[multiple]{height:auto}html.landing-page-only textarea.form-control{height:auto}html.landing-page-only .form-group{margin-bottom:1rem}html.landing-page-only .form-text{display:block;margin-top:.25rem}html.landing-page-only .form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}html.landing-page-only .form-row>.col,html.landing-page-only .form-row>[class*=col-]{padding-right:5px;padding-left:5px}html.landing-page-only .form-check{position:relative;display:block;padding-left:1.25rem}html.landing-page-only .form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}html.landing-page-only .form-check-input[disabled]~.form-check-label,html.landing-page-only .form-check-input:disabled~.form-check-label{color:#a6a8b7}html.landing-page-only .form-check-label{margin-bottom:0}html.landing-page-only .form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}html.landing-page-only .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}html.landing-page-only .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#52cf6e}html.landing-page-only .valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#393946;background-color:rgba(82,207,110,.9);border-radius:8px}.form-row>.col>html.landing-page-only .valid-tooltip,.form-row>[class*=col-]>html.landing-page-only .valid-tooltip{left:5px}.was-validated html.landing-page-only:valid~.valid-feedback,.was-validated html.landing-page-only:valid~.valid-tooltip,html.landing-page-only.is-valid~.valid-feedback,html.landing-page-only.is-valid~.valid-tooltip{display:block}.was-validated html.landing-page-only .form-control:valid,html.landing-page-only .form-control.is-valid{border-color:#52cf6e;padding-right:calc(1.5em + 0.75rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2352cf6e' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated html.landing-page-only .form-control:valid:focus,html.landing-page-only .form-control.is-valid:focus{border-color:#52cf6e;box-shadow:0 0 0 .2rem rgba(82,207,110,.25)}.was-validated html.landing-page-only select.form-control:valid,html.landing-page-only select.form-control.is-valid{padding-right:3rem !important;background-position:right 1.5rem center}.was-validated html.landing-page-only textarea.form-control:valid,html.landing-page-only textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated html.landing-page-only .custom-select:valid,html.landing-page-only .custom-select.is-valid{border-color:#52cf6e;padding-right:calc(0.75em + 2.3125rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23444452' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2352cf6e' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated html.landing-page-only .custom-select:valid:focus,html.landing-page-only .custom-select.is-valid:focus{border-color:#52cf6e;box-shadow:0 0 0 .2rem rgba(82,207,110,.25)}.was-validated html.landing-page-only .form-check-input:valid~.form-check-label,html.landing-page-only .form-check-input.is-valid~.form-check-label{color:#52cf6e}.was-validated html.landing-page-only .form-check-input:valid~.valid-feedback,.was-validated html.landing-page-only .form-check-input:valid~.valid-tooltip,html.landing-page-only .form-check-input.is-valid~.valid-feedback,html.landing-page-only .form-check-input.is-valid~.valid-tooltip{display:block}.was-validated html.landing-page-only .custom-control-input:valid~.custom-control-label,html.landing-page-only .custom-control-input.is-valid~.custom-control-label{color:#52cf6e}.was-validated html.landing-page-only .custom-control-input:valid~.custom-control-label::before,html.landing-page-only .custom-control-input.is-valid~.custom-control-label::before{border-color:#52cf6e}.was-validated html.landing-page-only .custom-control-input:valid:checked~.custom-control-label::before,html.landing-page-only .custom-control-input.is-valid:checked~.custom-control-label::before{border-color:#7ada8f;background-color:#7ada8f}.was-validated html.landing-page-only .custom-control-input:valid:focus~.custom-control-label::before,html.landing-page-only .custom-control-input.is-valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(82,207,110,.25)}.was-validated html.landing-page-only .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before,html.landing-page-only .custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before{border-color:#52cf6e}.was-validated html.landing-page-only .custom-file-input:valid~.custom-file-label,html.landing-page-only .custom-file-input.is-valid~.custom-file-label{border-color:#52cf6e}.was-validated html.landing-page-only .custom-file-input:valid:focus~.custom-file-label,html.landing-page-only .custom-file-input.is-valid:focus~.custom-file-label{border-color:#52cf6e;box-shadow:0 0 0 .2rem rgba(82,207,110,.25)}html.landing-page-only .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#dc3545}html.landing-page-only .invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:8px}.form-row>.col>html.landing-page-only .invalid-tooltip,.form-row>[class*=col-]>html.landing-page-only .invalid-tooltip{left:5px}.was-validated html.landing-page-only:invalid~.invalid-feedback,.was-validated html.landing-page-only:invalid~.invalid-tooltip,html.landing-page-only.is-invalid~.invalid-feedback,html.landing-page-only.is-invalid~.invalid-tooltip{display:block}.was-validated html.landing-page-only .form-control:invalid,html.landing-page-only .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated html.landing-page-only .form-control:invalid:focus,html.landing-page-only .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated html.landing-page-only select.form-control:invalid,html.landing-page-only select.form-control.is-invalid{padding-right:3rem !important;background-position:right 1.5rem center}.was-validated html.landing-page-only textarea.form-control:invalid,html.landing-page-only textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated html.landing-page-only .custom-select:invalid,html.landing-page-only .custom-select.is-invalid{border-color:#dc3545;padding-right:calc(0.75em + 2.3125rem) !important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23444452' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat}.was-validated html.landing-page-only .custom-select:invalid:focus,html.landing-page-only .custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated html.landing-page-only .form-check-input:invalid~.form-check-label,html.landing-page-only .form-check-input.is-invalid~.form-check-label{color:#dc3545}.was-validated html.landing-page-only .form-check-input:invalid~.invalid-feedback,.was-validated html.landing-page-only .form-check-input:invalid~.invalid-tooltip,html.landing-page-only .form-check-input.is-invalid~.invalid-feedback,html.landing-page-only .form-check-input.is-invalid~.invalid-tooltip{display:block}.was-validated html.landing-page-only .custom-control-input:invalid~.custom-control-label,html.landing-page-only .custom-control-input.is-invalid~.custom-control-label{color:#dc3545}.was-validated html.landing-page-only .custom-control-input:invalid~.custom-control-label::before,html.landing-page-only .custom-control-input.is-invalid~.custom-control-label::before{border-color:#dc3545}.was-validated html.landing-page-only .custom-control-input:invalid:checked~.custom-control-label::before,html.landing-page-only .custom-control-input.is-invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated html.landing-page-only .custom-control-input:invalid:focus~.custom-control-label::before,html.landing-page-only .custom-control-input.is-invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated html.landing-page-only .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before,html.landing-page-only .custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.was-validated html.landing-page-only .custom-file-input:invalid~.custom-file-label,html.landing-page-only .custom-file-input.is-invalid~.custom-file-label{border-color:#dc3545}.was-validated html.landing-page-only .custom-file-input:invalid:focus~.custom-file-label,html.landing-page-only .custom-file-input.is-invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}html.landing-page-only .form-inline{display:flex;flex-flow:row wrap;align-items:center}html.landing-page-only .form-inline .form-check{width:100%}@media(min-width: 576px){html.landing-page-only .form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}html.landing-page-only .form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}html.landing-page-only .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}html.landing-page-only .form-inline .form-control-plaintext{display:inline-block}html.landing-page-only .form-inline .input-group,html.landing-page-only .form-inline .custom-select{width:auto}html.landing-page-only .form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}html.landing-page-only .form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}html.landing-page-only .form-inline .custom-control{align-items:center;justify-content:center}html.landing-page-only .form-inline .custom-control-label{margin-bottom:0}}html.landing-page-only .btn{display:inline-block;font-weight:500;color:#393946;text-align:center;vertical-align:middle;-webkit-user-select:none;user-select:none;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:8px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){html.landing-page-only .btn{transition:none}}html.landing-page-only .btn:hover{color:#393946;text-decoration:none}html.landing-page-only .btn:focus,html.landing-page-only .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(237,59,66,.25)}html.landing-page-only .btn.disabled,html.landing-page-only .btn:disabled{opacity:.65}html.landing-page-only .btn:not(:disabled):not(.disabled){cursor:pointer}html.landing-page-only a.btn.disabled,html.landing-page-only fieldset:disabled a.btn{pointer-events:none}html.landing-page-only .btn-primary{color:#fff;background-color:#ed3b42;border-color:#ed3b42}html.landing-page-only .btn-primary:hover{color:#fff;background-color:#ea1820;border-color:#e0151d}html.landing-page-only .btn-primary:focus,html.landing-page-only .btn-primary.focus{color:#fff;background-color:#ea1820;border-color:#e0151d;box-shadow:0 0 0 .2rem rgba(240,88,94,.5)}html.landing-page-only .btn-primary.disabled,html.landing-page-only .btn-primary:disabled{color:#fff;background-color:#ed3b42;border-color:#ed3b42}html.landing-page-only .btn-primary:not(:disabled):not(.disabled):active,html.landing-page-only .btn-primary:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-primary.dropdown-toggle{color:#fff;background-color:#e0151d;border-color:#d5141b}html.landing-page-only .btn-primary:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-primary:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(240,88,94,.5)}html.landing-page-only .btn-secondary{color:#393946;background-color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-secondary:hover{color:#fff;background-color:#9193a6;border-color:#8a8ca0}html.landing-page-only .btn-secondary:focus,html.landing-page-only .btn-secondary.focus{color:#fff;background-color:#9193a6;border-color:#8a8ca0;box-shadow:0 0 0 .2rem rgba(150,151,166,.5)}html.landing-page-only .btn-secondary.disabled,html.landing-page-only .btn-secondary:disabled{color:#393946;background-color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-secondary:not(:disabled):not(.disabled):active,html.landing-page-only .btn-secondary:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-secondary.dropdown-toggle{color:#fff;background-color:#8a8ca0;border-color:#83869a}html.landing-page-only .btn-secondary:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-secondary:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(150,151,166,.5)}html.landing-page-only .btn-success{color:#393946;background-color:#52cf6e;border-color:#52cf6e}html.landing-page-only .btn-success:hover{color:#fff;background-color:#36c456;border-color:#34ba52}html.landing-page-only .btn-success:focus,html.landing-page-only .btn-success.focus{color:#fff;background-color:#36c456;border-color:#34ba52;box-shadow:0 0 0 .2rem rgba(78,185,104,.5)}html.landing-page-only .btn-success.disabled,html.landing-page-only .btn-success:disabled{color:#393946;background-color:#52cf6e;border-color:#52cf6e}html.landing-page-only .btn-success:not(:disabled):not(.disabled):active,html.landing-page-only .btn-success:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-success.dropdown-toggle{color:#fff;background-color:#34ba52;border-color:#31b04d}html.landing-page-only .btn-success:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-success:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(78,185,104,.5)}html.landing-page-only .btn-info{color:#fff;background-color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-info:hover{color:#fff;background-color:#6f62ca;border-color:#6659c7}html.landing-page-only .btn-info:focus,html.landing-page-only .btn-info.focus{color:#fff;background-color:#6f62ca;border-color:#6659c7;box-shadow:0 0 0 .2rem rgba(155,146,218,.5)}html.landing-page-only .btn-info.disabled,html.landing-page-only .btn-info:disabled{color:#fff;background-color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-info:not(:disabled):not(.disabled):active,html.landing-page-only .btn-info:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-info.dropdown-toggle{color:#fff;background-color:#6659c7;border-color:#5d4fc4}html.landing-page-only .btn-info:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-info:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(155,146,218,.5)}html.landing-page-only .btn-warning{color:#393946;background-color:#ffc107;border-color:#ffc107}html.landing-page-only .btn-warning:hover{color:#393946;background-color:#e0a800;border-color:#d39e00}html.landing-page-only .btn-warning:focus,html.landing-page-only .btn-warning.focus{color:#393946;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(225,173,16,.5)}html.landing-page-only .btn-warning.disabled,html.landing-page-only .btn-warning:disabled{color:#393946;background-color:#ffc107;border-color:#ffc107}html.landing-page-only .btn-warning:not(:disabled):not(.disabled):active,html.landing-page-only .btn-warning:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-warning.dropdown-toggle{color:#393946;background-color:#d39e00;border-color:#c69500}html.landing-page-only .btn-warning:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-warning:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,173,16,.5)}html.landing-page-only .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}html.landing-page-only .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}html.landing-page-only .btn-danger:focus,html.landing-page-only .btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}html.landing-page-only .btn-danger.disabled,html.landing-page-only .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}html.landing-page-only .btn-danger:not(:disabled):not(.disabled):active,html.landing-page-only .btn-danger:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}html.landing-page-only .btn-danger:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-danger:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}html.landing-page-only .btn-light{color:#393946;background-color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-light:hover{color:#393946;background-color:#d4d4ff;border-color:#c7c7ff}html.landing-page-only .btn-light:focus,html.landing-page-only .btn-light.focus{color:#393946;background-color:#d4d4ff;border-color:#c7c7ff;box-shadow:0 0 0 .2rem rgba(221,221,227,.5)}html.landing-page-only .btn-light.disabled,html.landing-page-only .btn-light:disabled{color:#393946;background-color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-light:not(:disabled):not(.disabled):active,html.landing-page-only .btn-light:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-light.dropdown-toggle{color:#393946;background-color:#c7c7ff;border-color:#babaff}html.landing-page-only .btn-light:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-light:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(221,221,227,.5)}html.landing-page-only .btn-dark{color:#fff;background-color:#444452;border-color:#444452}html.landing-page-only .btn-dark:hover{color:#fff;background-color:#33333d;border-color:#2d2d36}html.landing-page-only .btn-dark:focus,html.landing-page-only .btn-dark.focus{color:#fff;background-color:#33333d;border-color:#2d2d36;box-shadow:0 0 0 .2rem rgba(96,96,108,.5)}html.landing-page-only .btn-dark.disabled,html.landing-page-only .btn-dark:disabled{color:#fff;background-color:#444452;border-color:#444452}html.landing-page-only .btn-dark:not(:disabled):not(.disabled):active,html.landing-page-only .btn-dark:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-dark.dropdown-toggle{color:#fff;background-color:#2d2d36;border-color:#27272f}html.landing-page-only .btn-dark:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-dark:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(96,96,108,.5)}html.landing-page-only .btn-blue{color:#fff;background-color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-blue:hover{color:#fff;background-color:#6f62ca;border-color:#6659c7}html.landing-page-only .btn-blue:focus,html.landing-page-only .btn-blue.focus{color:#fff;background-color:#6f62ca;border-color:#6659c7;box-shadow:0 0 0 .2rem rgba(155,146,218,.5)}html.landing-page-only .btn-blue.disabled,html.landing-page-only .btn-blue:disabled{color:#fff;background-color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-blue:not(:disabled):not(.disabled):active,html.landing-page-only .btn-blue:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-blue.dropdown-toggle{color:#fff;background-color:#6659c7;border-color:#5d4fc4}html.landing-page-only .btn-blue:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-blue:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-blue.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(155,146,218,.5)}html.landing-page-only .btn-transparent{color:#fff;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}html.landing-page-only .btn-transparent:hover{color:#fff;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}html.landing-page-only .btn-transparent:focus,html.landing-page-only .btn-transparent.focus{color:#fff;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}html.landing-page-only .btn-transparent.disabled,html.landing-page-only .btn-transparent:disabled{color:#fff;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}html.landing-page-only .btn-transparent:not(:disabled):not(.disabled):active,html.landing-page-only .btn-transparent:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-transparent.dropdown-toggle{color:#fff;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}html.landing-page-only .btn-transparent:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-transparent:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-transparent.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}html.landing-page-only .btn-white{color:#393946;background-color:#fff;border-color:#fff}html.landing-page-only .btn-white:hover{color:#393946;background-color:#ececec;border-color:#e6e6e6}html.landing-page-only .btn-white:focus,html.landing-page-only .btn-white.focus{color:#393946;background-color:#ececec;border-color:#e6e6e6;box-shadow:0 0 0 .2rem rgba(225,225,227,.5)}html.landing-page-only .btn-white.disabled,html.landing-page-only .btn-white:disabled{color:#393946;background-color:#fff;border-color:#fff}html.landing-page-only .btn-white:not(:disabled):not(.disabled):active,html.landing-page-only .btn-white:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-white.dropdown-toggle{color:#393946;background-color:#e6e6e6;border-color:#dfdfdf}html.landing-page-only .btn-white:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-white:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,225,227,.5)}html.landing-page-only .btn-white-100{color:#393946;background-color:#f9f9fd;border-color:#f9f9fd}html.landing-page-only .btn-white-100:hover{color:#393946;background-color:#dcdcf3;border-color:#d3d3f0}html.landing-page-only .btn-white-100:focus,html.landing-page-only .btn-white-100.focus{color:#393946;background-color:#dcdcf3;border-color:#d3d3f0;box-shadow:0 0 0 .2rem rgba(220,220,226,.5)}html.landing-page-only .btn-white-100.disabled,html.landing-page-only .btn-white-100:disabled{color:#393946;background-color:#f9f9fd;border-color:#f9f9fd}html.landing-page-only .btn-white-100:not(:disabled):not(.disabled):active,html.landing-page-only .btn-white-100:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-white-100.dropdown-toggle{color:#393946;background-color:#d3d3f0;border-color:#c9c9ed}html.landing-page-only .btn-white-100:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-white-100:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-white-100.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,220,226,.5)}html.landing-page-only .btn-gray-100{color:#393946;background-color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-gray-100:hover{color:#393946;background-color:#d4d4ff;border-color:#c7c7ff}html.landing-page-only .btn-gray-100:focus,html.landing-page-only .btn-gray-100.focus{color:#393946;background-color:#d4d4ff;border-color:#c7c7ff;box-shadow:0 0 0 .2rem rgba(221,221,227,.5)}html.landing-page-only .btn-gray-100.disabled,html.landing-page-only .btn-gray-100:disabled{color:#393946;background-color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-gray-100:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-100:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-100.dropdown-toggle{color:#393946;background-color:#c7c7ff;border-color:#babaff}html.landing-page-only .btn-gray-100:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-100:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-100.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(221,221,227,.5)}html.landing-page-only .btn-gray-200{color:#393946;background-color:#f7f7fc;border-color:#f7f7fc}html.landing-page-only .btn-gray-200:hover{color:#393946;background-color:#dbdbf2;border-color:#d2d2ee}html.landing-page-only .btn-gray-200:focus,html.landing-page-only .btn-gray-200.focus{color:#393946;background-color:#dbdbf2;border-color:#d2d2ee;box-shadow:0 0 0 .2rem rgba(219,219,225,.5)}html.landing-page-only .btn-gray-200.disabled,html.landing-page-only .btn-gray-200:disabled{color:#393946;background-color:#f7f7fc;border-color:#f7f7fc}html.landing-page-only .btn-gray-200:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-200:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-200.dropdown-toggle{color:#393946;background-color:#d2d2ee;border-color:#c9c9eb}html.landing-page-only .btn-gray-200:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-200:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-200.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(219,219,225,.5)}html.landing-page-only .btn-gray-300{color:#393946;background-color:#f2f1f7;border-color:#f2f1f7}html.landing-page-only .btn-gray-300:hover{color:#393946;background-color:#dbd9e9;border-color:#d4d1e4}html.landing-page-only .btn-gray-300:focus,html.landing-page-only .btn-gray-300.focus{color:#393946;background-color:#dbd9e9;border-color:#d4d1e4;box-shadow:0 0 0 .2rem rgba(214,213,220,.5)}html.landing-page-only .btn-gray-300.disabled,html.landing-page-only .btn-gray-300:disabled{color:#393946;background-color:#f2f1f7;border-color:#f2f1f7}html.landing-page-only .btn-gray-300:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-300:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-300.dropdown-toggle{color:#393946;background-color:#d4d1e4;border-color:#ccc8e0}html.landing-page-only .btn-gray-300:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-300:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-300.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(214,213,220,.5)}html.landing-page-only .btn-gray-400{color:#393946;background-color:#e7e8f3;border-color:#e7e8f3}html.landing-page-only .btn-gray-400:hover{color:#393946;background-color:#ced0e6;border-color:#c5c7e2}html.landing-page-only .btn-gray-400:focus,html.landing-page-only .btn-gray-400.focus{color:#393946;background-color:#ced0e6;border-color:#c5c7e2;box-shadow:0 0 0 .2rem rgba(205,206,217,.5)}html.landing-page-only .btn-gray-400.disabled,html.landing-page-only .btn-gray-400:disabled{color:#393946;background-color:#e7e8f3;border-color:#e7e8f3}html.landing-page-only .btn-gray-400:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-400:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-400.dropdown-toggle{color:#393946;background-color:#c5c7e2;border-color:#bdbfde}html.landing-page-only .btn-gray-400:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-400:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-400.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(205,206,217,.5)}html.landing-page-only .btn-gray-500{color:#393946;background-color:#cccedc;border-color:#cccedc}html.landing-page-only .btn-gray-500:hover{color:#393946;background-color:#b5b8cc;border-color:#aeb1c7}html.landing-page-only .btn-gray-500:focus,html.landing-page-only .btn-gray-500.focus{color:#393946;background-color:#b5b8cc;border-color:#aeb1c7;box-shadow:0 0 0 .2rem rgba(182,184,198,.5)}html.landing-page-only .btn-gray-500.disabled,html.landing-page-only .btn-gray-500:disabled{color:#393946;background-color:#cccedc;border-color:#cccedc}html.landing-page-only .btn-gray-500:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-500:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-500.dropdown-toggle{color:#393946;background-color:#aeb1c7;border-color:#a6aac2}html.landing-page-only .btn-gray-500:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-500:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-500.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(182,184,198,.5)}html.landing-page-only .btn-gray-600{color:#393946;background-color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-gray-600:hover{color:#fff;background-color:#9193a6;border-color:#8a8ca0}html.landing-page-only .btn-gray-600:focus,html.landing-page-only .btn-gray-600.focus{color:#fff;background-color:#9193a6;border-color:#8a8ca0;box-shadow:0 0 0 .2rem rgba(150,151,166,.5)}html.landing-page-only .btn-gray-600.disabled,html.landing-page-only .btn-gray-600:disabled{color:#393946;background-color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-gray-600:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-600:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-600.dropdown-toggle{color:#fff;background-color:#8a8ca0;border-color:#83869a}html.landing-page-only .btn-gray-600:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-600:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-600.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(150,151,166,.5)}html.landing-page-only .btn-gray-700{color:#fff;background-color:#6c6e82;border-color:#6c6e82}html.landing-page-only .btn-gray-700:hover{color:#fff;background-color:#5b5c6d;border-color:#555666}html.landing-page-only .btn-gray-700:focus,html.landing-page-only .btn-gray-700.focus{color:#fff;background-color:#5b5c6d;border-color:#555666;box-shadow:0 0 0 .2rem rgba(130,132,149,.5)}html.landing-page-only .btn-gray-700.disabled,html.landing-page-only .btn-gray-700:disabled{color:#fff;background-color:#6c6e82;border-color:#6c6e82}html.landing-page-only .btn-gray-700:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-700:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-700.dropdown-toggle{color:#fff;background-color:#555666;border-color:#4f515f}html.landing-page-only .btn-gray-700:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-700:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-700.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,132,149,.5)}html.landing-page-only .btn-gray-800{color:#fff;background-color:#444452;border-color:#444452}html.landing-page-only .btn-gray-800:hover{color:#fff;background-color:#33333d;border-color:#2d2d36}html.landing-page-only .btn-gray-800:focus,html.landing-page-only .btn-gray-800.focus{color:#fff;background-color:#33333d;border-color:#2d2d36;box-shadow:0 0 0 .2rem rgba(96,96,108,.5)}html.landing-page-only .btn-gray-800.disabled,html.landing-page-only .btn-gray-800:disabled{color:#fff;background-color:#444452;border-color:#444452}html.landing-page-only .btn-gray-800:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-800:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-800.dropdown-toggle{color:#fff;background-color:#2d2d36;border-color:#27272f}html.landing-page-only .btn-gray-800:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-800:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-800.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(96,96,108,.5)}html.landing-page-only .btn-gray-900{color:#fff;background-color:#393946;border-color:#393946}html.landing-page-only .btn-gray-900:hover{color:#fff;background-color:#282831;border-color:#22222a}html.landing-page-only .btn-gray-900:focus,html.landing-page-only .btn-gray-900.focus{color:#fff;background-color:#282831;border-color:#22222a;box-shadow:0 0 0 .2rem rgba(87,87,98,.5)}html.landing-page-only .btn-gray-900.disabled,html.landing-page-only .btn-gray-900:disabled{color:#fff;background-color:#393946;border-color:#393946}html.landing-page-only .btn-gray-900:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-900:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-900.dropdown-toggle{color:#fff;background-color:#22222a;border-color:#1c1c23}html.landing-page-only .btn-gray-900:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-900:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-900.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(87,87,98,.5)}html.landing-page-only .btn-gray-1000{color:#fff;background-color:#23242d;border-color:#23242d}html.landing-page-only .btn-gray-1000:hover{color:#fff;background-color:#121317;border-color:#0d0d10}html.landing-page-only .btn-gray-1000:focus,html.landing-page-only .btn-gray-1000.focus{color:#fff;background-color:#121317;border-color:#0d0d10;box-shadow:0 0 0 .2rem rgba(68,69,77,.5)}html.landing-page-only .btn-gray-1000.disabled,html.landing-page-only .btn-gray-1000:disabled{color:#fff;background-color:#23242d;border-color:#23242d}html.landing-page-only .btn-gray-1000:not(:disabled):not(.disabled):active,html.landing-page-only .btn-gray-1000:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-gray-1000.dropdown-toggle{color:#fff;background-color:#0d0d10;border-color:#070709}html.landing-page-only .btn-gray-1000:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-gray-1000:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-gray-1000.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(68,69,77,.5)}html.landing-page-only .btn-black{color:#fff;background-color:#2f303b;border-color:#2f303b}html.landing-page-only .btn-black:hover{color:#fff;background-color:#1e1f26;border-color:#18191f}html.landing-page-only .btn-black:focus,html.landing-page-only .btn-black.focus{color:#fff;background-color:#1e1f26;border-color:#18191f;box-shadow:0 0 0 .2rem rgba(78,79,88,.5)}html.landing-page-only .btn-black.disabled,html.landing-page-only .btn-black:disabled{color:#fff;background-color:#2f303b;border-color:#2f303b}html.landing-page-only .btn-black:not(:disabled):not(.disabled):active,html.landing-page-only .btn-black:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-black.dropdown-toggle{color:#fff;background-color:#18191f;border-color:#131318}html.landing-page-only .btn-black:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-black:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-black.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(78,79,88,.5)}html.landing-page-only .btn-outline-primary{color:#ed3b42;border-color:#ed3b42}html.landing-page-only .btn-outline-primary:hover{color:#fff;background-color:#ed3b42;border-color:#ed3b42}html.landing-page-only .btn-outline-primary:focus,html.landing-page-only .btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(237,59,66,.5)}html.landing-page-only .btn-outline-primary.disabled,html.landing-page-only .btn-outline-primary:disabled{color:#ed3b42;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-primary:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-primary:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-primary.dropdown-toggle{color:#fff;background-color:#ed3b42;border-color:#ed3b42}html.landing-page-only .btn-outline-primary:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(237,59,66,.5)}html.landing-page-only .btn-outline-secondary{color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-outline-secondary:hover{color:#393946;background-color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-outline-secondary:focus,html.landing-page-only .btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(166,168,183,.5)}html.landing-page-only .btn-outline-secondary.disabled,html.landing-page-only .btn-outline-secondary:disabled{color:#a6a8b7;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-secondary:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-secondary:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-secondary.dropdown-toggle{color:#393946;background-color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(166,168,183,.5)}html.landing-page-only .btn-outline-success{color:#52cf6e;border-color:#52cf6e}html.landing-page-only .btn-outline-success:hover{color:#393946;background-color:#52cf6e;border-color:#52cf6e}html.landing-page-only .btn-outline-success:focus,html.landing-page-only .btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(82,207,110,.5)}html.landing-page-only .btn-outline-success.disabled,html.landing-page-only .btn-outline-success:disabled{color:#52cf6e;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-success:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-success:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-success.dropdown-toggle{color:#393946;background-color:#52cf6e;border-color:#52cf6e}html.landing-page-only .btn-outline-success:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,207,110,.5)}html.landing-page-only .btn-outline-info{color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-outline-info:hover{color:#fff;background-color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-outline-info:focus,html.landing-page-only .btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(137,127,212,.5)}html.landing-page-only .btn-outline-info.disabled,html.landing-page-only .btn-outline-info:disabled{color:#897fd4;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-info:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-info:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-info.dropdown-toggle{color:#fff;background-color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-outline-info:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(137,127,212,.5)}html.landing-page-only .btn-outline-warning{color:#ffc107;border-color:#ffc107}html.landing-page-only .btn-outline-warning:hover{color:#393946;background-color:#ffc107;border-color:#ffc107}html.landing-page-only .btn-outline-warning:focus,html.landing-page-only .btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}html.landing-page-only .btn-outline-warning.disabled,html.landing-page-only .btn-outline-warning:disabled{color:#ffc107;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-warning:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-warning:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-warning.dropdown-toggle{color:#393946;background-color:#ffc107;border-color:#ffc107}html.landing-page-only .btn-outline-warning:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}html.landing-page-only .btn-outline-danger{color:#dc3545;border-color:#dc3545}html.landing-page-only .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}html.landing-page-only .btn-outline-danger:focus,html.landing-page-only .btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}html.landing-page-only .btn-outline-danger.disabled,html.landing-page-only .btn-outline-danger:disabled{color:#dc3545;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-danger:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-danger:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}html.landing-page-only .btn-outline-danger:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}html.landing-page-only .btn-outline-light{color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-outline-light:hover{color:#393946;background-color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-outline-light:focus,html.landing-page-only .btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(250,250,255,.5)}html.landing-page-only .btn-outline-light.disabled,html.landing-page-only .btn-outline-light:disabled{color:#fafaff;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-light:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-light:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-light.dropdown-toggle{color:#393946;background-color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-outline-light:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(250,250,255,.5)}html.landing-page-only .btn-outline-dark{color:#444452;border-color:#444452}html.landing-page-only .btn-outline-dark:hover{color:#fff;background-color:#444452;border-color:#444452}html.landing-page-only .btn-outline-dark:focus,html.landing-page-only .btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(68,68,82,.5)}html.landing-page-only .btn-outline-dark.disabled,html.landing-page-only .btn-outline-dark:disabled{color:#444452;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-dark:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-dark:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-dark.dropdown-toggle{color:#fff;background-color:#444452;border-color:#444452}html.landing-page-only .btn-outline-dark:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(68,68,82,.5)}html.landing-page-only .btn-outline-blue{color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-outline-blue:hover{color:#fff;background-color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-outline-blue:focus,html.landing-page-only .btn-outline-blue.focus{box-shadow:0 0 0 .2rem rgba(137,127,212,.5)}html.landing-page-only .btn-outline-blue.disabled,html.landing-page-only .btn-outline-blue:disabled{color:#897fd4;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-blue:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-blue:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-blue.dropdown-toggle{color:#fff;background-color:#897fd4;border-color:#897fd4}html.landing-page-only .btn-outline-blue:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-blue:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-blue.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(137,127,212,.5)}html.landing-page-only .btn-outline-transparent{color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-transparent:hover{color:#fff;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-transparent:focus,html.landing-page-only .btn-outline-transparent.focus{box-shadow:0 0 0 .2rem rgba(0,0,0,.5)}html.landing-page-only .btn-outline-transparent.disabled,html.landing-page-only .btn-outline-transparent:disabled{color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-transparent:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-transparent:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-transparent.dropdown-toggle{color:#fff;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-transparent:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-transparent:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-transparent.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,0,0,.5)}html.landing-page-only .btn-outline-white{color:#fff;border-color:#fff}html.landing-page-only .btn-outline-white:hover{color:#393946;background-color:#fff;border-color:#fff}html.landing-page-only .btn-outline-white:focus,html.landing-page-only .btn-outline-white.focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}html.landing-page-only .btn-outline-white.disabled,html.landing-page-only .btn-outline-white:disabled{color:#fff;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-white:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-white:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-white.dropdown-toggle{color:#393946;background-color:#fff;border-color:#fff}html.landing-page-only .btn-outline-white:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-white:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-white.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}html.landing-page-only .btn-outline-white-100{color:#f9f9fd;border-color:#f9f9fd}html.landing-page-only .btn-outline-white-100:hover{color:#393946;background-color:#f9f9fd;border-color:#f9f9fd}html.landing-page-only .btn-outline-white-100:focus,html.landing-page-only .btn-outline-white-100.focus{box-shadow:0 0 0 .2rem rgba(249,249,253,.5)}html.landing-page-only .btn-outline-white-100.disabled,html.landing-page-only .btn-outline-white-100:disabled{color:#f9f9fd;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-white-100:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-white-100:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-white-100.dropdown-toggle{color:#393946;background-color:#f9f9fd;border-color:#f9f9fd}html.landing-page-only .btn-outline-white-100:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-white-100:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-white-100.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(249,249,253,.5)}html.landing-page-only .btn-outline-gray-100{color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-outline-gray-100:hover{color:#393946;background-color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-outline-gray-100:focus,html.landing-page-only .btn-outline-gray-100.focus{box-shadow:0 0 0 .2rem rgba(250,250,255,.5)}html.landing-page-only .btn-outline-gray-100.disabled,html.landing-page-only .btn-outline-gray-100:disabled{color:#fafaff;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-100:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-100:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-100.dropdown-toggle{color:#393946;background-color:#fafaff;border-color:#fafaff}html.landing-page-only .btn-outline-gray-100:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-100:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-100.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(250,250,255,.5)}html.landing-page-only .btn-outline-gray-200{color:#f7f7fc;border-color:#f7f7fc}html.landing-page-only .btn-outline-gray-200:hover{color:#393946;background-color:#f7f7fc;border-color:#f7f7fc}html.landing-page-only .btn-outline-gray-200:focus,html.landing-page-only .btn-outline-gray-200.focus{box-shadow:0 0 0 .2rem rgba(247,247,252,.5)}html.landing-page-only .btn-outline-gray-200.disabled,html.landing-page-only .btn-outline-gray-200:disabled{color:#f7f7fc;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-200:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-200:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-200.dropdown-toggle{color:#393946;background-color:#f7f7fc;border-color:#f7f7fc}html.landing-page-only .btn-outline-gray-200:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-200:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-200.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(247,247,252,.5)}html.landing-page-only .btn-outline-gray-300{color:#f2f1f7;border-color:#f2f1f7}html.landing-page-only .btn-outline-gray-300:hover{color:#393946;background-color:#f2f1f7;border-color:#f2f1f7}html.landing-page-only .btn-outline-gray-300:focus,html.landing-page-only .btn-outline-gray-300.focus{box-shadow:0 0 0 .2rem rgba(242,241,247,.5)}html.landing-page-only .btn-outline-gray-300.disabled,html.landing-page-only .btn-outline-gray-300:disabled{color:#f2f1f7;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-300:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-300:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-300.dropdown-toggle{color:#393946;background-color:#f2f1f7;border-color:#f2f1f7}html.landing-page-only .btn-outline-gray-300:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-300:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-300.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(242,241,247,.5)}html.landing-page-only .btn-outline-gray-400{color:#e7e8f3;border-color:#e7e8f3}html.landing-page-only .btn-outline-gray-400:hover{color:#393946;background-color:#e7e8f3;border-color:#e7e8f3}html.landing-page-only .btn-outline-gray-400:focus,html.landing-page-only .btn-outline-gray-400.focus{box-shadow:0 0 0 .2rem rgba(231,232,243,.5)}html.landing-page-only .btn-outline-gray-400.disabled,html.landing-page-only .btn-outline-gray-400:disabled{color:#e7e8f3;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-400:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-400:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-400.dropdown-toggle{color:#393946;background-color:#e7e8f3;border-color:#e7e8f3}html.landing-page-only .btn-outline-gray-400:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-400:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-400.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(231,232,243,.5)}html.landing-page-only .btn-outline-gray-500{color:#cccedc;border-color:#cccedc}html.landing-page-only .btn-outline-gray-500:hover{color:#393946;background-color:#cccedc;border-color:#cccedc}html.landing-page-only .btn-outline-gray-500:focus,html.landing-page-only .btn-outline-gray-500.focus{box-shadow:0 0 0 .2rem rgba(204,206,220,.5)}html.landing-page-only .btn-outline-gray-500.disabled,html.landing-page-only .btn-outline-gray-500:disabled{color:#cccedc;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-500:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-500:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-500.dropdown-toggle{color:#393946;background-color:#cccedc;border-color:#cccedc}html.landing-page-only .btn-outline-gray-500:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-500:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-500.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(204,206,220,.5)}html.landing-page-only .btn-outline-gray-600{color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-outline-gray-600:hover{color:#393946;background-color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-outline-gray-600:focus,html.landing-page-only .btn-outline-gray-600.focus{box-shadow:0 0 0 .2rem rgba(166,168,183,.5)}html.landing-page-only .btn-outline-gray-600.disabled,html.landing-page-only .btn-outline-gray-600:disabled{color:#a6a8b7;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-600:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-600:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-600.dropdown-toggle{color:#393946;background-color:#a6a8b7;border-color:#a6a8b7}html.landing-page-only .btn-outline-gray-600:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-600:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-600.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(166,168,183,.5)}html.landing-page-only .btn-outline-gray-700{color:#6c6e82;border-color:#6c6e82}html.landing-page-only .btn-outline-gray-700:hover{color:#fff;background-color:#6c6e82;border-color:#6c6e82}html.landing-page-only .btn-outline-gray-700:focus,html.landing-page-only .btn-outline-gray-700.focus{box-shadow:0 0 0 .2rem rgba(108,110,130,.5)}html.landing-page-only .btn-outline-gray-700.disabled,html.landing-page-only .btn-outline-gray-700:disabled{color:#6c6e82;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-700:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-700:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-700.dropdown-toggle{color:#fff;background-color:#6c6e82;border-color:#6c6e82}html.landing-page-only .btn-outline-gray-700:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-700:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-700.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,110,130,.5)}html.landing-page-only .btn-outline-gray-800{color:#444452;border-color:#444452}html.landing-page-only .btn-outline-gray-800:hover{color:#fff;background-color:#444452;border-color:#444452}html.landing-page-only .btn-outline-gray-800:focus,html.landing-page-only .btn-outline-gray-800.focus{box-shadow:0 0 0 .2rem rgba(68,68,82,.5)}html.landing-page-only .btn-outline-gray-800.disabled,html.landing-page-only .btn-outline-gray-800:disabled{color:#444452;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-800:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-800:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-800.dropdown-toggle{color:#fff;background-color:#444452;border-color:#444452}html.landing-page-only .btn-outline-gray-800:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-800:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-800.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(68,68,82,.5)}html.landing-page-only .btn-outline-gray-900{color:#393946;border-color:#393946}html.landing-page-only .btn-outline-gray-900:hover{color:#fff;background-color:#393946;border-color:#393946}html.landing-page-only .btn-outline-gray-900:focus,html.landing-page-only .btn-outline-gray-900.focus{box-shadow:0 0 0 .2rem rgba(57,57,70,.5)}html.landing-page-only .btn-outline-gray-900.disabled,html.landing-page-only .btn-outline-gray-900:disabled{color:#393946;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-900:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-900:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-900.dropdown-toggle{color:#fff;background-color:#393946;border-color:#393946}html.landing-page-only .btn-outline-gray-900:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-900:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-900.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(57,57,70,.5)}html.landing-page-only .btn-outline-gray-1000{color:#23242d;border-color:#23242d}html.landing-page-only .btn-outline-gray-1000:hover{color:#fff;background-color:#23242d;border-color:#23242d}html.landing-page-only .btn-outline-gray-1000:focus,html.landing-page-only .btn-outline-gray-1000.focus{box-shadow:0 0 0 .2rem rgba(35,36,45,.5)}html.landing-page-only .btn-outline-gray-1000.disabled,html.landing-page-only .btn-outline-gray-1000:disabled{color:#23242d;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-gray-1000:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-gray-1000:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-gray-1000.dropdown-toggle{color:#fff;background-color:#23242d;border-color:#23242d}html.landing-page-only .btn-outline-gray-1000:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-gray-1000:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-gray-1000.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(35,36,45,.5)}html.landing-page-only .btn-outline-black{color:#2f303b;border-color:#2f303b}html.landing-page-only .btn-outline-black:hover{color:#fff;background-color:#2f303b;border-color:#2f303b}html.landing-page-only .btn-outline-black:focus,html.landing-page-only .btn-outline-black.focus{box-shadow:0 0 0 .2rem rgba(47,48,59,.5)}html.landing-page-only .btn-outline-black.disabled,html.landing-page-only .btn-outline-black:disabled{color:#2f303b;background-color:rgba(0,0,0,0)}html.landing-page-only .btn-outline-black:not(:disabled):not(.disabled):active,html.landing-page-only .btn-outline-black:not(:disabled):not(.disabled).active,.show>html.landing-page-only .btn-outline-black.dropdown-toggle{color:#fff;background-color:#2f303b;border-color:#2f303b}html.landing-page-only .btn-outline-black:not(:disabled):not(.disabled):active:focus,html.landing-page-only .btn-outline-black:not(:disabled):not(.disabled).active:focus,.show>html.landing-page-only .btn-outline-black.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(47,48,59,.5)}html.landing-page-only .btn-link{font-weight:500;color:#ed3b42;text-decoration:none}html.landing-page-only .btn-link:hover{color:#c9121a;text-decoration:underline}html.landing-page-only .btn-link:focus,html.landing-page-only .btn-link.focus{text-decoration:underline}html.landing-page-only .btn-link:disabled,html.landing-page-only .btn-link.disabled{color:#a6a8b7;pointer-events:none}html.landing-page-only .btn-lg,html.landing-page-only .btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}html.landing-page-only .btn-sm,html.landing-page-only .btn-group-sm>.btn{padding:.25rem .5rem;font-size:0.875rem;line-height:1.5;border-radius:.2rem}html.landing-page-only .btn-block{display:block;width:100%}html.landing-page-only .btn-block+.btn-block{margin-top:.5rem}html.landing-page-only input[type=submit].btn-block,html.landing-page-only input[type=reset].btn-block,html.landing-page-only input[type=button].btn-block{width:100%}html.landing-page-only .fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){html.landing-page-only .fade{transition:none}}html.landing-page-only .fade:not(.show){opacity:0}html.landing-page-only .collapse:not(.show){display:none}html.landing-page-only .collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion: reduce){html.landing-page-only .collapsing{transition:none}}html.landing-page-only .collapsing.width{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){html.landing-page-only .collapsing.width{transition:none}}html.landing-page-only .dropup,html.landing-page-only .dropright,html.landing-page-only .dropdown,html.landing-page-only .dropleft{position:relative}html.landing-page-only .dropdown-toggle{white-space:nowrap}html.landing-page-only .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}html.landing-page-only .dropdown-toggle:empty::after{margin-left:0}html.landing-page-only .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#393946;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(47,48,59,.15);border-radius:8px}html.landing-page-only .dropdown-menu-left{right:auto;left:0}html.landing-page-only .dropdown-menu-right{right:0;left:auto}@media(min-width: 576px){html.landing-page-only .dropdown-menu-sm-left{right:auto;left:0}html.landing-page-only .dropdown-menu-sm-right{right:0;left:auto}}@media(min-width: 768px){html.landing-page-only .dropdown-menu-md-left{right:auto;left:0}html.landing-page-only .dropdown-menu-md-right{right:0;left:auto}}@media(min-width: 992px){html.landing-page-only .dropdown-menu-lg-left{right:auto;left:0}html.landing-page-only .dropdown-menu-lg-right{right:0;left:auto}}@media(min-width: 1152px){html.landing-page-only .dropdown-menu-xl-left{right:auto;left:0}html.landing-page-only .dropdown-menu-xl-right{right:0;left:auto}}html.landing-page-only .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}html.landing-page-only .dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}html.landing-page-only .dropup .dropdown-toggle:empty::after{margin-left:0}html.landing-page-only .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}html.landing-page-only .dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:0;border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}html.landing-page-only .dropright .dropdown-toggle:empty::after{margin-left:0}html.landing-page-only .dropright .dropdown-toggle::after{vertical-align:0}html.landing-page-only .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}html.landing-page-only .dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}html.landing-page-only .dropleft .dropdown-toggle::after{display:none}html.landing-page-only .dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}html.landing-page-only .dropleft .dropdown-toggle:empty::after{margin-left:0}html.landing-page-only .dropleft .dropdown-toggle::before{vertical-align:0}html.landing-page-only .dropdown-menu[x-placement^=top],html.landing-page-only .dropdown-menu[x-placement^=right],html.landing-page-only .dropdown-menu[x-placement^=bottom],html.landing-page-only .dropdown-menu[x-placement^=left]{right:auto;bottom:auto}html.landing-page-only .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #f7f7fc}html.landing-page-only .dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:500;color:#393946;text-align:inherit;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}html.landing-page-only .dropdown-item:hover,html.landing-page-only .dropdown-item:focus{color:#2e2e38;text-decoration:none;background-color:#f7f7fc}html.landing-page-only .dropdown-item.active,html.landing-page-only .dropdown-item:active{color:#fff;text-decoration:none;background-color:#ed3b42}html.landing-page-only .dropdown-item.disabled,html.landing-page-only .dropdown-item:disabled{color:#cccedc;pointer-events:none;background-color:rgba(0,0,0,0)}html.landing-page-only .dropdown-menu.show{display:block}html.landing-page-only .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:0.875rem;color:#a6a8b7;white-space:nowrap}html.landing-page-only .dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#393946}html.landing-page-only .btn-group,html.landing-page-only .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}html.landing-page-only .btn-group>.btn,html.landing-page-only .btn-group-vertical>.btn{position:relative;flex:1 1 auto}html.landing-page-only .btn-group>.btn:hover,html.landing-page-only .btn-group-vertical>.btn:hover{z-index:1}html.landing-page-only .btn-group>.btn:focus,html.landing-page-only .btn-group>.btn:active,html.landing-page-only .btn-group>.btn.active,html.landing-page-only .btn-group-vertical>.btn:focus,html.landing-page-only .btn-group-vertical>.btn:active,html.landing-page-only .btn-group-vertical>.btn.active{z-index:1}html.landing-page-only .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}html.landing-page-only .btn-toolbar .input-group{width:auto}html.landing-page-only .btn-group>.btn:not(:first-child),html.landing-page-only .btn-group>.btn-group:not(:first-child){margin-left:-1px}html.landing-page-only .btn-group>.btn:not(:last-child):not(.dropdown-toggle),html.landing-page-only .btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}html.landing-page-only .btn-group>.btn:not(:first-child),html.landing-page-only .btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}html.landing-page-only .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html.landing-page-only .dropdown-toggle-split::after,.dropup html.landing-page-only .dropdown-toggle-split::after,.dropright html.landing-page-only .dropdown-toggle-split::after{margin-left:0}.dropleft html.landing-page-only .dropdown-toggle-split::before{margin-right:0}html.landing-page-only .btn-sm+.dropdown-toggle-split,html.landing-page-only .btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}html.landing-page-only .btn-lg+.dropdown-toggle-split,html.landing-page-only .btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}html.landing-page-only .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}html.landing-page-only .btn-group-vertical>.btn,html.landing-page-only .btn-group-vertical>.btn-group{width:100%}html.landing-page-only .btn-group-vertical>.btn:not(:first-child),html.landing-page-only .btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}html.landing-page-only .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html.landing-page-only .btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}html.landing-page-only .btn-group-vertical>.btn:not(:first-child),html.landing-page-only .btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}html.landing-page-only .btn-group-toggle>.btn,html.landing-page-only .btn-group-toggle>.btn-group>.btn{margin-bottom:0}html.landing-page-only .btn-group-toggle>.btn input[type=radio],html.landing-page-only .btn-group-toggle>.btn input[type=checkbox],html.landing-page-only .btn-group-toggle>.btn-group>.btn input[type=radio],html.landing-page-only .btn-group-toggle>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}html.landing-page-only .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}html.landing-page-only .input-group>.form-control,html.landing-page-only .input-group>.form-control-plaintext,html.landing-page-only .input-group>.custom-select,html.landing-page-only .input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}html.landing-page-only .input-group>.form-control+.form-control,html.landing-page-only .input-group>.form-control+.custom-select,html.landing-page-only .input-group>.form-control+.custom-file,html.landing-page-only .input-group>.form-control-plaintext+.form-control,html.landing-page-only .input-group>.form-control-plaintext+.custom-select,html.landing-page-only .input-group>.form-control-plaintext+.custom-file,html.landing-page-only .input-group>.custom-select+.form-control,html.landing-page-only .input-group>.custom-select+.custom-select,html.landing-page-only .input-group>.custom-select+.custom-file,html.landing-page-only .input-group>.custom-file+.form-control,html.landing-page-only .input-group>.custom-file+.custom-select,html.landing-page-only .input-group>.custom-file+.custom-file{margin-left:-1px}html.landing-page-only .input-group>.form-control:focus,html.landing-page-only .input-group>.custom-select:focus,html.landing-page-only .input-group>.custom-file .custom-file-input:focus~.custom-file-label{z-index:3}html.landing-page-only .input-group>.custom-file .custom-file-input:focus{z-index:4}html.landing-page-only .input-group>.form-control:not(:first-child),html.landing-page-only .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html.landing-page-only .input-group>.custom-file{display:flex;align-items:center}html.landing-page-only .input-group>.custom-file:not(:last-child) .custom-file-label,html.landing-page-only .input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}html.landing-page-only .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}html.landing-page-only .input-group:not(.has-validation)>.form-control:not(:last-child),html.landing-page-only .input-group:not(.has-validation)>.custom-select:not(:last-child),html.landing-page-only .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,html.landing-page-only .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}html.landing-page-only .input-group.has-validation>.form-control:nth-last-child(n+3),html.landing-page-only .input-group.has-validation>.custom-select:nth-last-child(n+3),html.landing-page-only .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,html.landing-page-only .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}html.landing-page-only .input-group-prepend,html.landing-page-only .input-group-append{display:flex}html.landing-page-only .input-group-prepend .btn,html.landing-page-only .input-group-append .btn{position:relative;z-index:2}html.landing-page-only .input-group-prepend .btn:focus,html.landing-page-only .input-group-append .btn:focus{z-index:3}html.landing-page-only .input-group-prepend .btn+.btn,html.landing-page-only .input-group-prepend .btn+.input-group-text,html.landing-page-only .input-group-prepend .input-group-text+.input-group-text,html.landing-page-only .input-group-prepend .input-group-text+.btn,html.landing-page-only .input-group-append .btn+.btn,html.landing-page-only .input-group-append .btn+.input-group-text,html.landing-page-only .input-group-append .input-group-text+.input-group-text,html.landing-page-only .input-group-append .input-group-text+.btn{margin-left:-1px}html.landing-page-only .input-group-prepend{margin-right:-1px}html.landing-page-only .input-group-append{margin-left:-1px}html.landing-page-only .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:500;line-height:1.5;color:#6c6e82;text-align:center;white-space:nowrap;background-color:#f7f7fc;border:1px solid #e7e8f3;border-radius:8px}html.landing-page-only .input-group-text input[type=radio],html.landing-page-only .input-group-text input[type=checkbox]{margin-top:0}html.landing-page-only .input-group-lg>.form-control:not(textarea),html.landing-page-only .input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}html.landing-page-only .input-group-lg>.form-control,html.landing-page-only .input-group-lg>.custom-select,html.landing-page-only .input-group-lg>.input-group-prepend>.input-group-text,html.landing-page-only .input-group-lg>.input-group-append>.input-group-text,html.landing-page-only .input-group-lg>.input-group-prepend>.btn,html.landing-page-only .input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}html.landing-page-only .input-group-sm>.form-control:not(textarea),html.landing-page-only .input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}html.landing-page-only .input-group-sm>.form-control,html.landing-page-only .input-group-sm>.custom-select,html.landing-page-only .input-group-sm>.input-group-prepend>.input-group-text,html.landing-page-only .input-group-sm>.input-group-append>.input-group-text,html.landing-page-only .input-group-sm>.input-group-prepend>.btn,html.landing-page-only .input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:0.875rem;line-height:1.5;border-radius:.2rem}html.landing-page-only .input-group-lg>.custom-select,html.landing-page-only .input-group-sm>.custom-select{padding-right:1.75rem}html.landing-page-only .input-group>.input-group-prepend>.btn,html.landing-page-only .input-group>.input-group-prepend>.input-group-text,html.landing-page-only .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,html.landing-page-only .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,html.landing-page-only .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,html.landing-page-only .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,html.landing-page-only .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),html.landing-page-only .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.landing-page-only .input-group>.input-group-append>.btn,html.landing-page-only .input-group>.input-group-append>.input-group-text,html.landing-page-only .input-group>.input-group-prepend:not(:first-child)>.btn,html.landing-page-only .input-group>.input-group-prepend:not(:first-child)>.input-group-text,html.landing-page-only .input-group>.input-group-prepend:first-child>.btn:not(:first-child),html.landing-page-only .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html.landing-page-only .custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}html.landing-page-only .custom-control-inline{display:inline-flex;margin-right:1rem}html.landing-page-only .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}html.landing-page-only .custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#ed3b42;background-color:#ed3b42}html.landing-page-only .custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(237,59,66,.25)}html.landing-page-only .custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#f8b0b3}html.landing-page-only .custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#fcdee0;border-color:#fcdee0}html.landing-page-only .custom-control-input[disabled]~.custom-control-label,html.landing-page-only .custom-control-input:disabled~.custom-control-label{color:#a6a8b7}html.landing-page-only .custom-control-input[disabled]~.custom-control-label::before,html.landing-page-only .custom-control-input:disabled~.custom-control-label::before{background-color:#f7f7fc}html.landing-page-only .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}html.landing-page-only .custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #cccedc}html.landing-page-only .custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}html.landing-page-only .custom-checkbox .custom-control-label::before{border-radius:8px}html.landing-page-only .custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}html.landing-page-only .custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#ed3b42;background-color:#ed3b42}html.landing-page-only .custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23ffffff' d='M0 2h4'/%3e%3c/svg%3e")}html.landing-page-only .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(237,59,66,.5)}html.landing-page-only .custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(237,59,66,.5)}html.landing-page-only .custom-radio .custom-control-label::before{border-radius:50%}html.landing-page-only .custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e")}html.landing-page-only .custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(237,59,66,.5)}html.landing-page-only .custom-switch{padding-left:2.25rem}html.landing-page-only .custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}html.landing-page-only .custom-switch .custom-control-label::after{top:calc(0.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#cccedc;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){html.landing-page-only .custom-switch .custom-control-label::after{transition:none}}html.landing-page-only .custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;transform:translateX(0.75rem)}html.landing-page-only .custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(237,59,66,.5)}html.landing-page-only .custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:500;line-height:1.5;color:#6c6e82;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23444452' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;border:1px solid #e7e8f3;border-radius:8px;-webkit-appearance:none;appearance:none}html.landing-page-only .custom-select:focus{border-color:#f8b0b3;outline:0;box-shadow:0 0 0 .2rem rgba(237,59,66,.25)}html.landing-page-only .custom-select:focus::-ms-value{color:#6c6e82;background-color:#fff}html.landing-page-only .custom-select[multiple],html.landing-page-only .custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}html.landing-page-only .custom-select:disabled{color:#a6a8b7;background-color:#f7f7fc}html.landing-page-only .custom-select::-ms-expand{display:none}html.landing-page-only .custom-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #6c6e82}html.landing-page-only .custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.875rem}html.landing-page-only .custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}html.landing-page-only .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}html.landing-page-only .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;overflow:hidden;opacity:0}html.landing-page-only .custom-file-input:focus~.custom-file-label{border-color:#f8b0b3;box-shadow:0 0 0 .2rem rgba(237,59,66,.25)}html.landing-page-only .custom-file-input[disabled]~.custom-file-label,html.landing-page-only .custom-file-input:disabled~.custom-file-label{background-color:#f7f7fc}html.landing-page-only .custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}html.landing-page-only .custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}html.landing-page-only .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:500;line-height:1.5;color:#6c6e82;background-color:#fff;border:1px solid #e7e8f3;border-radius:8px}html.landing-page-only .custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:.375rem .75rem;line-height:1.5;color:#6c6e82;content:"Browse";background-color:#f7f7fc;border-left:inherit;border-radius:0 8px 8px 0}html.landing-page-only .custom-range{width:100%;height:1.4rem;padding:0;background-color:rgba(0,0,0,0);-webkit-appearance:none;appearance:none}html.landing-page-only .custom-range:focus{outline:0}html.landing-page-only .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(237,59,66,.25)}html.landing-page-only .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(237,59,66,.25)}html.landing-page-only .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(237,59,66,.25)}html.landing-page-only .custom-range::-moz-focus-outer{border:0}html.landing-page-only .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#ed3b42;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media(prefers-reduced-motion: reduce){html.landing-page-only .custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}html.landing-page-only .custom-range::-webkit-slider-thumb:active{background-color:#fcdee0}html.landing-page-only .custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f2f1f7;border-color:rgba(0,0,0,0);border-radius:1rem}html.landing-page-only .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#ed3b42;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion: reduce){html.landing-page-only .custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}html.landing-page-only .custom-range::-moz-range-thumb:active{background-color:#fcdee0}html.landing-page-only .custom-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f2f1f7;border-color:rgba(0,0,0,0);border-radius:1rem}html.landing-page-only .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#ed3b42;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion: reduce){html.landing-page-only .custom-range::-ms-thumb{-ms-transition:none;transition:none}}html.landing-page-only .custom-range::-ms-thumb:active{background-color:#fcdee0}html.landing-page-only .custom-range::-ms-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);border-width:.5rem}html.landing-page-only .custom-range::-ms-fill-lower{background-color:#f2f1f7;border-radius:1rem}html.landing-page-only .custom-range::-ms-fill-upper{margin-right:15px;background-color:#f2f1f7;border-radius:1rem}html.landing-page-only .custom-range:disabled::-webkit-slider-thumb{background-color:#cccedc}html.landing-page-only .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}html.landing-page-only .custom-range:disabled::-moz-range-thumb{background-color:#cccedc}html.landing-page-only .custom-range:disabled::-moz-range-track{cursor:default}html.landing-page-only .custom-range:disabled::-ms-thumb{background-color:#cccedc}html.landing-page-only .custom-control-label::before,html.landing-page-only .custom-file-label,html.landing-page-only .custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){html.landing-page-only .custom-control-label::before,html.landing-page-only .custom-file-label,html.landing-page-only .custom-select{transition:none}}html.landing-page-only .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}html.landing-page-only .nav-link{display:block;padding:.5rem 1rem}html.landing-page-only .nav-link:hover,html.landing-page-only .nav-link:focus{text-decoration:none}html.landing-page-only .nav-link.disabled{color:#a6a8b7;pointer-events:none;cursor:default}html.landing-page-only .nav-tabs{border-bottom:1px solid #f2f1f7}html.landing-page-only .nav-tabs .nav-link{margin-bottom:-1px;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);border-top-left-radius:8px;border-top-right-radius:8px}html.landing-page-only .nav-tabs .nav-link:hover,html.landing-page-only .nav-tabs .nav-link:focus{isolation:isolate;border-color:#f7f7fc #f7f7fc #f2f1f7}html.landing-page-only .nav-tabs .nav-link.disabled{color:#a6a8b7;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}html.landing-page-only .nav-tabs .nav-link.active,html.landing-page-only .nav-tabs .nav-item.show .nav-link{color:#6c6e82;background-color:#fff;border-color:#f2f1f7 #f2f1f7 #fff}html.landing-page-only .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}html.landing-page-only .nav-pills .nav-link{background:none;border:0;border-radius:8px}html.landing-page-only .nav-pills .nav-link.active,html.landing-page-only .nav-pills .show>.nav-link{color:#fff;background-color:#ed3b42}html.landing-page-only .nav-fill>.nav-link,html.landing-page-only .nav-fill .nav-item{flex:1 1 auto;text-align:center}html.landing-page-only .nav-justified>.nav-link,html.landing-page-only .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}html.landing-page-only .tab-content>.tab-pane{display:none}html.landing-page-only .tab-content>.active{display:block}html.landing-page-only .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}html.landing-page-only .navbar .container,html.landing-page-only .navbar .container-fluid,html.landing-page-only .navbar .container-sm,html.landing-page-only .navbar .container-md,html.landing-page-only .navbar .container-lg,html.landing-page-only .navbar .container-xl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}html.landing-page-only .navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}html.landing-page-only .navbar-brand:hover,html.landing-page-only .navbar-brand:focus{text-decoration:none}html.landing-page-only .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}html.landing-page-only .navbar-nav .nav-link{padding-right:0;padding-left:0}html.landing-page-only .navbar-nav .dropdown-menu{position:static;float:none}html.landing-page-only .navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}html.landing-page-only .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}html.landing-page-only .navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);border-radius:8px}html.landing-page-only .navbar-toggler:hover,html.landing-page-only .navbar-toggler:focus{text-decoration:none}html.landing-page-only .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}html.landing-page-only .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media(max-width: 575.98px){html.landing-page-only .navbar-expand-sm>.container,html.landing-page-only .navbar-expand-sm>.container-fluid,html.landing-page-only .navbar-expand-sm>.container-sm,html.landing-page-only .navbar-expand-sm>.container-md,html.landing-page-only .navbar-expand-sm>.container-lg,html.landing-page-only .navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media(min-width: 576px){html.landing-page-only .navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}html.landing-page-only .navbar-expand-sm .navbar-nav{flex-direction:row}html.landing-page-only .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}html.landing-page-only .navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html.landing-page-only .navbar-expand-sm>.container,html.landing-page-only .navbar-expand-sm>.container-fluid,html.landing-page-only .navbar-expand-sm>.container-sm,html.landing-page-only .navbar-expand-sm>.container-md,html.landing-page-only .navbar-expand-sm>.container-lg,html.landing-page-only .navbar-expand-sm>.container-xl{flex-wrap:nowrap}html.landing-page-only .navbar-expand-sm .navbar-nav-scroll{overflow:visible}html.landing-page-only .navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}html.landing-page-only .navbar-expand-sm .navbar-toggler{display:none}}@media(max-width: 767.98px){html.landing-page-only .navbar-expand-md>.container,html.landing-page-only .navbar-expand-md>.container-fluid,html.landing-page-only .navbar-expand-md>.container-sm,html.landing-page-only .navbar-expand-md>.container-md,html.landing-page-only .navbar-expand-md>.container-lg,html.landing-page-only .navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media(min-width: 768px){html.landing-page-only .navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}html.landing-page-only .navbar-expand-md .navbar-nav{flex-direction:row}html.landing-page-only .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}html.landing-page-only .navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html.landing-page-only .navbar-expand-md>.container,html.landing-page-only .navbar-expand-md>.container-fluid,html.landing-page-only .navbar-expand-md>.container-sm,html.landing-page-only .navbar-expand-md>.container-md,html.landing-page-only .navbar-expand-md>.container-lg,html.landing-page-only .navbar-expand-md>.container-xl{flex-wrap:nowrap}html.landing-page-only .navbar-expand-md .navbar-nav-scroll{overflow:visible}html.landing-page-only .navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}html.landing-page-only .navbar-expand-md .navbar-toggler{display:none}}@media(max-width: 991.98px){html.landing-page-only .navbar-expand-lg>.container,html.landing-page-only .navbar-expand-lg>.container-fluid,html.landing-page-only .navbar-expand-lg>.container-sm,html.landing-page-only .navbar-expand-lg>.container-md,html.landing-page-only .navbar-expand-lg>.container-lg,html.landing-page-only .navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media(min-width: 992px){html.landing-page-only .navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}html.landing-page-only .navbar-expand-lg .navbar-nav{flex-direction:row}html.landing-page-only .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}html.landing-page-only .navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html.landing-page-only .navbar-expand-lg>.container,html.landing-page-only .navbar-expand-lg>.container-fluid,html.landing-page-only .navbar-expand-lg>.container-sm,html.landing-page-only .navbar-expand-lg>.container-md,html.landing-page-only .navbar-expand-lg>.container-lg,html.landing-page-only .navbar-expand-lg>.container-xl{flex-wrap:nowrap}html.landing-page-only .navbar-expand-lg .navbar-nav-scroll{overflow:visible}html.landing-page-only .navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}html.landing-page-only .navbar-expand-lg .navbar-toggler{display:none}}@media(max-width: 1151.98px){html.landing-page-only .navbar-expand-xl>.container,html.landing-page-only .navbar-expand-xl>.container-fluid,html.landing-page-only .navbar-expand-xl>.container-sm,html.landing-page-only .navbar-expand-xl>.container-md,html.landing-page-only .navbar-expand-xl>.container-lg,html.landing-page-only .navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media(min-width: 1152px){html.landing-page-only .navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}html.landing-page-only .navbar-expand-xl .navbar-nav{flex-direction:row}html.landing-page-only .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}html.landing-page-only .navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html.landing-page-only .navbar-expand-xl>.container,html.landing-page-only .navbar-expand-xl>.container-fluid,html.landing-page-only .navbar-expand-xl>.container-sm,html.landing-page-only .navbar-expand-xl>.container-md,html.landing-page-only .navbar-expand-xl>.container-lg,html.landing-page-only .navbar-expand-xl>.container-xl{flex-wrap:nowrap}html.landing-page-only .navbar-expand-xl .navbar-nav-scroll{overflow:visible}html.landing-page-only .navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}html.landing-page-only .navbar-expand-xl .navbar-toggler{display:none}}html.landing-page-only .navbar-expand{flex-flow:row nowrap;justify-content:flex-start}html.landing-page-only .navbar-expand>.container,html.landing-page-only .navbar-expand>.container-fluid,html.landing-page-only .navbar-expand>.container-sm,html.landing-page-only .navbar-expand>.container-md,html.landing-page-only .navbar-expand>.container-lg,html.landing-page-only .navbar-expand>.container-xl{padding-right:0;padding-left:0}html.landing-page-only .navbar-expand .navbar-nav{flex-direction:row}html.landing-page-only .navbar-expand .navbar-nav .dropdown-menu{position:absolute}html.landing-page-only .navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html.landing-page-only .navbar-expand>.container,html.landing-page-only .navbar-expand>.container-fluid,html.landing-page-only .navbar-expand>.container-sm,html.landing-page-only .navbar-expand>.container-md,html.landing-page-only .navbar-expand>.container-lg,html.landing-page-only .navbar-expand>.container-xl{flex-wrap:nowrap}html.landing-page-only .navbar-expand .navbar-nav-scroll{overflow:visible}html.landing-page-only .navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}html.landing-page-only .navbar-expand .navbar-toggler{display:none}html.landing-page-only .navbar-light .navbar-brand{color:rgba(47,48,59,.9)}html.landing-page-only .navbar-light .navbar-brand:hover,html.landing-page-only .navbar-light .navbar-brand:focus{color:rgba(47,48,59,.9)}html.landing-page-only .navbar-light .navbar-nav .nav-link{color:rgba(47,48,59,.5)}html.landing-page-only .navbar-light .navbar-nav .nav-link:hover,html.landing-page-only .navbar-light .navbar-nav .nav-link:focus{color:rgba(47,48,59,.7)}html.landing-page-only .navbar-light .navbar-nav .nav-link.disabled{color:rgba(47,48,59,.3)}html.landing-page-only .navbar-light .navbar-nav .show>.nav-link,html.landing-page-only .navbar-light .navbar-nav .active>.nav-link,html.landing-page-only .navbar-light .navbar-nav .nav-link.show,html.landing-page-only .navbar-light .navbar-nav .nav-link.active{color:rgba(47,48,59,.9)}html.landing-page-only .navbar-light .navbar-toggler{color:rgba(47,48,59,.5);border-color:rgba(47,48,59,.1)}html.landing-page-only .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2847, 48, 59, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html.landing-page-only .navbar-light .navbar-text{color:rgba(47,48,59,.5)}html.landing-page-only .navbar-light .navbar-text a{color:rgba(47,48,59,.9)}html.landing-page-only .navbar-light .navbar-text a:hover,html.landing-page-only .navbar-light .navbar-text a:focus{color:rgba(47,48,59,.9)}html.landing-page-only .navbar-dark .navbar-brand{color:#fff}html.landing-page-only .navbar-dark .navbar-brand:hover,html.landing-page-only .navbar-dark .navbar-brand:focus{color:#fff}html.landing-page-only .navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}html.landing-page-only .navbar-dark .navbar-nav .nav-link:hover,html.landing-page-only .navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}html.landing-page-only .navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}html.landing-page-only .navbar-dark .navbar-nav .show>.nav-link,html.landing-page-only .navbar-dark .navbar-nav .active>.nav-link,html.landing-page-only .navbar-dark .navbar-nav .nav-link.show,html.landing-page-only .navbar-dark .navbar-nav .nav-link.active{color:#fff}html.landing-page-only .navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}html.landing-page-only .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}html.landing-page-only .navbar-dark .navbar-text{color:rgba(255,255,255,.5)}html.landing-page-only .navbar-dark .navbar-text a{color:#fff}html.landing-page-only .navbar-dark .navbar-text a:hover,html.landing-page-only .navbar-dark .navbar-text a:focus{color:#fff}html.landing-page-only .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(47,48,59,.125);border-radius:8px}html.landing-page-only .card>hr{margin-right:0;margin-left:0}html.landing-page-only .card>.list-group{border-top:inherit;border-bottom:inherit}html.landing-page-only .card>.list-group:first-child{border-top-width:0;border-top-left-radius:7px;border-top-right-radius:7px}html.landing-page-only .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:7px;border-bottom-left-radius:7px}html.landing-page-only .card>.card-header+.list-group,html.landing-page-only .card>.list-group+.card-footer{border-top:0}html.landing-page-only .card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}html.landing-page-only .card-title{margin-bottom:.75rem}html.landing-page-only .card-subtitle{margin-top:-0.375rem;margin-bottom:0}html.landing-page-only .card-text:last-child{margin-bottom:0}html.landing-page-only .card-link:hover{text-decoration:none}html.landing-page-only .card-link+.card-link{margin-left:1.25rem}html.landing-page-only .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(47,48,59,.03);border-bottom:1px solid rgba(47,48,59,.125)}html.landing-page-only .card-header:first-child{border-radius:7px 7px 0 0}html.landing-page-only .card-footer{padding:.75rem 1.25rem;background-color:rgba(47,48,59,.03);border-top:1px solid rgba(47,48,59,.125)}html.landing-page-only .card-footer:last-child{border-radius:0 0 7px 7px}html.landing-page-only .card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}html.landing-page-only .card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}html.landing-page-only .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:7px}html.landing-page-only .card-img,html.landing-page-only .card-img-top,html.landing-page-only .card-img-bottom{flex-shrink:0;width:100%}html.landing-page-only .card-img,html.landing-page-only .card-img-top{border-top-left-radius:7px;border-top-right-radius:7px}html.landing-page-only .card-img,html.landing-page-only .card-img-bottom{border-bottom-right-radius:7px;border-bottom-left-radius:7px}html.landing-page-only .card-deck .card{margin-bottom:15px}@media(min-width: 576px){html.landing-page-only .card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}html.landing-page-only .card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}html.landing-page-only .card-group>.card{margin-bottom:15px}@media(min-width: 576px){html.landing-page-only .card-group{display:flex;flex-flow:row wrap}html.landing-page-only .card-group>.card{flex:1 0 0%;margin-bottom:0}html.landing-page-only .card-group>.card+.card{margin-left:0;border-left:0}html.landing-page-only .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.landing-page-only .card-group>.card:not(:last-child) .card-img-top,html.landing-page-only .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}html.landing-page-only .card-group>.card:not(:last-child) .card-img-bottom,html.landing-page-only .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}html.landing-page-only .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html.landing-page-only .card-group>.card:not(:first-child) .card-img-top,html.landing-page-only .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}html.landing-page-only .card-group>.card:not(:first-child) .card-img-bottom,html.landing-page-only .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}html.landing-page-only .card-columns .card{margin-bottom:.75rem}@media(min-width: 576px){html.landing-page-only .card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}html.landing-page-only .card-columns .card{display:inline-block;width:100%}}html.landing-page-only .accordion{overflow-anchor:none}html.landing-page-only .accordion>.card{overflow:hidden}html.landing-page-only .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}html.landing-page-only .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}html.landing-page-only .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}html.landing-page-only .breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#f7f7fc;border-radius:8px}html.landing-page-only .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}html.landing-page-only .breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#a6a8b7;content:"/"}html.landing-page-only .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}html.landing-page-only .breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}html.landing-page-only .breadcrumb-item.active{color:#a6a8b7}html.landing-page-only .pagination{display:flex;padding-left:0;list-style:none;border-radius:8px}html.landing-page-only .page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#ed3b42;background-color:#fff;border:1px solid #f2f1f7}html.landing-page-only .page-link:hover{z-index:2;color:#c9121a;text-decoration:none;background-color:#f7f7fc;border-color:#f2f1f7}html.landing-page-only .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(237,59,66,.25)}html.landing-page-only .page-item:first-child .page-link{margin-left:0;border-top-left-radius:8px;border-bottom-left-radius:8px}html.landing-page-only .page-item:last-child .page-link{border-top-right-radius:8px;border-bottom-right-radius:8px}html.landing-page-only .page-item.active .page-link{z-index:3;color:#fff;background-color:#ed3b42;border-color:#ed3b42}html.landing-page-only .page-item.disabled .page-link{color:#a6a8b7;pointer-events:none;cursor:auto;background-color:#fff;border-color:#f2f1f7}html.landing-page-only .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}html.landing-page-only .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}html.landing-page-only .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}html.landing-page-only .pagination-sm .page-link{padding:.25rem .5rem;font-size:0.875rem;line-height:1.5}html.landing-page-only .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}html.landing-page-only .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}html.landing-page-only .badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:800;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:8px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){html.landing-page-only .badge{transition:none}}ahtml.landing-page-only .badge:hover,ahtml.landing-page-only .badge:focus{text-decoration:none}html.landing-page-only .badge:empty{display:none}html.landing-page-only .btn .badge{position:relative;top:-1px}html.landing-page-only .badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}html.landing-page-only .badge-primary{color:#fff;background-color:#ed3b42}ahtml.landing-page-only .badge-primary:hover,ahtml.landing-page-only .badge-primary:focus{color:#fff;background-color:#e0151d}ahtml.landing-page-only .badge-primary:focus,ahtml.landing-page-only .badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(237,59,66,.5)}html.landing-page-only .badge-secondary{color:#393946;background-color:#a6a8b7}ahtml.landing-page-only .badge-secondary:hover,ahtml.landing-page-only .badge-secondary:focus{color:#393946;background-color:#8a8ca0}ahtml.landing-page-only .badge-secondary:focus,ahtml.landing-page-only .badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(166,168,183,.5)}html.landing-page-only .badge-success{color:#393946;background-color:#52cf6e}ahtml.landing-page-only .badge-success:hover,ahtml.landing-page-only .badge-success:focus{color:#393946;background-color:#34ba52}ahtml.landing-page-only .badge-success:focus,ahtml.landing-page-only .badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(82,207,110,.5)}html.landing-page-only .badge-info{color:#fff;background-color:#897fd4}ahtml.landing-page-only .badge-info:hover,ahtml.landing-page-only .badge-info:focus{color:#fff;background-color:#6659c7}ahtml.landing-page-only .badge-info:focus,ahtml.landing-page-only .badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(137,127,212,.5)}html.landing-page-only .badge-warning{color:#393946;background-color:#ffc107}ahtml.landing-page-only .badge-warning:hover,ahtml.landing-page-only .badge-warning:focus{color:#393946;background-color:#d39e00}ahtml.landing-page-only .badge-warning:focus,ahtml.landing-page-only .badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}html.landing-page-only .badge-danger{color:#fff;background-color:#dc3545}ahtml.landing-page-only .badge-danger:hover,ahtml.landing-page-only .badge-danger:focus{color:#fff;background-color:#bd2130}ahtml.landing-page-only .badge-danger:focus,ahtml.landing-page-only .badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}html.landing-page-only .badge-light{color:#393946;background-color:#fafaff}ahtml.landing-page-only .badge-light:hover,ahtml.landing-page-only .badge-light:focus{color:#393946;background-color:#c7c7ff}ahtml.landing-page-only .badge-light:focus,ahtml.landing-page-only .badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(250,250,255,.5)}html.landing-page-only .badge-dark{color:#fff;background-color:#444452}ahtml.landing-page-only .badge-dark:hover,ahtml.landing-page-only .badge-dark:focus{color:#fff;background-color:#2d2d36}ahtml.landing-page-only .badge-dark:focus,ahtml.landing-page-only .badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(68,68,82,.5)}html.landing-page-only .badge-blue{color:#fff;background-color:#897fd4}ahtml.landing-page-only .badge-blue:hover,ahtml.landing-page-only .badge-blue:focus{color:#fff;background-color:#6659c7}ahtml.landing-page-only .badge-blue:focus,ahtml.landing-page-only .badge-blue.focus{outline:0;box-shadow:0 0 0 .2rem rgba(137,127,212,.5)}html.landing-page-only .badge-transparent{color:#fff;background-color:rgba(0,0,0,0)}ahtml.landing-page-only .badge-transparent:hover,ahtml.landing-page-only .badge-transparent:focus{color:#fff;background-color:rgba(0,0,0,0)}ahtml.landing-page-only .badge-transparent:focus,ahtml.landing-page-only .badge-transparent.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,0,0,.5)}html.landing-page-only .badge-white{color:#393946;background-color:#fff}ahtml.landing-page-only .badge-white:hover,ahtml.landing-page-only .badge-white:focus{color:#393946;background-color:#e6e6e6}ahtml.landing-page-only .badge-white:focus,ahtml.landing-page-only .badge-white.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}html.landing-page-only .badge-white-100{color:#393946;background-color:#f9f9fd}ahtml.landing-page-only .badge-white-100:hover,ahtml.landing-page-only .badge-white-100:focus{color:#393946;background-color:#d3d3f0}ahtml.landing-page-only .badge-white-100:focus,ahtml.landing-page-only .badge-white-100.focus{outline:0;box-shadow:0 0 0 .2rem rgba(249,249,253,.5)}html.landing-page-only .badge-gray-100{color:#393946;background-color:#fafaff}ahtml.landing-page-only .badge-gray-100:hover,ahtml.landing-page-only .badge-gray-100:focus{color:#393946;background-color:#c7c7ff}ahtml.landing-page-only .badge-gray-100:focus,ahtml.landing-page-only .badge-gray-100.focus{outline:0;box-shadow:0 0 0 .2rem rgba(250,250,255,.5)}html.landing-page-only .badge-gray-200{color:#393946;background-color:#f7f7fc}ahtml.landing-page-only .badge-gray-200:hover,ahtml.landing-page-only .badge-gray-200:focus{color:#393946;background-color:#d2d2ee}ahtml.landing-page-only .badge-gray-200:focus,ahtml.landing-page-only .badge-gray-200.focus{outline:0;box-shadow:0 0 0 .2rem rgba(247,247,252,.5)}html.landing-page-only .badge-gray-300{color:#393946;background-color:#f2f1f7}ahtml.landing-page-only .badge-gray-300:hover,ahtml.landing-page-only .badge-gray-300:focus{color:#393946;background-color:#d4d1e4}ahtml.landing-page-only .badge-gray-300:focus,ahtml.landing-page-only .badge-gray-300.focus{outline:0;box-shadow:0 0 0 .2rem rgba(242,241,247,.5)}html.landing-page-only .badge-gray-400{color:#393946;background-color:#e7e8f3}ahtml.landing-page-only .badge-gray-400:hover,ahtml.landing-page-only .badge-gray-400:focus{color:#393946;background-color:#c5c7e2}ahtml.landing-page-only .badge-gray-400:focus,ahtml.landing-page-only .badge-gray-400.focus{outline:0;box-shadow:0 0 0 .2rem rgba(231,232,243,.5)}html.landing-page-only .badge-gray-500{color:#393946;background-color:#cccedc}ahtml.landing-page-only .badge-gray-500:hover,ahtml.landing-page-only .badge-gray-500:focus{color:#393946;background-color:#aeb1c7}ahtml.landing-page-only .badge-gray-500:focus,ahtml.landing-page-only .badge-gray-500.focus{outline:0;box-shadow:0 0 0 .2rem rgba(204,206,220,.5)}html.landing-page-only .badge-gray-600{color:#393946;background-color:#a6a8b7}ahtml.landing-page-only .badge-gray-600:hover,ahtml.landing-page-only .badge-gray-600:focus{color:#393946;background-color:#8a8ca0}ahtml.landing-page-only .badge-gray-600:focus,ahtml.landing-page-only .badge-gray-600.focus{outline:0;box-shadow:0 0 0 .2rem rgba(166,168,183,.5)}html.landing-page-only .badge-gray-700{color:#fff;background-color:#6c6e82}ahtml.landing-page-only .badge-gray-700:hover,ahtml.landing-page-only .badge-gray-700:focus{color:#fff;background-color:#555666}ahtml.landing-page-only .badge-gray-700:focus,ahtml.landing-page-only .badge-gray-700.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,110,130,.5)}html.landing-page-only .badge-gray-800{color:#fff;background-color:#444452}ahtml.landing-page-only .badge-gray-800:hover,ahtml.landing-page-only .badge-gray-800:focus{color:#fff;background-color:#2d2d36}ahtml.landing-page-only .badge-gray-800:focus,ahtml.landing-page-only .badge-gray-800.focus{outline:0;box-shadow:0 0 0 .2rem rgba(68,68,82,.5)}html.landing-page-only .badge-gray-900{color:#fff;background-color:#393946}ahtml.landing-page-only .badge-gray-900:hover,ahtml.landing-page-only .badge-gray-900:focus{color:#fff;background-color:#22222a}ahtml.landing-page-only .badge-gray-900:focus,ahtml.landing-page-only .badge-gray-900.focus{outline:0;box-shadow:0 0 0 .2rem rgba(57,57,70,.5)}html.landing-page-only .badge-gray-1000{color:#fff;background-color:#23242d}ahtml.landing-page-only .badge-gray-1000:hover,ahtml.landing-page-only .badge-gray-1000:focus{color:#fff;background-color:#0d0d10}ahtml.landing-page-only .badge-gray-1000:focus,ahtml.landing-page-only .badge-gray-1000.focus{outline:0;box-shadow:0 0 0 .2rem rgba(35,36,45,.5)}html.landing-page-only .badge-black{color:#fff;background-color:#2f303b}ahtml.landing-page-only .badge-black:hover,ahtml.landing-page-only .badge-black:focus{color:#fff;background-color:#18191f}ahtml.landing-page-only .badge-black:focus,ahtml.landing-page-only .badge-black.focus{outline:0;box-shadow:0 0 0 .2rem rgba(47,48,59,.5)}html.landing-page-only .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#f7f7fc;border-radius:.3rem}@media(min-width: 576px){html.landing-page-only .jumbotron{padding:4rem 2rem}}html.landing-page-only .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}html.landing-page-only .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid rgba(0,0,0,0);border-radius:8px}html.landing-page-only .alert-heading{color:inherit}html.landing-page-only .alert-link{font-weight:800}html.landing-page-only .alert-dismissible{padding-right:4rem}html.landing-page-only .alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}html.landing-page-only .alert-primary{color:#92363f;background-color:#fbd8d9;border-color:#fac8ca}html.landing-page-only .alert-primary hr{border-top-color:#f8b1b3}html.landing-page-only .alert-primary .alert-link{color:#6d282f}html.landing-page-only .alert-secondary{color:#6d6e7b;background-color:#edeef1;border-color:#e6e7eb}html.landing-page-only .alert-secondary hr{border-top-color:#d8d9e0}html.landing-page-only .alert-secondary .alert-link{color:#555660}html.landing-page-only .alert-success{color:#418356;background-color:#dcf5e2;border-color:#cff2d6}html.landing-page-only .alert-success hr{border-top-color:#bbedc5}html.landing-page-only .alert-success .alert-link{color:#306140}html.landing-page-only .alert-info{color:#5e598b;background-color:#e7e5f6;border-color:#dedbf3}html.landing-page-only .alert-info hr{border-top-color:#ccc8ed}html.landing-page-only .alert-info .alert-link{color:#49456c}html.landing-page-only .alert-warning{color:#9b7b20;background-color:#fff3cd;border-color:#ffeeba}html.landing-page-only .alert-warning hr{border-top-color:#ffe8a1}html.landing-page-only .alert-warning .alert-link{color:#715917}html.landing-page-only .alert-danger{color:#893340;background-color:#f8d7da;border-color:#f5c6cb}html.landing-page-only .alert-danger hr{border-top-color:#f1b0b7}html.landing-page-only .alert-danger .alert-link{color:#64252f}html.landing-page-only .alert-light{color:#9999a1;background-color:#fefeff;border-color:#fefeff}html.landing-page-only .alert-light hr{border-top-color:#e5e5ff}html.landing-page-only .alert-light .alert-link{color:#7e7e89}html.landing-page-only .alert-dark{color:#3a3a47;background-color:#dadadc;border-color:#cbcbcf}html.landing-page-only .alert-dark hr{border-top-color:#bebec3}html.landing-page-only .alert-dark .alert-link{color:#23232b}html.landing-page-only .alert-blue{color:#5e598b;background-color:#e7e5f6;border-color:#dedbf3}html.landing-page-only .alert-blue hr{border-top-color:#ccc8ed}html.landing-page-only .alert-blue .alert-link{color:#49456c}html.landing-page-only .alert-transparent{color:rgba(47,48,59,.48);background-color:rgba(255,255,255,.8);border-color:rgba(255,255,255,.72)}html.landing-page-only .alert-transparent hr{border-top-color:rgba(242,242,242,.72)}html.landing-page-only .alert-transparent .alert-link{color:rgba(24,25,31,.48)}html.landing-page-only .alert-white{color:#9b9ca1;background-color:#fff;border-color:#fff}html.landing-page-only .alert-white hr{border-top-color:#f2f2f2}html.landing-page-only .alert-white .alert-link{color:#818288}html.landing-page-only .alert-white-100{color:#9899a0;background-color:#fefeff;border-color:#fdfdfe}html.landing-page-only .alert-white-100 hr{border-top-color:#ececf6}html.landing-page-only .alert-white-100 .alert-link{color:#7d7f88}html.landing-page-only .alert-gray-100{color:#9999a1;background-color:#fefeff;border-color:#fefeff}html.landing-page-only .alert-gray-100 hr{border-top-color:#e5e5ff}html.landing-page-only .alert-gray-100 .alert-link{color:#7e7e89}html.landing-page-only .alert-gray-200{color:#97979f;background-color:#fdfdfe;border-color:#fdfdfe}html.landing-page-only .alert-gray-200 hr{border-top-color:#ececf6}html.landing-page-only .alert-gray-200 .alert-link{color:#7c7c87}html.landing-page-only .alert-gray-300{color:#94949d;background-color:#fcfcfd;border-color:#fbfbfd}html.landing-page-only .alert-gray-300 hr{border-top-color:#eaeaf5}html.landing-page-only .alert-gray-300 .alert-link{color:#797985}html.landing-page-only .alert-gray-400{color:#8f909b;background-color:#fafafd;border-color:#f8f9fc}html.landing-page-only .alert-gray-400 hr{border-top-color:#e6eaf4}html.landing-page-only .alert-gray-400 .alert-link{color:#757682}html.landing-page-only .alert-gray-500{color:#81828f;background-color:#f5f5f8;border-color:#f1f1f5}html.landing-page-only .alert-gray-500 hr{border-top-color:#e2e2ea}html.landing-page-only .alert-gray-500 .alert-link{color:#686975}html.landing-page-only .alert-gray-600{color:#6d6e7b;background-color:#edeef1;border-color:#e6e7eb}html.landing-page-only .alert-gray-600 hr{border-top-color:#d8d9e0}html.landing-page-only .alert-gray-600 .alert-link{color:#555660}html.landing-page-only .alert-gray-700{color:#4f5060;background-color:#e2e2e6;border-color:#d6d6dc}html.landing-page-only .alert-gray-700 hr{border-top-color:#c8c8d0}html.landing-page-only .alert-gray-700 .alert-link{color:#383944}html.landing-page-only .alert-gray-800{color:#3a3a47;background-color:#dadadc;border-color:#cbcbcf}html.landing-page-only .alert-gray-800 hr{border-top-color:#bebec3}html.landing-page-only .alert-gray-800 .alert-link{color:#23232b}html.landing-page-only .alert-gray-900{color:#343541;background-color:#d7d7da;border-color:#c8c8cb}html.landing-page-only .alert-gray-900 hr{border-top-color:#bbbbbf}html.landing-page-only .alert-gray-900 .alert-link{color:#1d1e25}html.landing-page-only .alert-gray-1000{color:#292a34;background-color:#d3d3d5;border-color:#c1c2c4}html.landing-page-only .alert-gray-1000 hr{border-top-color:#b4b5b8}html.landing-page-only .alert-gray-1000 .alert-link{color:#131317}html.landing-page-only .alert-black{color:#2f303b;background-color:#d5d6d8;border-color:#c5c5c8}html.landing-page-only .alert-black hr{border-top-color:#b8b8bc}html.landing-page-only .alert-black .alert-link{color:#18191f}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}html.landing-page-only .progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.75rem;background-color:#f7f7fc;border-radius:8px}html.landing-page-only .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#ed3b42;transition:width .6s ease}@media(prefers-reduced-motion: reduce){html.landing-page-only .progress-bar{transition:none}}html.landing-page-only .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}html.landing-page-only .progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion: reduce){html.landing-page-only .progress-bar-animated{animation:none}}html.landing-page-only .media{display:flex;align-items:flex-start}html.landing-page-only .media-body{flex:1}html.landing-page-only .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:8px}html.landing-page-only .list-group-item-action{width:100%;color:#6c6e82;text-align:inherit}html.landing-page-only .list-group-item-action:hover,html.landing-page-only .list-group-item-action:focus{z-index:1;color:#6c6e82;text-decoration:none;background-color:#fafaff}html.landing-page-only .list-group-item-action:active{color:#393946;background-color:#f7f7fc}html.landing-page-only .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(47,48,59,.125)}html.landing-page-only .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}html.landing-page-only .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}html.landing-page-only .list-group-item.disabled,html.landing-page-only .list-group-item:disabled{color:#a6a8b7;pointer-events:none;background-color:#fff}html.landing-page-only .list-group-item.active{z-index:2;color:#fff;background-color:#ed3b42;border-color:#ed3b42}html.landing-page-only .list-group-item+html.landing-page-only .list-group-item{border-top-width:0}html.landing-page-only .list-group-item+html.landing-page-only .list-group-item.active{margin-top:-1px;border-top-width:1px}html.landing-page-only .list-group-horizontal{flex-direction:row}html.landing-page-only .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:8px;border-top-right-radius:0}html.landing-page-only .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:8px;border-bottom-left-radius:0}html.landing-page-only .list-group-horizontal>.list-group-item.active{margin-top:0}html.landing-page-only .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html.landing-page-only .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media(min-width: 576px){html.landing-page-only .list-group-horizontal-sm{flex-direction:row}html.landing-page-only .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:8px;border-top-right-radius:0}html.landing-page-only .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:8px;border-bottom-left-radius:0}html.landing-page-only .list-group-horizontal-sm>.list-group-item.active{margin-top:0}html.landing-page-only .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html.landing-page-only .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 768px){html.landing-page-only .list-group-horizontal-md{flex-direction:row}html.landing-page-only .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:8px;border-top-right-radius:0}html.landing-page-only .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:8px;border-bottom-left-radius:0}html.landing-page-only .list-group-horizontal-md>.list-group-item.active{margin-top:0}html.landing-page-only .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html.landing-page-only .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 992px){html.landing-page-only .list-group-horizontal-lg{flex-direction:row}html.landing-page-only .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:8px;border-top-right-radius:0}html.landing-page-only .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:8px;border-bottom-left-radius:0}html.landing-page-only .list-group-horizontal-lg>.list-group-item.active{margin-top:0}html.landing-page-only .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html.landing-page-only .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 1152px){html.landing-page-only .list-group-horizontal-xl{flex-direction:row}html.landing-page-only .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:8px;border-top-right-radius:0}html.landing-page-only .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:8px;border-bottom-left-radius:0}html.landing-page-only .list-group-horizontal-xl>.list-group-item.active{margin-top:0}html.landing-page-only .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html.landing-page-only .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}html.landing-page-only .list-group-flush{border-radius:0}html.landing-page-only .list-group-flush>.list-group-item{border-width:0 0 1px}html.landing-page-only .list-group-flush>.list-group-item:last-child{border-bottom-width:0}html.landing-page-only .list-group-item-primary{color:#92363f;background-color:#fac8ca}html.landing-page-only .list-group-item-primary.list-group-item-action:hover,html.landing-page-only .list-group-item-primary.list-group-item-action:focus{color:#92363f;background-color:#f8b1b3}html.landing-page-only .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#92363f;border-color:#92363f}html.landing-page-only .list-group-item-secondary{color:#6d6e7b;background-color:#e6e7eb}html.landing-page-only .list-group-item-secondary.list-group-item-action:hover,html.landing-page-only .list-group-item-secondary.list-group-item-action:focus{color:#6d6e7b;background-color:#d8d9e0}html.landing-page-only .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#6d6e7b;border-color:#6d6e7b}html.landing-page-only .list-group-item-success{color:#418356;background-color:#cff2d6}html.landing-page-only .list-group-item-success.list-group-item-action:hover,html.landing-page-only .list-group-item-success.list-group-item-action:focus{color:#418356;background-color:#bbedc5}html.landing-page-only .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#418356;border-color:#418356}html.landing-page-only .list-group-item-info{color:#5e598b;background-color:#dedbf3}html.landing-page-only .list-group-item-info.list-group-item-action:hover,html.landing-page-only .list-group-item-info.list-group-item-action:focus{color:#5e598b;background-color:#ccc8ed}html.landing-page-only .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#5e598b;border-color:#5e598b}html.landing-page-only .list-group-item-warning{color:#9b7b20;background-color:#ffeeba}html.landing-page-only .list-group-item-warning.list-group-item-action:hover,html.landing-page-only .list-group-item-warning.list-group-item-action:focus{color:#9b7b20;background-color:#ffe8a1}html.landing-page-only .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#9b7b20;border-color:#9b7b20}html.landing-page-only .list-group-item-danger{color:#893340;background-color:#f5c6cb}html.landing-page-only .list-group-item-danger.list-group-item-action:hover,html.landing-page-only .list-group-item-danger.list-group-item-action:focus{color:#893340;background-color:#f1b0b7}html.landing-page-only .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#893340;border-color:#893340}html.landing-page-only .list-group-item-light{color:#9999a1;background-color:#fefeff}html.landing-page-only .list-group-item-light.list-group-item-action:hover,html.landing-page-only .list-group-item-light.list-group-item-action:focus{color:#9999a1;background-color:#e5e5ff}html.landing-page-only .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#9999a1;border-color:#9999a1}html.landing-page-only .list-group-item-dark{color:#3a3a47;background-color:#cbcbcf}html.landing-page-only .list-group-item-dark.list-group-item-action:hover,html.landing-page-only .list-group-item-dark.list-group-item-action:focus{color:#3a3a47;background-color:#bebec3}html.landing-page-only .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#3a3a47;border-color:#3a3a47}html.landing-page-only .list-group-item-blue{color:#5e598b;background-color:#dedbf3}html.landing-page-only .list-group-item-blue.list-group-item-action:hover,html.landing-page-only .list-group-item-blue.list-group-item-action:focus{color:#5e598b;background-color:#ccc8ed}html.landing-page-only .list-group-item-blue.list-group-item-action.active{color:#fff;background-color:#5e598b;border-color:#5e598b}html.landing-page-only .list-group-item-transparent{color:rgba(47,48,59,.48);background-color:rgba(255,255,255,.72)}html.landing-page-only .list-group-item-transparent.list-group-item-action:hover,html.landing-page-only .list-group-item-transparent.list-group-item-action:focus{color:rgba(47,48,59,.48);background-color:rgba(242,242,242,.72)}html.landing-page-only .list-group-item-transparent.list-group-item-action.active{color:#fff;background-color:rgba(47,48,59,.48);border-color:rgba(47,48,59,.48)}html.landing-page-only .list-group-item-white{color:#9b9ca1;background-color:#fff}html.landing-page-only .list-group-item-white.list-group-item-action:hover,html.landing-page-only .list-group-item-white.list-group-item-action:focus{color:#9b9ca1;background-color:#f2f2f2}html.landing-page-only .list-group-item-white.list-group-item-action.active{color:#fff;background-color:#9b9ca1;border-color:#9b9ca1}html.landing-page-only .list-group-item-white-100{color:#9899a0;background-color:#fdfdfe}html.landing-page-only .list-group-item-white-100.list-group-item-action:hover,html.landing-page-only .list-group-item-white-100.list-group-item-action:focus{color:#9899a0;background-color:#ececf6}html.landing-page-only .list-group-item-white-100.list-group-item-action.active{color:#fff;background-color:#9899a0;border-color:#9899a0}html.landing-page-only .list-group-item-gray-100{color:#9999a1;background-color:#fefeff}html.landing-page-only .list-group-item-gray-100.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-100.list-group-item-action:focus{color:#9999a1;background-color:#e5e5ff}html.landing-page-only .list-group-item-gray-100.list-group-item-action.active{color:#fff;background-color:#9999a1;border-color:#9999a1}html.landing-page-only .list-group-item-gray-200{color:#97979f;background-color:#fdfdfe}html.landing-page-only .list-group-item-gray-200.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-200.list-group-item-action:focus{color:#97979f;background-color:#ececf6}html.landing-page-only .list-group-item-gray-200.list-group-item-action.active{color:#fff;background-color:#97979f;border-color:#97979f}html.landing-page-only .list-group-item-gray-300{color:#94949d;background-color:#fbfbfd}html.landing-page-only .list-group-item-gray-300.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-300.list-group-item-action:focus{color:#94949d;background-color:#eaeaf5}html.landing-page-only .list-group-item-gray-300.list-group-item-action.active{color:#fff;background-color:#94949d;border-color:#94949d}html.landing-page-only .list-group-item-gray-400{color:#8f909b;background-color:#f8f9fc}html.landing-page-only .list-group-item-gray-400.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-400.list-group-item-action:focus{color:#8f909b;background-color:#e6eaf4}html.landing-page-only .list-group-item-gray-400.list-group-item-action.active{color:#fff;background-color:#8f909b;border-color:#8f909b}html.landing-page-only .list-group-item-gray-500{color:#81828f;background-color:#f1f1f5}html.landing-page-only .list-group-item-gray-500.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-500.list-group-item-action:focus{color:#81828f;background-color:#e2e2ea}html.landing-page-only .list-group-item-gray-500.list-group-item-action.active{color:#fff;background-color:#81828f;border-color:#81828f}html.landing-page-only .list-group-item-gray-600{color:#6d6e7b;background-color:#e6e7eb}html.landing-page-only .list-group-item-gray-600.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-600.list-group-item-action:focus{color:#6d6e7b;background-color:#d8d9e0}html.landing-page-only .list-group-item-gray-600.list-group-item-action.active{color:#fff;background-color:#6d6e7b;border-color:#6d6e7b}html.landing-page-only .list-group-item-gray-700{color:#4f5060;background-color:#d6d6dc}html.landing-page-only .list-group-item-gray-700.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-700.list-group-item-action:focus{color:#4f5060;background-color:#c8c8d0}html.landing-page-only .list-group-item-gray-700.list-group-item-action.active{color:#fff;background-color:#4f5060;border-color:#4f5060}html.landing-page-only .list-group-item-gray-800{color:#3a3a47;background-color:#cbcbcf}html.landing-page-only .list-group-item-gray-800.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-800.list-group-item-action:focus{color:#3a3a47;background-color:#bebec3}html.landing-page-only .list-group-item-gray-800.list-group-item-action.active{color:#fff;background-color:#3a3a47;border-color:#3a3a47}html.landing-page-only .list-group-item-gray-900{color:#343541;background-color:#c8c8cb}html.landing-page-only .list-group-item-gray-900.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-900.list-group-item-action:focus{color:#343541;background-color:#bbbbbf}html.landing-page-only .list-group-item-gray-900.list-group-item-action.active{color:#fff;background-color:#343541;border-color:#343541}html.landing-page-only .list-group-item-gray-1000{color:#292a34;background-color:#c1c2c4}html.landing-page-only .list-group-item-gray-1000.list-group-item-action:hover,html.landing-page-only .list-group-item-gray-1000.list-group-item-action:focus{color:#292a34;background-color:#b4b5b8}html.landing-page-only .list-group-item-gray-1000.list-group-item-action.active{color:#fff;background-color:#292a34;border-color:#292a34}html.landing-page-only .list-group-item-black{color:#2f303b;background-color:#c5c5c8}html.landing-page-only .list-group-item-black.list-group-item-action:hover,html.landing-page-only .list-group-item-black.list-group-item-action:focus{color:#2f303b;background-color:#b8b8bc}html.landing-page-only .list-group-item-black.list-group-item-action.active{color:#fff;background-color:#2f303b;border-color:#2f303b}html.landing-page-only .close{float:right;font-size:1.5rem;font-weight:800;line-height:1;color:#2f303b;text-shadow:0 1px 0 #fff;opacity:.5}html.landing-page-only .close:hover{color:#2f303b;text-decoration:none}html.landing-page-only .close:not(:disabled):not(.disabled):hover,html.landing-page-only .close:not(:disabled):not(.disabled):focus{opacity:.75}html.landing-page-only button.close{padding:0;background-color:rgba(0,0,0,0);border:0}html.landing-page-only a.close.disabled{pointer-events:none}html.landing-page-only .toast{flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(47,48,59,.1);opacity:0;border-radius:.25rem}html.landing-page-only .toast:not(:last-child){margin-bottom:.75rem}html.landing-page-only .toast.showing{opacity:1}html.landing-page-only .toast.show{display:block;opacity:1}html.landing-page-only .toast.hide{display:none}html.landing-page-only .toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#a6a8b7;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}html.landing-page-only .toast-body{padding:.75rem}html.landing-page-only .modal-open{overflow:hidden}html.landing-page-only .modal-open .modal{overflow-x:hidden;overflow-y:auto}html.landing-page-only .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}html.landing-page-only .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade html.landing-page-only .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade html.landing-page-only .modal-dialog{transition:none}}.modal.show html.landing-page-only .modal-dialog{transform:none}.modal.modal-static html.landing-page-only .modal-dialog{transform:scale(1.02)}html.landing-page-only .modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}html.landing-page-only .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}html.landing-page-only .modal-dialog-scrollable .modal-header,html.landing-page-only .modal-dialog-scrollable .modal-footer{flex-shrink:0}html.landing-page-only .modal-dialog-scrollable .modal-body{overflow-y:auto}html.landing-page-only .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}html.landing-page-only .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}html.landing-page-only .modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}html.landing-page-only .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}html.landing-page-only .modal-dialog-centered.modal-dialog-scrollable::before{content:none}html.landing-page-only .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(47,48,59,.2);border-radius:.3rem;outline:0}html.landing-page-only .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#2f303b}html.landing-page-only .modal-backdrop.fade{opacity:0}html.landing-page-only .modal-backdrop.show{opacity:.5}html.landing-page-only .modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #f2f1f7;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}html.landing-page-only .modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}html.landing-page-only .modal-title{margin-bottom:0;line-height:1.5}html.landing-page-only .modal-body{position:relative;flex:1 1 auto;padding:1rem}html.landing-page-only .modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #f2f1f7;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}html.landing-page-only .modal-footer>*{margin:.25rem}html.landing-page-only .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width: 576px){html.landing-page-only .modal-dialog{max-width:500px;margin:1.75rem auto}html.landing-page-only .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}html.landing-page-only .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}html.landing-page-only .modal-dialog-centered{min-height:calc(100% - 3.5rem)}html.landing-page-only .modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}html.landing-page-only .modal-sm{max-width:300px}}@media(min-width: 992px){html.landing-page-only .modal-lg,html.landing-page-only .modal-xl{max-width:800px}}@media(min-width: 1152px){html.landing-page-only .modal-xl{max-width:1140px}}html.landing-page-only .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:500;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0}html.landing-page-only .tooltip.show{opacity:.9}html.landing-page-only .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}html.landing-page-only .tooltip .arrow::before{position:absolute;content:"";border-color:rgba(0,0,0,0);border-style:solid}html.landing-page-only .bs-tooltip-top,html.landing-page-only .bs-tooltip-auto[x-placement^=top]{padding:.4rem 0}html.landing-page-only .bs-tooltip-top .arrow,html.landing-page-only .bs-tooltip-auto[x-placement^=top] .arrow{bottom:0}html.landing-page-only .bs-tooltip-top .arrow::before,html.landing-page-only .bs-tooltip-auto[x-placement^=top] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#2f303b}html.landing-page-only .bs-tooltip-right,html.landing-page-only .bs-tooltip-auto[x-placement^=right]{padding:0 .4rem}html.landing-page-only .bs-tooltip-right .arrow,html.landing-page-only .bs-tooltip-auto[x-placement^=right] .arrow{left:0;width:.4rem;height:.8rem}html.landing-page-only .bs-tooltip-right .arrow::before,html.landing-page-only .bs-tooltip-auto[x-placement^=right] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#2f303b}html.landing-page-only .bs-tooltip-bottom,html.landing-page-only .bs-tooltip-auto[x-placement^=bottom]{padding:.4rem 0}html.landing-page-only .bs-tooltip-bottom .arrow,html.landing-page-only .bs-tooltip-auto[x-placement^=bottom] .arrow{top:0}html.landing-page-only .bs-tooltip-bottom .arrow::before,html.landing-page-only .bs-tooltip-auto[x-placement^=bottom] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#2f303b}html.landing-page-only .bs-tooltip-left,html.landing-page-only .bs-tooltip-auto[x-placement^=left]{padding:0 .4rem}html.landing-page-only .bs-tooltip-left .arrow,html.landing-page-only .bs-tooltip-auto[x-placement^=left] .arrow{right:0;width:.4rem;height:.8rem}html.landing-page-only .bs-tooltip-left .arrow::before,html.landing-page-only .bs-tooltip-auto[x-placement^=left] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#2f303b}html.landing-page-only .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#2f303b;border-radius:8px}html.landing-page-only .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:500;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(47,48,59,.2);border-radius:.3rem}html.landing-page-only .popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}html.landing-page-only .popover .arrow::before,html.landing-page-only .popover .arrow::after{position:absolute;display:block;content:"";border-color:rgba(0,0,0,0);border-style:solid}html.landing-page-only .bs-popover-top,html.landing-page-only .bs-popover-auto[x-placement^=top]{margin-bottom:.5rem}html.landing-page-only .bs-popover-top>.arrow,html.landing-page-only .bs-popover-auto[x-placement^=top]>.arrow{bottom:calc(-0.5rem - 1px)}html.landing-page-only .bs-popover-top>.arrow::before,html.landing-page-only .bs-popover-auto[x-placement^=top]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(47,48,59,.25)}html.landing-page-only .bs-popover-top>.arrow::after,html.landing-page-only .bs-popover-auto[x-placement^=top]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}html.landing-page-only .bs-popover-right,html.landing-page-only .bs-popover-auto[x-placement^=right]{margin-left:.5rem}html.landing-page-only .bs-popover-right>.arrow,html.landing-page-only .bs-popover-auto[x-placement^=right]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}html.landing-page-only .bs-popover-right>.arrow::before,html.landing-page-only .bs-popover-auto[x-placement^=right]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(47,48,59,.25)}html.landing-page-only .bs-popover-right>.arrow::after,html.landing-page-only .bs-popover-auto[x-placement^=right]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}html.landing-page-only .bs-popover-bottom,html.landing-page-only .bs-popover-auto[x-placement^=bottom]{margin-top:.5rem}html.landing-page-only .bs-popover-bottom>.arrow,html.landing-page-only .bs-popover-auto[x-placement^=bottom]>.arrow{top:calc(-0.5rem - 1px)}html.landing-page-only .bs-popover-bottom>.arrow::before,html.landing-page-only .bs-popover-auto[x-placement^=bottom]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(47,48,59,.25)}html.landing-page-only .bs-popover-bottom>.arrow::after,html.landing-page-only .bs-popover-auto[x-placement^=bottom]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}html.landing-page-only .bs-popover-bottom .popover-header::before,html.landing-page-only .bs-popover-auto[x-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}html.landing-page-only .bs-popover-left,html.landing-page-only .bs-popover-auto[x-placement^=left]{margin-right:.5rem}html.landing-page-only .bs-popover-left>.arrow,html.landing-page-only .bs-popover-auto[x-placement^=left]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}html.landing-page-only .bs-popover-left>.arrow::before,html.landing-page-only .bs-popover-auto[x-placement^=left]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(47,48,59,.25)}html.landing-page-only .bs-popover-left>.arrow::after,html.landing-page-only .bs-popover-auto[x-placement^=left]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}html.landing-page-only .popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}html.landing-page-only .popover-header:empty{display:none}html.landing-page-only .popover-body{padding:.5rem .75rem;color:#393946}html.landing-page-only .carousel{position:relative}html.landing-page-only .carousel.pointer-event{touch-action:pan-y}html.landing-page-only .carousel-inner{position:relative;width:100%;overflow:hidden}html.landing-page-only .carousel-inner::after{display:block;clear:both;content:""}html.landing-page-only .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){html.landing-page-only .carousel-item{transition:none}}html.landing-page-only .carousel-item.active,html.landing-page-only .carousel-item-next,html.landing-page-only .carousel-item-prev{display:block}html.landing-page-only .carousel-item-next:not(.carousel-item-left),html.landing-page-only .active.carousel-item-right{transform:translateX(100%)}html.landing-page-only .carousel-item-prev:not(.carousel-item-right),html.landing-page-only .active.carousel-item-left{transform:translateX(-100%)}html.landing-page-only .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}html.landing-page-only .carousel-fade .carousel-item.active,html.landing-page-only .carousel-fade .carousel-item-next.carousel-item-left,html.landing-page-only .carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}html.landing-page-only .carousel-fade .active.carousel-item-left,html.landing-page-only .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){html.landing-page-only .carousel-fade .active.carousel-item-left,html.landing-page-only .carousel-fade .active.carousel-item-right{transition:none}}html.landing-page-only .carousel-control-prev,html.landing-page-only .carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion: reduce){html.landing-page-only .carousel-control-prev,html.landing-page-only .carousel-control-next{transition:none}}html.landing-page-only .carousel-control-prev:hover,html.landing-page-only .carousel-control-prev:focus,html.landing-page-only .carousel-control-next:hover,html.landing-page-only .carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}html.landing-page-only .carousel-control-prev{left:0}html.landing-page-only .carousel-control-next{right:0}html.landing-page-only .carousel-control-prev-icon,html.landing-page-only .carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}html.landing-page-only .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}html.landing-page-only .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}html.landing-page-only .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}html.landing-page-only .carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){html.landing-page-only .carousel-indicators li{transition:none}}html.landing-page-only .carousel-indicators .active{opacity:1}html.landing-page-only .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}html.landing-page-only .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;border:.25em solid currentcolor;border-right-color:rgba(0,0,0,0);border-radius:50%;animation:.75s linear infinite spinner-border}html.landing-page-only .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}html.landing-page-only .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}html.landing-page-only .spinner-grow-sm{width:1rem;height:1rem}@media(prefers-reduced-motion: reduce){html.landing-page-only .spinner-border,html.landing-page-only .spinner-grow{animation-duration:1.5s}}html.landing-page-only .align-baseline{vertical-align:baseline !important}html.landing-page-only .align-top{vertical-align:top !important}html.landing-page-only .align-middle{vertical-align:middle !important}html.landing-page-only .align-bottom{vertical-align:bottom !important}html.landing-page-only .align-text-bottom{vertical-align:text-bottom !important}html.landing-page-only .align-text-top{vertical-align:text-top !important}html.landing-page-only .bg-primary{background-color:#ed3b42 !important}html.landing-page-only a.bg-primary:hover,html.landing-page-only a.bg-primary:focus,html.landing-page-only button.bg-primary:hover,html.landing-page-only button.bg-primary:focus{background-color:#e0151d !important}html.landing-page-only .bg-secondary{background-color:#a6a8b7 !important}html.landing-page-only a.bg-secondary:hover,html.landing-page-only a.bg-secondary:focus,html.landing-page-only button.bg-secondary:hover,html.landing-page-only button.bg-secondary:focus{background-color:#8a8ca0 !important}html.landing-page-only .bg-success{background-color:#52cf6e !important}html.landing-page-only a.bg-success:hover,html.landing-page-only a.bg-success:focus,html.landing-page-only button.bg-success:hover,html.landing-page-only button.bg-success:focus{background-color:#34ba52 !important}html.landing-page-only .bg-info{background-color:#897fd4 !important}html.landing-page-only a.bg-info:hover,html.landing-page-only a.bg-info:focus,html.landing-page-only button.bg-info:hover,html.landing-page-only button.bg-info:focus{background-color:#6659c7 !important}html.landing-page-only .bg-warning{background-color:#ffc107 !important}html.landing-page-only a.bg-warning:hover,html.landing-page-only a.bg-warning:focus,html.landing-page-only button.bg-warning:hover,html.landing-page-only button.bg-warning:focus{background-color:#d39e00 !important}html.landing-page-only .bg-danger{background-color:#dc3545 !important}html.landing-page-only a.bg-danger:hover,html.landing-page-only a.bg-danger:focus,html.landing-page-only button.bg-danger:hover,html.landing-page-only button.bg-danger:focus{background-color:#bd2130 !important}html.landing-page-only .bg-light{background-color:#fafaff !important}html.landing-page-only a.bg-light:hover,html.landing-page-only a.bg-light:focus,html.landing-page-only button.bg-light:hover,html.landing-page-only button.bg-light:focus{background-color:#c7c7ff !important}html.landing-page-only .bg-dark{background-color:#444452 !important}html.landing-page-only a.bg-dark:hover,html.landing-page-only a.bg-dark:focus,html.landing-page-only button.bg-dark:hover,html.landing-page-only button.bg-dark:focus{background-color:#2d2d36 !important}html.landing-page-only .bg-blue{background-color:#897fd4 !important}html.landing-page-only a.bg-blue:hover,html.landing-page-only a.bg-blue:focus,html.landing-page-only button.bg-blue:hover,html.landing-page-only button.bg-blue:focus{background-color:#6659c7 !important}html.landing-page-only .bg-transparent{background-color:rgba(0,0,0,0) !important}html.landing-page-only a.bg-transparent:hover,html.landing-page-only a.bg-transparent:focus,html.landing-page-only button.bg-transparent:hover,html.landing-page-only button.bg-transparent:focus{background-color:rgba(0,0,0,0) !important}html.landing-page-only .bg-white{background-color:#fff !important}html.landing-page-only a.bg-white:hover,html.landing-page-only a.bg-white:focus,html.landing-page-only button.bg-white:hover,html.landing-page-only button.bg-white:focus{background-color:#e6e6e6 !important}html.landing-page-only .bg-white-100{background-color:#f9f9fd !important}html.landing-page-only a.bg-white-100:hover,html.landing-page-only a.bg-white-100:focus,html.landing-page-only button.bg-white-100:hover,html.landing-page-only button.bg-white-100:focus{background-color:#d3d3f0 !important}html.landing-page-only .bg-gray-100{background-color:#fafaff !important}html.landing-page-only a.bg-gray-100:hover,html.landing-page-only a.bg-gray-100:focus,html.landing-page-only button.bg-gray-100:hover,html.landing-page-only button.bg-gray-100:focus{background-color:#c7c7ff !important}html.landing-page-only .bg-gray-200{background-color:#f7f7fc !important}html.landing-page-only a.bg-gray-200:hover,html.landing-page-only a.bg-gray-200:focus,html.landing-page-only button.bg-gray-200:hover,html.landing-page-only button.bg-gray-200:focus{background-color:#d2d2ee !important}html.landing-page-only .bg-gray-300{background-color:#f2f1f7 !important}html.landing-page-only a.bg-gray-300:hover,html.landing-page-only a.bg-gray-300:focus,html.landing-page-only button.bg-gray-300:hover,html.landing-page-only button.bg-gray-300:focus{background-color:#d4d1e4 !important}html.landing-page-only .bg-gray-400{background-color:#e7e8f3 !important}html.landing-page-only a.bg-gray-400:hover,html.landing-page-only a.bg-gray-400:focus,html.landing-page-only button.bg-gray-400:hover,html.landing-page-only button.bg-gray-400:focus{background-color:#c5c7e2 !important}html.landing-page-only .bg-gray-500{background-color:#cccedc !important}html.landing-page-only a.bg-gray-500:hover,html.landing-page-only a.bg-gray-500:focus,html.landing-page-only button.bg-gray-500:hover,html.landing-page-only button.bg-gray-500:focus{background-color:#aeb1c7 !important}html.landing-page-only .bg-gray-600{background-color:#a6a8b7 !important}html.landing-page-only a.bg-gray-600:hover,html.landing-page-only a.bg-gray-600:focus,html.landing-page-only button.bg-gray-600:hover,html.landing-page-only button.bg-gray-600:focus{background-color:#8a8ca0 !important}html.landing-page-only .bg-gray-700{background-color:#6c6e82 !important}html.landing-page-only a.bg-gray-700:hover,html.landing-page-only a.bg-gray-700:focus,html.landing-page-only button.bg-gray-700:hover,html.landing-page-only button.bg-gray-700:focus{background-color:#555666 !important}html.landing-page-only .bg-gray-800{background-color:#444452 !important}html.landing-page-only a.bg-gray-800:hover,html.landing-page-only a.bg-gray-800:focus,html.landing-page-only button.bg-gray-800:hover,html.landing-page-only button.bg-gray-800:focus{background-color:#2d2d36 !important}html.landing-page-only .bg-gray-900{background-color:#393946 !important}html.landing-page-only a.bg-gray-900:hover,html.landing-page-only a.bg-gray-900:focus,html.landing-page-only button.bg-gray-900:hover,html.landing-page-only button.bg-gray-900:focus{background-color:#22222a !important}html.landing-page-only .bg-gray-1000{background-color:#23242d !important}html.landing-page-only a.bg-gray-1000:hover,html.landing-page-only a.bg-gray-1000:focus,html.landing-page-only button.bg-gray-1000:hover,html.landing-page-only button.bg-gray-1000:focus{background-color:#0d0d10 !important}html.landing-page-only .bg-black{background-color:#2f303b !important}html.landing-page-only a.bg-black:hover,html.landing-page-only a.bg-black:focus,html.landing-page-only button.bg-black:hover,html.landing-page-only button.bg-black:focus{background-color:#18191f !important}html.landing-page-only .bg-white{background-color:#fff !important}html.landing-page-only .bg-transparent{background-color:rgba(0,0,0,0) !important}html.landing-page-only .border{border:1px solid #f2f1f7 !important}html.landing-page-only .border-top{border-top:1px solid #f2f1f7 !important}html.landing-page-only .border-right{border-right:1px solid #f2f1f7 !important}html.landing-page-only .border-bottom{border-bottom:1px solid #f2f1f7 !important}html.landing-page-only .border-left{border-left:1px solid #f2f1f7 !important}html.landing-page-only .border-0{border:0 !important}html.landing-page-only .border-top-0{border-top:0 !important}html.landing-page-only .border-right-0{border-right:0 !important}html.landing-page-only .border-bottom-0{border-bottom:0 !important}html.landing-page-only .border-left-0{border-left:0 !important}html.landing-page-only .border-primary{border-color:#ed3b42 !important}html.landing-page-only .border-secondary{border-color:#a6a8b7 !important}html.landing-page-only .border-success{border-color:#52cf6e !important}html.landing-page-only .border-info{border-color:#897fd4 !important}html.landing-page-only .border-warning{border-color:#ffc107 !important}html.landing-page-only .border-danger{border-color:#dc3545 !important}html.landing-page-only .border-light{border-color:#fafaff !important}html.landing-page-only .border-dark{border-color:#444452 !important}html.landing-page-only .border-blue{border-color:#897fd4 !important}html.landing-page-only .border-transparent{border-color:rgba(0,0,0,0) !important}html.landing-page-only .border-white{border-color:#fff !important}html.landing-page-only .border-white-100{border-color:#f9f9fd !important}html.landing-page-only .border-gray-100{border-color:#fafaff !important}html.landing-page-only .border-gray-200{border-color:#f7f7fc !important}html.landing-page-only .border-gray-300{border-color:#f2f1f7 !important}html.landing-page-only .border-gray-400{border-color:#e7e8f3 !important}html.landing-page-only .border-gray-500{border-color:#cccedc !important}html.landing-page-only .border-gray-600{border-color:#a6a8b7 !important}html.landing-page-only .border-gray-700{border-color:#6c6e82 !important}html.landing-page-only .border-gray-800{border-color:#444452 !important}html.landing-page-only .border-gray-900{border-color:#393946 !important}html.landing-page-only .border-gray-1000{border-color:#23242d !important}html.landing-page-only .border-black{border-color:#2f303b !important}html.landing-page-only .border-white{border-color:#fff !important}html.landing-page-only .rounded-sm{border-radius:.2rem !important}html.landing-page-only .rounded{border-radius:8px !important}html.landing-page-only .rounded-top{border-top-left-radius:8px !important;border-top-right-radius:8px !important}html.landing-page-only .rounded-right{border-top-right-radius:8px !important;border-bottom-right-radius:8px !important}html.landing-page-only .rounded-bottom{border-bottom-right-radius:8px !important;border-bottom-left-radius:8px !important}html.landing-page-only .rounded-left{border-top-left-radius:8px !important;border-bottom-left-radius:8px !important}html.landing-page-only .rounded-lg{border-radius:.3rem !important}html.landing-page-only .rounded-circle{border-radius:50% !important}html.landing-page-only .rounded-pill{border-radius:50rem !important}html.landing-page-only .rounded-0{border-radius:0 !important}html.landing-page-only .clearfix::after{display:block;clear:both;content:""}html.landing-page-only .d-none{display:none !important}html.landing-page-only .d-inline{display:inline !important}html.landing-page-only .d-inline-block{display:inline-block !important}html.landing-page-only .d-block{display:block !important}html.landing-page-only .d-table{display:table !important}html.landing-page-only .d-table-row{display:table-row !important}html.landing-page-only .d-table-cell{display:table-cell !important}html.landing-page-only .d-flex{display:flex !important}html.landing-page-only .d-inline-flex{display:inline-flex !important}@media(min-width: 576px){html.landing-page-only .d-sm-none{display:none !important}html.landing-page-only .d-sm-inline{display:inline !important}html.landing-page-only .d-sm-inline-block{display:inline-block !important}html.landing-page-only .d-sm-block{display:block !important}html.landing-page-only .d-sm-table{display:table !important}html.landing-page-only .d-sm-table-row{display:table-row !important}html.landing-page-only .d-sm-table-cell{display:table-cell !important}html.landing-page-only .d-sm-flex{display:flex !important}html.landing-page-only .d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 768px){html.landing-page-only .d-md-none{display:none !important}html.landing-page-only .d-md-inline{display:inline !important}html.landing-page-only .d-md-inline-block{display:inline-block !important}html.landing-page-only .d-md-block{display:block !important}html.landing-page-only .d-md-table{display:table !important}html.landing-page-only .d-md-table-row{display:table-row !important}html.landing-page-only .d-md-table-cell{display:table-cell !important}html.landing-page-only .d-md-flex{display:flex !important}html.landing-page-only .d-md-inline-flex{display:inline-flex !important}}@media(min-width: 992px){html.landing-page-only .d-lg-none{display:none !important}html.landing-page-only .d-lg-inline{display:inline !important}html.landing-page-only .d-lg-inline-block{display:inline-block !important}html.landing-page-only .d-lg-block{display:block !important}html.landing-page-only .d-lg-table{display:table !important}html.landing-page-only .d-lg-table-row{display:table-row !important}html.landing-page-only .d-lg-table-cell{display:table-cell !important}html.landing-page-only .d-lg-flex{display:flex !important}html.landing-page-only .d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1152px){html.landing-page-only .d-xl-none{display:none !important}html.landing-page-only .d-xl-inline{display:inline !important}html.landing-page-only .d-xl-inline-block{display:inline-block !important}html.landing-page-only .d-xl-block{display:block !important}html.landing-page-only .d-xl-table{display:table !important}html.landing-page-only .d-xl-table-row{display:table-row !important}html.landing-page-only .d-xl-table-cell{display:table-cell !important}html.landing-page-only .d-xl-flex{display:flex !important}html.landing-page-only .d-xl-inline-flex{display:inline-flex !important}}@media print{html.landing-page-only .d-print-none{display:none !important}html.landing-page-only .d-print-inline{display:inline !important}html.landing-page-only .d-print-inline-block{display:inline-block !important}html.landing-page-only .d-print-block{display:block !important}html.landing-page-only .d-print-table{display:table !important}html.landing-page-only .d-print-table-row{display:table-row !important}html.landing-page-only .d-print-table-cell{display:table-cell !important}html.landing-page-only .d-print-flex{display:flex !important}html.landing-page-only .d-print-inline-flex{display:inline-flex !important}}html.landing-page-only .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}html.landing-page-only .embed-responsive::before{display:block;content:""}html.landing-page-only .embed-responsive .embed-responsive-item,html.landing-page-only .embed-responsive iframe,html.landing-page-only .embed-responsive embed,html.landing-page-only .embed-responsive object,html.landing-page-only .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}html.landing-page-only .embed-responsive-21by9::before{padding-top:42.85714286%}html.landing-page-only .embed-responsive-16by9::before{padding-top:56.25%}html.landing-page-only .embed-responsive-4by3::before{padding-top:75%}html.landing-page-only .embed-responsive-1by1::before{padding-top:100%}html.landing-page-only .flex-row{flex-direction:row !important}html.landing-page-only .flex-column{flex-direction:column !important}html.landing-page-only .flex-row-reverse{flex-direction:row-reverse !important}html.landing-page-only .flex-column-reverse{flex-direction:column-reverse !important}html.landing-page-only .flex-wrap{flex-wrap:wrap !important}html.landing-page-only .flex-nowrap{flex-wrap:nowrap !important}html.landing-page-only .flex-wrap-reverse{flex-wrap:wrap-reverse !important}html.landing-page-only .flex-fill{flex:1 1 auto !important}html.landing-page-only .flex-grow-0{flex-grow:0 !important}html.landing-page-only .flex-grow-1{flex-grow:1 !important}html.landing-page-only .flex-shrink-0{flex-shrink:0 !important}html.landing-page-only .flex-shrink-1{flex-shrink:1 !important}html.landing-page-only .justify-content-start{justify-content:flex-start !important}html.landing-page-only .justify-content-end{justify-content:flex-end !important}html.landing-page-only .justify-content-center{justify-content:center !important}html.landing-page-only .justify-content-between{justify-content:space-between !important}html.landing-page-only .justify-content-around{justify-content:space-around !important}html.landing-page-only .align-items-start{align-items:flex-start !important}html.landing-page-only .align-items-end{align-items:flex-end !important}html.landing-page-only .align-items-center{align-items:center !important}html.landing-page-only .align-items-baseline{align-items:baseline !important}html.landing-page-only .align-items-stretch{align-items:stretch !important}html.landing-page-only .align-content-start{align-content:flex-start !important}html.landing-page-only .align-content-end{align-content:flex-end !important}html.landing-page-only .align-content-center{align-content:center !important}html.landing-page-only .align-content-between{align-content:space-between !important}html.landing-page-only .align-content-around{align-content:space-around !important}html.landing-page-only .align-content-stretch{align-content:stretch !important}html.landing-page-only .align-self-auto{align-self:auto !important}html.landing-page-only .align-self-start{align-self:flex-start !important}html.landing-page-only .align-self-end{align-self:flex-end !important}html.landing-page-only .align-self-center{align-self:center !important}html.landing-page-only .align-self-baseline{align-self:baseline !important}html.landing-page-only .align-self-stretch{align-self:stretch !important}@media(min-width: 576px){html.landing-page-only .flex-sm-row{flex-direction:row !important}html.landing-page-only .flex-sm-column{flex-direction:column !important}html.landing-page-only .flex-sm-row-reverse{flex-direction:row-reverse !important}html.landing-page-only .flex-sm-column-reverse{flex-direction:column-reverse !important}html.landing-page-only .flex-sm-wrap{flex-wrap:wrap !important}html.landing-page-only .flex-sm-nowrap{flex-wrap:nowrap !important}html.landing-page-only .flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}html.landing-page-only .flex-sm-fill{flex:1 1 auto !important}html.landing-page-only .flex-sm-grow-0{flex-grow:0 !important}html.landing-page-only .flex-sm-grow-1{flex-grow:1 !important}html.landing-page-only .flex-sm-shrink-0{flex-shrink:0 !important}html.landing-page-only .flex-sm-shrink-1{flex-shrink:1 !important}html.landing-page-only .justify-content-sm-start{justify-content:flex-start !important}html.landing-page-only .justify-content-sm-end{justify-content:flex-end !important}html.landing-page-only .justify-content-sm-center{justify-content:center !important}html.landing-page-only .justify-content-sm-between{justify-content:space-between !important}html.landing-page-only .justify-content-sm-around{justify-content:space-around !important}html.landing-page-only .align-items-sm-start{align-items:flex-start !important}html.landing-page-only .align-items-sm-end{align-items:flex-end !important}html.landing-page-only .align-items-sm-center{align-items:center !important}html.landing-page-only .align-items-sm-baseline{align-items:baseline !important}html.landing-page-only .align-items-sm-stretch{align-items:stretch !important}html.landing-page-only .align-content-sm-start{align-content:flex-start !important}html.landing-page-only .align-content-sm-end{align-content:flex-end !important}html.landing-page-only .align-content-sm-center{align-content:center !important}html.landing-page-only .align-content-sm-between{align-content:space-between !important}html.landing-page-only .align-content-sm-around{align-content:space-around !important}html.landing-page-only .align-content-sm-stretch{align-content:stretch !important}html.landing-page-only .align-self-sm-auto{align-self:auto !important}html.landing-page-only .align-self-sm-start{align-self:flex-start !important}html.landing-page-only .align-self-sm-end{align-self:flex-end !important}html.landing-page-only .align-self-sm-center{align-self:center !important}html.landing-page-only .align-self-sm-baseline{align-self:baseline !important}html.landing-page-only .align-self-sm-stretch{align-self:stretch !important}}@media(min-width: 768px){html.landing-page-only .flex-md-row{flex-direction:row !important}html.landing-page-only .flex-md-column{flex-direction:column !important}html.landing-page-only .flex-md-row-reverse{flex-direction:row-reverse !important}html.landing-page-only .flex-md-column-reverse{flex-direction:column-reverse !important}html.landing-page-only .flex-md-wrap{flex-wrap:wrap !important}html.landing-page-only .flex-md-nowrap{flex-wrap:nowrap !important}html.landing-page-only .flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}html.landing-page-only .flex-md-fill{flex:1 1 auto !important}html.landing-page-only .flex-md-grow-0{flex-grow:0 !important}html.landing-page-only .flex-md-grow-1{flex-grow:1 !important}html.landing-page-only .flex-md-shrink-0{flex-shrink:0 !important}html.landing-page-only .flex-md-shrink-1{flex-shrink:1 !important}html.landing-page-only .justify-content-md-start{justify-content:flex-start !important}html.landing-page-only .justify-content-md-end{justify-content:flex-end !important}html.landing-page-only .justify-content-md-center{justify-content:center !important}html.landing-page-only .justify-content-md-between{justify-content:space-between !important}html.landing-page-only .justify-content-md-around{justify-content:space-around !important}html.landing-page-only .align-items-md-start{align-items:flex-start !important}html.landing-page-only .align-items-md-end{align-items:flex-end !important}html.landing-page-only .align-items-md-center{align-items:center !important}html.landing-page-only .align-items-md-baseline{align-items:baseline !important}html.landing-page-only .align-items-md-stretch{align-items:stretch !important}html.landing-page-only .align-content-md-start{align-content:flex-start !important}html.landing-page-only .align-content-md-end{align-content:flex-end !important}html.landing-page-only .align-content-md-center{align-content:center !important}html.landing-page-only .align-content-md-between{align-content:space-between !important}html.landing-page-only .align-content-md-around{align-content:space-around !important}html.landing-page-only .align-content-md-stretch{align-content:stretch !important}html.landing-page-only .align-self-md-auto{align-self:auto !important}html.landing-page-only .align-self-md-start{align-self:flex-start !important}html.landing-page-only .align-self-md-end{align-self:flex-end !important}html.landing-page-only .align-self-md-center{align-self:center !important}html.landing-page-only .align-self-md-baseline{align-self:baseline !important}html.landing-page-only .align-self-md-stretch{align-self:stretch !important}}@media(min-width: 992px){html.landing-page-only .flex-lg-row{flex-direction:row !important}html.landing-page-only .flex-lg-column{flex-direction:column !important}html.landing-page-only .flex-lg-row-reverse{flex-direction:row-reverse !important}html.landing-page-only .flex-lg-column-reverse{flex-direction:column-reverse !important}html.landing-page-only .flex-lg-wrap{flex-wrap:wrap !important}html.landing-page-only .flex-lg-nowrap{flex-wrap:nowrap !important}html.landing-page-only .flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}html.landing-page-only .flex-lg-fill{flex:1 1 auto !important}html.landing-page-only .flex-lg-grow-0{flex-grow:0 !important}html.landing-page-only .flex-lg-grow-1{flex-grow:1 !important}html.landing-page-only .flex-lg-shrink-0{flex-shrink:0 !important}html.landing-page-only .flex-lg-shrink-1{flex-shrink:1 !important}html.landing-page-only .justify-content-lg-start{justify-content:flex-start !important}html.landing-page-only .justify-content-lg-end{justify-content:flex-end !important}html.landing-page-only .justify-content-lg-center{justify-content:center !important}html.landing-page-only .justify-content-lg-between{justify-content:space-between !important}html.landing-page-only .justify-content-lg-around{justify-content:space-around !important}html.landing-page-only .align-items-lg-start{align-items:flex-start !important}html.landing-page-only .align-items-lg-end{align-items:flex-end !important}html.landing-page-only .align-items-lg-center{align-items:center !important}html.landing-page-only .align-items-lg-baseline{align-items:baseline !important}html.landing-page-only .align-items-lg-stretch{align-items:stretch !important}html.landing-page-only .align-content-lg-start{align-content:flex-start !important}html.landing-page-only .align-content-lg-end{align-content:flex-end !important}html.landing-page-only .align-content-lg-center{align-content:center !important}html.landing-page-only .align-content-lg-between{align-content:space-between !important}html.landing-page-only .align-content-lg-around{align-content:space-around !important}html.landing-page-only .align-content-lg-stretch{align-content:stretch !important}html.landing-page-only .align-self-lg-auto{align-self:auto !important}html.landing-page-only .align-self-lg-start{align-self:flex-start !important}html.landing-page-only .align-self-lg-end{align-self:flex-end !important}html.landing-page-only .align-self-lg-center{align-self:center !important}html.landing-page-only .align-self-lg-baseline{align-self:baseline !important}html.landing-page-only .align-self-lg-stretch{align-self:stretch !important}}@media(min-width: 1152px){html.landing-page-only .flex-xl-row{flex-direction:row !important}html.landing-page-only .flex-xl-column{flex-direction:column !important}html.landing-page-only .flex-xl-row-reverse{flex-direction:row-reverse !important}html.landing-page-only .flex-xl-column-reverse{flex-direction:column-reverse !important}html.landing-page-only .flex-xl-wrap{flex-wrap:wrap !important}html.landing-page-only .flex-xl-nowrap{flex-wrap:nowrap !important}html.landing-page-only .flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}html.landing-page-only .flex-xl-fill{flex:1 1 auto !important}html.landing-page-only .flex-xl-grow-0{flex-grow:0 !important}html.landing-page-only .flex-xl-grow-1{flex-grow:1 !important}html.landing-page-only .flex-xl-shrink-0{flex-shrink:0 !important}html.landing-page-only .flex-xl-shrink-1{flex-shrink:1 !important}html.landing-page-only .justify-content-xl-start{justify-content:flex-start !important}html.landing-page-only .justify-content-xl-end{justify-content:flex-end !important}html.landing-page-only .justify-content-xl-center{justify-content:center !important}html.landing-page-only .justify-content-xl-between{justify-content:space-between !important}html.landing-page-only .justify-content-xl-around{justify-content:space-around !important}html.landing-page-only .align-items-xl-start{align-items:flex-start !important}html.landing-page-only .align-items-xl-end{align-items:flex-end !important}html.landing-page-only .align-items-xl-center{align-items:center !important}html.landing-page-only .align-items-xl-baseline{align-items:baseline !important}html.landing-page-only .align-items-xl-stretch{align-items:stretch !important}html.landing-page-only .align-content-xl-start{align-content:flex-start !important}html.landing-page-only .align-content-xl-end{align-content:flex-end !important}html.landing-page-only .align-content-xl-center{align-content:center !important}html.landing-page-only .align-content-xl-between{align-content:space-between !important}html.landing-page-only .align-content-xl-around{align-content:space-around !important}html.landing-page-only .align-content-xl-stretch{align-content:stretch !important}html.landing-page-only .align-self-xl-auto{align-self:auto !important}html.landing-page-only .align-self-xl-start{align-self:flex-start !important}html.landing-page-only .align-self-xl-end{align-self:flex-end !important}html.landing-page-only .align-self-xl-center{align-self:center !important}html.landing-page-only .align-self-xl-baseline{align-self:baseline !important}html.landing-page-only .align-self-xl-stretch{align-self:stretch !important}}html.landing-page-only .float-left{float:left !important}html.landing-page-only .float-right{float:right !important}html.landing-page-only .float-none{float:none !important}@media(min-width: 576px){html.landing-page-only .float-sm-left{float:left !important}html.landing-page-only .float-sm-right{float:right !important}html.landing-page-only .float-sm-none{float:none !important}}@media(min-width: 768px){html.landing-page-only .float-md-left{float:left !important}html.landing-page-only .float-md-right{float:right !important}html.landing-page-only .float-md-none{float:none !important}}@media(min-width: 992px){html.landing-page-only .float-lg-left{float:left !important}html.landing-page-only .float-lg-right{float:right !important}html.landing-page-only .float-lg-none{float:none !important}}@media(min-width: 1152px){html.landing-page-only .float-xl-left{float:left !important}html.landing-page-only .float-xl-right{float:right !important}html.landing-page-only .float-xl-none{float:none !important}}html.landing-page-only .user-select-all{-webkit-user-select:all !important;user-select:all !important}html.landing-page-only .user-select-auto{-webkit-user-select:auto !important;user-select:auto !important}html.landing-page-only .user-select-none{-webkit-user-select:none !important;user-select:none !important}html.landing-page-only .overflow-auto{overflow:auto !important}html.landing-page-only .overflow-hidden{overflow:hidden !important}html.landing-page-only .position-static{position:static !important}html.landing-page-only .position-relative{position:relative !important}html.landing-page-only .position-absolute{position:absolute !important}html.landing-page-only .position-fixed{position:fixed !important}html.landing-page-only .position-sticky{position:sticky !important}html.landing-page-only .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}html.landing-page-only .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports(position: sticky){html.landing-page-only .sticky-top,html.landing-page-only .sticky-lg-top{position:sticky;top:0;z-index:1020}}html.landing-page-only .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}html.landing-page-only .sr-only-focusable:active,html.landing-page-only .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}html.landing-page-only .shadow-sm{box-shadow:0 .125rem .25rem rgba(47,48,59,.075) !important}html.landing-page-only .shadow{box-shadow:0 .5rem 1rem rgba(47,48,59,.15) !important}html.landing-page-only .shadow-lg{box-shadow:0 1rem 3rem rgba(47,48,59,.175) !important}html.landing-page-only .shadow-none{box-shadow:none !important}html.landing-page-only .w-25{width:25% !important}html.landing-page-only .w-50{width:50% !important}html.landing-page-only .w-75{width:75% !important}html.landing-page-only .w-100{width:100% !important}html.landing-page-only .w-auto{width:auto !important}html.landing-page-only .h-25{height:25% !important}html.landing-page-only .h-50{height:50% !important}html.landing-page-only .h-75{height:75% !important}html.landing-page-only .h-100{height:100% !important}html.landing-page-only .h-auto{height:auto !important}html.landing-page-only .mw-100{max-width:100% !important}html.landing-page-only .mh-100{max-height:100% !important}html.landing-page-only .min-vw-100{min-width:100vw !important}html.landing-page-only .min-vh-100{min-height:100vh !important}html.landing-page-only .vw-100{width:100vw !important}html.landing-page-only .vh-100{height:100vh !important}html.landing-page-only .m-0{margin:0 !important}html.landing-page-only .mt-0,html.landing-page-only .my-0{margin-top:0 !important}html.landing-page-only .mr-0,html.landing-page-only .mx-0{margin-right:0 !important}html.landing-page-only .mb-0,html.landing-page-only .my-0{margin-bottom:0 !important}html.landing-page-only .ml-0,html.landing-page-only .mx-0{margin-left:0 !important}html.landing-page-only .m-1{margin:.25rem !important}html.landing-page-only .mt-1,html.landing-page-only .my-1{margin-top:.25rem !important}html.landing-page-only .mr-1,html.landing-page-only .mx-1{margin-right:.25rem !important}html.landing-page-only .mb-1,html.landing-page-only .my-1{margin-bottom:.25rem !important}html.landing-page-only .ml-1,html.landing-page-only .mx-1{margin-left:.25rem !important}html.landing-page-only .m-2{margin:.5rem !important}html.landing-page-only .mt-2,html.landing-page-only .my-2{margin-top:.5rem !important}html.landing-page-only .mr-2,html.landing-page-only .mx-2{margin-right:.5rem !important}html.landing-page-only .mb-2,html.landing-page-only .my-2{margin-bottom:.5rem !important}html.landing-page-only .ml-2,html.landing-page-only .mx-2{margin-left:.5rem !important}html.landing-page-only .m-3{margin:.75rem !important}html.landing-page-only .mt-3,html.landing-page-only .my-3{margin-top:.75rem !important}html.landing-page-only .mr-3,html.landing-page-only .mx-3{margin-right:.75rem !important}html.landing-page-only .mb-3,html.landing-page-only .my-3{margin-bottom:.75rem !important}html.landing-page-only .ml-3,html.landing-page-only .mx-3{margin-left:.75rem !important}html.landing-page-only .m-4{margin:1rem !important}html.landing-page-only .mt-4,html.landing-page-only .my-4{margin-top:1rem !important}html.landing-page-only .mr-4,html.landing-page-only .mx-4{margin-right:1rem !important}html.landing-page-only .mb-4,html.landing-page-only .my-4{margin-bottom:1rem !important}html.landing-page-only .ml-4,html.landing-page-only .mx-4{margin-left:1rem !important}html.landing-page-only .m-5{margin:1.175rem !important}html.landing-page-only .mt-5,html.landing-page-only .my-5{margin-top:1.175rem !important}html.landing-page-only .mr-5,html.landing-page-only .mx-5{margin-right:1.175rem !important}html.landing-page-only .mb-5,html.landing-page-only .my-5{margin-bottom:1.175rem !important}html.landing-page-only .ml-5,html.landing-page-only .mx-5{margin-left:1.175rem !important}html.landing-page-only .m-6{margin:1.25rem !important}html.landing-page-only .mt-6,html.landing-page-only .my-6{margin-top:1.25rem !important}html.landing-page-only .mr-6,html.landing-page-only .mx-6{margin-right:1.25rem !important}html.landing-page-only .mb-6,html.landing-page-only .my-6{margin-bottom:1.25rem !important}html.landing-page-only .ml-6,html.landing-page-only .mx-6{margin-left:1.25rem !important}html.landing-page-only .m-7{margin:1.375rem !important}html.landing-page-only .mt-7,html.landing-page-only .my-7{margin-top:1.375rem !important}html.landing-page-only .mr-7,html.landing-page-only .mx-7{margin-right:1.375rem !important}html.landing-page-only .mb-7,html.landing-page-only .my-7{margin-bottom:1.375rem !important}html.landing-page-only .ml-7,html.landing-page-only .mx-7{margin-left:1.375rem !important}html.landing-page-only .m-8{margin:1.5rem !important}html.landing-page-only .mt-8,html.landing-page-only .my-8{margin-top:1.5rem !important}html.landing-page-only .mr-8,html.landing-page-only .mx-8{margin-right:1.5rem !important}html.landing-page-only .mb-8,html.landing-page-only .my-8{margin-bottom:1.5rem !important}html.landing-page-only .ml-8,html.landing-page-only .mx-8{margin-left:1.5rem !important}html.landing-page-only .m-9{margin:1.625rem !important}html.landing-page-only .mt-9,html.landing-page-only .my-9{margin-top:1.625rem !important}html.landing-page-only .mr-9,html.landing-page-only .mx-9{margin-right:1.625rem !important}html.landing-page-only .mb-9,html.landing-page-only .my-9{margin-bottom:1.625rem !important}html.landing-page-only .ml-9,html.landing-page-only .mx-9{margin-left:1.625rem !important}html.landing-page-only .m-10{margin:1.75rem !important}html.landing-page-only .mt-10,html.landing-page-only .my-10{margin-top:1.75rem !important}html.landing-page-only .mr-10,html.landing-page-only .mx-10{margin-right:1.75rem !important}html.landing-page-only .mb-10,html.landing-page-only .my-10{margin-bottom:1.75rem !important}html.landing-page-only .ml-10,html.landing-page-only .mx-10{margin-left:1.75rem !important}html.landing-page-only .m-11{margin:2rem !important}html.landing-page-only .mt-11,html.landing-page-only .my-11{margin-top:2rem !important}html.landing-page-only .mr-11,html.landing-page-only .mx-11{margin-right:2rem !important}html.landing-page-only .mb-11,html.landing-page-only .my-11{margin-bottom:2rem !important}html.landing-page-only .ml-11,html.landing-page-only .mx-11{margin-left:2rem !important}html.landing-page-only .m-12{margin:2.5rem !important}html.landing-page-only .mt-12,html.landing-page-only .my-12{margin-top:2.5rem !important}html.landing-page-only .mr-12,html.landing-page-only .mx-12{margin-right:2.5rem !important}html.landing-page-only .mb-12,html.landing-page-only .my-12{margin-bottom:2.5rem !important}html.landing-page-only .ml-12,html.landing-page-only .mx-12{margin-left:2.5rem !important}html.landing-page-only .m-13{margin:3rem !important}html.landing-page-only .mt-13,html.landing-page-only .my-13{margin-top:3rem !important}html.landing-page-only .mr-13,html.landing-page-only .mx-13{margin-right:3rem !important}html.landing-page-only .mb-13,html.landing-page-only .my-13{margin-bottom:3rem !important}html.landing-page-only .ml-13,html.landing-page-only .mx-13{margin-left:3rem !important}html.landing-page-only .m-14{margin:3.5rem !important}html.landing-page-only .mt-14,html.landing-page-only .my-14{margin-top:3.5rem !important}html.landing-page-only .mr-14,html.landing-page-only .mx-14{margin-right:3.5rem !important}html.landing-page-only .mb-14,html.landing-page-only .my-14{margin-bottom:3.5rem !important}html.landing-page-only .ml-14,html.landing-page-only .mx-14{margin-left:3.5rem !important}html.landing-page-only .m-15{margin:4rem !important}html.landing-page-only .mt-15,html.landing-page-only .my-15{margin-top:4rem !important}html.landing-page-only .mr-15,html.landing-page-only .mx-15{margin-right:4rem !important}html.landing-page-only .mb-15,html.landing-page-only .my-15{margin-bottom:4rem !important}html.landing-page-only .ml-15,html.landing-page-only .mx-15{margin-left:4rem !important}html.landing-page-only .m-16{margin:4.5rem !important}html.landing-page-only .mt-16,html.landing-page-only .my-16{margin-top:4.5rem !important}html.landing-page-only .mr-16,html.landing-page-only .mx-16{margin-right:4.5rem !important}html.landing-page-only .mb-16,html.landing-page-only .my-16{margin-bottom:4.5rem !important}html.landing-page-only .ml-16,html.landing-page-only .mx-16{margin-left:4.5rem !important}html.landing-page-only .m-17{margin:5rem !important}html.landing-page-only .mt-17,html.landing-page-only .my-17{margin-top:5rem !important}html.landing-page-only .mr-17,html.landing-page-only .mx-17{margin-right:5rem !important}html.landing-page-only .mb-17,html.landing-page-only .my-17{margin-bottom:5rem !important}html.landing-page-only .ml-17,html.landing-page-only .mx-17{margin-left:5rem !important}html.landing-page-only .m-18{margin:5.5rem !important}html.landing-page-only .mt-18,html.landing-page-only .my-18{margin-top:5.5rem !important}html.landing-page-only .mr-18,html.landing-page-only .mx-18{margin-right:5.5rem !important}html.landing-page-only .mb-18,html.landing-page-only .my-18{margin-bottom:5.5rem !important}html.landing-page-only .ml-18,html.landing-page-only .mx-18{margin-left:5.5rem !important}html.landing-page-only .m-19{margin:6rem !important}html.landing-page-only .mt-19,html.landing-page-only .my-19{margin-top:6rem !important}html.landing-page-only .mr-19,html.landing-page-only .mx-19{margin-right:6rem !important}html.landing-page-only .mb-19,html.landing-page-only .my-19{margin-bottom:6rem !important}html.landing-page-only .ml-19,html.landing-page-only .mx-19{margin-left:6rem !important}html.landing-page-only .m-20{margin:7rem !important}html.landing-page-only .mt-20,html.landing-page-only .my-20{margin-top:7rem !important}html.landing-page-only .mr-20,html.landing-page-only .mx-20{margin-right:7rem !important}html.landing-page-only .mb-20,html.landing-page-only .my-20{margin-bottom:7rem !important}html.landing-page-only .ml-20,html.landing-page-only .mx-20{margin-left:7rem !important}html.landing-page-only .m-21{margin:8.5rem !important}html.landing-page-only .mt-21,html.landing-page-only .my-21{margin-top:8.5rem !important}html.landing-page-only .mr-21,html.landing-page-only .mx-21{margin-right:8.5rem !important}html.landing-page-only .mb-21,html.landing-page-only .my-21{margin-bottom:8.5rem !important}html.landing-page-only .ml-21,html.landing-page-only .mx-21{margin-left:8.5rem !important}html.landing-page-only .m-22{margin:14.25rem !important}html.landing-page-only .mt-22,html.landing-page-only .my-22{margin-top:14.25rem !important}html.landing-page-only .mr-22,html.landing-page-only .mx-22{margin-right:14.25rem !important}html.landing-page-only .mb-22,html.landing-page-only .my-22{margin-bottom:14.25rem !important}html.landing-page-only .ml-22,html.landing-page-only .mx-22{margin-left:14.25rem !important}html.landing-page-only .m-23{margin:20rem !important}html.landing-page-only .mt-23,html.landing-page-only .my-23{margin-top:20rem !important}html.landing-page-only .mr-23,html.landing-page-only .mx-23{margin-right:20rem !important}html.landing-page-only .mb-23,html.landing-page-only .my-23{margin-bottom:20rem !important}html.landing-page-only .ml-23,html.landing-page-only .mx-23{margin-left:20rem !important}html.landing-page-only .p-0{padding:0 !important}html.landing-page-only .pt-0,html.landing-page-only .py-0{padding-top:0 !important}html.landing-page-only .pr-0,html.landing-page-only .px-0{padding-right:0 !important}html.landing-page-only .pb-0,html.landing-page-only .py-0{padding-bottom:0 !important}html.landing-page-only .pl-0,html.landing-page-only .px-0{padding-left:0 !important}html.landing-page-only .p-1{padding:.25rem !important}html.landing-page-only .pt-1,html.landing-page-only .py-1{padding-top:.25rem !important}html.landing-page-only .pr-1,html.landing-page-only .px-1{padding-right:.25rem !important}html.landing-page-only .pb-1,html.landing-page-only .py-1{padding-bottom:.25rem !important}html.landing-page-only .pl-1,html.landing-page-only .px-1{padding-left:.25rem !important}html.landing-page-only .p-2{padding:.5rem !important}html.landing-page-only .pt-2,html.landing-page-only .py-2{padding-top:.5rem !important}html.landing-page-only .pr-2,html.landing-page-only .px-2{padding-right:.5rem !important}html.landing-page-only .pb-2,html.landing-page-only .py-2{padding-bottom:.5rem !important}html.landing-page-only .pl-2,html.landing-page-only .px-2{padding-left:.5rem !important}html.landing-page-only .p-3{padding:.75rem !important}html.landing-page-only .pt-3,html.landing-page-only .py-3{padding-top:.75rem !important}html.landing-page-only .pr-3,html.landing-page-only .px-3{padding-right:.75rem !important}html.landing-page-only .pb-3,html.landing-page-only .py-3{padding-bottom:.75rem !important}html.landing-page-only .pl-3,html.landing-page-only .px-3{padding-left:.75rem !important}html.landing-page-only .p-4{padding:1rem !important}html.landing-page-only .pt-4,html.landing-page-only .py-4{padding-top:1rem !important}html.landing-page-only .pr-4,html.landing-page-only .px-4{padding-right:1rem !important}html.landing-page-only .pb-4,html.landing-page-only .py-4{padding-bottom:1rem !important}html.landing-page-only .pl-4,html.landing-page-only .px-4{padding-left:1rem !important}html.landing-page-only .p-5{padding:1.175rem !important}html.landing-page-only .pt-5,html.landing-page-only .py-5{padding-top:1.175rem !important}html.landing-page-only .pr-5,html.landing-page-only .px-5{padding-right:1.175rem !important}html.landing-page-only .pb-5,html.landing-page-only .py-5{padding-bottom:1.175rem !important}html.landing-page-only .pl-5,html.landing-page-only .px-5{padding-left:1.175rem !important}html.landing-page-only .p-6{padding:1.25rem !important}html.landing-page-only .pt-6,html.landing-page-only .py-6{padding-top:1.25rem !important}html.landing-page-only .pr-6,html.landing-page-only .px-6{padding-right:1.25rem !important}html.landing-page-only .pb-6,html.landing-page-only .py-6{padding-bottom:1.25rem !important}html.landing-page-only .pl-6,html.landing-page-only .px-6{padding-left:1.25rem !important}html.landing-page-only .p-7{padding:1.375rem !important}html.landing-page-only .pt-7,html.landing-page-only .py-7{padding-top:1.375rem !important}html.landing-page-only .pr-7,html.landing-page-only .px-7{padding-right:1.375rem !important}html.landing-page-only .pb-7,html.landing-page-only .py-7{padding-bottom:1.375rem !important}html.landing-page-only .pl-7,html.landing-page-only .px-7{padding-left:1.375rem !important}html.landing-page-only .p-8{padding:1.5rem !important}html.landing-page-only .pt-8,html.landing-page-only .py-8{padding-top:1.5rem !important}html.landing-page-only .pr-8,html.landing-page-only .px-8{padding-right:1.5rem !important}html.landing-page-only .pb-8,html.landing-page-only .py-8{padding-bottom:1.5rem !important}html.landing-page-only .pl-8,html.landing-page-only .px-8{padding-left:1.5rem !important}html.landing-page-only .p-9{padding:1.625rem !important}html.landing-page-only .pt-9,html.landing-page-only .py-9{padding-top:1.625rem !important}html.landing-page-only .pr-9,html.landing-page-only .px-9{padding-right:1.625rem !important}html.landing-page-only .pb-9,html.landing-page-only .py-9{padding-bottom:1.625rem !important}html.landing-page-only .pl-9,html.landing-page-only .px-9{padding-left:1.625rem !important}html.landing-page-only .p-10{padding:1.75rem !important}html.landing-page-only .pt-10,html.landing-page-only .py-10{padding-top:1.75rem !important}html.landing-page-only .pr-10,html.landing-page-only .px-10{padding-right:1.75rem !important}html.landing-page-only .pb-10,html.landing-page-only .py-10{padding-bottom:1.75rem !important}html.landing-page-only .pl-10,html.landing-page-only .px-10{padding-left:1.75rem !important}html.landing-page-only .p-11{padding:2rem !important}html.landing-page-only .pt-11,html.landing-page-only .py-11{padding-top:2rem !important}html.landing-page-only .pr-11,html.landing-page-only .px-11{padding-right:2rem !important}html.landing-page-only .pb-11,html.landing-page-only .py-11{padding-bottom:2rem !important}html.landing-page-only .pl-11,html.landing-page-only .px-11{padding-left:2rem !important}html.landing-page-only .p-12{padding:2.5rem !important}html.landing-page-only .pt-12,html.landing-page-only .py-12{padding-top:2.5rem !important}html.landing-page-only .pr-12,html.landing-page-only .px-12{padding-right:2.5rem !important}html.landing-page-only .pb-12,html.landing-page-only .py-12{padding-bottom:2.5rem !important}html.landing-page-only .pl-12,html.landing-page-only .px-12{padding-left:2.5rem !important}html.landing-page-only .p-13{padding:3rem !important}html.landing-page-only .pt-13,html.landing-page-only .py-13{padding-top:3rem !important}html.landing-page-only .pr-13,html.landing-page-only .px-13{padding-right:3rem !important}html.landing-page-only .pb-13,html.landing-page-only .py-13{padding-bottom:3rem !important}html.landing-page-only .pl-13,html.landing-page-only .px-13{padding-left:3rem !important}html.landing-page-only .p-14{padding:3.5rem !important}html.landing-page-only .pt-14,html.landing-page-only .py-14{padding-top:3.5rem !important}html.landing-page-only .pr-14,html.landing-page-only .px-14{padding-right:3.5rem !important}html.landing-page-only .pb-14,html.landing-page-only .py-14{padding-bottom:3.5rem !important}html.landing-page-only .pl-14,html.landing-page-only .px-14{padding-left:3.5rem !important}html.landing-page-only .p-15{padding:4rem !important}html.landing-page-only .pt-15,html.landing-page-only .py-15{padding-top:4rem !important}html.landing-page-only .pr-15,html.landing-page-only .px-15{padding-right:4rem !important}html.landing-page-only .pb-15,html.landing-page-only .py-15{padding-bottom:4rem !important}html.landing-page-only .pl-15,html.landing-page-only .px-15{padding-left:4rem !important}html.landing-page-only .p-16{padding:4.5rem !important}html.landing-page-only .pt-16,html.landing-page-only .py-16{padding-top:4.5rem !important}html.landing-page-only .pr-16,html.landing-page-only .px-16{padding-right:4.5rem !important}html.landing-page-only .pb-16,html.landing-page-only .py-16{padding-bottom:4.5rem !important}html.landing-page-only .pl-16,html.landing-page-only .px-16{padding-left:4.5rem !important}html.landing-page-only .p-17{padding:5rem !important}html.landing-page-only .pt-17,html.landing-page-only .py-17{padding-top:5rem !important}html.landing-page-only .pr-17,html.landing-page-only .px-17{padding-right:5rem !important}html.landing-page-only .pb-17,html.landing-page-only .py-17{padding-bottom:5rem !important}html.landing-page-only .pl-17,html.landing-page-only .px-17{padding-left:5rem !important}html.landing-page-only .p-18{padding:5.5rem !important}html.landing-page-only .pt-18,html.landing-page-only .py-18{padding-top:5.5rem !important}html.landing-page-only .pr-18,html.landing-page-only .px-18{padding-right:5.5rem !important}html.landing-page-only .pb-18,html.landing-page-only .py-18{padding-bottom:5.5rem !important}html.landing-page-only .pl-18,html.landing-page-only .px-18{padding-left:5.5rem !important}html.landing-page-only .p-19{padding:6rem !important}html.landing-page-only .pt-19,html.landing-page-only .py-19{padding-top:6rem !important}html.landing-page-only .pr-19,html.landing-page-only .px-19{padding-right:6rem !important}html.landing-page-only .pb-19,html.landing-page-only .py-19{padding-bottom:6rem !important}html.landing-page-only .pl-19,html.landing-page-only .px-19{padding-left:6rem !important}html.landing-page-only .p-20{padding:7rem !important}html.landing-page-only .pt-20,html.landing-page-only .py-20{padding-top:7rem !important}html.landing-page-only .pr-20,html.landing-page-only .px-20{padding-right:7rem !important}html.landing-page-only .pb-20,html.landing-page-only .py-20{padding-bottom:7rem !important}html.landing-page-only .pl-20,html.landing-page-only .px-20{padding-left:7rem !important}html.landing-page-only .p-21{padding:8.5rem !important}html.landing-page-only .pt-21,html.landing-page-only .py-21{padding-top:8.5rem !important}html.landing-page-only .pr-21,html.landing-page-only .px-21{padding-right:8.5rem !important}html.landing-page-only .pb-21,html.landing-page-only .py-21{padding-bottom:8.5rem !important}html.landing-page-only .pl-21,html.landing-page-only .px-21{padding-left:8.5rem !important}html.landing-page-only .p-22{padding:14.25rem !important}html.landing-page-only .pt-22,html.landing-page-only .py-22{padding-top:14.25rem !important}html.landing-page-only .pr-22,html.landing-page-only .px-22{padding-right:14.25rem !important}html.landing-page-only .pb-22,html.landing-page-only .py-22{padding-bottom:14.25rem !important}html.landing-page-only .pl-22,html.landing-page-only .px-22{padding-left:14.25rem !important}html.landing-page-only .p-23{padding:20rem !important}html.landing-page-only .pt-23,html.landing-page-only .py-23{padding-top:20rem !important}html.landing-page-only .pr-23,html.landing-page-only .px-23{padding-right:20rem !important}html.landing-page-only .pb-23,html.landing-page-only .py-23{padding-bottom:20rem !important}html.landing-page-only .pl-23,html.landing-page-only .px-23{padding-left:20rem !important}html.landing-page-only .m-n1{margin:-0.25rem !important}html.landing-page-only .mt-n1,html.landing-page-only .my-n1{margin-top:-0.25rem !important}html.landing-page-only .mr-n1,html.landing-page-only .mx-n1{margin-right:-0.25rem !important}html.landing-page-only .mb-n1,html.landing-page-only .my-n1{margin-bottom:-0.25rem !important}html.landing-page-only .ml-n1,html.landing-page-only .mx-n1{margin-left:-0.25rem !important}html.landing-page-only .m-n2{margin:-0.5rem !important}html.landing-page-only .mt-n2,html.landing-page-only .my-n2{margin-top:-0.5rem !important}html.landing-page-only .mr-n2,html.landing-page-only .mx-n2{margin-right:-0.5rem !important}html.landing-page-only .mb-n2,html.landing-page-only .my-n2{margin-bottom:-0.5rem !important}html.landing-page-only .ml-n2,html.landing-page-only .mx-n2{margin-left:-0.5rem !important}html.landing-page-only .m-n3{margin:-0.75rem !important}html.landing-page-only .mt-n3,html.landing-page-only .my-n3{margin-top:-0.75rem !important}html.landing-page-only .mr-n3,html.landing-page-only .mx-n3{margin-right:-0.75rem !important}html.landing-page-only .mb-n3,html.landing-page-only .my-n3{margin-bottom:-0.75rem !important}html.landing-page-only .ml-n3,html.landing-page-only .mx-n3{margin-left:-0.75rem !important}html.landing-page-only .m-n4{margin:-1rem !important}html.landing-page-only .mt-n4,html.landing-page-only .my-n4{margin-top:-1rem !important}html.landing-page-only .mr-n4,html.landing-page-only .mx-n4{margin-right:-1rem !important}html.landing-page-only .mb-n4,html.landing-page-only .my-n4{margin-bottom:-1rem !important}html.landing-page-only .ml-n4,html.landing-page-only .mx-n4{margin-left:-1rem !important}html.landing-page-only .m-n5{margin:-1.175rem !important}html.landing-page-only .mt-n5,html.landing-page-only .my-n5{margin-top:-1.175rem !important}html.landing-page-only .mr-n5,html.landing-page-only .mx-n5{margin-right:-1.175rem !important}html.landing-page-only .mb-n5,html.landing-page-only .my-n5{margin-bottom:-1.175rem !important}html.landing-page-only .ml-n5,html.landing-page-only .mx-n5{margin-left:-1.175rem !important}html.landing-page-only .m-n6{margin:-1.25rem !important}html.landing-page-only .mt-n6,html.landing-page-only .my-n6{margin-top:-1.25rem !important}html.landing-page-only .mr-n6,html.landing-page-only .mx-n6{margin-right:-1.25rem !important}html.landing-page-only .mb-n6,html.landing-page-only .my-n6{margin-bottom:-1.25rem !important}html.landing-page-only .ml-n6,html.landing-page-only .mx-n6{margin-left:-1.25rem !important}html.landing-page-only .m-n7{margin:-1.375rem !important}html.landing-page-only .mt-n7,html.landing-page-only .my-n7{margin-top:-1.375rem !important}html.landing-page-only .mr-n7,html.landing-page-only .mx-n7{margin-right:-1.375rem !important}html.landing-page-only .mb-n7,html.landing-page-only .my-n7{margin-bottom:-1.375rem !important}html.landing-page-only .ml-n7,html.landing-page-only .mx-n7{margin-left:-1.375rem !important}html.landing-page-only .m-n8{margin:-1.5rem !important}html.landing-page-only .mt-n8,html.landing-page-only .my-n8{margin-top:-1.5rem !important}html.landing-page-only .mr-n8,html.landing-page-only .mx-n8{margin-right:-1.5rem !important}html.landing-page-only .mb-n8,html.landing-page-only .my-n8{margin-bottom:-1.5rem !important}html.landing-page-only .ml-n8,html.landing-page-only .mx-n8{margin-left:-1.5rem !important}html.landing-page-only .m-n9{margin:-1.625rem !important}html.landing-page-only .mt-n9,html.landing-page-only .my-n9{margin-top:-1.625rem !important}html.landing-page-only .mr-n9,html.landing-page-only .mx-n9{margin-right:-1.625rem !important}html.landing-page-only .mb-n9,html.landing-page-only .my-n9{margin-bottom:-1.625rem !important}html.landing-page-only .ml-n9,html.landing-page-only .mx-n9{margin-left:-1.625rem !important}html.landing-page-only .m-n10{margin:-1.75rem !important}html.landing-page-only .mt-n10,html.landing-page-only .my-n10{margin-top:-1.75rem !important}html.landing-page-only .mr-n10,html.landing-page-only .mx-n10{margin-right:-1.75rem !important}html.landing-page-only .mb-n10,html.landing-page-only .my-n10{margin-bottom:-1.75rem !important}html.landing-page-only .ml-n10,html.landing-page-only .mx-n10{margin-left:-1.75rem !important}html.landing-page-only .m-n11{margin:-2rem !important}html.landing-page-only .mt-n11,html.landing-page-only .my-n11{margin-top:-2rem !important}html.landing-page-only .mr-n11,html.landing-page-only .mx-n11{margin-right:-2rem !important}html.landing-page-only .mb-n11,html.landing-page-only .my-n11{margin-bottom:-2rem !important}html.landing-page-only .ml-n11,html.landing-page-only .mx-n11{margin-left:-2rem !important}html.landing-page-only .m-n12{margin:-2.5rem !important}html.landing-page-only .mt-n12,html.landing-page-only .my-n12{margin-top:-2.5rem !important}html.landing-page-only .mr-n12,html.landing-page-only .mx-n12{margin-right:-2.5rem !important}html.landing-page-only .mb-n12,html.landing-page-only .my-n12{margin-bottom:-2.5rem !important}html.landing-page-only .ml-n12,html.landing-page-only .mx-n12{margin-left:-2.5rem !important}html.landing-page-only .m-n13{margin:-3rem !important}html.landing-page-only .mt-n13,html.landing-page-only .my-n13{margin-top:-3rem !important}html.landing-page-only .mr-n13,html.landing-page-only .mx-n13{margin-right:-3rem !important}html.landing-page-only .mb-n13,html.landing-page-only .my-n13{margin-bottom:-3rem !important}html.landing-page-only .ml-n13,html.landing-page-only .mx-n13{margin-left:-3rem !important}html.landing-page-only .m-n14{margin:-3.5rem !important}html.landing-page-only .mt-n14,html.landing-page-only .my-n14{margin-top:-3.5rem !important}html.landing-page-only .mr-n14,html.landing-page-only .mx-n14{margin-right:-3.5rem !important}html.landing-page-only .mb-n14,html.landing-page-only .my-n14{margin-bottom:-3.5rem !important}html.landing-page-only .ml-n14,html.landing-page-only .mx-n14{margin-left:-3.5rem !important}html.landing-page-only .m-n15{margin:-4rem !important}html.landing-page-only .mt-n15,html.landing-page-only .my-n15{margin-top:-4rem !important}html.landing-page-only .mr-n15,html.landing-page-only .mx-n15{margin-right:-4rem !important}html.landing-page-only .mb-n15,html.landing-page-only .my-n15{margin-bottom:-4rem !important}html.landing-page-only .ml-n15,html.landing-page-only .mx-n15{margin-left:-4rem !important}html.landing-page-only .m-n16{margin:-4.5rem !important}html.landing-page-only .mt-n16,html.landing-page-only .my-n16{margin-top:-4.5rem !important}html.landing-page-only .mr-n16,html.landing-page-only .mx-n16{margin-right:-4.5rem !important}html.landing-page-only .mb-n16,html.landing-page-only .my-n16{margin-bottom:-4.5rem !important}html.landing-page-only .ml-n16,html.landing-page-only .mx-n16{margin-left:-4.5rem !important}html.landing-page-only .m-n17{margin:-5rem !important}html.landing-page-only .mt-n17,html.landing-page-only .my-n17{margin-top:-5rem !important}html.landing-page-only .mr-n17,html.landing-page-only .mx-n17{margin-right:-5rem !important}html.landing-page-only .mb-n17,html.landing-page-only .my-n17{margin-bottom:-5rem !important}html.landing-page-only .ml-n17,html.landing-page-only .mx-n17{margin-left:-5rem !important}html.landing-page-only .m-n18{margin:-5.5rem !important}html.landing-page-only .mt-n18,html.landing-page-only .my-n18{margin-top:-5.5rem !important}html.landing-page-only .mr-n18,html.landing-page-only .mx-n18{margin-right:-5.5rem !important}html.landing-page-only .mb-n18,html.landing-page-only .my-n18{margin-bottom:-5.5rem !important}html.landing-page-only .ml-n18,html.landing-page-only .mx-n18{margin-left:-5.5rem !important}html.landing-page-only .m-n19{margin:-6rem !important}html.landing-page-only .mt-n19,html.landing-page-only .my-n19{margin-top:-6rem !important}html.landing-page-only .mr-n19,html.landing-page-only .mx-n19{margin-right:-6rem !important}html.landing-page-only .mb-n19,html.landing-page-only .my-n19{margin-bottom:-6rem !important}html.landing-page-only .ml-n19,html.landing-page-only .mx-n19{margin-left:-6rem !important}html.landing-page-only .m-n20{margin:-7rem !important}html.landing-page-only .mt-n20,html.landing-page-only .my-n20{margin-top:-7rem !important}html.landing-page-only .mr-n20,html.landing-page-only .mx-n20{margin-right:-7rem !important}html.landing-page-only .mb-n20,html.landing-page-only .my-n20{margin-bottom:-7rem !important}html.landing-page-only .ml-n20,html.landing-page-only .mx-n20{margin-left:-7rem !important}html.landing-page-only .m-n21{margin:-8.5rem !important}html.landing-page-only .mt-n21,html.landing-page-only .my-n21{margin-top:-8.5rem !important}html.landing-page-only .mr-n21,html.landing-page-only .mx-n21{margin-right:-8.5rem !important}html.landing-page-only .mb-n21,html.landing-page-only .my-n21{margin-bottom:-8.5rem !important}html.landing-page-only .ml-n21,html.landing-page-only .mx-n21{margin-left:-8.5rem !important}html.landing-page-only .m-n22{margin:-14.25rem !important}html.landing-page-only .mt-n22,html.landing-page-only .my-n22{margin-top:-14.25rem !important}html.landing-page-only .mr-n22,html.landing-page-only .mx-n22{margin-right:-14.25rem !important}html.landing-page-only .mb-n22,html.landing-page-only .my-n22{margin-bottom:-14.25rem !important}html.landing-page-only .ml-n22,html.landing-page-only .mx-n22{margin-left:-14.25rem !important}html.landing-page-only .m-n23{margin:-20rem !important}html.landing-page-only .mt-n23,html.landing-page-only .my-n23{margin-top:-20rem !important}html.landing-page-only .mr-n23,html.landing-page-only .mx-n23{margin-right:-20rem !important}html.landing-page-only .mb-n23,html.landing-page-only .my-n23{margin-bottom:-20rem !important}html.landing-page-only .ml-n23,html.landing-page-only .mx-n23{margin-left:-20rem !important}html.landing-page-only .m-auto{margin:auto !important}html.landing-page-only .mt-auto,html.landing-page-only .my-auto{margin-top:auto !important}html.landing-page-only .mr-auto,html.landing-page-only .mx-auto{margin-right:auto !important}html.landing-page-only .mb-auto,html.landing-page-only .my-auto{margin-bottom:auto !important}html.landing-page-only .ml-auto,html.landing-page-only .mx-auto{margin-left:auto !important}@media(min-width: 576px){html.landing-page-only .m-sm-0{margin:0 !important}html.landing-page-only .mt-sm-0,html.landing-page-only .my-sm-0{margin-top:0 !important}html.landing-page-only .mr-sm-0,html.landing-page-only .mx-sm-0{margin-right:0 !important}html.landing-page-only .mb-sm-0,html.landing-page-only .my-sm-0{margin-bottom:0 !important}html.landing-page-only .ml-sm-0,html.landing-page-only .mx-sm-0{margin-left:0 !important}html.landing-page-only .m-sm-1{margin:.25rem !important}html.landing-page-only .mt-sm-1,html.landing-page-only .my-sm-1{margin-top:.25rem !important}html.landing-page-only .mr-sm-1,html.landing-page-only .mx-sm-1{margin-right:.25rem !important}html.landing-page-only .mb-sm-1,html.landing-page-only .my-sm-1{margin-bottom:.25rem !important}html.landing-page-only .ml-sm-1,html.landing-page-only .mx-sm-1{margin-left:.25rem !important}html.landing-page-only .m-sm-2{margin:.5rem !important}html.landing-page-only .mt-sm-2,html.landing-page-only .my-sm-2{margin-top:.5rem !important}html.landing-page-only .mr-sm-2,html.landing-page-only .mx-sm-2{margin-right:.5rem !important}html.landing-page-only .mb-sm-2,html.landing-page-only .my-sm-2{margin-bottom:.5rem !important}html.landing-page-only .ml-sm-2,html.landing-page-only .mx-sm-2{margin-left:.5rem !important}html.landing-page-only .m-sm-3{margin:.75rem !important}html.landing-page-only .mt-sm-3,html.landing-page-only .my-sm-3{margin-top:.75rem !important}html.landing-page-only .mr-sm-3,html.landing-page-only .mx-sm-3{margin-right:.75rem !important}html.landing-page-only .mb-sm-3,html.landing-page-only .my-sm-3{margin-bottom:.75rem !important}html.landing-page-only .ml-sm-3,html.landing-page-only .mx-sm-3{margin-left:.75rem !important}html.landing-page-only .m-sm-4{margin:1rem !important}html.landing-page-only .mt-sm-4,html.landing-page-only .my-sm-4{margin-top:1rem !important}html.landing-page-only .mr-sm-4,html.landing-page-only .mx-sm-4{margin-right:1rem !important}html.landing-page-only .mb-sm-4,html.landing-page-only .my-sm-4{margin-bottom:1rem !important}html.landing-page-only .ml-sm-4,html.landing-page-only .mx-sm-4{margin-left:1rem !important}html.landing-page-only .m-sm-5{margin:1.175rem !important}html.landing-page-only .mt-sm-5,html.landing-page-only .my-sm-5{margin-top:1.175rem !important}html.landing-page-only .mr-sm-5,html.landing-page-only .mx-sm-5{margin-right:1.175rem !important}html.landing-page-only .mb-sm-5,html.landing-page-only .my-sm-5{margin-bottom:1.175rem !important}html.landing-page-only .ml-sm-5,html.landing-page-only .mx-sm-5{margin-left:1.175rem !important}html.landing-page-only .m-sm-6{margin:1.25rem !important}html.landing-page-only .mt-sm-6,html.landing-page-only .my-sm-6{margin-top:1.25rem !important}html.landing-page-only .mr-sm-6,html.landing-page-only .mx-sm-6{margin-right:1.25rem !important}html.landing-page-only .mb-sm-6,html.landing-page-only .my-sm-6{margin-bottom:1.25rem !important}html.landing-page-only .ml-sm-6,html.landing-page-only .mx-sm-6{margin-left:1.25rem !important}html.landing-page-only .m-sm-7{margin:1.375rem !important}html.landing-page-only .mt-sm-7,html.landing-page-only .my-sm-7{margin-top:1.375rem !important}html.landing-page-only .mr-sm-7,html.landing-page-only .mx-sm-7{margin-right:1.375rem !important}html.landing-page-only .mb-sm-7,html.landing-page-only .my-sm-7{margin-bottom:1.375rem !important}html.landing-page-only .ml-sm-7,html.landing-page-only .mx-sm-7{margin-left:1.375rem !important}html.landing-page-only .m-sm-8{margin:1.5rem !important}html.landing-page-only .mt-sm-8,html.landing-page-only .my-sm-8{margin-top:1.5rem !important}html.landing-page-only .mr-sm-8,html.landing-page-only .mx-sm-8{margin-right:1.5rem !important}html.landing-page-only .mb-sm-8,html.landing-page-only .my-sm-8{margin-bottom:1.5rem !important}html.landing-page-only .ml-sm-8,html.landing-page-only .mx-sm-8{margin-left:1.5rem !important}html.landing-page-only .m-sm-9{margin:1.625rem !important}html.landing-page-only .mt-sm-9,html.landing-page-only .my-sm-9{margin-top:1.625rem !important}html.landing-page-only .mr-sm-9,html.landing-page-only .mx-sm-9{margin-right:1.625rem !important}html.landing-page-only .mb-sm-9,html.landing-page-only .my-sm-9{margin-bottom:1.625rem !important}html.landing-page-only .ml-sm-9,html.landing-page-only .mx-sm-9{margin-left:1.625rem !important}html.landing-page-only .m-sm-10{margin:1.75rem !important}html.landing-page-only .mt-sm-10,html.landing-page-only .my-sm-10{margin-top:1.75rem !important}html.landing-page-only .mr-sm-10,html.landing-page-only .mx-sm-10{margin-right:1.75rem !important}html.landing-page-only .mb-sm-10,html.landing-page-only .my-sm-10{margin-bottom:1.75rem !important}html.landing-page-only .ml-sm-10,html.landing-page-only .mx-sm-10{margin-left:1.75rem !important}html.landing-page-only .m-sm-11{margin:2rem !important}html.landing-page-only .mt-sm-11,html.landing-page-only .my-sm-11{margin-top:2rem !important}html.landing-page-only .mr-sm-11,html.landing-page-only .mx-sm-11{margin-right:2rem !important}html.landing-page-only .mb-sm-11,html.landing-page-only .my-sm-11{margin-bottom:2rem !important}html.landing-page-only .ml-sm-11,html.landing-page-only .mx-sm-11{margin-left:2rem !important}html.landing-page-only .m-sm-12{margin:2.5rem !important}html.landing-page-only .mt-sm-12,html.landing-page-only .my-sm-12{margin-top:2.5rem !important}html.landing-page-only .mr-sm-12,html.landing-page-only .mx-sm-12{margin-right:2.5rem !important}html.landing-page-only .mb-sm-12,html.landing-page-only .my-sm-12{margin-bottom:2.5rem !important}html.landing-page-only .ml-sm-12,html.landing-page-only .mx-sm-12{margin-left:2.5rem !important}html.landing-page-only .m-sm-13{margin:3rem !important}html.landing-page-only .mt-sm-13,html.landing-page-only .my-sm-13{margin-top:3rem !important}html.landing-page-only .mr-sm-13,html.landing-page-only .mx-sm-13{margin-right:3rem !important}html.landing-page-only .mb-sm-13,html.landing-page-only .my-sm-13{margin-bottom:3rem !important}html.landing-page-only .ml-sm-13,html.landing-page-only .mx-sm-13{margin-left:3rem !important}html.landing-page-only .m-sm-14{margin:3.5rem !important}html.landing-page-only .mt-sm-14,html.landing-page-only .my-sm-14{margin-top:3.5rem !important}html.landing-page-only .mr-sm-14,html.landing-page-only .mx-sm-14{margin-right:3.5rem !important}html.landing-page-only .mb-sm-14,html.landing-page-only .my-sm-14{margin-bottom:3.5rem !important}html.landing-page-only .ml-sm-14,html.landing-page-only .mx-sm-14{margin-left:3.5rem !important}html.landing-page-only .m-sm-15{margin:4rem !important}html.landing-page-only .mt-sm-15,html.landing-page-only .my-sm-15{margin-top:4rem !important}html.landing-page-only .mr-sm-15,html.landing-page-only .mx-sm-15{margin-right:4rem !important}html.landing-page-only .mb-sm-15,html.landing-page-only .my-sm-15{margin-bottom:4rem !important}html.landing-page-only .ml-sm-15,html.landing-page-only .mx-sm-15{margin-left:4rem !important}html.landing-page-only .m-sm-16{margin:4.5rem !important}html.landing-page-only .mt-sm-16,html.landing-page-only .my-sm-16{margin-top:4.5rem !important}html.landing-page-only .mr-sm-16,html.landing-page-only .mx-sm-16{margin-right:4.5rem !important}html.landing-page-only .mb-sm-16,html.landing-page-only .my-sm-16{margin-bottom:4.5rem !important}html.landing-page-only .ml-sm-16,html.landing-page-only .mx-sm-16{margin-left:4.5rem !important}html.landing-page-only .m-sm-17{margin:5rem !important}html.landing-page-only .mt-sm-17,html.landing-page-only .my-sm-17{margin-top:5rem !important}html.landing-page-only .mr-sm-17,html.landing-page-only .mx-sm-17{margin-right:5rem !important}html.landing-page-only .mb-sm-17,html.landing-page-only .my-sm-17{margin-bottom:5rem !important}html.landing-page-only .ml-sm-17,html.landing-page-only .mx-sm-17{margin-left:5rem !important}html.landing-page-only .m-sm-18{margin:5.5rem !important}html.landing-page-only .mt-sm-18,html.landing-page-only .my-sm-18{margin-top:5.5rem !important}html.landing-page-only .mr-sm-18,html.landing-page-only .mx-sm-18{margin-right:5.5rem !important}html.landing-page-only .mb-sm-18,html.landing-page-only .my-sm-18{margin-bottom:5.5rem !important}html.landing-page-only .ml-sm-18,html.landing-page-only .mx-sm-18{margin-left:5.5rem !important}html.landing-page-only .m-sm-19{margin:6rem !important}html.landing-page-only .mt-sm-19,html.landing-page-only .my-sm-19{margin-top:6rem !important}html.landing-page-only .mr-sm-19,html.landing-page-only .mx-sm-19{margin-right:6rem !important}html.landing-page-only .mb-sm-19,html.landing-page-only .my-sm-19{margin-bottom:6rem !important}html.landing-page-only .ml-sm-19,html.landing-page-only .mx-sm-19{margin-left:6rem !important}html.landing-page-only .m-sm-20{margin:7rem !important}html.landing-page-only .mt-sm-20,html.landing-page-only .my-sm-20{margin-top:7rem !important}html.landing-page-only .mr-sm-20,html.landing-page-only .mx-sm-20{margin-right:7rem !important}html.landing-page-only .mb-sm-20,html.landing-page-only .my-sm-20{margin-bottom:7rem !important}html.landing-page-only .ml-sm-20,html.landing-page-only .mx-sm-20{margin-left:7rem !important}html.landing-page-only .m-sm-21{margin:8.5rem !important}html.landing-page-only .mt-sm-21,html.landing-page-only .my-sm-21{margin-top:8.5rem !important}html.landing-page-only .mr-sm-21,html.landing-page-only .mx-sm-21{margin-right:8.5rem !important}html.landing-page-only .mb-sm-21,html.landing-page-only .my-sm-21{margin-bottom:8.5rem !important}html.landing-page-only .ml-sm-21,html.landing-page-only .mx-sm-21{margin-left:8.5rem !important}html.landing-page-only .m-sm-22{margin:14.25rem !important}html.landing-page-only .mt-sm-22,html.landing-page-only .my-sm-22{margin-top:14.25rem !important}html.landing-page-only .mr-sm-22,html.landing-page-only .mx-sm-22{margin-right:14.25rem !important}html.landing-page-only .mb-sm-22,html.landing-page-only .my-sm-22{margin-bottom:14.25rem !important}html.landing-page-only .ml-sm-22,html.landing-page-only .mx-sm-22{margin-left:14.25rem !important}html.landing-page-only .m-sm-23{margin:20rem !important}html.landing-page-only .mt-sm-23,html.landing-page-only .my-sm-23{margin-top:20rem !important}html.landing-page-only .mr-sm-23,html.landing-page-only .mx-sm-23{margin-right:20rem !important}html.landing-page-only .mb-sm-23,html.landing-page-only .my-sm-23{margin-bottom:20rem !important}html.landing-page-only .ml-sm-23,html.landing-page-only .mx-sm-23{margin-left:20rem !important}html.landing-page-only .p-sm-0{padding:0 !important}html.landing-page-only .pt-sm-0,html.landing-page-only .py-sm-0{padding-top:0 !important}html.landing-page-only .pr-sm-0,html.landing-page-only .px-sm-0{padding-right:0 !important}html.landing-page-only .pb-sm-0,html.landing-page-only .py-sm-0{padding-bottom:0 !important}html.landing-page-only .pl-sm-0,html.landing-page-only .px-sm-0{padding-left:0 !important}html.landing-page-only .p-sm-1{padding:.25rem !important}html.landing-page-only .pt-sm-1,html.landing-page-only .py-sm-1{padding-top:.25rem !important}html.landing-page-only .pr-sm-1,html.landing-page-only .px-sm-1{padding-right:.25rem !important}html.landing-page-only .pb-sm-1,html.landing-page-only .py-sm-1{padding-bottom:.25rem !important}html.landing-page-only .pl-sm-1,html.landing-page-only .px-sm-1{padding-left:.25rem !important}html.landing-page-only .p-sm-2{padding:.5rem !important}html.landing-page-only .pt-sm-2,html.landing-page-only .py-sm-2{padding-top:.5rem !important}html.landing-page-only .pr-sm-2,html.landing-page-only .px-sm-2{padding-right:.5rem !important}html.landing-page-only .pb-sm-2,html.landing-page-only .py-sm-2{padding-bottom:.5rem !important}html.landing-page-only .pl-sm-2,html.landing-page-only .px-sm-2{padding-left:.5rem !important}html.landing-page-only .p-sm-3{padding:.75rem !important}html.landing-page-only .pt-sm-3,html.landing-page-only .py-sm-3{padding-top:.75rem !important}html.landing-page-only .pr-sm-3,html.landing-page-only .px-sm-3{padding-right:.75rem !important}html.landing-page-only .pb-sm-3,html.landing-page-only .py-sm-3{padding-bottom:.75rem !important}html.landing-page-only .pl-sm-3,html.landing-page-only .px-sm-3{padding-left:.75rem !important}html.landing-page-only .p-sm-4{padding:1rem !important}html.landing-page-only .pt-sm-4,html.landing-page-only .py-sm-4{padding-top:1rem !important}html.landing-page-only .pr-sm-4,html.landing-page-only .px-sm-4{padding-right:1rem !important}html.landing-page-only .pb-sm-4,html.landing-page-only .py-sm-4{padding-bottom:1rem !important}html.landing-page-only .pl-sm-4,html.landing-page-only .px-sm-4{padding-left:1rem !important}html.landing-page-only .p-sm-5{padding:1.175rem !important}html.landing-page-only .pt-sm-5,html.landing-page-only .py-sm-5{padding-top:1.175rem !important}html.landing-page-only .pr-sm-5,html.landing-page-only .px-sm-5{padding-right:1.175rem !important}html.landing-page-only .pb-sm-5,html.landing-page-only .py-sm-5{padding-bottom:1.175rem !important}html.landing-page-only .pl-sm-5,html.landing-page-only .px-sm-5{padding-left:1.175rem !important}html.landing-page-only .p-sm-6{padding:1.25rem !important}html.landing-page-only .pt-sm-6,html.landing-page-only .py-sm-6{padding-top:1.25rem !important}html.landing-page-only .pr-sm-6,html.landing-page-only .px-sm-6{padding-right:1.25rem !important}html.landing-page-only .pb-sm-6,html.landing-page-only .py-sm-6{padding-bottom:1.25rem !important}html.landing-page-only .pl-sm-6,html.landing-page-only .px-sm-6{padding-left:1.25rem !important}html.landing-page-only .p-sm-7{padding:1.375rem !important}html.landing-page-only .pt-sm-7,html.landing-page-only .py-sm-7{padding-top:1.375rem !important}html.landing-page-only .pr-sm-7,html.landing-page-only .px-sm-7{padding-right:1.375rem !important}html.landing-page-only .pb-sm-7,html.landing-page-only .py-sm-7{padding-bottom:1.375rem !important}html.landing-page-only .pl-sm-7,html.landing-page-only .px-sm-7{padding-left:1.375rem !important}html.landing-page-only .p-sm-8{padding:1.5rem !important}html.landing-page-only .pt-sm-8,html.landing-page-only .py-sm-8{padding-top:1.5rem !important}html.landing-page-only .pr-sm-8,html.landing-page-only .px-sm-8{padding-right:1.5rem !important}html.landing-page-only .pb-sm-8,html.landing-page-only .py-sm-8{padding-bottom:1.5rem !important}html.landing-page-only .pl-sm-8,html.landing-page-only .px-sm-8{padding-left:1.5rem !important}html.landing-page-only .p-sm-9{padding:1.625rem !important}html.landing-page-only .pt-sm-9,html.landing-page-only .py-sm-9{padding-top:1.625rem !important}html.landing-page-only .pr-sm-9,html.landing-page-only .px-sm-9{padding-right:1.625rem !important}html.landing-page-only .pb-sm-9,html.landing-page-only .py-sm-9{padding-bottom:1.625rem !important}html.landing-page-only .pl-sm-9,html.landing-page-only .px-sm-9{padding-left:1.625rem !important}html.landing-page-only .p-sm-10{padding:1.75rem !important}html.landing-page-only .pt-sm-10,html.landing-page-only .py-sm-10{padding-top:1.75rem !important}html.landing-page-only .pr-sm-10,html.landing-page-only .px-sm-10{padding-right:1.75rem !important}html.landing-page-only .pb-sm-10,html.landing-page-only .py-sm-10{padding-bottom:1.75rem !important}html.landing-page-only .pl-sm-10,html.landing-page-only .px-sm-10{padding-left:1.75rem !important}html.landing-page-only .p-sm-11{padding:2rem !important}html.landing-page-only .pt-sm-11,html.landing-page-only .py-sm-11{padding-top:2rem !important}html.landing-page-only .pr-sm-11,html.landing-page-only .px-sm-11{padding-right:2rem !important}html.landing-page-only .pb-sm-11,html.landing-page-only .py-sm-11{padding-bottom:2rem !important}html.landing-page-only .pl-sm-11,html.landing-page-only .px-sm-11{padding-left:2rem !important}html.landing-page-only .p-sm-12{padding:2.5rem !important}html.landing-page-only .pt-sm-12,html.landing-page-only .py-sm-12{padding-top:2.5rem !important}html.landing-page-only .pr-sm-12,html.landing-page-only .px-sm-12{padding-right:2.5rem !important}html.landing-page-only .pb-sm-12,html.landing-page-only .py-sm-12{padding-bottom:2.5rem !important}html.landing-page-only .pl-sm-12,html.landing-page-only .px-sm-12{padding-left:2.5rem !important}html.landing-page-only .p-sm-13{padding:3rem !important}html.landing-page-only .pt-sm-13,html.landing-page-only .py-sm-13{padding-top:3rem !important}html.landing-page-only .pr-sm-13,html.landing-page-only .px-sm-13{padding-right:3rem !important}html.landing-page-only .pb-sm-13,html.landing-page-only .py-sm-13{padding-bottom:3rem !important}html.landing-page-only .pl-sm-13,html.landing-page-only .px-sm-13{padding-left:3rem !important}html.landing-page-only .p-sm-14{padding:3.5rem !important}html.landing-page-only .pt-sm-14,html.landing-page-only .py-sm-14{padding-top:3.5rem !important}html.landing-page-only .pr-sm-14,html.landing-page-only .px-sm-14{padding-right:3.5rem !important}html.landing-page-only .pb-sm-14,html.landing-page-only .py-sm-14{padding-bottom:3.5rem !important}html.landing-page-only .pl-sm-14,html.landing-page-only .px-sm-14{padding-left:3.5rem !important}html.landing-page-only .p-sm-15{padding:4rem !important}html.landing-page-only .pt-sm-15,html.landing-page-only .py-sm-15{padding-top:4rem !important}html.landing-page-only .pr-sm-15,html.landing-page-only .px-sm-15{padding-right:4rem !important}html.landing-page-only .pb-sm-15,html.landing-page-only .py-sm-15{padding-bottom:4rem !important}html.landing-page-only .pl-sm-15,html.landing-page-only .px-sm-15{padding-left:4rem !important}html.landing-page-only .p-sm-16{padding:4.5rem !important}html.landing-page-only .pt-sm-16,html.landing-page-only .py-sm-16{padding-top:4.5rem !important}html.landing-page-only .pr-sm-16,html.landing-page-only .px-sm-16{padding-right:4.5rem !important}html.landing-page-only .pb-sm-16,html.landing-page-only .py-sm-16{padding-bottom:4.5rem !important}html.landing-page-only .pl-sm-16,html.landing-page-only .px-sm-16{padding-left:4.5rem !important}html.landing-page-only .p-sm-17{padding:5rem !important}html.landing-page-only .pt-sm-17,html.landing-page-only .py-sm-17{padding-top:5rem !important}html.landing-page-only .pr-sm-17,html.landing-page-only .px-sm-17{padding-right:5rem !important}html.landing-page-only .pb-sm-17,html.landing-page-only .py-sm-17{padding-bottom:5rem !important}html.landing-page-only .pl-sm-17,html.landing-page-only .px-sm-17{padding-left:5rem !important}html.landing-page-only .p-sm-18{padding:5.5rem !important}html.landing-page-only .pt-sm-18,html.landing-page-only .py-sm-18{padding-top:5.5rem !important}html.landing-page-only .pr-sm-18,html.landing-page-only .px-sm-18{padding-right:5.5rem !important}html.landing-page-only .pb-sm-18,html.landing-page-only .py-sm-18{padding-bottom:5.5rem !important}html.landing-page-only .pl-sm-18,html.landing-page-only .px-sm-18{padding-left:5.5rem !important}html.landing-page-only .p-sm-19{padding:6rem !important}html.landing-page-only .pt-sm-19,html.landing-page-only .py-sm-19{padding-top:6rem !important}html.landing-page-only .pr-sm-19,html.landing-page-only .px-sm-19{padding-right:6rem !important}html.landing-page-only .pb-sm-19,html.landing-page-only .py-sm-19{padding-bottom:6rem !important}html.landing-page-only .pl-sm-19,html.landing-page-only .px-sm-19{padding-left:6rem !important}html.landing-page-only .p-sm-20{padding:7rem !important}html.landing-page-only .pt-sm-20,html.landing-page-only .py-sm-20{padding-top:7rem !important}html.landing-page-only .pr-sm-20,html.landing-page-only .px-sm-20{padding-right:7rem !important}html.landing-page-only .pb-sm-20,html.landing-page-only .py-sm-20{padding-bottom:7rem !important}html.landing-page-only .pl-sm-20,html.landing-page-only .px-sm-20{padding-left:7rem !important}html.landing-page-only .p-sm-21{padding:8.5rem !important}html.landing-page-only .pt-sm-21,html.landing-page-only .py-sm-21{padding-top:8.5rem !important}html.landing-page-only .pr-sm-21,html.landing-page-only .px-sm-21{padding-right:8.5rem !important}html.landing-page-only .pb-sm-21,html.landing-page-only .py-sm-21{padding-bottom:8.5rem !important}html.landing-page-only .pl-sm-21,html.landing-page-only .px-sm-21{padding-left:8.5rem !important}html.landing-page-only .p-sm-22{padding:14.25rem !important}html.landing-page-only .pt-sm-22,html.landing-page-only .py-sm-22{padding-top:14.25rem !important}html.landing-page-only .pr-sm-22,html.landing-page-only .px-sm-22{padding-right:14.25rem !important}html.landing-page-only .pb-sm-22,html.landing-page-only .py-sm-22{padding-bottom:14.25rem !important}html.landing-page-only .pl-sm-22,html.landing-page-only .px-sm-22{padding-left:14.25rem !important}html.landing-page-only .p-sm-23{padding:20rem !important}html.landing-page-only .pt-sm-23,html.landing-page-only .py-sm-23{padding-top:20rem !important}html.landing-page-only .pr-sm-23,html.landing-page-only .px-sm-23{padding-right:20rem !important}html.landing-page-only .pb-sm-23,html.landing-page-only .py-sm-23{padding-bottom:20rem !important}html.landing-page-only .pl-sm-23,html.landing-page-only .px-sm-23{padding-left:20rem !important}html.landing-page-only .m-sm-n1{margin:-0.25rem !important}html.landing-page-only .mt-sm-n1,html.landing-page-only .my-sm-n1{margin-top:-0.25rem !important}html.landing-page-only .mr-sm-n1,html.landing-page-only .mx-sm-n1{margin-right:-0.25rem !important}html.landing-page-only .mb-sm-n1,html.landing-page-only .my-sm-n1{margin-bottom:-0.25rem !important}html.landing-page-only .ml-sm-n1,html.landing-page-only .mx-sm-n1{margin-left:-0.25rem !important}html.landing-page-only .m-sm-n2{margin:-0.5rem !important}html.landing-page-only .mt-sm-n2,html.landing-page-only .my-sm-n2{margin-top:-0.5rem !important}html.landing-page-only .mr-sm-n2,html.landing-page-only .mx-sm-n2{margin-right:-0.5rem !important}html.landing-page-only .mb-sm-n2,html.landing-page-only .my-sm-n2{margin-bottom:-0.5rem !important}html.landing-page-only .ml-sm-n2,html.landing-page-only .mx-sm-n2{margin-left:-0.5rem !important}html.landing-page-only .m-sm-n3{margin:-0.75rem !important}html.landing-page-only .mt-sm-n3,html.landing-page-only .my-sm-n3{margin-top:-0.75rem !important}html.landing-page-only .mr-sm-n3,html.landing-page-only .mx-sm-n3{margin-right:-0.75rem !important}html.landing-page-only .mb-sm-n3,html.landing-page-only .my-sm-n3{margin-bottom:-0.75rem !important}html.landing-page-only .ml-sm-n3,html.landing-page-only .mx-sm-n3{margin-left:-0.75rem !important}html.landing-page-only .m-sm-n4{margin:-1rem !important}html.landing-page-only .mt-sm-n4,html.landing-page-only .my-sm-n4{margin-top:-1rem !important}html.landing-page-only .mr-sm-n4,html.landing-page-only .mx-sm-n4{margin-right:-1rem !important}html.landing-page-only .mb-sm-n4,html.landing-page-only .my-sm-n4{margin-bottom:-1rem !important}html.landing-page-only .ml-sm-n4,html.landing-page-only .mx-sm-n4{margin-left:-1rem !important}html.landing-page-only .m-sm-n5{margin:-1.175rem !important}html.landing-page-only .mt-sm-n5,html.landing-page-only .my-sm-n5{margin-top:-1.175rem !important}html.landing-page-only .mr-sm-n5,html.landing-page-only .mx-sm-n5{margin-right:-1.175rem !important}html.landing-page-only .mb-sm-n5,html.landing-page-only .my-sm-n5{margin-bottom:-1.175rem !important}html.landing-page-only .ml-sm-n5,html.landing-page-only .mx-sm-n5{margin-left:-1.175rem !important}html.landing-page-only .m-sm-n6{margin:-1.25rem !important}html.landing-page-only .mt-sm-n6,html.landing-page-only .my-sm-n6{margin-top:-1.25rem !important}html.landing-page-only .mr-sm-n6,html.landing-page-only .mx-sm-n6{margin-right:-1.25rem !important}html.landing-page-only .mb-sm-n6,html.landing-page-only .my-sm-n6{margin-bottom:-1.25rem !important}html.landing-page-only .ml-sm-n6,html.landing-page-only .mx-sm-n6{margin-left:-1.25rem !important}html.landing-page-only .m-sm-n7{margin:-1.375rem !important}html.landing-page-only .mt-sm-n7,html.landing-page-only .my-sm-n7{margin-top:-1.375rem !important}html.landing-page-only .mr-sm-n7,html.landing-page-only .mx-sm-n7{margin-right:-1.375rem !important}html.landing-page-only .mb-sm-n7,html.landing-page-only .my-sm-n7{margin-bottom:-1.375rem !important}html.landing-page-only .ml-sm-n7,html.landing-page-only .mx-sm-n7{margin-left:-1.375rem !important}html.landing-page-only .m-sm-n8{margin:-1.5rem !important}html.landing-page-only .mt-sm-n8,html.landing-page-only .my-sm-n8{margin-top:-1.5rem !important}html.landing-page-only .mr-sm-n8,html.landing-page-only .mx-sm-n8{margin-right:-1.5rem !important}html.landing-page-only .mb-sm-n8,html.landing-page-only .my-sm-n8{margin-bottom:-1.5rem !important}html.landing-page-only .ml-sm-n8,html.landing-page-only .mx-sm-n8{margin-left:-1.5rem !important}html.landing-page-only .m-sm-n9{margin:-1.625rem !important}html.landing-page-only .mt-sm-n9,html.landing-page-only .my-sm-n9{margin-top:-1.625rem !important}html.landing-page-only .mr-sm-n9,html.landing-page-only .mx-sm-n9{margin-right:-1.625rem !important}html.landing-page-only .mb-sm-n9,html.landing-page-only .my-sm-n9{margin-bottom:-1.625rem !important}html.landing-page-only .ml-sm-n9,html.landing-page-only .mx-sm-n9{margin-left:-1.625rem !important}html.landing-page-only .m-sm-n10{margin:-1.75rem !important}html.landing-page-only .mt-sm-n10,html.landing-page-only .my-sm-n10{margin-top:-1.75rem !important}html.landing-page-only .mr-sm-n10,html.landing-page-only .mx-sm-n10{margin-right:-1.75rem !important}html.landing-page-only .mb-sm-n10,html.landing-page-only .my-sm-n10{margin-bottom:-1.75rem !important}html.landing-page-only .ml-sm-n10,html.landing-page-only .mx-sm-n10{margin-left:-1.75rem !important}html.landing-page-only .m-sm-n11{margin:-2rem !important}html.landing-page-only .mt-sm-n11,html.landing-page-only .my-sm-n11{margin-top:-2rem !important}html.landing-page-only .mr-sm-n11,html.landing-page-only .mx-sm-n11{margin-right:-2rem !important}html.landing-page-only .mb-sm-n11,html.landing-page-only .my-sm-n11{margin-bottom:-2rem !important}html.landing-page-only .ml-sm-n11,html.landing-page-only .mx-sm-n11{margin-left:-2rem !important}html.landing-page-only .m-sm-n12{margin:-2.5rem !important}html.landing-page-only .mt-sm-n12,html.landing-page-only .my-sm-n12{margin-top:-2.5rem !important}html.landing-page-only .mr-sm-n12,html.landing-page-only .mx-sm-n12{margin-right:-2.5rem !important}html.landing-page-only .mb-sm-n12,html.landing-page-only .my-sm-n12{margin-bottom:-2.5rem !important}html.landing-page-only .ml-sm-n12,html.landing-page-only .mx-sm-n12{margin-left:-2.5rem !important}html.landing-page-only .m-sm-n13{margin:-3rem !important}html.landing-page-only .mt-sm-n13,html.landing-page-only .my-sm-n13{margin-top:-3rem !important}html.landing-page-only .mr-sm-n13,html.landing-page-only .mx-sm-n13{margin-right:-3rem !important}html.landing-page-only .mb-sm-n13,html.landing-page-only .my-sm-n13{margin-bottom:-3rem !important}html.landing-page-only .ml-sm-n13,html.landing-page-only .mx-sm-n13{margin-left:-3rem !important}html.landing-page-only .m-sm-n14{margin:-3.5rem !important}html.landing-page-only .mt-sm-n14,html.landing-page-only .my-sm-n14{margin-top:-3.5rem !important}html.landing-page-only .mr-sm-n14,html.landing-page-only .mx-sm-n14{margin-right:-3.5rem !important}html.landing-page-only .mb-sm-n14,html.landing-page-only .my-sm-n14{margin-bottom:-3.5rem !important}html.landing-page-only .ml-sm-n14,html.landing-page-only .mx-sm-n14{margin-left:-3.5rem !important}html.landing-page-only .m-sm-n15{margin:-4rem !important}html.landing-page-only .mt-sm-n15,html.landing-page-only .my-sm-n15{margin-top:-4rem !important}html.landing-page-only .mr-sm-n15,html.landing-page-only .mx-sm-n15{margin-right:-4rem !important}html.landing-page-only .mb-sm-n15,html.landing-page-only .my-sm-n15{margin-bottom:-4rem !important}html.landing-page-only .ml-sm-n15,html.landing-page-only .mx-sm-n15{margin-left:-4rem !important}html.landing-page-only .m-sm-n16{margin:-4.5rem !important}html.landing-page-only .mt-sm-n16,html.landing-page-only .my-sm-n16{margin-top:-4.5rem !important}html.landing-page-only .mr-sm-n16,html.landing-page-only .mx-sm-n16{margin-right:-4.5rem !important}html.landing-page-only .mb-sm-n16,html.landing-page-only .my-sm-n16{margin-bottom:-4.5rem !important}html.landing-page-only .ml-sm-n16,html.landing-page-only .mx-sm-n16{margin-left:-4.5rem !important}html.landing-page-only .m-sm-n17{margin:-5rem !important}html.landing-page-only .mt-sm-n17,html.landing-page-only .my-sm-n17{margin-top:-5rem !important}html.landing-page-only .mr-sm-n17,html.landing-page-only .mx-sm-n17{margin-right:-5rem !important}html.landing-page-only .mb-sm-n17,html.landing-page-only .my-sm-n17{margin-bottom:-5rem !important}html.landing-page-only .ml-sm-n17,html.landing-page-only .mx-sm-n17{margin-left:-5rem !important}html.landing-page-only .m-sm-n18{margin:-5.5rem !important}html.landing-page-only .mt-sm-n18,html.landing-page-only .my-sm-n18{margin-top:-5.5rem !important}html.landing-page-only .mr-sm-n18,html.landing-page-only .mx-sm-n18{margin-right:-5.5rem !important}html.landing-page-only .mb-sm-n18,html.landing-page-only .my-sm-n18{margin-bottom:-5.5rem !important}html.landing-page-only .ml-sm-n18,html.landing-page-only .mx-sm-n18{margin-left:-5.5rem !important}html.landing-page-only .m-sm-n19{margin:-6rem !important}html.landing-page-only .mt-sm-n19,html.landing-page-only .my-sm-n19{margin-top:-6rem !important}html.landing-page-only .mr-sm-n19,html.landing-page-only .mx-sm-n19{margin-right:-6rem !important}html.landing-page-only .mb-sm-n19,html.landing-page-only .my-sm-n19{margin-bottom:-6rem !important}html.landing-page-only .ml-sm-n19,html.landing-page-only .mx-sm-n19{margin-left:-6rem !important}html.landing-page-only .m-sm-n20{margin:-7rem !important}html.landing-page-only .mt-sm-n20,html.landing-page-only .my-sm-n20{margin-top:-7rem !important}html.landing-page-only .mr-sm-n20,html.landing-page-only .mx-sm-n20{margin-right:-7rem !important}html.landing-page-only .mb-sm-n20,html.landing-page-only .my-sm-n20{margin-bottom:-7rem !important}html.landing-page-only .ml-sm-n20,html.landing-page-only .mx-sm-n20{margin-left:-7rem !important}html.landing-page-only .m-sm-n21{margin:-8.5rem !important}html.landing-page-only .mt-sm-n21,html.landing-page-only .my-sm-n21{margin-top:-8.5rem !important}html.landing-page-only .mr-sm-n21,html.landing-page-only .mx-sm-n21{margin-right:-8.5rem !important}html.landing-page-only .mb-sm-n21,html.landing-page-only .my-sm-n21{margin-bottom:-8.5rem !important}html.landing-page-only .ml-sm-n21,html.landing-page-only .mx-sm-n21{margin-left:-8.5rem !important}html.landing-page-only .m-sm-n22{margin:-14.25rem !important}html.landing-page-only .mt-sm-n22,html.landing-page-only .my-sm-n22{margin-top:-14.25rem !important}html.landing-page-only .mr-sm-n22,html.landing-page-only .mx-sm-n22{margin-right:-14.25rem !important}html.landing-page-only .mb-sm-n22,html.landing-page-only .my-sm-n22{margin-bottom:-14.25rem !important}html.landing-page-only .ml-sm-n22,html.landing-page-only .mx-sm-n22{margin-left:-14.25rem !important}html.landing-page-only .m-sm-n23{margin:-20rem !important}html.landing-page-only .mt-sm-n23,html.landing-page-only .my-sm-n23{margin-top:-20rem !important}html.landing-page-only .mr-sm-n23,html.landing-page-only .mx-sm-n23{margin-right:-20rem !important}html.landing-page-only .mb-sm-n23,html.landing-page-only .my-sm-n23{margin-bottom:-20rem !important}html.landing-page-only .ml-sm-n23,html.landing-page-only .mx-sm-n23{margin-left:-20rem !important}html.landing-page-only .m-sm-auto{margin:auto !important}html.landing-page-only .mt-sm-auto,html.landing-page-only .my-sm-auto{margin-top:auto !important}html.landing-page-only .mr-sm-auto,html.landing-page-only .mx-sm-auto{margin-right:auto !important}html.landing-page-only .mb-sm-auto,html.landing-page-only .my-sm-auto{margin-bottom:auto !important}html.landing-page-only .ml-sm-auto,html.landing-page-only .mx-sm-auto{margin-left:auto !important}}@media(min-width: 768px){html.landing-page-only .m-md-0{margin:0 !important}html.landing-page-only .mt-md-0,html.landing-page-only .my-md-0{margin-top:0 !important}html.landing-page-only .mr-md-0,html.landing-page-only .mx-md-0{margin-right:0 !important}html.landing-page-only .mb-md-0,html.landing-page-only .my-md-0{margin-bottom:0 !important}html.landing-page-only .ml-md-0,html.landing-page-only .mx-md-0{margin-left:0 !important}html.landing-page-only .m-md-1{margin:.25rem !important}html.landing-page-only .mt-md-1,html.landing-page-only .my-md-1{margin-top:.25rem !important}html.landing-page-only .mr-md-1,html.landing-page-only .mx-md-1{margin-right:.25rem !important}html.landing-page-only .mb-md-1,html.landing-page-only .my-md-1{margin-bottom:.25rem !important}html.landing-page-only .ml-md-1,html.landing-page-only .mx-md-1{margin-left:.25rem !important}html.landing-page-only .m-md-2{margin:.5rem !important}html.landing-page-only .mt-md-2,html.landing-page-only .my-md-2{margin-top:.5rem !important}html.landing-page-only .mr-md-2,html.landing-page-only .mx-md-2{margin-right:.5rem !important}html.landing-page-only .mb-md-2,html.landing-page-only .my-md-2{margin-bottom:.5rem !important}html.landing-page-only .ml-md-2,html.landing-page-only .mx-md-2{margin-left:.5rem !important}html.landing-page-only .m-md-3{margin:.75rem !important}html.landing-page-only .mt-md-3,html.landing-page-only .my-md-3{margin-top:.75rem !important}html.landing-page-only .mr-md-3,html.landing-page-only .mx-md-3{margin-right:.75rem !important}html.landing-page-only .mb-md-3,html.landing-page-only .my-md-3{margin-bottom:.75rem !important}html.landing-page-only .ml-md-3,html.landing-page-only .mx-md-3{margin-left:.75rem !important}html.landing-page-only .m-md-4{margin:1rem !important}html.landing-page-only .mt-md-4,html.landing-page-only .my-md-4{margin-top:1rem !important}html.landing-page-only .mr-md-4,html.landing-page-only .mx-md-4{margin-right:1rem !important}html.landing-page-only .mb-md-4,html.landing-page-only .my-md-4{margin-bottom:1rem !important}html.landing-page-only .ml-md-4,html.landing-page-only .mx-md-4{margin-left:1rem !important}html.landing-page-only .m-md-5{margin:1.175rem !important}html.landing-page-only .mt-md-5,html.landing-page-only .my-md-5{margin-top:1.175rem !important}html.landing-page-only .mr-md-5,html.landing-page-only .mx-md-5{margin-right:1.175rem !important}html.landing-page-only .mb-md-5,html.landing-page-only .my-md-5{margin-bottom:1.175rem !important}html.landing-page-only .ml-md-5,html.landing-page-only .mx-md-5{margin-left:1.175rem !important}html.landing-page-only .m-md-6{margin:1.25rem !important}html.landing-page-only .mt-md-6,html.landing-page-only .my-md-6{margin-top:1.25rem !important}html.landing-page-only .mr-md-6,html.landing-page-only .mx-md-6{margin-right:1.25rem !important}html.landing-page-only .mb-md-6,html.landing-page-only .my-md-6{margin-bottom:1.25rem !important}html.landing-page-only .ml-md-6,html.landing-page-only .mx-md-6{margin-left:1.25rem !important}html.landing-page-only .m-md-7{margin:1.375rem !important}html.landing-page-only .mt-md-7,html.landing-page-only .my-md-7{margin-top:1.375rem !important}html.landing-page-only .mr-md-7,html.landing-page-only .mx-md-7{margin-right:1.375rem !important}html.landing-page-only .mb-md-7,html.landing-page-only .my-md-7{margin-bottom:1.375rem !important}html.landing-page-only .ml-md-7,html.landing-page-only .mx-md-7{margin-left:1.375rem !important}html.landing-page-only .m-md-8{margin:1.5rem !important}html.landing-page-only .mt-md-8,html.landing-page-only .my-md-8{margin-top:1.5rem !important}html.landing-page-only .mr-md-8,html.landing-page-only .mx-md-8{margin-right:1.5rem !important}html.landing-page-only .mb-md-8,html.landing-page-only .my-md-8{margin-bottom:1.5rem !important}html.landing-page-only .ml-md-8,html.landing-page-only .mx-md-8{margin-left:1.5rem !important}html.landing-page-only .m-md-9{margin:1.625rem !important}html.landing-page-only .mt-md-9,html.landing-page-only .my-md-9{margin-top:1.625rem !important}html.landing-page-only .mr-md-9,html.landing-page-only .mx-md-9{margin-right:1.625rem !important}html.landing-page-only .mb-md-9,html.landing-page-only .my-md-9{margin-bottom:1.625rem !important}html.landing-page-only .ml-md-9,html.landing-page-only .mx-md-9{margin-left:1.625rem !important}html.landing-page-only .m-md-10{margin:1.75rem !important}html.landing-page-only .mt-md-10,html.landing-page-only .my-md-10{margin-top:1.75rem !important}html.landing-page-only .mr-md-10,html.landing-page-only .mx-md-10{margin-right:1.75rem !important}html.landing-page-only .mb-md-10,html.landing-page-only .my-md-10{margin-bottom:1.75rem !important}html.landing-page-only .ml-md-10,html.landing-page-only .mx-md-10{margin-left:1.75rem !important}html.landing-page-only .m-md-11{margin:2rem !important}html.landing-page-only .mt-md-11,html.landing-page-only .my-md-11{margin-top:2rem !important}html.landing-page-only .mr-md-11,html.landing-page-only .mx-md-11{margin-right:2rem !important}html.landing-page-only .mb-md-11,html.landing-page-only .my-md-11{margin-bottom:2rem !important}html.landing-page-only .ml-md-11,html.landing-page-only .mx-md-11{margin-left:2rem !important}html.landing-page-only .m-md-12{margin:2.5rem !important}html.landing-page-only .mt-md-12,html.landing-page-only .my-md-12{margin-top:2.5rem !important}html.landing-page-only .mr-md-12,html.landing-page-only .mx-md-12{margin-right:2.5rem !important}html.landing-page-only .mb-md-12,html.landing-page-only .my-md-12{margin-bottom:2.5rem !important}html.landing-page-only .ml-md-12,html.landing-page-only .mx-md-12{margin-left:2.5rem !important}html.landing-page-only .m-md-13{margin:3rem !important}html.landing-page-only .mt-md-13,html.landing-page-only .my-md-13{margin-top:3rem !important}html.landing-page-only .mr-md-13,html.landing-page-only .mx-md-13{margin-right:3rem !important}html.landing-page-only .mb-md-13,html.landing-page-only .my-md-13{margin-bottom:3rem !important}html.landing-page-only .ml-md-13,html.landing-page-only .mx-md-13{margin-left:3rem !important}html.landing-page-only .m-md-14{margin:3.5rem !important}html.landing-page-only .mt-md-14,html.landing-page-only .my-md-14{margin-top:3.5rem !important}html.landing-page-only .mr-md-14,html.landing-page-only .mx-md-14{margin-right:3.5rem !important}html.landing-page-only .mb-md-14,html.landing-page-only .my-md-14{margin-bottom:3.5rem !important}html.landing-page-only .ml-md-14,html.landing-page-only .mx-md-14{margin-left:3.5rem !important}html.landing-page-only .m-md-15{margin:4rem !important}html.landing-page-only .mt-md-15,html.landing-page-only .my-md-15{margin-top:4rem !important}html.landing-page-only .mr-md-15,html.landing-page-only .mx-md-15{margin-right:4rem !important}html.landing-page-only .mb-md-15,html.landing-page-only .my-md-15{margin-bottom:4rem !important}html.landing-page-only .ml-md-15,html.landing-page-only .mx-md-15{margin-left:4rem !important}html.landing-page-only .m-md-16{margin:4.5rem !important}html.landing-page-only .mt-md-16,html.landing-page-only .my-md-16{margin-top:4.5rem !important}html.landing-page-only .mr-md-16,html.landing-page-only .mx-md-16{margin-right:4.5rem !important}html.landing-page-only .mb-md-16,html.landing-page-only .my-md-16{margin-bottom:4.5rem !important}html.landing-page-only .ml-md-16,html.landing-page-only .mx-md-16{margin-left:4.5rem !important}html.landing-page-only .m-md-17{margin:5rem !important}html.landing-page-only .mt-md-17,html.landing-page-only .my-md-17{margin-top:5rem !important}html.landing-page-only .mr-md-17,html.landing-page-only .mx-md-17{margin-right:5rem !important}html.landing-page-only .mb-md-17,html.landing-page-only .my-md-17{margin-bottom:5rem !important}html.landing-page-only .ml-md-17,html.landing-page-only .mx-md-17{margin-left:5rem !important}html.landing-page-only .m-md-18{margin:5.5rem !important}html.landing-page-only .mt-md-18,html.landing-page-only .my-md-18{margin-top:5.5rem !important}html.landing-page-only .mr-md-18,html.landing-page-only .mx-md-18{margin-right:5.5rem !important}html.landing-page-only .mb-md-18,html.landing-page-only .my-md-18{margin-bottom:5.5rem !important}html.landing-page-only .ml-md-18,html.landing-page-only .mx-md-18{margin-left:5.5rem !important}html.landing-page-only .m-md-19{margin:6rem !important}html.landing-page-only .mt-md-19,html.landing-page-only .my-md-19{margin-top:6rem !important}html.landing-page-only .mr-md-19,html.landing-page-only .mx-md-19{margin-right:6rem !important}html.landing-page-only .mb-md-19,html.landing-page-only .my-md-19{margin-bottom:6rem !important}html.landing-page-only .ml-md-19,html.landing-page-only .mx-md-19{margin-left:6rem !important}html.landing-page-only .m-md-20{margin:7rem !important}html.landing-page-only .mt-md-20,html.landing-page-only .my-md-20{margin-top:7rem !important}html.landing-page-only .mr-md-20,html.landing-page-only .mx-md-20{margin-right:7rem !important}html.landing-page-only .mb-md-20,html.landing-page-only .my-md-20{margin-bottom:7rem !important}html.landing-page-only .ml-md-20,html.landing-page-only .mx-md-20{margin-left:7rem !important}html.landing-page-only .m-md-21{margin:8.5rem !important}html.landing-page-only .mt-md-21,html.landing-page-only .my-md-21{margin-top:8.5rem !important}html.landing-page-only .mr-md-21,html.landing-page-only .mx-md-21{margin-right:8.5rem !important}html.landing-page-only .mb-md-21,html.landing-page-only .my-md-21{margin-bottom:8.5rem !important}html.landing-page-only .ml-md-21,html.landing-page-only .mx-md-21{margin-left:8.5rem !important}html.landing-page-only .m-md-22{margin:14.25rem !important}html.landing-page-only .mt-md-22,html.landing-page-only .my-md-22{margin-top:14.25rem !important}html.landing-page-only .mr-md-22,html.landing-page-only .mx-md-22{margin-right:14.25rem !important}html.landing-page-only .mb-md-22,html.landing-page-only .my-md-22{margin-bottom:14.25rem !important}html.landing-page-only .ml-md-22,html.landing-page-only .mx-md-22{margin-left:14.25rem !important}html.landing-page-only .m-md-23{margin:20rem !important}html.landing-page-only .mt-md-23,html.landing-page-only .my-md-23{margin-top:20rem !important}html.landing-page-only .mr-md-23,html.landing-page-only .mx-md-23{margin-right:20rem !important}html.landing-page-only .mb-md-23,html.landing-page-only .my-md-23{margin-bottom:20rem !important}html.landing-page-only .ml-md-23,html.landing-page-only .mx-md-23{margin-left:20rem !important}html.landing-page-only .p-md-0{padding:0 !important}html.landing-page-only .pt-md-0,html.landing-page-only .py-md-0{padding-top:0 !important}html.landing-page-only .pr-md-0,html.landing-page-only .px-md-0{padding-right:0 !important}html.landing-page-only .pb-md-0,html.landing-page-only .py-md-0{padding-bottom:0 !important}html.landing-page-only .pl-md-0,html.landing-page-only .px-md-0{padding-left:0 !important}html.landing-page-only .p-md-1{padding:.25rem !important}html.landing-page-only .pt-md-1,html.landing-page-only .py-md-1{padding-top:.25rem !important}html.landing-page-only .pr-md-1,html.landing-page-only .px-md-1{padding-right:.25rem !important}html.landing-page-only .pb-md-1,html.landing-page-only .py-md-1{padding-bottom:.25rem !important}html.landing-page-only .pl-md-1,html.landing-page-only .px-md-1{padding-left:.25rem !important}html.landing-page-only .p-md-2{padding:.5rem !important}html.landing-page-only .pt-md-2,html.landing-page-only .py-md-2{padding-top:.5rem !important}html.landing-page-only .pr-md-2,html.landing-page-only .px-md-2{padding-right:.5rem !important}html.landing-page-only .pb-md-2,html.landing-page-only .py-md-2{padding-bottom:.5rem !important}html.landing-page-only .pl-md-2,html.landing-page-only .px-md-2{padding-left:.5rem !important}html.landing-page-only .p-md-3{padding:.75rem !important}html.landing-page-only .pt-md-3,html.landing-page-only .py-md-3{padding-top:.75rem !important}html.landing-page-only .pr-md-3,html.landing-page-only .px-md-3{padding-right:.75rem !important}html.landing-page-only .pb-md-3,html.landing-page-only .py-md-3{padding-bottom:.75rem !important}html.landing-page-only .pl-md-3,html.landing-page-only .px-md-3{padding-left:.75rem !important}html.landing-page-only .p-md-4{padding:1rem !important}html.landing-page-only .pt-md-4,html.landing-page-only .py-md-4{padding-top:1rem !important}html.landing-page-only .pr-md-4,html.landing-page-only .px-md-4{padding-right:1rem !important}html.landing-page-only .pb-md-4,html.landing-page-only .py-md-4{padding-bottom:1rem !important}html.landing-page-only .pl-md-4,html.landing-page-only .px-md-4{padding-left:1rem !important}html.landing-page-only .p-md-5{padding:1.175rem !important}html.landing-page-only .pt-md-5,html.landing-page-only .py-md-5{padding-top:1.175rem !important}html.landing-page-only .pr-md-5,html.landing-page-only .px-md-5{padding-right:1.175rem !important}html.landing-page-only .pb-md-5,html.landing-page-only .py-md-5{padding-bottom:1.175rem !important}html.landing-page-only .pl-md-5,html.landing-page-only .px-md-5{padding-left:1.175rem !important}html.landing-page-only .p-md-6{padding:1.25rem !important}html.landing-page-only .pt-md-6,html.landing-page-only .py-md-6{padding-top:1.25rem !important}html.landing-page-only .pr-md-6,html.landing-page-only .px-md-6{padding-right:1.25rem !important}html.landing-page-only .pb-md-6,html.landing-page-only .py-md-6{padding-bottom:1.25rem !important}html.landing-page-only .pl-md-6,html.landing-page-only .px-md-6{padding-left:1.25rem !important}html.landing-page-only .p-md-7{padding:1.375rem !important}html.landing-page-only .pt-md-7,html.landing-page-only .py-md-7{padding-top:1.375rem !important}html.landing-page-only .pr-md-7,html.landing-page-only .px-md-7{padding-right:1.375rem !important}html.landing-page-only .pb-md-7,html.landing-page-only .py-md-7{padding-bottom:1.375rem !important}html.landing-page-only .pl-md-7,html.landing-page-only .px-md-7{padding-left:1.375rem !important}html.landing-page-only .p-md-8{padding:1.5rem !important}html.landing-page-only .pt-md-8,html.landing-page-only .py-md-8{padding-top:1.5rem !important}html.landing-page-only .pr-md-8,html.landing-page-only .px-md-8{padding-right:1.5rem !important}html.landing-page-only .pb-md-8,html.landing-page-only .py-md-8{padding-bottom:1.5rem !important}html.landing-page-only .pl-md-8,html.landing-page-only .px-md-8{padding-left:1.5rem !important}html.landing-page-only .p-md-9{padding:1.625rem !important}html.landing-page-only .pt-md-9,html.landing-page-only .py-md-9{padding-top:1.625rem !important}html.landing-page-only .pr-md-9,html.landing-page-only .px-md-9{padding-right:1.625rem !important}html.landing-page-only .pb-md-9,html.landing-page-only .py-md-9{padding-bottom:1.625rem !important}html.landing-page-only .pl-md-9,html.landing-page-only .px-md-9{padding-left:1.625rem !important}html.landing-page-only .p-md-10{padding:1.75rem !important}html.landing-page-only .pt-md-10,html.landing-page-only .py-md-10{padding-top:1.75rem !important}html.landing-page-only .pr-md-10,html.landing-page-only .px-md-10{padding-right:1.75rem !important}html.landing-page-only .pb-md-10,html.landing-page-only .py-md-10{padding-bottom:1.75rem !important}html.landing-page-only .pl-md-10,html.landing-page-only .px-md-10{padding-left:1.75rem !important}html.landing-page-only .p-md-11{padding:2rem !important}html.landing-page-only .pt-md-11,html.landing-page-only .py-md-11{padding-top:2rem !important}html.landing-page-only .pr-md-11,html.landing-page-only .px-md-11{padding-right:2rem !important}html.landing-page-only .pb-md-11,html.landing-page-only .py-md-11{padding-bottom:2rem !important}html.landing-page-only .pl-md-11,html.landing-page-only .px-md-11{padding-left:2rem !important}html.landing-page-only .p-md-12{padding:2.5rem !important}html.landing-page-only .pt-md-12,html.landing-page-only .py-md-12{padding-top:2.5rem !important}html.landing-page-only .pr-md-12,html.landing-page-only .px-md-12{padding-right:2.5rem !important}html.landing-page-only .pb-md-12,html.landing-page-only .py-md-12{padding-bottom:2.5rem !important}html.landing-page-only .pl-md-12,html.landing-page-only .px-md-12{padding-left:2.5rem !important}html.landing-page-only .p-md-13{padding:3rem !important}html.landing-page-only .pt-md-13,html.landing-page-only .py-md-13{padding-top:3rem !important}html.landing-page-only .pr-md-13,html.landing-page-only .px-md-13{padding-right:3rem !important}html.landing-page-only .pb-md-13,html.landing-page-only .py-md-13{padding-bottom:3rem !important}html.landing-page-only .pl-md-13,html.landing-page-only .px-md-13{padding-left:3rem !important}html.landing-page-only .p-md-14{padding:3.5rem !important}html.landing-page-only .pt-md-14,html.landing-page-only .py-md-14{padding-top:3.5rem !important}html.landing-page-only .pr-md-14,html.landing-page-only .px-md-14{padding-right:3.5rem !important}html.landing-page-only .pb-md-14,html.landing-page-only .py-md-14{padding-bottom:3.5rem !important}html.landing-page-only .pl-md-14,html.landing-page-only .px-md-14{padding-left:3.5rem !important}html.landing-page-only .p-md-15{padding:4rem !important}html.landing-page-only .pt-md-15,html.landing-page-only .py-md-15{padding-top:4rem !important}html.landing-page-only .pr-md-15,html.landing-page-only .px-md-15{padding-right:4rem !important}html.landing-page-only .pb-md-15,html.landing-page-only .py-md-15{padding-bottom:4rem !important}html.landing-page-only .pl-md-15,html.landing-page-only .px-md-15{padding-left:4rem !important}html.landing-page-only .p-md-16{padding:4.5rem !important}html.landing-page-only .pt-md-16,html.landing-page-only .py-md-16{padding-top:4.5rem !important}html.landing-page-only .pr-md-16,html.landing-page-only .px-md-16{padding-right:4.5rem !important}html.landing-page-only .pb-md-16,html.landing-page-only .py-md-16{padding-bottom:4.5rem !important}html.landing-page-only .pl-md-16,html.landing-page-only .px-md-16{padding-left:4.5rem !important}html.landing-page-only .p-md-17{padding:5rem !important}html.landing-page-only .pt-md-17,html.landing-page-only .py-md-17{padding-top:5rem !important}html.landing-page-only .pr-md-17,html.landing-page-only .px-md-17{padding-right:5rem !important}html.landing-page-only .pb-md-17,html.landing-page-only .py-md-17{padding-bottom:5rem !important}html.landing-page-only .pl-md-17,html.landing-page-only .px-md-17{padding-left:5rem !important}html.landing-page-only .p-md-18{padding:5.5rem !important}html.landing-page-only .pt-md-18,html.landing-page-only .py-md-18{padding-top:5.5rem !important}html.landing-page-only .pr-md-18,html.landing-page-only .px-md-18{padding-right:5.5rem !important}html.landing-page-only .pb-md-18,html.landing-page-only .py-md-18{padding-bottom:5.5rem !important}html.landing-page-only .pl-md-18,html.landing-page-only .px-md-18{padding-left:5.5rem !important}html.landing-page-only .p-md-19{padding:6rem !important}html.landing-page-only .pt-md-19,html.landing-page-only .py-md-19{padding-top:6rem !important}html.landing-page-only .pr-md-19,html.landing-page-only .px-md-19{padding-right:6rem !important}html.landing-page-only .pb-md-19,html.landing-page-only .py-md-19{padding-bottom:6rem !important}html.landing-page-only .pl-md-19,html.landing-page-only .px-md-19{padding-left:6rem !important}html.landing-page-only .p-md-20{padding:7rem !important}html.landing-page-only .pt-md-20,html.landing-page-only .py-md-20{padding-top:7rem !important}html.landing-page-only .pr-md-20,html.landing-page-only .px-md-20{padding-right:7rem !important}html.landing-page-only .pb-md-20,html.landing-page-only .py-md-20{padding-bottom:7rem !important}html.landing-page-only .pl-md-20,html.landing-page-only .px-md-20{padding-left:7rem !important}html.landing-page-only .p-md-21{padding:8.5rem !important}html.landing-page-only .pt-md-21,html.landing-page-only .py-md-21{padding-top:8.5rem !important}html.landing-page-only .pr-md-21,html.landing-page-only .px-md-21{padding-right:8.5rem !important}html.landing-page-only .pb-md-21,html.landing-page-only .py-md-21{padding-bottom:8.5rem !important}html.landing-page-only .pl-md-21,html.landing-page-only .px-md-21{padding-left:8.5rem !important}html.landing-page-only .p-md-22{padding:14.25rem !important}html.landing-page-only .pt-md-22,html.landing-page-only .py-md-22{padding-top:14.25rem !important}html.landing-page-only .pr-md-22,html.landing-page-only .px-md-22{padding-right:14.25rem !important}html.landing-page-only .pb-md-22,html.landing-page-only .py-md-22{padding-bottom:14.25rem !important}html.landing-page-only .pl-md-22,html.landing-page-only .px-md-22{padding-left:14.25rem !important}html.landing-page-only .p-md-23{padding:20rem !important}html.landing-page-only .pt-md-23,html.landing-page-only .py-md-23{padding-top:20rem !important}html.landing-page-only .pr-md-23,html.landing-page-only .px-md-23{padding-right:20rem !important}html.landing-page-only .pb-md-23,html.landing-page-only .py-md-23{padding-bottom:20rem !important}html.landing-page-only .pl-md-23,html.landing-page-only .px-md-23{padding-left:20rem !important}html.landing-page-only .m-md-n1{margin:-0.25rem !important}html.landing-page-only .mt-md-n1,html.landing-page-only .my-md-n1{margin-top:-0.25rem !important}html.landing-page-only .mr-md-n1,html.landing-page-only .mx-md-n1{margin-right:-0.25rem !important}html.landing-page-only .mb-md-n1,html.landing-page-only .my-md-n1{margin-bottom:-0.25rem !important}html.landing-page-only .ml-md-n1,html.landing-page-only .mx-md-n1{margin-left:-0.25rem !important}html.landing-page-only .m-md-n2{margin:-0.5rem !important}html.landing-page-only .mt-md-n2,html.landing-page-only .my-md-n2{margin-top:-0.5rem !important}html.landing-page-only .mr-md-n2,html.landing-page-only .mx-md-n2{margin-right:-0.5rem !important}html.landing-page-only .mb-md-n2,html.landing-page-only .my-md-n2{margin-bottom:-0.5rem !important}html.landing-page-only .ml-md-n2,html.landing-page-only .mx-md-n2{margin-left:-0.5rem !important}html.landing-page-only .m-md-n3{margin:-0.75rem !important}html.landing-page-only .mt-md-n3,html.landing-page-only .my-md-n3{margin-top:-0.75rem !important}html.landing-page-only .mr-md-n3,html.landing-page-only .mx-md-n3{margin-right:-0.75rem !important}html.landing-page-only .mb-md-n3,html.landing-page-only .my-md-n3{margin-bottom:-0.75rem !important}html.landing-page-only .ml-md-n3,html.landing-page-only .mx-md-n3{margin-left:-0.75rem !important}html.landing-page-only .m-md-n4{margin:-1rem !important}html.landing-page-only .mt-md-n4,html.landing-page-only .my-md-n4{margin-top:-1rem !important}html.landing-page-only .mr-md-n4,html.landing-page-only .mx-md-n4{margin-right:-1rem !important}html.landing-page-only .mb-md-n4,html.landing-page-only .my-md-n4{margin-bottom:-1rem !important}html.landing-page-only .ml-md-n4,html.landing-page-only .mx-md-n4{margin-left:-1rem !important}html.landing-page-only .m-md-n5{margin:-1.175rem !important}html.landing-page-only .mt-md-n5,html.landing-page-only .my-md-n5{margin-top:-1.175rem !important}html.landing-page-only .mr-md-n5,html.landing-page-only .mx-md-n5{margin-right:-1.175rem !important}html.landing-page-only .mb-md-n5,html.landing-page-only .my-md-n5{margin-bottom:-1.175rem !important}html.landing-page-only .ml-md-n5,html.landing-page-only .mx-md-n5{margin-left:-1.175rem !important}html.landing-page-only .m-md-n6{margin:-1.25rem !important}html.landing-page-only .mt-md-n6,html.landing-page-only .my-md-n6{margin-top:-1.25rem !important}html.landing-page-only .mr-md-n6,html.landing-page-only .mx-md-n6{margin-right:-1.25rem !important}html.landing-page-only .mb-md-n6,html.landing-page-only .my-md-n6{margin-bottom:-1.25rem !important}html.landing-page-only .ml-md-n6,html.landing-page-only .mx-md-n6{margin-left:-1.25rem !important}html.landing-page-only .m-md-n7{margin:-1.375rem !important}html.landing-page-only .mt-md-n7,html.landing-page-only .my-md-n7{margin-top:-1.375rem !important}html.landing-page-only .mr-md-n7,html.landing-page-only .mx-md-n7{margin-right:-1.375rem !important}html.landing-page-only .mb-md-n7,html.landing-page-only .my-md-n7{margin-bottom:-1.375rem !important}html.landing-page-only .ml-md-n7,html.landing-page-only .mx-md-n7{margin-left:-1.375rem !important}html.landing-page-only .m-md-n8{margin:-1.5rem !important}html.landing-page-only .mt-md-n8,html.landing-page-only .my-md-n8{margin-top:-1.5rem !important}html.landing-page-only .mr-md-n8,html.landing-page-only .mx-md-n8{margin-right:-1.5rem !important}html.landing-page-only .mb-md-n8,html.landing-page-only .my-md-n8{margin-bottom:-1.5rem !important}html.landing-page-only .ml-md-n8,html.landing-page-only .mx-md-n8{margin-left:-1.5rem !important}html.landing-page-only .m-md-n9{margin:-1.625rem !important}html.landing-page-only .mt-md-n9,html.landing-page-only .my-md-n9{margin-top:-1.625rem !important}html.landing-page-only .mr-md-n9,html.landing-page-only .mx-md-n9{margin-right:-1.625rem !important}html.landing-page-only .mb-md-n9,html.landing-page-only .my-md-n9{margin-bottom:-1.625rem !important}html.landing-page-only .ml-md-n9,html.landing-page-only .mx-md-n9{margin-left:-1.625rem !important}html.landing-page-only .m-md-n10{margin:-1.75rem !important}html.landing-page-only .mt-md-n10,html.landing-page-only .my-md-n10{margin-top:-1.75rem !important}html.landing-page-only .mr-md-n10,html.landing-page-only .mx-md-n10{margin-right:-1.75rem !important}html.landing-page-only .mb-md-n10,html.landing-page-only .my-md-n10{margin-bottom:-1.75rem !important}html.landing-page-only .ml-md-n10,html.landing-page-only .mx-md-n10{margin-left:-1.75rem !important}html.landing-page-only .m-md-n11{margin:-2rem !important}html.landing-page-only .mt-md-n11,html.landing-page-only .my-md-n11{margin-top:-2rem !important}html.landing-page-only .mr-md-n11,html.landing-page-only .mx-md-n11{margin-right:-2rem !important}html.landing-page-only .mb-md-n11,html.landing-page-only .my-md-n11{margin-bottom:-2rem !important}html.landing-page-only .ml-md-n11,html.landing-page-only .mx-md-n11{margin-left:-2rem !important}html.landing-page-only .m-md-n12{margin:-2.5rem !important}html.landing-page-only .mt-md-n12,html.landing-page-only .my-md-n12{margin-top:-2.5rem !important}html.landing-page-only .mr-md-n12,html.landing-page-only .mx-md-n12{margin-right:-2.5rem !important}html.landing-page-only .mb-md-n12,html.landing-page-only .my-md-n12{margin-bottom:-2.5rem !important}html.landing-page-only .ml-md-n12,html.landing-page-only .mx-md-n12{margin-left:-2.5rem !important}html.landing-page-only .m-md-n13{margin:-3rem !important}html.landing-page-only .mt-md-n13,html.landing-page-only .my-md-n13{margin-top:-3rem !important}html.landing-page-only .mr-md-n13,html.landing-page-only .mx-md-n13{margin-right:-3rem !important}html.landing-page-only .mb-md-n13,html.landing-page-only .my-md-n13{margin-bottom:-3rem !important}html.landing-page-only .ml-md-n13,html.landing-page-only .mx-md-n13{margin-left:-3rem !important}html.landing-page-only .m-md-n14{margin:-3.5rem !important}html.landing-page-only .mt-md-n14,html.landing-page-only .my-md-n14{margin-top:-3.5rem !important}html.landing-page-only .mr-md-n14,html.landing-page-only .mx-md-n14{margin-right:-3.5rem !important}html.landing-page-only .mb-md-n14,html.landing-page-only .my-md-n14{margin-bottom:-3.5rem !important}html.landing-page-only .ml-md-n14,html.landing-page-only .mx-md-n14{margin-left:-3.5rem !important}html.landing-page-only .m-md-n15{margin:-4rem !important}html.landing-page-only .mt-md-n15,html.landing-page-only .my-md-n15{margin-top:-4rem !important}html.landing-page-only .mr-md-n15,html.landing-page-only .mx-md-n15{margin-right:-4rem !important}html.landing-page-only .mb-md-n15,html.landing-page-only .my-md-n15{margin-bottom:-4rem !important}html.landing-page-only .ml-md-n15,html.landing-page-only .mx-md-n15{margin-left:-4rem !important}html.landing-page-only .m-md-n16{margin:-4.5rem !important}html.landing-page-only .mt-md-n16,html.landing-page-only .my-md-n16{margin-top:-4.5rem !important}html.landing-page-only .mr-md-n16,html.landing-page-only .mx-md-n16{margin-right:-4.5rem !important}html.landing-page-only .mb-md-n16,html.landing-page-only .my-md-n16{margin-bottom:-4.5rem !important}html.landing-page-only .ml-md-n16,html.landing-page-only .mx-md-n16{margin-left:-4.5rem !important}html.landing-page-only .m-md-n17{margin:-5rem !important}html.landing-page-only .mt-md-n17,html.landing-page-only .my-md-n17{margin-top:-5rem !important}html.landing-page-only .mr-md-n17,html.landing-page-only .mx-md-n17{margin-right:-5rem !important}html.landing-page-only .mb-md-n17,html.landing-page-only .my-md-n17{margin-bottom:-5rem !important}html.landing-page-only .ml-md-n17,html.landing-page-only .mx-md-n17{margin-left:-5rem !important}html.landing-page-only .m-md-n18{margin:-5.5rem !important}html.landing-page-only .mt-md-n18,html.landing-page-only .my-md-n18{margin-top:-5.5rem !important}html.landing-page-only .mr-md-n18,html.landing-page-only .mx-md-n18{margin-right:-5.5rem !important}html.landing-page-only .mb-md-n18,html.landing-page-only .my-md-n18{margin-bottom:-5.5rem !important}html.landing-page-only .ml-md-n18,html.landing-page-only .mx-md-n18{margin-left:-5.5rem !important}html.landing-page-only .m-md-n19{margin:-6rem !important}html.landing-page-only .mt-md-n19,html.landing-page-only .my-md-n19{margin-top:-6rem !important}html.landing-page-only .mr-md-n19,html.landing-page-only .mx-md-n19{margin-right:-6rem !important}html.landing-page-only .mb-md-n19,html.landing-page-only .my-md-n19{margin-bottom:-6rem !important}html.landing-page-only .ml-md-n19,html.landing-page-only .mx-md-n19{margin-left:-6rem !important}html.landing-page-only .m-md-n20{margin:-7rem !important}html.landing-page-only .mt-md-n20,html.landing-page-only .my-md-n20{margin-top:-7rem !important}html.landing-page-only .mr-md-n20,html.landing-page-only .mx-md-n20{margin-right:-7rem !important}html.landing-page-only .mb-md-n20,html.landing-page-only .my-md-n20{margin-bottom:-7rem !important}html.landing-page-only .ml-md-n20,html.landing-page-only .mx-md-n20{margin-left:-7rem !important}html.landing-page-only .m-md-n21{margin:-8.5rem !important}html.landing-page-only .mt-md-n21,html.landing-page-only .my-md-n21{margin-top:-8.5rem !important}html.landing-page-only .mr-md-n21,html.landing-page-only .mx-md-n21{margin-right:-8.5rem !important}html.landing-page-only .mb-md-n21,html.landing-page-only .my-md-n21{margin-bottom:-8.5rem !important}html.landing-page-only .ml-md-n21,html.landing-page-only .mx-md-n21{margin-left:-8.5rem !important}html.landing-page-only .m-md-n22{margin:-14.25rem !important}html.landing-page-only .mt-md-n22,html.landing-page-only .my-md-n22{margin-top:-14.25rem !important}html.landing-page-only .mr-md-n22,html.landing-page-only .mx-md-n22{margin-right:-14.25rem !important}html.landing-page-only .mb-md-n22,html.landing-page-only .my-md-n22{margin-bottom:-14.25rem !important}html.landing-page-only .ml-md-n22,html.landing-page-only .mx-md-n22{margin-left:-14.25rem !important}html.landing-page-only .m-md-n23{margin:-20rem !important}html.landing-page-only .mt-md-n23,html.landing-page-only .my-md-n23{margin-top:-20rem !important}html.landing-page-only .mr-md-n23,html.landing-page-only .mx-md-n23{margin-right:-20rem !important}html.landing-page-only .mb-md-n23,html.landing-page-only .my-md-n23{margin-bottom:-20rem !important}html.landing-page-only .ml-md-n23,html.landing-page-only .mx-md-n23{margin-left:-20rem !important}html.landing-page-only .m-md-auto{margin:auto !important}html.landing-page-only .mt-md-auto,html.landing-page-only .my-md-auto{margin-top:auto !important}html.landing-page-only .mr-md-auto,html.landing-page-only .mx-md-auto{margin-right:auto !important}html.landing-page-only .mb-md-auto,html.landing-page-only .my-md-auto{margin-bottom:auto !important}html.landing-page-only .ml-md-auto,html.landing-page-only .mx-md-auto{margin-left:auto !important}}@media(min-width: 992px){html.landing-page-only .m-lg-0{margin:0 !important}html.landing-page-only .mt-lg-0,html.landing-page-only .my-lg-0{margin-top:0 !important}html.landing-page-only .mr-lg-0,html.landing-page-only .mx-lg-0{margin-right:0 !important}html.landing-page-only .mb-lg-0,html.landing-page-only .my-lg-0{margin-bottom:0 !important}html.landing-page-only .ml-lg-0,html.landing-page-only .mx-lg-0{margin-left:0 !important}html.landing-page-only .m-lg-1{margin:.25rem !important}html.landing-page-only .mt-lg-1,html.landing-page-only .my-lg-1{margin-top:.25rem !important}html.landing-page-only .mr-lg-1,html.landing-page-only .mx-lg-1{margin-right:.25rem !important}html.landing-page-only .mb-lg-1,html.landing-page-only .my-lg-1{margin-bottom:.25rem !important}html.landing-page-only .ml-lg-1,html.landing-page-only .mx-lg-1{margin-left:.25rem !important}html.landing-page-only .m-lg-2{margin:.5rem !important}html.landing-page-only .mt-lg-2,html.landing-page-only .my-lg-2{margin-top:.5rem !important}html.landing-page-only .mr-lg-2,html.landing-page-only .mx-lg-2{margin-right:.5rem !important}html.landing-page-only .mb-lg-2,html.landing-page-only .my-lg-2{margin-bottom:.5rem !important}html.landing-page-only .ml-lg-2,html.landing-page-only .mx-lg-2{margin-left:.5rem !important}html.landing-page-only .m-lg-3{margin:.75rem !important}html.landing-page-only .mt-lg-3,html.landing-page-only .my-lg-3{margin-top:.75rem !important}html.landing-page-only .mr-lg-3,html.landing-page-only .mx-lg-3{margin-right:.75rem !important}html.landing-page-only .mb-lg-3,html.landing-page-only .my-lg-3{margin-bottom:.75rem !important}html.landing-page-only .ml-lg-3,html.landing-page-only .mx-lg-3{margin-left:.75rem !important}html.landing-page-only .m-lg-4{margin:1rem !important}html.landing-page-only .mt-lg-4,html.landing-page-only .my-lg-4{margin-top:1rem !important}html.landing-page-only .mr-lg-4,html.landing-page-only .mx-lg-4{margin-right:1rem !important}html.landing-page-only .mb-lg-4,html.landing-page-only .my-lg-4{margin-bottom:1rem !important}html.landing-page-only .ml-lg-4,html.landing-page-only .mx-lg-4{margin-left:1rem !important}html.landing-page-only .m-lg-5{margin:1.175rem !important}html.landing-page-only .mt-lg-5,html.landing-page-only .my-lg-5{margin-top:1.175rem !important}html.landing-page-only .mr-lg-5,html.landing-page-only .mx-lg-5{margin-right:1.175rem !important}html.landing-page-only .mb-lg-5,html.landing-page-only .my-lg-5{margin-bottom:1.175rem !important}html.landing-page-only .ml-lg-5,html.landing-page-only .mx-lg-5{margin-left:1.175rem !important}html.landing-page-only .m-lg-6{margin:1.25rem !important}html.landing-page-only .mt-lg-6,html.landing-page-only .my-lg-6{margin-top:1.25rem !important}html.landing-page-only .mr-lg-6,html.landing-page-only .mx-lg-6{margin-right:1.25rem !important}html.landing-page-only .mb-lg-6,html.landing-page-only .my-lg-6{margin-bottom:1.25rem !important}html.landing-page-only .ml-lg-6,html.landing-page-only .mx-lg-6{margin-left:1.25rem !important}html.landing-page-only .m-lg-7{margin:1.375rem !important}html.landing-page-only .mt-lg-7,html.landing-page-only .my-lg-7{margin-top:1.375rem !important}html.landing-page-only .mr-lg-7,html.landing-page-only .mx-lg-7{margin-right:1.375rem !important}html.landing-page-only .mb-lg-7,html.landing-page-only .my-lg-7{margin-bottom:1.375rem !important}html.landing-page-only .ml-lg-7,html.landing-page-only .mx-lg-7{margin-left:1.375rem !important}html.landing-page-only .m-lg-8{margin:1.5rem !important}html.landing-page-only .mt-lg-8,html.landing-page-only .my-lg-8{margin-top:1.5rem !important}html.landing-page-only .mr-lg-8,html.landing-page-only .mx-lg-8{margin-right:1.5rem !important}html.landing-page-only .mb-lg-8,html.landing-page-only .my-lg-8{margin-bottom:1.5rem !important}html.landing-page-only .ml-lg-8,html.landing-page-only .mx-lg-8{margin-left:1.5rem !important}html.landing-page-only .m-lg-9{margin:1.625rem !important}html.landing-page-only .mt-lg-9,html.landing-page-only .my-lg-9{margin-top:1.625rem !important}html.landing-page-only .mr-lg-9,html.landing-page-only .mx-lg-9{margin-right:1.625rem !important}html.landing-page-only .mb-lg-9,html.landing-page-only .my-lg-9{margin-bottom:1.625rem !important}html.landing-page-only .ml-lg-9,html.landing-page-only .mx-lg-9{margin-left:1.625rem !important}html.landing-page-only .m-lg-10{margin:1.75rem !important}html.landing-page-only .mt-lg-10,html.landing-page-only .my-lg-10{margin-top:1.75rem !important}html.landing-page-only .mr-lg-10,html.landing-page-only .mx-lg-10{margin-right:1.75rem !important}html.landing-page-only .mb-lg-10,html.landing-page-only .my-lg-10{margin-bottom:1.75rem !important}html.landing-page-only .ml-lg-10,html.landing-page-only .mx-lg-10{margin-left:1.75rem !important}html.landing-page-only .m-lg-11{margin:2rem !important}html.landing-page-only .mt-lg-11,html.landing-page-only .my-lg-11{margin-top:2rem !important}html.landing-page-only .mr-lg-11,html.landing-page-only .mx-lg-11{margin-right:2rem !important}html.landing-page-only .mb-lg-11,html.landing-page-only .my-lg-11{margin-bottom:2rem !important}html.landing-page-only .ml-lg-11,html.landing-page-only .mx-lg-11{margin-left:2rem !important}html.landing-page-only .m-lg-12{margin:2.5rem !important}html.landing-page-only .mt-lg-12,html.landing-page-only .my-lg-12{margin-top:2.5rem !important}html.landing-page-only .mr-lg-12,html.landing-page-only .mx-lg-12{margin-right:2.5rem !important}html.landing-page-only .mb-lg-12,html.landing-page-only .my-lg-12{margin-bottom:2.5rem !important}html.landing-page-only .ml-lg-12,html.landing-page-only .mx-lg-12{margin-left:2.5rem !important}html.landing-page-only .m-lg-13{margin:3rem !important}html.landing-page-only .mt-lg-13,html.landing-page-only .my-lg-13{margin-top:3rem !important}html.landing-page-only .mr-lg-13,html.landing-page-only .mx-lg-13{margin-right:3rem !important}html.landing-page-only .mb-lg-13,html.landing-page-only .my-lg-13{margin-bottom:3rem !important}html.landing-page-only .ml-lg-13,html.landing-page-only .mx-lg-13{margin-left:3rem !important}html.landing-page-only .m-lg-14{margin:3.5rem !important}html.landing-page-only .mt-lg-14,html.landing-page-only .my-lg-14{margin-top:3.5rem !important}html.landing-page-only .mr-lg-14,html.landing-page-only .mx-lg-14{margin-right:3.5rem !important}html.landing-page-only .mb-lg-14,html.landing-page-only .my-lg-14{margin-bottom:3.5rem !important}html.landing-page-only .ml-lg-14,html.landing-page-only .mx-lg-14{margin-left:3.5rem !important}html.landing-page-only .m-lg-15{margin:4rem !important}html.landing-page-only .mt-lg-15,html.landing-page-only .my-lg-15{margin-top:4rem !important}html.landing-page-only .mr-lg-15,html.landing-page-only .mx-lg-15{margin-right:4rem !important}html.landing-page-only .mb-lg-15,html.landing-page-only .my-lg-15{margin-bottom:4rem !important}html.landing-page-only .ml-lg-15,html.landing-page-only .mx-lg-15{margin-left:4rem !important}html.landing-page-only .m-lg-16{margin:4.5rem !important}html.landing-page-only .mt-lg-16,html.landing-page-only .my-lg-16{margin-top:4.5rem !important}html.landing-page-only .mr-lg-16,html.landing-page-only .mx-lg-16{margin-right:4.5rem !important}html.landing-page-only .mb-lg-16,html.landing-page-only .my-lg-16{margin-bottom:4.5rem !important}html.landing-page-only .ml-lg-16,html.landing-page-only .mx-lg-16{margin-left:4.5rem !important}html.landing-page-only .m-lg-17{margin:5rem !important}html.landing-page-only .mt-lg-17,html.landing-page-only .my-lg-17{margin-top:5rem !important}html.landing-page-only .mr-lg-17,html.landing-page-only .mx-lg-17{margin-right:5rem !important}html.landing-page-only .mb-lg-17,html.landing-page-only .my-lg-17{margin-bottom:5rem !important}html.landing-page-only .ml-lg-17,html.landing-page-only .mx-lg-17{margin-left:5rem !important}html.landing-page-only .m-lg-18{margin:5.5rem !important}html.landing-page-only .mt-lg-18,html.landing-page-only .my-lg-18{margin-top:5.5rem !important}html.landing-page-only .mr-lg-18,html.landing-page-only .mx-lg-18{margin-right:5.5rem !important}html.landing-page-only .mb-lg-18,html.landing-page-only .my-lg-18{margin-bottom:5.5rem !important}html.landing-page-only .ml-lg-18,html.landing-page-only .mx-lg-18{margin-left:5.5rem !important}html.landing-page-only .m-lg-19{margin:6rem !important}html.landing-page-only .mt-lg-19,html.landing-page-only .my-lg-19{margin-top:6rem !important}html.landing-page-only .mr-lg-19,html.landing-page-only .mx-lg-19{margin-right:6rem !important}html.landing-page-only .mb-lg-19,html.landing-page-only .my-lg-19{margin-bottom:6rem !important}html.landing-page-only .ml-lg-19,html.landing-page-only .mx-lg-19{margin-left:6rem !important}html.landing-page-only .m-lg-20{margin:7rem !important}html.landing-page-only .mt-lg-20,html.landing-page-only .my-lg-20{margin-top:7rem !important}html.landing-page-only .mr-lg-20,html.landing-page-only .mx-lg-20{margin-right:7rem !important}html.landing-page-only .mb-lg-20,html.landing-page-only .my-lg-20{margin-bottom:7rem !important}html.landing-page-only .ml-lg-20,html.landing-page-only .mx-lg-20{margin-left:7rem !important}html.landing-page-only .m-lg-21{margin:8.5rem !important}html.landing-page-only .mt-lg-21,html.landing-page-only .my-lg-21{margin-top:8.5rem !important}html.landing-page-only .mr-lg-21,html.landing-page-only .mx-lg-21{margin-right:8.5rem !important}html.landing-page-only .mb-lg-21,html.landing-page-only .my-lg-21{margin-bottom:8.5rem !important}html.landing-page-only .ml-lg-21,html.landing-page-only .mx-lg-21{margin-left:8.5rem !important}html.landing-page-only .m-lg-22{margin:14.25rem !important}html.landing-page-only .mt-lg-22,html.landing-page-only .my-lg-22{margin-top:14.25rem !important}html.landing-page-only .mr-lg-22,html.landing-page-only .mx-lg-22{margin-right:14.25rem !important}html.landing-page-only .mb-lg-22,html.landing-page-only .my-lg-22{margin-bottom:14.25rem !important}html.landing-page-only .ml-lg-22,html.landing-page-only .mx-lg-22{margin-left:14.25rem !important}html.landing-page-only .m-lg-23{margin:20rem !important}html.landing-page-only .mt-lg-23,html.landing-page-only .my-lg-23{margin-top:20rem !important}html.landing-page-only .mr-lg-23,html.landing-page-only .mx-lg-23{margin-right:20rem !important}html.landing-page-only .mb-lg-23,html.landing-page-only .my-lg-23{margin-bottom:20rem !important}html.landing-page-only .ml-lg-23,html.landing-page-only .mx-lg-23{margin-left:20rem !important}html.landing-page-only .p-lg-0{padding:0 !important}html.landing-page-only .pt-lg-0,html.landing-page-only .py-lg-0{padding-top:0 !important}html.landing-page-only .pr-lg-0,html.landing-page-only .px-lg-0{padding-right:0 !important}html.landing-page-only .pb-lg-0,html.landing-page-only .py-lg-0{padding-bottom:0 !important}html.landing-page-only .pl-lg-0,html.landing-page-only .px-lg-0{padding-left:0 !important}html.landing-page-only .p-lg-1{padding:.25rem !important}html.landing-page-only .pt-lg-1,html.landing-page-only .py-lg-1{padding-top:.25rem !important}html.landing-page-only .pr-lg-1,html.landing-page-only .px-lg-1{padding-right:.25rem !important}html.landing-page-only .pb-lg-1,html.landing-page-only .py-lg-1{padding-bottom:.25rem !important}html.landing-page-only .pl-lg-1,html.landing-page-only .px-lg-1{padding-left:.25rem !important}html.landing-page-only .p-lg-2{padding:.5rem !important}html.landing-page-only .pt-lg-2,html.landing-page-only .py-lg-2{padding-top:.5rem !important}html.landing-page-only .pr-lg-2,html.landing-page-only .px-lg-2{padding-right:.5rem !important}html.landing-page-only .pb-lg-2,html.landing-page-only .py-lg-2{padding-bottom:.5rem !important}html.landing-page-only .pl-lg-2,html.landing-page-only .px-lg-2{padding-left:.5rem !important}html.landing-page-only .p-lg-3{padding:.75rem !important}html.landing-page-only .pt-lg-3,html.landing-page-only .py-lg-3{padding-top:.75rem !important}html.landing-page-only .pr-lg-3,html.landing-page-only .px-lg-3{padding-right:.75rem !important}html.landing-page-only .pb-lg-3,html.landing-page-only .py-lg-3{padding-bottom:.75rem !important}html.landing-page-only .pl-lg-3,html.landing-page-only .px-lg-3{padding-left:.75rem !important}html.landing-page-only .p-lg-4{padding:1rem !important}html.landing-page-only .pt-lg-4,html.landing-page-only .py-lg-4{padding-top:1rem !important}html.landing-page-only .pr-lg-4,html.landing-page-only .px-lg-4{padding-right:1rem !important}html.landing-page-only .pb-lg-4,html.landing-page-only .py-lg-4{padding-bottom:1rem !important}html.landing-page-only .pl-lg-4,html.landing-page-only .px-lg-4{padding-left:1rem !important}html.landing-page-only .p-lg-5{padding:1.175rem !important}html.landing-page-only .pt-lg-5,html.landing-page-only .py-lg-5{padding-top:1.175rem !important}html.landing-page-only .pr-lg-5,html.landing-page-only .px-lg-5{padding-right:1.175rem !important}html.landing-page-only .pb-lg-5,html.landing-page-only .py-lg-5{padding-bottom:1.175rem !important}html.landing-page-only .pl-lg-5,html.landing-page-only .px-lg-5{padding-left:1.175rem !important}html.landing-page-only .p-lg-6{padding:1.25rem !important}html.landing-page-only .pt-lg-6,html.landing-page-only .py-lg-6{padding-top:1.25rem !important}html.landing-page-only .pr-lg-6,html.landing-page-only .px-lg-6{padding-right:1.25rem !important}html.landing-page-only .pb-lg-6,html.landing-page-only .py-lg-6{padding-bottom:1.25rem !important}html.landing-page-only .pl-lg-6,html.landing-page-only .px-lg-6{padding-left:1.25rem !important}html.landing-page-only .p-lg-7{padding:1.375rem !important}html.landing-page-only .pt-lg-7,html.landing-page-only .py-lg-7{padding-top:1.375rem !important}html.landing-page-only .pr-lg-7,html.landing-page-only .px-lg-7{padding-right:1.375rem !important}html.landing-page-only .pb-lg-7,html.landing-page-only .py-lg-7{padding-bottom:1.375rem !important}html.landing-page-only .pl-lg-7,html.landing-page-only .px-lg-7{padding-left:1.375rem !important}html.landing-page-only .p-lg-8{padding:1.5rem !important}html.landing-page-only .pt-lg-8,html.landing-page-only .py-lg-8{padding-top:1.5rem !important}html.landing-page-only .pr-lg-8,html.landing-page-only .px-lg-8{padding-right:1.5rem !important}html.landing-page-only .pb-lg-8,html.landing-page-only .py-lg-8{padding-bottom:1.5rem !important}html.landing-page-only .pl-lg-8,html.landing-page-only .px-lg-8{padding-left:1.5rem !important}html.landing-page-only .p-lg-9{padding:1.625rem !important}html.landing-page-only .pt-lg-9,html.landing-page-only .py-lg-9{padding-top:1.625rem !important}html.landing-page-only .pr-lg-9,html.landing-page-only .px-lg-9{padding-right:1.625rem !important}html.landing-page-only .pb-lg-9,html.landing-page-only .py-lg-9{padding-bottom:1.625rem !important}html.landing-page-only .pl-lg-9,html.landing-page-only .px-lg-9{padding-left:1.625rem !important}html.landing-page-only .p-lg-10{padding:1.75rem !important}html.landing-page-only .pt-lg-10,html.landing-page-only .py-lg-10{padding-top:1.75rem !important}html.landing-page-only .pr-lg-10,html.landing-page-only .px-lg-10{padding-right:1.75rem !important}html.landing-page-only .pb-lg-10,html.landing-page-only .py-lg-10{padding-bottom:1.75rem !important}html.landing-page-only .pl-lg-10,html.landing-page-only .px-lg-10{padding-left:1.75rem !important}html.landing-page-only .p-lg-11{padding:2rem !important}html.landing-page-only .pt-lg-11,html.landing-page-only .py-lg-11{padding-top:2rem !important}html.landing-page-only .pr-lg-11,html.landing-page-only .px-lg-11{padding-right:2rem !important}html.landing-page-only .pb-lg-11,html.landing-page-only .py-lg-11{padding-bottom:2rem !important}html.landing-page-only .pl-lg-11,html.landing-page-only .px-lg-11{padding-left:2rem !important}html.landing-page-only .p-lg-12{padding:2.5rem !important}html.landing-page-only .pt-lg-12,html.landing-page-only .py-lg-12{padding-top:2.5rem !important}html.landing-page-only .pr-lg-12,html.landing-page-only .px-lg-12{padding-right:2.5rem !important}html.landing-page-only .pb-lg-12,html.landing-page-only .py-lg-12{padding-bottom:2.5rem !important}html.landing-page-only .pl-lg-12,html.landing-page-only .px-lg-12{padding-left:2.5rem !important}html.landing-page-only .p-lg-13{padding:3rem !important}html.landing-page-only .pt-lg-13,html.landing-page-only .py-lg-13{padding-top:3rem !important}html.landing-page-only .pr-lg-13,html.landing-page-only .px-lg-13{padding-right:3rem !important}html.landing-page-only .pb-lg-13,html.landing-page-only .py-lg-13{padding-bottom:3rem !important}html.landing-page-only .pl-lg-13,html.landing-page-only .px-lg-13{padding-left:3rem !important}html.landing-page-only .p-lg-14{padding:3.5rem !important}html.landing-page-only .pt-lg-14,html.landing-page-only .py-lg-14{padding-top:3.5rem !important}html.landing-page-only .pr-lg-14,html.landing-page-only .px-lg-14{padding-right:3.5rem !important}html.landing-page-only .pb-lg-14,html.landing-page-only .py-lg-14{padding-bottom:3.5rem !important}html.landing-page-only .pl-lg-14,html.landing-page-only .px-lg-14{padding-left:3.5rem !important}html.landing-page-only .p-lg-15{padding:4rem !important}html.landing-page-only .pt-lg-15,html.landing-page-only .py-lg-15{padding-top:4rem !important}html.landing-page-only .pr-lg-15,html.landing-page-only .px-lg-15{padding-right:4rem !important}html.landing-page-only .pb-lg-15,html.landing-page-only .py-lg-15{padding-bottom:4rem !important}html.landing-page-only .pl-lg-15,html.landing-page-only .px-lg-15{padding-left:4rem !important}html.landing-page-only .p-lg-16{padding:4.5rem !important}html.landing-page-only .pt-lg-16,html.landing-page-only .py-lg-16{padding-top:4.5rem !important}html.landing-page-only .pr-lg-16,html.landing-page-only .px-lg-16{padding-right:4.5rem !important}html.landing-page-only .pb-lg-16,html.landing-page-only .py-lg-16{padding-bottom:4.5rem !important}html.landing-page-only .pl-lg-16,html.landing-page-only .px-lg-16{padding-left:4.5rem !important}html.landing-page-only .p-lg-17{padding:5rem !important}html.landing-page-only .pt-lg-17,html.landing-page-only .py-lg-17{padding-top:5rem !important}html.landing-page-only .pr-lg-17,html.landing-page-only .px-lg-17{padding-right:5rem !important}html.landing-page-only .pb-lg-17,html.landing-page-only .py-lg-17{padding-bottom:5rem !important}html.landing-page-only .pl-lg-17,html.landing-page-only .px-lg-17{padding-left:5rem !important}html.landing-page-only .p-lg-18{padding:5.5rem !important}html.landing-page-only .pt-lg-18,html.landing-page-only .py-lg-18{padding-top:5.5rem !important}html.landing-page-only .pr-lg-18,html.landing-page-only .px-lg-18{padding-right:5.5rem !important}html.landing-page-only .pb-lg-18,html.landing-page-only .py-lg-18{padding-bottom:5.5rem !important}html.landing-page-only .pl-lg-18,html.landing-page-only .px-lg-18{padding-left:5.5rem !important}html.landing-page-only .p-lg-19{padding:6rem !important}html.landing-page-only .pt-lg-19,html.landing-page-only .py-lg-19{padding-top:6rem !important}html.landing-page-only .pr-lg-19,html.landing-page-only .px-lg-19{padding-right:6rem !important}html.landing-page-only .pb-lg-19,html.landing-page-only .py-lg-19{padding-bottom:6rem !important}html.landing-page-only .pl-lg-19,html.landing-page-only .px-lg-19{padding-left:6rem !important}html.landing-page-only .p-lg-20{padding:7rem !important}html.landing-page-only .pt-lg-20,html.landing-page-only .py-lg-20{padding-top:7rem !important}html.landing-page-only .pr-lg-20,html.landing-page-only .px-lg-20{padding-right:7rem !important}html.landing-page-only .pb-lg-20,html.landing-page-only .py-lg-20{padding-bottom:7rem !important}html.landing-page-only .pl-lg-20,html.landing-page-only .px-lg-20{padding-left:7rem !important}html.landing-page-only .p-lg-21{padding:8.5rem !important}html.landing-page-only .pt-lg-21,html.landing-page-only .py-lg-21{padding-top:8.5rem !important}html.landing-page-only .pr-lg-21,html.landing-page-only .px-lg-21{padding-right:8.5rem !important}html.landing-page-only .pb-lg-21,html.landing-page-only .py-lg-21{padding-bottom:8.5rem !important}html.landing-page-only .pl-lg-21,html.landing-page-only .px-lg-21{padding-left:8.5rem !important}html.landing-page-only .p-lg-22{padding:14.25rem !important}html.landing-page-only .pt-lg-22,html.landing-page-only .py-lg-22{padding-top:14.25rem !important}html.landing-page-only .pr-lg-22,html.landing-page-only .px-lg-22{padding-right:14.25rem !important}html.landing-page-only .pb-lg-22,html.landing-page-only .py-lg-22{padding-bottom:14.25rem !important}html.landing-page-only .pl-lg-22,html.landing-page-only .px-lg-22{padding-left:14.25rem !important}html.landing-page-only .p-lg-23{padding:20rem !important}html.landing-page-only .pt-lg-23,html.landing-page-only .py-lg-23{padding-top:20rem !important}html.landing-page-only .pr-lg-23,html.landing-page-only .px-lg-23{padding-right:20rem !important}html.landing-page-only .pb-lg-23,html.landing-page-only .py-lg-23{padding-bottom:20rem !important}html.landing-page-only .pl-lg-23,html.landing-page-only .px-lg-23{padding-left:20rem !important}html.landing-page-only .m-lg-n1{margin:-0.25rem !important}html.landing-page-only .mt-lg-n1,html.landing-page-only .my-lg-n1{margin-top:-0.25rem !important}html.landing-page-only .mr-lg-n1,html.landing-page-only .mx-lg-n1{margin-right:-0.25rem !important}html.landing-page-only .mb-lg-n1,html.landing-page-only .my-lg-n1{margin-bottom:-0.25rem !important}html.landing-page-only .ml-lg-n1,html.landing-page-only .mx-lg-n1{margin-left:-0.25rem !important}html.landing-page-only .m-lg-n2{margin:-0.5rem !important}html.landing-page-only .mt-lg-n2,html.landing-page-only .my-lg-n2{margin-top:-0.5rem !important}html.landing-page-only .mr-lg-n2,html.landing-page-only .mx-lg-n2{margin-right:-0.5rem !important}html.landing-page-only .mb-lg-n2,html.landing-page-only .my-lg-n2{margin-bottom:-0.5rem !important}html.landing-page-only .ml-lg-n2,html.landing-page-only .mx-lg-n2{margin-left:-0.5rem !important}html.landing-page-only .m-lg-n3{margin:-0.75rem !important}html.landing-page-only .mt-lg-n3,html.landing-page-only .my-lg-n3{margin-top:-0.75rem !important}html.landing-page-only .mr-lg-n3,html.landing-page-only .mx-lg-n3{margin-right:-0.75rem !important}html.landing-page-only .mb-lg-n3,html.landing-page-only .my-lg-n3{margin-bottom:-0.75rem !important}html.landing-page-only .ml-lg-n3,html.landing-page-only .mx-lg-n3{margin-left:-0.75rem !important}html.landing-page-only .m-lg-n4{margin:-1rem !important}html.landing-page-only .mt-lg-n4,html.landing-page-only .my-lg-n4{margin-top:-1rem !important}html.landing-page-only .mr-lg-n4,html.landing-page-only .mx-lg-n4{margin-right:-1rem !important}html.landing-page-only .mb-lg-n4,html.landing-page-only .my-lg-n4{margin-bottom:-1rem !important}html.landing-page-only .ml-lg-n4,html.landing-page-only .mx-lg-n4{margin-left:-1rem !important}html.landing-page-only .m-lg-n5{margin:-1.175rem !important}html.landing-page-only .mt-lg-n5,html.landing-page-only .my-lg-n5{margin-top:-1.175rem !important}html.landing-page-only .mr-lg-n5,html.landing-page-only .mx-lg-n5{margin-right:-1.175rem !important}html.landing-page-only .mb-lg-n5,html.landing-page-only .my-lg-n5{margin-bottom:-1.175rem !important}html.landing-page-only .ml-lg-n5,html.landing-page-only .mx-lg-n5{margin-left:-1.175rem !important}html.landing-page-only .m-lg-n6{margin:-1.25rem !important}html.landing-page-only .mt-lg-n6,html.landing-page-only .my-lg-n6{margin-top:-1.25rem !important}html.landing-page-only .mr-lg-n6,html.landing-page-only .mx-lg-n6{margin-right:-1.25rem !important}html.landing-page-only .mb-lg-n6,html.landing-page-only .my-lg-n6{margin-bottom:-1.25rem !important}html.landing-page-only .ml-lg-n6,html.landing-page-only .mx-lg-n6{margin-left:-1.25rem !important}html.landing-page-only .m-lg-n7{margin:-1.375rem !important}html.landing-page-only .mt-lg-n7,html.landing-page-only .my-lg-n7{margin-top:-1.375rem !important}html.landing-page-only .mr-lg-n7,html.landing-page-only .mx-lg-n7{margin-right:-1.375rem !important}html.landing-page-only .mb-lg-n7,html.landing-page-only .my-lg-n7{margin-bottom:-1.375rem !important}html.landing-page-only .ml-lg-n7,html.landing-page-only .mx-lg-n7{margin-left:-1.375rem !important}html.landing-page-only .m-lg-n8{margin:-1.5rem !important}html.landing-page-only .mt-lg-n8,html.landing-page-only .my-lg-n8{margin-top:-1.5rem !important}html.landing-page-only .mr-lg-n8,html.landing-page-only .mx-lg-n8{margin-right:-1.5rem !important}html.landing-page-only .mb-lg-n8,html.landing-page-only .my-lg-n8{margin-bottom:-1.5rem !important}html.landing-page-only .ml-lg-n8,html.landing-page-only .mx-lg-n8{margin-left:-1.5rem !important}html.landing-page-only .m-lg-n9{margin:-1.625rem !important}html.landing-page-only .mt-lg-n9,html.landing-page-only .my-lg-n9{margin-top:-1.625rem !important}html.landing-page-only .mr-lg-n9,html.landing-page-only .mx-lg-n9{margin-right:-1.625rem !important}html.landing-page-only .mb-lg-n9,html.landing-page-only .my-lg-n9{margin-bottom:-1.625rem !important}html.landing-page-only .ml-lg-n9,html.landing-page-only .mx-lg-n9{margin-left:-1.625rem !important}html.landing-page-only .m-lg-n10{margin:-1.75rem !important}html.landing-page-only .mt-lg-n10,html.landing-page-only .my-lg-n10{margin-top:-1.75rem !important}html.landing-page-only .mr-lg-n10,html.landing-page-only .mx-lg-n10{margin-right:-1.75rem !important}html.landing-page-only .mb-lg-n10,html.landing-page-only .my-lg-n10{margin-bottom:-1.75rem !important}html.landing-page-only .ml-lg-n10,html.landing-page-only .mx-lg-n10{margin-left:-1.75rem !important}html.landing-page-only .m-lg-n11{margin:-2rem !important}html.landing-page-only .mt-lg-n11,html.landing-page-only .my-lg-n11{margin-top:-2rem !important}html.landing-page-only .mr-lg-n11,html.landing-page-only .mx-lg-n11{margin-right:-2rem !important}html.landing-page-only .mb-lg-n11,html.landing-page-only .my-lg-n11{margin-bottom:-2rem !important}html.landing-page-only .ml-lg-n11,html.landing-page-only .mx-lg-n11{margin-left:-2rem !important}html.landing-page-only .m-lg-n12{margin:-2.5rem !important}html.landing-page-only .mt-lg-n12,html.landing-page-only .my-lg-n12{margin-top:-2.5rem !important}html.landing-page-only .mr-lg-n12,html.landing-page-only .mx-lg-n12{margin-right:-2.5rem !important}html.landing-page-only .mb-lg-n12,html.landing-page-only .my-lg-n12{margin-bottom:-2.5rem !important}html.landing-page-only .ml-lg-n12,html.landing-page-only .mx-lg-n12{margin-left:-2.5rem !important}html.landing-page-only .m-lg-n13{margin:-3rem !important}html.landing-page-only .mt-lg-n13,html.landing-page-only .my-lg-n13{margin-top:-3rem !important}html.landing-page-only .mr-lg-n13,html.landing-page-only .mx-lg-n13{margin-right:-3rem !important}html.landing-page-only .mb-lg-n13,html.landing-page-only .my-lg-n13{margin-bottom:-3rem !important}html.landing-page-only .ml-lg-n13,html.landing-page-only .mx-lg-n13{margin-left:-3rem !important}html.landing-page-only .m-lg-n14{margin:-3.5rem !important}html.landing-page-only .mt-lg-n14,html.landing-page-only .my-lg-n14{margin-top:-3.5rem !important}html.landing-page-only .mr-lg-n14,html.landing-page-only .mx-lg-n14{margin-right:-3.5rem !important}html.landing-page-only .mb-lg-n14,html.landing-page-only .my-lg-n14{margin-bottom:-3.5rem !important}html.landing-page-only .ml-lg-n14,html.landing-page-only .mx-lg-n14{margin-left:-3.5rem !important}html.landing-page-only .m-lg-n15{margin:-4rem !important}html.landing-page-only .mt-lg-n15,html.landing-page-only .my-lg-n15{margin-top:-4rem !important}html.landing-page-only .mr-lg-n15,html.landing-page-only .mx-lg-n15{margin-right:-4rem !important}html.landing-page-only .mb-lg-n15,html.landing-page-only .my-lg-n15{margin-bottom:-4rem !important}html.landing-page-only .ml-lg-n15,html.landing-page-only .mx-lg-n15{margin-left:-4rem !important}html.landing-page-only .m-lg-n16{margin:-4.5rem !important}html.landing-page-only .mt-lg-n16,html.landing-page-only .my-lg-n16{margin-top:-4.5rem !important}html.landing-page-only .mr-lg-n16,html.landing-page-only .mx-lg-n16{margin-right:-4.5rem !important}html.landing-page-only .mb-lg-n16,html.landing-page-only .my-lg-n16{margin-bottom:-4.5rem !important}html.landing-page-only .ml-lg-n16,html.landing-page-only .mx-lg-n16{margin-left:-4.5rem !important}html.landing-page-only .m-lg-n17{margin:-5rem !important}html.landing-page-only .mt-lg-n17,html.landing-page-only .my-lg-n17{margin-top:-5rem !important}html.landing-page-only .mr-lg-n17,html.landing-page-only .mx-lg-n17{margin-right:-5rem !important}html.landing-page-only .mb-lg-n17,html.landing-page-only .my-lg-n17{margin-bottom:-5rem !important}html.landing-page-only .ml-lg-n17,html.landing-page-only .mx-lg-n17{margin-left:-5rem !important}html.landing-page-only .m-lg-n18{margin:-5.5rem !important}html.landing-page-only .mt-lg-n18,html.landing-page-only .my-lg-n18{margin-top:-5.5rem !important}html.landing-page-only .mr-lg-n18,html.landing-page-only .mx-lg-n18{margin-right:-5.5rem !important}html.landing-page-only .mb-lg-n18,html.landing-page-only .my-lg-n18{margin-bottom:-5.5rem !important}html.landing-page-only .ml-lg-n18,html.landing-page-only .mx-lg-n18{margin-left:-5.5rem !important}html.landing-page-only .m-lg-n19{margin:-6rem !important}html.landing-page-only .mt-lg-n19,html.landing-page-only .my-lg-n19{margin-top:-6rem !important}html.landing-page-only .mr-lg-n19,html.landing-page-only .mx-lg-n19{margin-right:-6rem !important}html.landing-page-only .mb-lg-n19,html.landing-page-only .my-lg-n19{margin-bottom:-6rem !important}html.landing-page-only .ml-lg-n19,html.landing-page-only .mx-lg-n19{margin-left:-6rem !important}html.landing-page-only .m-lg-n20{margin:-7rem !important}html.landing-page-only .mt-lg-n20,html.landing-page-only .my-lg-n20{margin-top:-7rem !important}html.landing-page-only .mr-lg-n20,html.landing-page-only .mx-lg-n20{margin-right:-7rem !important}html.landing-page-only .mb-lg-n20,html.landing-page-only .my-lg-n20{margin-bottom:-7rem !important}html.landing-page-only .ml-lg-n20,html.landing-page-only .mx-lg-n20{margin-left:-7rem !important}html.landing-page-only .m-lg-n21{margin:-8.5rem !important}html.landing-page-only .mt-lg-n21,html.landing-page-only .my-lg-n21{margin-top:-8.5rem !important}html.landing-page-only .mr-lg-n21,html.landing-page-only .mx-lg-n21{margin-right:-8.5rem !important}html.landing-page-only .mb-lg-n21,html.landing-page-only .my-lg-n21{margin-bottom:-8.5rem !important}html.landing-page-only .ml-lg-n21,html.landing-page-only .mx-lg-n21{margin-left:-8.5rem !important}html.landing-page-only .m-lg-n22{margin:-14.25rem !important}html.landing-page-only .mt-lg-n22,html.landing-page-only .my-lg-n22{margin-top:-14.25rem !important}html.landing-page-only .mr-lg-n22,html.landing-page-only .mx-lg-n22{margin-right:-14.25rem !important}html.landing-page-only .mb-lg-n22,html.landing-page-only .my-lg-n22{margin-bottom:-14.25rem !important}html.landing-page-only .ml-lg-n22,html.landing-page-only .mx-lg-n22{margin-left:-14.25rem !important}html.landing-page-only .m-lg-n23{margin:-20rem !important}html.landing-page-only .mt-lg-n23,html.landing-page-only .my-lg-n23{margin-top:-20rem !important}html.landing-page-only .mr-lg-n23,html.landing-page-only .mx-lg-n23{margin-right:-20rem !important}html.landing-page-only .mb-lg-n23,html.landing-page-only .my-lg-n23{margin-bottom:-20rem !important}html.landing-page-only .ml-lg-n23,html.landing-page-only .mx-lg-n23{margin-left:-20rem !important}html.landing-page-only .m-lg-auto{margin:auto !important}html.landing-page-only .mt-lg-auto,html.landing-page-only .my-lg-auto{margin-top:auto !important}html.landing-page-only .mr-lg-auto,html.landing-page-only .mx-lg-auto{margin-right:auto !important}html.landing-page-only .mb-lg-auto,html.landing-page-only .my-lg-auto{margin-bottom:auto !important}html.landing-page-only .ml-lg-auto,html.landing-page-only .mx-lg-auto{margin-left:auto !important}}@media(min-width: 1152px){html.landing-page-only .m-xl-0{margin:0 !important}html.landing-page-only .mt-xl-0,html.landing-page-only .my-xl-0{margin-top:0 !important}html.landing-page-only .mr-xl-0,html.landing-page-only .mx-xl-0{margin-right:0 !important}html.landing-page-only .mb-xl-0,html.landing-page-only .my-xl-0{margin-bottom:0 !important}html.landing-page-only .ml-xl-0,html.landing-page-only .mx-xl-0{margin-left:0 !important}html.landing-page-only .m-xl-1{margin:.25rem !important}html.landing-page-only .mt-xl-1,html.landing-page-only .my-xl-1{margin-top:.25rem !important}html.landing-page-only .mr-xl-1,html.landing-page-only .mx-xl-1{margin-right:.25rem !important}html.landing-page-only .mb-xl-1,html.landing-page-only .my-xl-1{margin-bottom:.25rem !important}html.landing-page-only .ml-xl-1,html.landing-page-only .mx-xl-1{margin-left:.25rem !important}html.landing-page-only .m-xl-2{margin:.5rem !important}html.landing-page-only .mt-xl-2,html.landing-page-only .my-xl-2{margin-top:.5rem !important}html.landing-page-only .mr-xl-2,html.landing-page-only .mx-xl-2{margin-right:.5rem !important}html.landing-page-only .mb-xl-2,html.landing-page-only .my-xl-2{margin-bottom:.5rem !important}html.landing-page-only .ml-xl-2,html.landing-page-only .mx-xl-2{margin-left:.5rem !important}html.landing-page-only .m-xl-3{margin:.75rem !important}html.landing-page-only .mt-xl-3,html.landing-page-only .my-xl-3{margin-top:.75rem !important}html.landing-page-only .mr-xl-3,html.landing-page-only .mx-xl-3{margin-right:.75rem !important}html.landing-page-only .mb-xl-3,html.landing-page-only .my-xl-3{margin-bottom:.75rem !important}html.landing-page-only .ml-xl-3,html.landing-page-only .mx-xl-3{margin-left:.75rem !important}html.landing-page-only .m-xl-4{margin:1rem !important}html.landing-page-only .mt-xl-4,html.landing-page-only .my-xl-4{margin-top:1rem !important}html.landing-page-only .mr-xl-4,html.landing-page-only .mx-xl-4{margin-right:1rem !important}html.landing-page-only .mb-xl-4,html.landing-page-only .my-xl-4{margin-bottom:1rem !important}html.landing-page-only .ml-xl-4,html.landing-page-only .mx-xl-4{margin-left:1rem !important}html.landing-page-only .m-xl-5{margin:1.175rem !important}html.landing-page-only .mt-xl-5,html.landing-page-only .my-xl-5{margin-top:1.175rem !important}html.landing-page-only .mr-xl-5,html.landing-page-only .mx-xl-5{margin-right:1.175rem !important}html.landing-page-only .mb-xl-5,html.landing-page-only .my-xl-5{margin-bottom:1.175rem !important}html.landing-page-only .ml-xl-5,html.landing-page-only .mx-xl-5{margin-left:1.175rem !important}html.landing-page-only .m-xl-6{margin:1.25rem !important}html.landing-page-only .mt-xl-6,html.landing-page-only .my-xl-6{margin-top:1.25rem !important}html.landing-page-only .mr-xl-6,html.landing-page-only .mx-xl-6{margin-right:1.25rem !important}html.landing-page-only .mb-xl-6,html.landing-page-only .my-xl-6{margin-bottom:1.25rem !important}html.landing-page-only .ml-xl-6,html.landing-page-only .mx-xl-6{margin-left:1.25rem !important}html.landing-page-only .m-xl-7{margin:1.375rem !important}html.landing-page-only .mt-xl-7,html.landing-page-only .my-xl-7{margin-top:1.375rem !important}html.landing-page-only .mr-xl-7,html.landing-page-only .mx-xl-7{margin-right:1.375rem !important}html.landing-page-only .mb-xl-7,html.landing-page-only .my-xl-7{margin-bottom:1.375rem !important}html.landing-page-only .ml-xl-7,html.landing-page-only .mx-xl-7{margin-left:1.375rem !important}html.landing-page-only .m-xl-8{margin:1.5rem !important}html.landing-page-only .mt-xl-8,html.landing-page-only .my-xl-8{margin-top:1.5rem !important}html.landing-page-only .mr-xl-8,html.landing-page-only .mx-xl-8{margin-right:1.5rem !important}html.landing-page-only .mb-xl-8,html.landing-page-only .my-xl-8{margin-bottom:1.5rem !important}html.landing-page-only .ml-xl-8,html.landing-page-only .mx-xl-8{margin-left:1.5rem !important}html.landing-page-only .m-xl-9{margin:1.625rem !important}html.landing-page-only .mt-xl-9,html.landing-page-only .my-xl-9{margin-top:1.625rem !important}html.landing-page-only .mr-xl-9,html.landing-page-only .mx-xl-9{margin-right:1.625rem !important}html.landing-page-only .mb-xl-9,html.landing-page-only .my-xl-9{margin-bottom:1.625rem !important}html.landing-page-only .ml-xl-9,html.landing-page-only .mx-xl-9{margin-left:1.625rem !important}html.landing-page-only .m-xl-10{margin:1.75rem !important}html.landing-page-only .mt-xl-10,html.landing-page-only .my-xl-10{margin-top:1.75rem !important}html.landing-page-only .mr-xl-10,html.landing-page-only .mx-xl-10{margin-right:1.75rem !important}html.landing-page-only .mb-xl-10,html.landing-page-only .my-xl-10{margin-bottom:1.75rem !important}html.landing-page-only .ml-xl-10,html.landing-page-only .mx-xl-10{margin-left:1.75rem !important}html.landing-page-only .m-xl-11{margin:2rem !important}html.landing-page-only .mt-xl-11,html.landing-page-only .my-xl-11{margin-top:2rem !important}html.landing-page-only .mr-xl-11,html.landing-page-only .mx-xl-11{margin-right:2rem !important}html.landing-page-only .mb-xl-11,html.landing-page-only .my-xl-11{margin-bottom:2rem !important}html.landing-page-only .ml-xl-11,html.landing-page-only .mx-xl-11{margin-left:2rem !important}html.landing-page-only .m-xl-12{margin:2.5rem !important}html.landing-page-only .mt-xl-12,html.landing-page-only .my-xl-12{margin-top:2.5rem !important}html.landing-page-only .mr-xl-12,html.landing-page-only .mx-xl-12{margin-right:2.5rem !important}html.landing-page-only .mb-xl-12,html.landing-page-only .my-xl-12{margin-bottom:2.5rem !important}html.landing-page-only .ml-xl-12,html.landing-page-only .mx-xl-12{margin-left:2.5rem !important}html.landing-page-only .m-xl-13{margin:3rem !important}html.landing-page-only .mt-xl-13,html.landing-page-only .my-xl-13{margin-top:3rem !important}html.landing-page-only .mr-xl-13,html.landing-page-only .mx-xl-13{margin-right:3rem !important}html.landing-page-only .mb-xl-13,html.landing-page-only .my-xl-13{margin-bottom:3rem !important}html.landing-page-only .ml-xl-13,html.landing-page-only .mx-xl-13{margin-left:3rem !important}html.landing-page-only .m-xl-14{margin:3.5rem !important}html.landing-page-only .mt-xl-14,html.landing-page-only .my-xl-14{margin-top:3.5rem !important}html.landing-page-only .mr-xl-14,html.landing-page-only .mx-xl-14{margin-right:3.5rem !important}html.landing-page-only .mb-xl-14,html.landing-page-only .my-xl-14{margin-bottom:3.5rem !important}html.landing-page-only .ml-xl-14,html.landing-page-only .mx-xl-14{margin-left:3.5rem !important}html.landing-page-only .m-xl-15{margin:4rem !important}html.landing-page-only .mt-xl-15,html.landing-page-only .my-xl-15{margin-top:4rem !important}html.landing-page-only .mr-xl-15,html.landing-page-only .mx-xl-15{margin-right:4rem !important}html.landing-page-only .mb-xl-15,html.landing-page-only .my-xl-15{margin-bottom:4rem !important}html.landing-page-only .ml-xl-15,html.landing-page-only .mx-xl-15{margin-left:4rem !important}html.landing-page-only .m-xl-16{margin:4.5rem !important}html.landing-page-only .mt-xl-16,html.landing-page-only .my-xl-16{margin-top:4.5rem !important}html.landing-page-only .mr-xl-16,html.landing-page-only .mx-xl-16{margin-right:4.5rem !important}html.landing-page-only .mb-xl-16,html.landing-page-only .my-xl-16{margin-bottom:4.5rem !important}html.landing-page-only .ml-xl-16,html.landing-page-only .mx-xl-16{margin-left:4.5rem !important}html.landing-page-only .m-xl-17{margin:5rem !important}html.landing-page-only .mt-xl-17,html.landing-page-only .my-xl-17{margin-top:5rem !important}html.landing-page-only .mr-xl-17,html.landing-page-only .mx-xl-17{margin-right:5rem !important}html.landing-page-only .mb-xl-17,html.landing-page-only .my-xl-17{margin-bottom:5rem !important}html.landing-page-only .ml-xl-17,html.landing-page-only .mx-xl-17{margin-left:5rem !important}html.landing-page-only .m-xl-18{margin:5.5rem !important}html.landing-page-only .mt-xl-18,html.landing-page-only .my-xl-18{margin-top:5.5rem !important}html.landing-page-only .mr-xl-18,html.landing-page-only .mx-xl-18{margin-right:5.5rem !important}html.landing-page-only .mb-xl-18,html.landing-page-only .my-xl-18{margin-bottom:5.5rem !important}html.landing-page-only .ml-xl-18,html.landing-page-only .mx-xl-18{margin-left:5.5rem !important}html.landing-page-only .m-xl-19{margin:6rem !important}html.landing-page-only .mt-xl-19,html.landing-page-only .my-xl-19{margin-top:6rem !important}html.landing-page-only .mr-xl-19,html.landing-page-only .mx-xl-19{margin-right:6rem !important}html.landing-page-only .mb-xl-19,html.landing-page-only .my-xl-19{margin-bottom:6rem !important}html.landing-page-only .ml-xl-19,html.landing-page-only .mx-xl-19{margin-left:6rem !important}html.landing-page-only .m-xl-20{margin:7rem !important}html.landing-page-only .mt-xl-20,html.landing-page-only .my-xl-20{margin-top:7rem !important}html.landing-page-only .mr-xl-20,html.landing-page-only .mx-xl-20{margin-right:7rem !important}html.landing-page-only .mb-xl-20,html.landing-page-only .my-xl-20{margin-bottom:7rem !important}html.landing-page-only .ml-xl-20,html.landing-page-only .mx-xl-20{margin-left:7rem !important}html.landing-page-only .m-xl-21{margin:8.5rem !important}html.landing-page-only .mt-xl-21,html.landing-page-only .my-xl-21{margin-top:8.5rem !important}html.landing-page-only .mr-xl-21,html.landing-page-only .mx-xl-21{margin-right:8.5rem !important}html.landing-page-only .mb-xl-21,html.landing-page-only .my-xl-21{margin-bottom:8.5rem !important}html.landing-page-only .ml-xl-21,html.landing-page-only .mx-xl-21{margin-left:8.5rem !important}html.landing-page-only .m-xl-22{margin:14.25rem !important}html.landing-page-only .mt-xl-22,html.landing-page-only .my-xl-22{margin-top:14.25rem !important}html.landing-page-only .mr-xl-22,html.landing-page-only .mx-xl-22{margin-right:14.25rem !important}html.landing-page-only .mb-xl-22,html.landing-page-only .my-xl-22{margin-bottom:14.25rem !important}html.landing-page-only .ml-xl-22,html.landing-page-only .mx-xl-22{margin-left:14.25rem !important}html.landing-page-only .m-xl-23{margin:20rem !important}html.landing-page-only .mt-xl-23,html.landing-page-only .my-xl-23{margin-top:20rem !important}html.landing-page-only .mr-xl-23,html.landing-page-only .mx-xl-23{margin-right:20rem !important}html.landing-page-only .mb-xl-23,html.landing-page-only .my-xl-23{margin-bottom:20rem !important}html.landing-page-only .ml-xl-23,html.landing-page-only .mx-xl-23{margin-left:20rem !important}html.landing-page-only .p-xl-0{padding:0 !important}html.landing-page-only .pt-xl-0,html.landing-page-only .py-xl-0{padding-top:0 !important}html.landing-page-only .pr-xl-0,html.landing-page-only .px-xl-0{padding-right:0 !important}html.landing-page-only .pb-xl-0,html.landing-page-only .py-xl-0{padding-bottom:0 !important}html.landing-page-only .pl-xl-0,html.landing-page-only .px-xl-0{padding-left:0 !important}html.landing-page-only .p-xl-1{padding:.25rem !important}html.landing-page-only .pt-xl-1,html.landing-page-only .py-xl-1{padding-top:.25rem !important}html.landing-page-only .pr-xl-1,html.landing-page-only .px-xl-1{padding-right:.25rem !important}html.landing-page-only .pb-xl-1,html.landing-page-only .py-xl-1{padding-bottom:.25rem !important}html.landing-page-only .pl-xl-1,html.landing-page-only .px-xl-1{padding-left:.25rem !important}html.landing-page-only .p-xl-2{padding:.5rem !important}html.landing-page-only .pt-xl-2,html.landing-page-only .py-xl-2{padding-top:.5rem !important}html.landing-page-only .pr-xl-2,html.landing-page-only .px-xl-2{padding-right:.5rem !important}html.landing-page-only .pb-xl-2,html.landing-page-only .py-xl-2{padding-bottom:.5rem !important}html.landing-page-only .pl-xl-2,html.landing-page-only .px-xl-2{padding-left:.5rem !important}html.landing-page-only .p-xl-3{padding:.75rem !important}html.landing-page-only .pt-xl-3,html.landing-page-only .py-xl-3{padding-top:.75rem !important}html.landing-page-only .pr-xl-3,html.landing-page-only .px-xl-3{padding-right:.75rem !important}html.landing-page-only .pb-xl-3,html.landing-page-only .py-xl-3{padding-bottom:.75rem !important}html.landing-page-only .pl-xl-3,html.landing-page-only .px-xl-3{padding-left:.75rem !important}html.landing-page-only .p-xl-4{padding:1rem !important}html.landing-page-only .pt-xl-4,html.landing-page-only .py-xl-4{padding-top:1rem !important}html.landing-page-only .pr-xl-4,html.landing-page-only .px-xl-4{padding-right:1rem !important}html.landing-page-only .pb-xl-4,html.landing-page-only .py-xl-4{padding-bottom:1rem !important}html.landing-page-only .pl-xl-4,html.landing-page-only .px-xl-4{padding-left:1rem !important}html.landing-page-only .p-xl-5{padding:1.175rem !important}html.landing-page-only .pt-xl-5,html.landing-page-only .py-xl-5{padding-top:1.175rem !important}html.landing-page-only .pr-xl-5,html.landing-page-only .px-xl-5{padding-right:1.175rem !important}html.landing-page-only .pb-xl-5,html.landing-page-only .py-xl-5{padding-bottom:1.175rem !important}html.landing-page-only .pl-xl-5,html.landing-page-only .px-xl-5{padding-left:1.175rem !important}html.landing-page-only .p-xl-6{padding:1.25rem !important}html.landing-page-only .pt-xl-6,html.landing-page-only .py-xl-6{padding-top:1.25rem !important}html.landing-page-only .pr-xl-6,html.landing-page-only .px-xl-6{padding-right:1.25rem !important}html.landing-page-only .pb-xl-6,html.landing-page-only .py-xl-6{padding-bottom:1.25rem !important}html.landing-page-only .pl-xl-6,html.landing-page-only .px-xl-6{padding-left:1.25rem !important}html.landing-page-only .p-xl-7{padding:1.375rem !important}html.landing-page-only .pt-xl-7,html.landing-page-only .py-xl-7{padding-top:1.375rem !important}html.landing-page-only .pr-xl-7,html.landing-page-only .px-xl-7{padding-right:1.375rem !important}html.landing-page-only .pb-xl-7,html.landing-page-only .py-xl-7{padding-bottom:1.375rem !important}html.landing-page-only .pl-xl-7,html.landing-page-only .px-xl-7{padding-left:1.375rem !important}html.landing-page-only .p-xl-8{padding:1.5rem !important}html.landing-page-only .pt-xl-8,html.landing-page-only .py-xl-8{padding-top:1.5rem !important}html.landing-page-only .pr-xl-8,html.landing-page-only .px-xl-8{padding-right:1.5rem !important}html.landing-page-only .pb-xl-8,html.landing-page-only .py-xl-8{padding-bottom:1.5rem !important}html.landing-page-only .pl-xl-8,html.landing-page-only .px-xl-8{padding-left:1.5rem !important}html.landing-page-only .p-xl-9{padding:1.625rem !important}html.landing-page-only .pt-xl-9,html.landing-page-only .py-xl-9{padding-top:1.625rem !important}html.landing-page-only .pr-xl-9,html.landing-page-only .px-xl-9{padding-right:1.625rem !important}html.landing-page-only .pb-xl-9,html.landing-page-only .py-xl-9{padding-bottom:1.625rem !important}html.landing-page-only .pl-xl-9,html.landing-page-only .px-xl-9{padding-left:1.625rem !important}html.landing-page-only .p-xl-10{padding:1.75rem !important}html.landing-page-only .pt-xl-10,html.landing-page-only .py-xl-10{padding-top:1.75rem !important}html.landing-page-only .pr-xl-10,html.landing-page-only .px-xl-10{padding-right:1.75rem !important}html.landing-page-only .pb-xl-10,html.landing-page-only .py-xl-10{padding-bottom:1.75rem !important}html.landing-page-only .pl-xl-10,html.landing-page-only .px-xl-10{padding-left:1.75rem !important}html.landing-page-only .p-xl-11{padding:2rem !important}html.landing-page-only .pt-xl-11,html.landing-page-only .py-xl-11{padding-top:2rem !important}html.landing-page-only .pr-xl-11,html.landing-page-only .px-xl-11{padding-right:2rem !important}html.landing-page-only .pb-xl-11,html.landing-page-only .py-xl-11{padding-bottom:2rem !important}html.landing-page-only .pl-xl-11,html.landing-page-only .px-xl-11{padding-left:2rem !important}html.landing-page-only .p-xl-12{padding:2.5rem !important}html.landing-page-only .pt-xl-12,html.landing-page-only .py-xl-12{padding-top:2.5rem !important}html.landing-page-only .pr-xl-12,html.landing-page-only .px-xl-12{padding-right:2.5rem !important}html.landing-page-only .pb-xl-12,html.landing-page-only .py-xl-12{padding-bottom:2.5rem !important}html.landing-page-only .pl-xl-12,html.landing-page-only .px-xl-12{padding-left:2.5rem !important}html.landing-page-only .p-xl-13{padding:3rem !important}html.landing-page-only .pt-xl-13,html.landing-page-only .py-xl-13{padding-top:3rem !important}html.landing-page-only .pr-xl-13,html.landing-page-only .px-xl-13{padding-right:3rem !important}html.landing-page-only .pb-xl-13,html.landing-page-only .py-xl-13{padding-bottom:3rem !important}html.landing-page-only .pl-xl-13,html.landing-page-only .px-xl-13{padding-left:3rem !important}html.landing-page-only .p-xl-14{padding:3.5rem !important}html.landing-page-only .pt-xl-14,html.landing-page-only .py-xl-14{padding-top:3.5rem !important}html.landing-page-only .pr-xl-14,html.landing-page-only .px-xl-14{padding-right:3.5rem !important}html.landing-page-only .pb-xl-14,html.landing-page-only .py-xl-14{padding-bottom:3.5rem !important}html.landing-page-only .pl-xl-14,html.landing-page-only .px-xl-14{padding-left:3.5rem !important}html.landing-page-only .p-xl-15{padding:4rem !important}html.landing-page-only .pt-xl-15,html.landing-page-only .py-xl-15{padding-top:4rem !important}html.landing-page-only .pr-xl-15,html.landing-page-only .px-xl-15{padding-right:4rem !important}html.landing-page-only .pb-xl-15,html.landing-page-only .py-xl-15{padding-bottom:4rem !important}html.landing-page-only .pl-xl-15,html.landing-page-only .px-xl-15{padding-left:4rem !important}html.landing-page-only .p-xl-16{padding:4.5rem !important}html.landing-page-only .pt-xl-16,html.landing-page-only .py-xl-16{padding-top:4.5rem !important}html.landing-page-only .pr-xl-16,html.landing-page-only .px-xl-16{padding-right:4.5rem !important}html.landing-page-only .pb-xl-16,html.landing-page-only .py-xl-16{padding-bottom:4.5rem !important}html.landing-page-only .pl-xl-16,html.landing-page-only .px-xl-16{padding-left:4.5rem !important}html.landing-page-only .p-xl-17{padding:5rem !important}html.landing-page-only .pt-xl-17,html.landing-page-only .py-xl-17{padding-top:5rem !important}html.landing-page-only .pr-xl-17,html.landing-page-only .px-xl-17{padding-right:5rem !important}html.landing-page-only .pb-xl-17,html.landing-page-only .py-xl-17{padding-bottom:5rem !important}html.landing-page-only .pl-xl-17,html.landing-page-only .px-xl-17{padding-left:5rem !important}html.landing-page-only .p-xl-18{padding:5.5rem !important}html.landing-page-only .pt-xl-18,html.landing-page-only .py-xl-18{padding-top:5.5rem !important}html.landing-page-only .pr-xl-18,html.landing-page-only .px-xl-18{padding-right:5.5rem !important}html.landing-page-only .pb-xl-18,html.landing-page-only .py-xl-18{padding-bottom:5.5rem !important}html.landing-page-only .pl-xl-18,html.landing-page-only .px-xl-18{padding-left:5.5rem !important}html.landing-page-only .p-xl-19{padding:6rem !important}html.landing-page-only .pt-xl-19,html.landing-page-only .py-xl-19{padding-top:6rem !important}html.landing-page-only .pr-xl-19,html.landing-page-only .px-xl-19{padding-right:6rem !important}html.landing-page-only .pb-xl-19,html.landing-page-only .py-xl-19{padding-bottom:6rem !important}html.landing-page-only .pl-xl-19,html.landing-page-only .px-xl-19{padding-left:6rem !important}html.landing-page-only .p-xl-20{padding:7rem !important}html.landing-page-only .pt-xl-20,html.landing-page-only .py-xl-20{padding-top:7rem !important}html.landing-page-only .pr-xl-20,html.landing-page-only .px-xl-20{padding-right:7rem !important}html.landing-page-only .pb-xl-20,html.landing-page-only .py-xl-20{padding-bottom:7rem !important}html.landing-page-only .pl-xl-20,html.landing-page-only .px-xl-20{padding-left:7rem !important}html.landing-page-only .p-xl-21{padding:8.5rem !important}html.landing-page-only .pt-xl-21,html.landing-page-only .py-xl-21{padding-top:8.5rem !important}html.landing-page-only .pr-xl-21,html.landing-page-only .px-xl-21{padding-right:8.5rem !important}html.landing-page-only .pb-xl-21,html.landing-page-only .py-xl-21{padding-bottom:8.5rem !important}html.landing-page-only .pl-xl-21,html.landing-page-only .px-xl-21{padding-left:8.5rem !important}html.landing-page-only .p-xl-22{padding:14.25rem !important}html.landing-page-only .pt-xl-22,html.landing-page-only .py-xl-22{padding-top:14.25rem !important}html.landing-page-only .pr-xl-22,html.landing-page-only .px-xl-22{padding-right:14.25rem !important}html.landing-page-only .pb-xl-22,html.landing-page-only .py-xl-22{padding-bottom:14.25rem !important}html.landing-page-only .pl-xl-22,html.landing-page-only .px-xl-22{padding-left:14.25rem !important}html.landing-page-only .p-xl-23{padding:20rem !important}html.landing-page-only .pt-xl-23,html.landing-page-only .py-xl-23{padding-top:20rem !important}html.landing-page-only .pr-xl-23,html.landing-page-only .px-xl-23{padding-right:20rem !important}html.landing-page-only .pb-xl-23,html.landing-page-only .py-xl-23{padding-bottom:20rem !important}html.landing-page-only .pl-xl-23,html.landing-page-only .px-xl-23{padding-left:20rem !important}html.landing-page-only .m-xl-n1{margin:-0.25rem !important}html.landing-page-only .mt-xl-n1,html.landing-page-only .my-xl-n1{margin-top:-0.25rem !important}html.landing-page-only .mr-xl-n1,html.landing-page-only .mx-xl-n1{margin-right:-0.25rem !important}html.landing-page-only .mb-xl-n1,html.landing-page-only .my-xl-n1{margin-bottom:-0.25rem !important}html.landing-page-only .ml-xl-n1,html.landing-page-only .mx-xl-n1{margin-left:-0.25rem !important}html.landing-page-only .m-xl-n2{margin:-0.5rem !important}html.landing-page-only .mt-xl-n2,html.landing-page-only .my-xl-n2{margin-top:-0.5rem !important}html.landing-page-only .mr-xl-n2,html.landing-page-only .mx-xl-n2{margin-right:-0.5rem !important}html.landing-page-only .mb-xl-n2,html.landing-page-only .my-xl-n2{margin-bottom:-0.5rem !important}html.landing-page-only .ml-xl-n2,html.landing-page-only .mx-xl-n2{margin-left:-0.5rem !important}html.landing-page-only .m-xl-n3{margin:-0.75rem !important}html.landing-page-only .mt-xl-n3,html.landing-page-only .my-xl-n3{margin-top:-0.75rem !important}html.landing-page-only .mr-xl-n3,html.landing-page-only .mx-xl-n3{margin-right:-0.75rem !important}html.landing-page-only .mb-xl-n3,html.landing-page-only .my-xl-n3{margin-bottom:-0.75rem !important}html.landing-page-only .ml-xl-n3,html.landing-page-only .mx-xl-n3{margin-left:-0.75rem !important}html.landing-page-only .m-xl-n4{margin:-1rem !important}html.landing-page-only .mt-xl-n4,html.landing-page-only .my-xl-n4{margin-top:-1rem !important}html.landing-page-only .mr-xl-n4,html.landing-page-only .mx-xl-n4{margin-right:-1rem !important}html.landing-page-only .mb-xl-n4,html.landing-page-only .my-xl-n4{margin-bottom:-1rem !important}html.landing-page-only .ml-xl-n4,html.landing-page-only .mx-xl-n4{margin-left:-1rem !important}html.landing-page-only .m-xl-n5{margin:-1.175rem !important}html.landing-page-only .mt-xl-n5,html.landing-page-only .my-xl-n5{margin-top:-1.175rem !important}html.landing-page-only .mr-xl-n5,html.landing-page-only .mx-xl-n5{margin-right:-1.175rem !important}html.landing-page-only .mb-xl-n5,html.landing-page-only .my-xl-n5{margin-bottom:-1.175rem !important}html.landing-page-only .ml-xl-n5,html.landing-page-only .mx-xl-n5{margin-left:-1.175rem !important}html.landing-page-only .m-xl-n6{margin:-1.25rem !important}html.landing-page-only .mt-xl-n6,html.landing-page-only .my-xl-n6{margin-top:-1.25rem !important}html.landing-page-only .mr-xl-n6,html.landing-page-only .mx-xl-n6{margin-right:-1.25rem !important}html.landing-page-only .mb-xl-n6,html.landing-page-only .my-xl-n6{margin-bottom:-1.25rem !important}html.landing-page-only .ml-xl-n6,html.landing-page-only .mx-xl-n6{margin-left:-1.25rem !important}html.landing-page-only .m-xl-n7{margin:-1.375rem !important}html.landing-page-only .mt-xl-n7,html.landing-page-only .my-xl-n7{margin-top:-1.375rem !important}html.landing-page-only .mr-xl-n7,html.landing-page-only .mx-xl-n7{margin-right:-1.375rem !important}html.landing-page-only .mb-xl-n7,html.landing-page-only .my-xl-n7{margin-bottom:-1.375rem !important}html.landing-page-only .ml-xl-n7,html.landing-page-only .mx-xl-n7{margin-left:-1.375rem !important}html.landing-page-only .m-xl-n8{margin:-1.5rem !important}html.landing-page-only .mt-xl-n8,html.landing-page-only .my-xl-n8{margin-top:-1.5rem !important}html.landing-page-only .mr-xl-n8,html.landing-page-only .mx-xl-n8{margin-right:-1.5rem !important}html.landing-page-only .mb-xl-n8,html.landing-page-only .my-xl-n8{margin-bottom:-1.5rem !important}html.landing-page-only .ml-xl-n8,html.landing-page-only .mx-xl-n8{margin-left:-1.5rem !important}html.landing-page-only .m-xl-n9{margin:-1.625rem !important}html.landing-page-only .mt-xl-n9,html.landing-page-only .my-xl-n9{margin-top:-1.625rem !important}html.landing-page-only .mr-xl-n9,html.landing-page-only .mx-xl-n9{margin-right:-1.625rem !important}html.landing-page-only .mb-xl-n9,html.landing-page-only .my-xl-n9{margin-bottom:-1.625rem !important}html.landing-page-only .ml-xl-n9,html.landing-page-only .mx-xl-n9{margin-left:-1.625rem !important}html.landing-page-only .m-xl-n10{margin:-1.75rem !important}html.landing-page-only .mt-xl-n10,html.landing-page-only .my-xl-n10{margin-top:-1.75rem !important}html.landing-page-only .mr-xl-n10,html.landing-page-only .mx-xl-n10{margin-right:-1.75rem !important}html.landing-page-only .mb-xl-n10,html.landing-page-only .my-xl-n10{margin-bottom:-1.75rem !important}html.landing-page-only .ml-xl-n10,html.landing-page-only .mx-xl-n10{margin-left:-1.75rem !important}html.landing-page-only .m-xl-n11{margin:-2rem !important}html.landing-page-only .mt-xl-n11,html.landing-page-only .my-xl-n11{margin-top:-2rem !important}html.landing-page-only .mr-xl-n11,html.landing-page-only .mx-xl-n11{margin-right:-2rem !important}html.landing-page-only .mb-xl-n11,html.landing-page-only .my-xl-n11{margin-bottom:-2rem !important}html.landing-page-only .ml-xl-n11,html.landing-page-only .mx-xl-n11{margin-left:-2rem !important}html.landing-page-only .m-xl-n12{margin:-2.5rem !important}html.landing-page-only .mt-xl-n12,html.landing-page-only .my-xl-n12{margin-top:-2.5rem !important}html.landing-page-only .mr-xl-n12,html.landing-page-only .mx-xl-n12{margin-right:-2.5rem !important}html.landing-page-only .mb-xl-n12,html.landing-page-only .my-xl-n12{margin-bottom:-2.5rem !important}html.landing-page-only .ml-xl-n12,html.landing-page-only .mx-xl-n12{margin-left:-2.5rem !important}html.landing-page-only .m-xl-n13{margin:-3rem !important}html.landing-page-only .mt-xl-n13,html.landing-page-only .my-xl-n13{margin-top:-3rem !important}html.landing-page-only .mr-xl-n13,html.landing-page-only .mx-xl-n13{margin-right:-3rem !important}html.landing-page-only .mb-xl-n13,html.landing-page-only .my-xl-n13{margin-bottom:-3rem !important}html.landing-page-only .ml-xl-n13,html.landing-page-only .mx-xl-n13{margin-left:-3rem !important}html.landing-page-only .m-xl-n14{margin:-3.5rem !important}html.landing-page-only .mt-xl-n14,html.landing-page-only .my-xl-n14{margin-top:-3.5rem !important}html.landing-page-only .mr-xl-n14,html.landing-page-only .mx-xl-n14{margin-right:-3.5rem !important}html.landing-page-only .mb-xl-n14,html.landing-page-only .my-xl-n14{margin-bottom:-3.5rem !important}html.landing-page-only .ml-xl-n14,html.landing-page-only .mx-xl-n14{margin-left:-3.5rem !important}html.landing-page-only .m-xl-n15{margin:-4rem !important}html.landing-page-only .mt-xl-n15,html.landing-page-only .my-xl-n15{margin-top:-4rem !important}html.landing-page-only .mr-xl-n15,html.landing-page-only .mx-xl-n15{margin-right:-4rem !important}html.landing-page-only .mb-xl-n15,html.landing-page-only .my-xl-n15{margin-bottom:-4rem !important}html.landing-page-only .ml-xl-n15,html.landing-page-only .mx-xl-n15{margin-left:-4rem !important}html.landing-page-only .m-xl-n16{margin:-4.5rem !important}html.landing-page-only .mt-xl-n16,html.landing-page-only .my-xl-n16{margin-top:-4.5rem !important}html.landing-page-only .mr-xl-n16,html.landing-page-only .mx-xl-n16{margin-right:-4.5rem !important}html.landing-page-only .mb-xl-n16,html.landing-page-only .my-xl-n16{margin-bottom:-4.5rem !important}html.landing-page-only .ml-xl-n16,html.landing-page-only .mx-xl-n16{margin-left:-4.5rem !important}html.landing-page-only .m-xl-n17{margin:-5rem !important}html.landing-page-only .mt-xl-n17,html.landing-page-only .my-xl-n17{margin-top:-5rem !important}html.landing-page-only .mr-xl-n17,html.landing-page-only .mx-xl-n17{margin-right:-5rem !important}html.landing-page-only .mb-xl-n17,html.landing-page-only .my-xl-n17{margin-bottom:-5rem !important}html.landing-page-only .ml-xl-n17,html.landing-page-only .mx-xl-n17{margin-left:-5rem !important}html.landing-page-only .m-xl-n18{margin:-5.5rem !important}html.landing-page-only .mt-xl-n18,html.landing-page-only .my-xl-n18{margin-top:-5.5rem !important}html.landing-page-only .mr-xl-n18,html.landing-page-only .mx-xl-n18{margin-right:-5.5rem !important}html.landing-page-only .mb-xl-n18,html.landing-page-only .my-xl-n18{margin-bottom:-5.5rem !important}html.landing-page-only .ml-xl-n18,html.landing-page-only .mx-xl-n18{margin-left:-5.5rem !important}html.landing-page-only .m-xl-n19{margin:-6rem !important}html.landing-page-only .mt-xl-n19,html.landing-page-only .my-xl-n19{margin-top:-6rem !important}html.landing-page-only .mr-xl-n19,html.landing-page-only .mx-xl-n19{margin-right:-6rem !important}html.landing-page-only .mb-xl-n19,html.landing-page-only .my-xl-n19{margin-bottom:-6rem !important}html.landing-page-only .ml-xl-n19,html.landing-page-only .mx-xl-n19{margin-left:-6rem !important}html.landing-page-only .m-xl-n20{margin:-7rem !important}html.landing-page-only .mt-xl-n20,html.landing-page-only .my-xl-n20{margin-top:-7rem !important}html.landing-page-only .mr-xl-n20,html.landing-page-only .mx-xl-n20{margin-right:-7rem !important}html.landing-page-only .mb-xl-n20,html.landing-page-only .my-xl-n20{margin-bottom:-7rem !important}html.landing-page-only .ml-xl-n20,html.landing-page-only .mx-xl-n20{margin-left:-7rem !important}html.landing-page-only .m-xl-n21{margin:-8.5rem !important}html.landing-page-only .mt-xl-n21,html.landing-page-only .my-xl-n21{margin-top:-8.5rem !important}html.landing-page-only .mr-xl-n21,html.landing-page-only .mx-xl-n21{margin-right:-8.5rem !important}html.landing-page-only .mb-xl-n21,html.landing-page-only .my-xl-n21{margin-bottom:-8.5rem !important}html.landing-page-only .ml-xl-n21,html.landing-page-only .mx-xl-n21{margin-left:-8.5rem !important}html.landing-page-only .m-xl-n22{margin:-14.25rem !important}html.landing-page-only .mt-xl-n22,html.landing-page-only .my-xl-n22{margin-top:-14.25rem !important}html.landing-page-only .mr-xl-n22,html.landing-page-only .mx-xl-n22{margin-right:-14.25rem !important}html.landing-page-only .mb-xl-n22,html.landing-page-only .my-xl-n22{margin-bottom:-14.25rem !important}html.landing-page-only .ml-xl-n22,html.landing-page-only .mx-xl-n22{margin-left:-14.25rem !important}html.landing-page-only .m-xl-n23{margin:-20rem !important}html.landing-page-only .mt-xl-n23,html.landing-page-only .my-xl-n23{margin-top:-20rem !important}html.landing-page-only .mr-xl-n23,html.landing-page-only .mx-xl-n23{margin-right:-20rem !important}html.landing-page-only .mb-xl-n23,html.landing-page-only .my-xl-n23{margin-bottom:-20rem !important}html.landing-page-only .ml-xl-n23,html.landing-page-only .mx-xl-n23{margin-left:-20rem !important}html.landing-page-only .m-xl-auto{margin:auto !important}html.landing-page-only .mt-xl-auto,html.landing-page-only .my-xl-auto{margin-top:auto !important}html.landing-page-only .mr-xl-auto,html.landing-page-only .mx-xl-auto{margin-right:auto !important}html.landing-page-only .mb-xl-auto,html.landing-page-only .my-xl-auto{margin-bottom:auto !important}html.landing-page-only .ml-xl-auto,html.landing-page-only .mx-xl-auto{margin-left:auto !important}}html.landing-page-only .stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}html.landing-page-only .text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}html.landing-page-only .text-justify{text-align:justify !important}html.landing-page-only .text-wrap{white-space:normal !important}html.landing-page-only .text-nowrap{white-space:nowrap !important}html.landing-page-only .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}html.landing-page-only .text-left{text-align:left !important}html.landing-page-only .text-right{text-align:right !important}html.landing-page-only .text-center{text-align:center !important}@media(min-width: 576px){html.landing-page-only .text-sm-left{text-align:left !important}html.landing-page-only .text-sm-right{text-align:right !important}html.landing-page-only .text-sm-center{text-align:center !important}}@media(min-width: 768px){html.landing-page-only .text-md-left{text-align:left !important}html.landing-page-only .text-md-right{text-align:right !important}html.landing-page-only .text-md-center{text-align:center !important}}@media(min-width: 992px){html.landing-page-only .text-lg-left{text-align:left !important}html.landing-page-only .text-lg-right{text-align:right !important}html.landing-page-only .text-lg-center{text-align:center !important}}@media(min-width: 1152px){html.landing-page-only .text-xl-left{text-align:left !important}html.landing-page-only .text-xl-right{text-align:right !important}html.landing-page-only .text-xl-center{text-align:center !important}}html.landing-page-only .text-lowercase{text-transform:lowercase !important}html.landing-page-only .text-uppercase{text-transform:uppercase !important}html.landing-page-only .text-capitalize{text-transform:capitalize !important}html.landing-page-only .font-weight-light{font-weight:400 !important}html.landing-page-only .font-weight-lighter{font-weight:lighter !important}html.landing-page-only .font-weight-normal{font-weight:500 !important}html.landing-page-only .font-weight-bold{font-weight:800 !important}html.landing-page-only .font-weight-bolder{font-weight:bolder !important}html.landing-page-only .font-italic{font-style:italic !important}html.landing-page-only .text-white{color:#fff !important}html.landing-page-only .text-primary{color:#ed3b42 !important}html.landing-page-only a.text-primary:hover,html.landing-page-only a.text-primary:focus{color:#c9121a !important}html.landing-page-only .text-secondary{color:#a6a8b7 !important}html.landing-page-only a.text-secondary:hover,html.landing-page-only a.text-secondary:focus{color:#7c7f95 !important}html.landing-page-only .text-success{color:#52cf6e !important}html.landing-page-only a.text-success:hover,html.landing-page-only a.text-success:focus{color:#2ea649 !important}html.landing-page-only .text-info{color:#897fd4 !important}html.landing-page-only a.text-info:hover,html.landing-page-only a.text-info:focus{color:#5446c1 !important}html.landing-page-only .text-warning{color:#ffc107 !important}html.landing-page-only a.text-warning:hover,html.landing-page-only a.text-warning:focus{color:#ba8b00 !important}html.landing-page-only .text-danger{color:#dc3545 !important}html.landing-page-only a.text-danger:hover,html.landing-page-only a.text-danger:focus{color:#a71d2a !important}html.landing-page-only .text-light{color:#fafaff !important}html.landing-page-only a.text-light:hover,html.landing-page-only a.text-light:focus{color:#aeaeff !important}html.landing-page-only .text-dark{color:#444452 !important}html.landing-page-only a.text-dark:hover,html.landing-page-only a.text-dark:focus{color:#212128 !important}html.landing-page-only .text-blue{color:#897fd4 !important}html.landing-page-only a.text-blue:hover,html.landing-page-only a.text-blue:focus{color:#5446c1 !important}html.landing-page-only .text-transparent{color:rgba(0,0,0,0) !important}html.landing-page-only a.text-transparent:hover,html.landing-page-only a.text-transparent:focus{color:rgba(0,0,0,0) !important}html.landing-page-only .text-white{color:#fff !important}html.landing-page-only a.text-white:hover,html.landing-page-only a.text-white:focus{color:#d9d9d9 !important}html.landing-page-only .text-white-100{color:#f9f9fd !important}html.landing-page-only a.text-white-100:hover,html.landing-page-only a.text-white-100:focus{color:#c0c0ea !important}html.landing-page-only .text-gray-100{color:#fafaff !important}html.landing-page-only a.text-gray-100:hover,html.landing-page-only a.text-gray-100:focus{color:#aeaeff !important}html.landing-page-only .text-gray-200{color:#f7f7fc !important}html.landing-page-only a.text-gray-200:hover,html.landing-page-only a.text-gray-200:focus{color:#bfbfe7 !important}html.landing-page-only .text-gray-300{color:#f2f1f7 !important}html.landing-page-only a.text-gray-300:hover,html.landing-page-only a.text-gray-300:focus{color:#c5c0db !important}html.landing-page-only .text-gray-400{color:#e7e8f3 !important}html.landing-page-only a.text-gray-400:hover,html.landing-page-only a.text-gray-400:focus{color:#b4b7da !important}html.landing-page-only .text-gray-500{color:#cccedc !important}html.landing-page-only a.text-gray-500:hover,html.landing-page-only a.text-gray-500:focus{color:#9fa2bd !important}html.landing-page-only .text-gray-600{color:#a6a8b7 !important}html.landing-page-only a.text-gray-600:hover,html.landing-page-only a.text-gray-600:focus{color:#7c7f95 !important}html.landing-page-only .text-gray-700{color:#6c6e82 !important}html.landing-page-only a.text-gray-700:hover,html.landing-page-only a.text-gray-700:focus{color:#494b58 !important}html.landing-page-only .text-gray-800{color:#444452 !important}html.landing-page-only a.text-gray-800:hover,html.landing-page-only a.text-gray-800:focus{color:#212128 !important}html.landing-page-only .text-gray-900{color:#393946 !important}html.landing-page-only a.text-gray-900:hover,html.landing-page-only a.text-gray-900:focus{color:#17171c !important}html.landing-page-only .text-gray-1000{color:#23242d !important}html.landing-page-only a.text-gray-1000:hover,html.landing-page-only a.text-gray-1000:focus{color:#020202 !important}html.landing-page-only .text-black{color:#2f303b !important}html.landing-page-only a.text-black:hover,html.landing-page-only a.text-black:focus{color:#0d0d10 !important}html.landing-page-only .text-body{color:#393946 !important}html.landing-page-only .text-muted{color:#a6a8b7 !important}html.landing-page-only .text-black-50{color:rgba(47,48,59,.5) !important}html.landing-page-only .text-white-50{color:rgba(255,255,255,.5) !important}html.landing-page-only .text-hide{font:0/0 a;color:rgba(0,0,0,0);text-shadow:none;background-color:rgba(0,0,0,0);border:0}html.landing-page-only .text-decoration-none{text-decoration:none !important}html.landing-page-only .text-break{word-break:break-word !important;word-wrap:break-word !important}html.landing-page-only .text-reset{color:inherit !important}html.landing-page-only .visible{visibility:visible !important}html.landing-page-only .invisible{visibility:hidden !important}@media print{html.landing-page-only *,html.landing-page-only *::before,html.landing-page-only *::after{text-shadow:none !important;box-shadow:none !important}html.landing-page-only a:not(.btn){text-decoration:underline}html.landing-page-only abbr[title]::after{content:" (" attr(title) ")"}html.landing-page-only pre{white-space:pre-wrap !important}html.landing-page-only pre,html.landing-page-only blockquote{border:1px solid #cccedc;page-break-inside:avoid}html.landing-page-only tr,html.landing-page-only img{page-break-inside:avoid}html.landing-page-only p,html.landing-page-only h2,html.landing-page-only h3{orphans:3;widows:3}html.landing-page-only h2,html.landing-page-only h3{page-break-after:avoid}@page{html.landing-page-only{size:a3}}html.landing-page-only body{min-width:992px !important}html.landing-page-only .container{min-width:992px !important}html.landing-page-only .navbar{display:none}html.landing-page-only .badge{border:1px solid #2f303b}html.landing-page-only .table{border-collapse:collapse !important}html.landing-page-only .table td,html.landing-page-only .table th{background-color:#fff !important}html.landing-page-only .table-bordered th,html.landing-page-only .table-bordered td{border:1px solid #f2f1f7 !important}html.landing-page-only .table-dark{color:inherit}html.landing-page-only .table-dark th,html.landing-page-only .table-dark td,html.landing-page-only .table-dark thead th,html.landing-page-only .table-dark tbody+tbody{border-color:#f2f1f7}html.landing-page-only .table .thead-dark th{color:inherit;border-color:#f2f1f7}}html.landing-page-only .btn{border-radius:.25rem;padding-top:7px;padding-bottom:7px}html.landing-page-only .btn-lg,html.landing-page-only .btn-group-lg>.btn{padding-top:15px;padding-bottom:15px}html.landing-page-only .btn-primary{border:1px solid rgba(0,0,0,0)}html.landing-page-only .rounded-lg{border-radius:1.5rem !important}html.landing-page-only .card{background:#f7f7fc;border-color:#e7e8f3;margin-bottom:0;overflow:hidden;padding:1px}html.landing-page-only .card-header{background:#f7f7fc;border-bottom:1px solid #e7e8f3;padding:2rem 2.5rem}html.landing-page-only .card-body{background:#f7f7fc}html.landing-page-only .card.active{border:2px solid #52cf6e;padding:0}html.landing-page-only .card-title{margin-bottom:.5rem}html.landing-page-only .card p{font-size:.75rem;line-height:1rem}html.landing-page-only .card small{color:#a6a8b7}html.landing-page-only .pricing-card{min-height:450px;box-shadow:8px 8px 40px #e4e6f4;-moz-box-shadow:8px 8px 40px #e4e6f4}html.landing-page-only .pricing-card .card{background:#f1f0f8}html.landing-page-only .tier-cards .card{max-height:152px}@media(max-width: 1151.98px){html.landing-page-only .sticky-lg-top{position:relative}}html.landing-page-only #slider,html.landing-page-only .irs-handle:hover{cursor:pointer}html.landing-page-only .irs-handle.state_hover{background-color:#a6a8b7 !important}html.landing-page-only #public-cloud .js-grid-text-0{color:#ed3b42 !important}html.landing-page-only .pricing .nav-tabs{border-bottom:none}html.landing-page-only .pricing .nav-tabs .nav-item{margin-bottom:0;width:calc(50% - .5rem)}html.landing-page-only .pricing .nav-tabs .nav-item .nav-link{background:#e7e8f3;color:#6c6e82}html.landing-page-only .pricing .nav-tabs .nav-item .nav-link.active{background:#fafaff;color:#6c6e82}html.landing-page-only .pricing .nav-tabs+.tab-content{box-shadow:0px 20px 50px rgba(215,217,231,.5);-moz-box-shadow:0px 20px 50px rgba(215,217,231,.5);background:#fafaff}html.landing-page-only .navbar-landing{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;height:revert;background:rgba(0,0,0,0);border:0;box-shadow:none;position:relative}@media screen and (min-width: 576px)and (max-width: 768px){html.landing-page-only .navbar-landing{padding-left:0 !important;padding-right:0 !important;width:100% !important}html.landing-page-only .navbar-landing .nav-link{padding:0 5px !important}}html.landing-page-only .navbar-toggler{border:none;background:rgba(0,0,0,0) !important}html.landing-page-only .navbar-toggler .icon-bar{width:22px;height:2px;background-color:#ed3b42;display:block;transition:all .2s;margin-top:4px}html.landing-page-only .navbar-toggler .top-bar{transform:rotate(45deg);transform-origin:10% 10%}html.landing-page-only .navbar-toggler .middle-bar{opacity:0}html.landing-page-only .navbar-toggler .bottom-bar{transform:rotate(-45deg);transform-origin:10% 90%}html.landing-page-only .navbar-toggler.collapsed .top-bar{transform:rotate(0)}html.landing-page-only .navbar-toggler.collapsed .middle-bar{opacity:1}html.landing-page-only .navbar-toggler.collapsed .bottom-bar{transform:rotate(0)}html.landing-page-only form{padding:3rem 2.5rem;background:#2f303b;border-radius:1rem}html.landing-page-only form .col-form-label,html.landing-page-only form .form-check-label{color:#6c6e82;padding:0}html.landing-page-only form .form-control,html.landing-page-only form .form-control:active,html.landing-page-only form .form-control:focus{background:#393946;border-color:#444452;padding:.75rem 1rem;height:auto;font-size:14px;color:#fafaff}html.landing-page-only form .form-control::placeholder,html.landing-page-only form .form-control:active::placeholder,html.landing-page-only form .form-control:focus::placeholder{color:#a6a8b7}html.landing-page-only form.form-register{box-shadow:0px 4px 40px rgba(97,75,75,.1);-moz-box-shadow:0px 4px 40px rgba(97,75,75,.1);-webkit-box-shadow:0px 4px 40px rgba(97,75,75,.1);width:fit-content;width:-moz-fit-content}html.landing-page-only body{font-family:"Muli",sans-serif,"IBM Plex Mono",monospace}html.landing-page-only .h8{font-size:.75rem;line-height:1rem}html.landing-page-only h1,html.landing-page-only h2,html.landing-page-only h3,html.landing-page-only h4,html.landing-page-only h5,html.landing-page-only h6{font-family:"Muli",sans-serif,"IBM Plex Mono",monospace;color:#393946}html.landing-page-only .footer{padding:0}html.landing-page-only .hero{padding:revert}html.landing-page-only .visually-hidden{display:none}html.landing-page-only body .gist .highlight{background:#293134}html.landing-page-only body .gist .blob-num,html.landing-page-only body .gist .blob-code-inner,html.landing-page-only body .gist .pl-ent,html.landing-page-only body .gist .pl-s1,html.landing-page-only body .gist .pl-s1 .pl-s2,html.landing-page-only body .gist .pl-smi,html.landing-page-only body .gist .pl-smp,html.landing-page-only body .gist .pl-stj,html.landing-page-only body .gist .pl-vo,html.landing-page-only body .gist .pl-vpf{color:#e0e2e4}html.landing-page-only body .gist .pl-c,html.landing-page-only body .gist .pl-c span{color:#66747b;font-style:italic}html.landing-page-only body .gist .pl-mb{color:#ec7600;font-weight:700}html.landing-page-only body .gist .pl-mh .pl-en{color:#66747b;font-weight:700}html.landing-page-only body .gist .pl-mi{color:#93c763;font-style:italic}html.landing-page-only body .gist .pl-sc{color:#96989a}html.landing-page-only body .gist .pl-st{color:#da4236}html.landing-page-only body .gist .pl-c1>.pl-c1{color:#678cb1}html.landing-page-only body .gist .pl-c1,html.landing-page-only body .gist .pl-sr .pl-cce{color:#ffcd22}html.landing-page-only body .gist .pl-e,html.landing-page-only body .gist .pl-k,html.landing-page-only body .gist .pl-mdh,html.landing-page-only body .gist .pl-mdr,html.landing-page-only body .gist .pl-ml,html.landing-page-only body .gist .pl-mm,html.landing-page-only body .gist .pl-mo,html.landing-page-only body .gist .pl-mp,html.landing-page-only body .gist .pl-mr,html.landing-page-only body .gist .pl-ms,html.landing-page-only body .gist .pl-s1 .pl-v,html.landing-page-only body .gist .pl-s3{color:#93c763}html.landing-page-only body .gist .pl-en,html.landing-page-only body .gist .pl-v{color:#678cb1}html.landing-page-only body .gist .pl-mh,html.landing-page-only body .gist .pl-mq{color:#66747b}html.landing-page-only body .gist .pl-pds,html.landing-page-only body .gist .pl-s,html.landing-page-only body .gist .pl-s1 .pl-pse .pl-s2,html.landing-page-only body .gist .pl-sv{color:#ec7600}html.landing-page-only body .gist .pl-sr,html.landing-page-only body .gist .pl-sr .pl-sra,html.landing-page-only body .gist .pl-sr .pl-sre,html.landing-page-only body .gist .pl-src{color:#d39745}html.landing-page-only body .gist .pl-mi1,html.landing-page-only body .gist .pl-mdht{color:#e0e2e4;background:rgba(0,64,0,.5)}html.landing-page-only body .gist .pl-md,html.landing-page-only body .gist .pl-mdhf,html.landing-page-only body .gist .pl-id,html.landing-page-only body .gist .pl-ii{color:#e0e2e4;background:rgba(64,0,0,.5)}html.landing-page-only .sectors-h1{font-size:2.5rem;font-weight:800;line-height:1.2}html.landing-page-only .sectors-slogan-text{font-size:1rem;line-height:1.7}html.landing-page-only .sectors-btn-read-more{padding:.8rem 2.5rem}html.landing-page-only .sectors-header-image{background-repeat:no-repeat;background-size:contain;background-position:50%;width:100%;min-height:340px;max-height:540px}html.landing-page-only .sectors-header-image-iot{background-image:url(/assets/images/header_image_iot-ef27106ecf9242681633fac91dd7c715.png)}html.landing-page-only .sectors-header-image-robotics{background-image:url(/assets/images/header_image_robotics-5d7944aa060b0d6e1c0578ee6816f42b.png)}html.landing-page-only .sectors-header-image-remote{background-image:url(/assets/images/header_image_remote-407c4df00bc625f60907e449406e1a9f.png)}html.landing-page-only .sectors-header-section{background:#fffaff url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjY1NyIgdmlld0JveD0iMCAwIDE0NDAgNjU3IiB3aWR0aD0iMTQ0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGxpbmVhckdyYWRpZW50IGlkPSJhIiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDEgMCAwIC0xIDAgNjU3Ljc0MzU3KSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSI3MjAiIHgyPSI3MjAiIHkxPSIuODcxNTgyIiB5Mj0iNzA0Ljk1NCI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZjZmNGZlIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjZjJmMWY3Ii8+PC9saW5lYXJHcmFkaWVudD48cGF0aCBkPSJtMCA2MDEuMDgxMjZjNTU5LjAxOTQ4LTc4Ljc5NDQ0IDYzOS4yNDIyOCAxMjEuMzgxNyAxNDQwIDE3LjYzNDd2LTYxNy44NDQzODUzOWgtMTQ0MHoiIGZpbGw9InVybCgjYSkiLz48L3N2Zz4=);background-size:cover;background-repeat:no-repeat;background-position:center bottom;padding-bottom:7rem}html.landing-page-only .sectors-iot-benefits{background:#f6f4fe url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjM1MCIgdmlld0JveD0iMCAwIDE0NDAgMzUwIiB3aWR0aD0iMTQ0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtLjAzMDU4ODI4LjAzNDczMTA4aDE0NDAuMzM0NjExNzJ2MzA4LjA5MzUwODkybC0xNDM5Ljk3NjY5Mjk4IDMzLjQ4OTQ1eiIgZmlsbD0iI2ZmZmFmZiIvPjwvc3ZnPgo=);background-size:cover;background-repeat:no-repeat;background-position:center bottom;padding-bottom:7rem;color:#6c6e82}html.landing-page-only .sectors-iot-benefits.sectors-case-study{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI5MTciIHZpZXdCb3g9IjAgMCAxNDQwIDkxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xNDQwIDE2LjYwMzdDNzUxLjUgLTQ0Ljk5OTkgNDc2IDk3LjUgMCAxNi42MDM3VjkxN0gxNDQwVjE2LjYwMzdaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjcyMCIgeTE9IjAuNjYwMTU2IiB4Mj0iNzIwIiB5Mj0iOTE3IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+DQo8c3RvcCBzdG9wLWNvbG9yPSIjRjJGMUY4Ii8+DQo8c3RvcCBvZmZzZXQ9IjAuMDAwMSIgc3RvcC1jb2xvcj0iI0YyRjFGOCIvPg0KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRjhGOEZDIi8+DQo8L2xpbmVhckdyYWRpZW50Pg0KPC9kZWZzPg0KPC9zdmc+DQo=) no-repeat;background-size:cover;background-position:center top;background-color:#f8f8fc}html.landing-page-only .sectors-iot-benefits.sectors-remote-easy-setup{background:#fffaff url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjM1MCIgdmlld0JveD0iMCAwIDE0NDAgMzUwIiB3aWR0aD0iMTQ0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtLjAzMDU4ODI4LjAzNDczMTA4aDE0NDAuMzM0NjExNzJ2MzA4LjA5MzUwODkybC0xNDM5Ljk3NjY5Mjk4IDMzLjQ4OTQ1eiIgZmlsbD0iI2ZmZmFmZiIvPjwvc3ZnPgo=);background-size:cover;background-repeat:no-repeat;background-position:center bottom}html.landing-page-only .sectors-robotics-virtual-lan{background:#f2f1f8 url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjM1MCIgdmlld0JveD0iMCAwIDE0NDAgMzUwIiB3aWR0aD0iMTQ0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtLjAzMDU4ODI4LjAzNDczMTA4aDE0NDAuMzM0NjExNzJ2MzA4LjA5MzUwODkybC0xNDM5Ljk3NjY5Mjk4IDMzLjQ4OTQ1eiIgZmlsbD0iI2ZmZmFmZiIvPjwvc3ZnPgo=);background-size:cover;background-repeat:no-repeat;background-position:center bottom;padding-bottom:7rem;color:#6c6e82}html.landing-page-only .sectors-iot-benefits-image{background:url(/assets/images/benefits-74f1188f7ef2dbb5c4d23159bcf60dc4.png) no-repeat;background-size:contain;background-position:50%;width:100%;min-height:520px;max-height:555px}html.landing-page-only .sectors-section-h2{font-weight:800;font-size:2.62rem;margin-top:3rem;margin-bottom:5rem;color:#2f303b}html.landing-page-only .sectors-section-h2.sectors-case-study-h2{margin-bottom:3rem}html.landing-page-only .sectors-brief-description{line-height:1.75;margin-bottom:3rem}html.landing-page-only .sectors-iot-benefit-list,html.landing-page-only .sectors-robotics-list{padding:0;list-style-type:none}html.landing-page-only .sectors-iot-benefit-list h3,html.landing-page-only .sectors-robotics-list li{font-weight:800;position:relative;padding-left:calc(21px + .5rem);margin-bottom:1rem;line-height:1.35;color:#2f303b}html.landing-page-only .sectors-iot-benefit-list h3 p,html.landing-page-only .sectors-robotics-list li p{color:#6c6e82;margin-bottom:3rem}html.landing-page-only .sectors-iot-benefit-list h3{font-size:1.37rem}html.landing-page-only .sectors-robotics-list li{font-size:1rem}html.landing-page-only .sectors-robotics-list li:before,html.landing-page-only .sectors-iot-benefit-list h3:before{content:"";display:inline-block;background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBvcGFjaXR5PSIwLjIiIGN4PSI5IiBjeT0iOSIgcj0iOSIgZmlsbD0iIzUyQ0Y2RSIvPgo8cGF0aCBvcGFjaXR5PSIwLjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIuNTE3OSA2LjQ1NzQ4QzEyLjgxNzUgNi43NDM0OSAxMi44Mjg1IDcuMjE4MjMgMTIuNTQyNSA3LjUxNzg2TDguNzI0MzQgMTEuNTE3OUM4LjU4MjgxIDExLjY2NjEgOC4zODY3OCAxMS43NSA4LjE4MTgyIDExLjc1QzcuOTc2ODYgMTEuNzUgNy43ODA4MiAxMS42NjYxIDcuNjM5MyAxMS41MTc5TDUuNDU3NDggOS4yMzIxNEM1LjE3MTQ4IDguOTMyNTIgNS4xODI1MiA4LjQ1Nzc3IDUuNDgyMTQgOC4xNzE3N0M1Ljc4MTc3IDcuODg1NzcgNi4yNTY1MSA3Ljg5NjgxIDYuNTQyNTIgOC4xOTY0M0w4LjE4MTgyIDkuOTEzNzlMMTEuNDU3NSA2LjQ4MjE0QzExLjc0MzUgNi4xODI1MiAxMi4yMTgyIDYuMTcxNDggMTIuNTE3OSA2LjQ1NzQ4WiIgZmlsbD0iIzUyQ0Y2RSIvPgo8L3N2Zz4K) no-repeat;background-size:cover;width:21px;height:21px;position:absolute;left:0}html.landing-page-only .sectors-section .row{max-width:1440px}html.landing-page-only .sectors-iot-features .row,html.landing-page-only .sectors-iot-supported-hardware .row{max-width:1440px}html.landing-page-only .sectors-iot-features h3,html.landing-page-only .sectors-iot-supported-hardware h3{font-weight:800;font-size:1.75rem;margin-bottom:2rem;margin-top:3.6rem;line-height:1.25;color:#2f303b}html.landing-page-only .sectors-iot-features p,html.landing-page-only .sectors-iot-supported-hardware p{color:#6c6e82;margin-bottom:2.4rem;line-height:1.7}html.landing-page-only .sectors-iot-features ul,html.landing-page-only .sectors-iot-supported-hardware ul{color:#6c6e82}html.landing-page-only .sectors-iot-features em,html.landing-page-only .sectors-iot-supported-hardware em{font-style:normal;font-weight:700}html.landing-page-only .sectors-iot-features aside,html.landing-page-only .sectors-iot-supported-hardware aside{margin-top:1.76rem;font-size:.75rem;line-height:1.5;color:#6c6e82;padding:0 3rem}html.landing-page-only .sectors-robotics-secure{background:linear-gradient(180deg, #f6f4fe 0%, #f8f8fc 100%)}html.landing-page-only .sectors-robotics-secure p{color:#6c6e82;margin-bottom:2.4rem;line-height:1.7}html.landing-page-only .sectors-robotics-secure ul{color:#6c6e82}html.landing-page-only .sectors-robotics-secure em{font-style:normal;font-weight:700}html.landing-page-only .sectors-robotics-secure .row{max-width:1440px}html.landing-page-only .sectors-img-wrapper img{max-width:100%;margin:auto;display:block}html.landing-page-only .sectors-iot-low-cost{color:#6c6e82;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6c29kaXBvZGk9Imh0dHA6Ly9zb2RpcG9kaS5zb3VyY2Vmb3JnZS5uZXQvRFREL3NvZGlwb2RpLTAuZHRkIgogICB4bWxuczppbmtzY2FwZT0iaHR0cDovL3d3dy5pbmtzY2FwZS5vcmcvbmFtZXNwYWNlcy9pbmtzY2FwZSIKICAgZmlsbD0ibm9uZSIKICAgaGVpZ2h0PSI2NTYiCiAgIHdpZHRoPSIxNDQwIgogICB2ZXJzaW9uPSIxLjEiCiAgIGlkPSJzdmc4NDciCiAgIHNvZGlwb2RpOmRvY25hbWU9ImJnLWxvd2Nvc3Quc3ZnIgogICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkyLjQgKDVkYTY4OWMzMTMsIDIwMTktMDEtMTQpIj4KICA8bWV0YWRhdGEKICAgICBpZD0ibWV0YWRhdGE4NTMiPgogICAgPHJkZjpSREY+CiAgICAgIDxjYzpXb3JrCiAgICAgICAgIHJkZjphYm91dD0iIj4KICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4KICAgICAgICA8ZGM6dHlwZQogICAgICAgICAgIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiIC8+CiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+CiAgICAgIDwvY2M6V29yaz4KICAgIDwvcmRmOlJERj4KICA8L21ldGFkYXRhPgogIDxkZWZzCiAgICAgaWQ9ImRlZnM4NTEiIC8+CiAgPHNvZGlwb2RpOm5hbWVkdmlldwogICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIKICAgICBib3JkZXJjb2xvcj0iIzY2NjY2NiIKICAgICBib3JkZXJvcGFjaXR5PSIxIgogICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiCiAgICAgZ3JpZHRvbGVyYW5jZT0iMTAiCiAgICAgZ3VpZGV0b2xlcmFuY2U9IjEwIgogICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIgogICAgIGlua3NjYXBlOnBhZ2VzaGFkb3c9IjIiCiAgICAgaW5rc2NhcGU6d2luZG93LXdpZHRoPSIxOTIwIgogICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9IjEwMjciCiAgICAgaWQ9Im5hbWVkdmlldzg0OSIKICAgICBzaG93Z3JpZD0iZmFsc2UiCiAgICAgaW5rc2NhcGU6em9vbT0iMC42MDQ5NjkxNCIKICAgICBpbmtzY2FwZTpjeD0iMjAyLjk3OTI5IgogICAgIGlua3NjYXBlOmN5PSI3NTYuODc4NDMiCiAgICAgaW5rc2NhcGU6d2luZG93LXg9Ii04IgogICAgIGlua3NjYXBlOndpbmRvdy15PSI1IgogICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjEiCiAgICAgaW5rc2NhcGU6Y3VycmVudC1sYXllcj0ic3ZnODQ3IiAvPgogIDxsaW5lYXJHcmFkaWVudAogICAgIGlkPSJhIgogICAgIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoLTEgMCAwIDEgMTQ0MCAwKSIKICAgICBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIKICAgICB4MT0iNzIwIgogICAgIHgyPSI3MjAiCiAgICAgeTE9IjAiCiAgICAgeTI9IjcwNC4wODMiPgogICAgPHN0b3AKICAgICAgIG9mZnNldD0iMCIKICAgICAgIHN0b3AtY29sb3I9IiNlOWU4ZjIiCiAgICAgICBpZD0ic3RvcDg0MCIgLz4KICAgIDxzdG9wCiAgICAgICBvZmZzZXQ9IjEiCiAgICAgICBzdG9wLWNvbG9yPSIjZjlmOGZmIgogICAgICAgaWQ9InN0b3A4NDIiIC8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cGF0aAogICAgIGQ9Ik0gMTQ0MCw0NC4xMDMgQyA4OTEuNSwxODEuMzM5IDg1MiwtNDkuMjEzIDAsNi41OTggViA2NTYgaCAxNDQwIHoiCiAgICAgaWQ9InBhdGg4NDUiCiAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICBzdHlsZT0iZmlsbDp1cmwoI2EpIgogICAgIHNvZGlwb2RpOm5vZGV0eXBlcz0iY2NjY2MiIC8+Cjwvc3ZnPgo=);background-size:cover;background-repeat:no-repeat;background-position:top;padding-top:7rem}html.landing-page-only .sectors-iot-low-cost em.pricing-em{color:#ed3b42;font-weight:normal}html.landing-page-only .sectors-iot-low-cost em{font-style:normal;font-weight:700}html.landing-page-only .sectors-iot-supported-hardware{background:linear-gradient(90deg, #dad9e5 -0.01%, #e1e1ec 12.49%, #e5e5f0 53.64%, #e2e3ed 86.97%, #dadae6 99.99%)}html.landing-page-only .sectors-bg-alternate-white{background-color:#f6f4fe}html.landing-page-only .sectors-bg-alternate{background-color:#f8f8fc}html.landing-page-only .sectors-bg-alternate-fffaff{background-color:#fffaff}html.landing-page-only .sectors-section-enabler{background:linear-gradient(180deg, #f2f1f8 0%, #f2f1f8 0.01%, #f8f8fc 100%);color:#6c6e82;padding-bottom:7rem}html.landing-page-only .sectors-section-enabler em{font-style:normal;font-weight:700}@keyframes bounce-in{0%{transform:scale(1, 1)}10%{transform:scale(1.1, 0.9)}30%{transform:scale(0.9, 1.1)}50%{transform:scale(1, 1)}57%{transform:scale(1, 1)}64%{transform:scale(1, 1)}100%{transform:scale(1, 1)}}html.landing-page-only .popup-bounce-show{animation-name:bounce-in;animation-timing-function:ease;animation-duration:.75s}html.landing-page-only .sectors-popup{background-color:#fafaff;position:absolute;z-index:9;width:90vw;top:115px;left:5vw;padding:1.5rem;box-shadow:0px 4px 80px rgba(41,41,73,.2);border-radius:16px;display:none}html.landing-page-only .sectors-popup-link{display:flex;text-decoration:none;cursor:pointer;margin-bottom:1rem;position:relative}html.landing-page-only .sectors-popup-link:last-child{margin-bottom:0}html.landing-page-only .sectors-popup-link h5{color:#2f303b;font-size:1rem;font-weight:700;margin:5px 0;transition:color .5s}html.landing-page-only .sectors-popup-link p{margin:0;color:#6c6e82;font-size:.75rem}html.landing-page-only .sectors-popup-link:hover{text-decoration:none}html.landing-page-only .sectors-popup-link:hover h5{color:#ed3b42}html.landing-page-only .sectors-popup-link:hover .sectors-popup-arrow-wrapper{opacity:1}html.landing-page-only .sectors-popup-texts{padding-left:1rem}html.landing-page-only .sectors-popup-icon-wrapper{width:50px}html.landing-page-only .sectors-popup-icon-wrapper img{max-width:100%}html.landing-page-only .sectors-popup-arrow-wrapper{position:absolute;right:0;top:50%;transform:translateY(-50%);transition:opacity .5s;opacity:0}html.landing-page-only .sectors-zoomable-img-wrapper{position:relative}html.landing-page-only .sectors-zoomable-img-wrapper .zoom-in-btn{cursor:pointer;outline:none;border:none;display:block;width:32px;height:32px;border-radius:5px;position:absolute;bottom:1rem;right:1rem;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IjI0IC8gYmFzaWMgLyB6b29tLWluIj4KPHBhdGggaWQ9Imljb24iIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMS42Njc5NyA4LjMzMzM0QzEuNjY3OTcgMTIuMDE1MiA0LjY1Mjc0IDE1IDguMzM0NjMgMTVDOS44NzUyMyAxNSAxMS4yOTM4IDE0LjQ3NzQgMTIuNDIyNyAxMy41OTk5TDE2LjkxMiAxOC4wODkzTDE4LjA5MDYgMTYuOTEwN0wxMy42MDEyIDEyLjQyMTRDMTQuNDc4NyAxMS4yOTI1IDE1LjAwMTMgOS44NzM5MyAxNS4wMDEzIDguMzMzMzRDMTUuMDAxMyA0LjY1MTQ0IDEyLjAxNjUgMS42NjY2NyA4LjMzNDYzIDEuNjY2NjdDNC42NTI3NCAxLjY2NjY3IDEuNjY3OTcgNC42NTE0NCAxLjY2Nzk3IDguMzMzMzRaTTguMzM0NjMgMTMuMzMzM0MxMS4wOTYgMTMuMzMzMyAxMy4zMzQ2IDExLjA5NDggMTMuMzM0NiA4LjMzMzM0QzEzLjMzNDYgNS41NzE5MSAxMS4wOTYgMy4zMzMzNCA4LjMzNDYzIDMuMzMzMzRDNS41NzMyIDMuMzMzMzQgMy4zMzQ2MyA1LjU3MTkxIDMuMzM0NjMgOC4zMzMzNEMzLjMzNDYzIDExLjA5NDggNS41NzMyIDEzLjMzMzMgOC4zMzQ2MyAxMy4zMzMzWk03LjUwMTM1IDUuMDAwMDFWNy41MDAwMUg1LjAwMTM1VjkuMTY2NjdINy41MDEzNVYxMS42NjY3SDkuMTY4MDFWOS4xNjY2N0gxMS42NjhWNy41MDAwMUg5LjE2ODAxVjUuMDAwMDFINy41MDEzNVoiIGZpbGw9IndoaXRlIi8+CjwvZz4KPC9zdmc+Cg==),linear-gradient(to right, #6c6e82, #6c6e82);background-position:50% 50%;background-repeat:no-repeat;transition:transform .35s}html.landing-page-only .sectors-zoomable-img-wrapper:hover .zoom-in-btn{transform:scale(1.2)}html.landing-page-only .sectors-text-carousel{font-weight:700;display:inline-block;padding:0 .35rem;background-color:#e1e1ec;border-radius:4px;transition:opacity .35s}html.landing-page-only .sectors-text-carousel.hide{opacity:0}html.landing-page-only .sectors-text-carousel.show{opacity:1}html.landing-page-only .sectors-enabler-buttons{text-align:center;margin-top:2rem}html.landing-page-only .sectors-enabler-buttons button{background:rgba(0,0,0,0);border:none;border-radius:10px;font-size:1rem;font-weight:700;color:#6c6e82;padding:1rem 1.75rem}html.landing-page-only .sectors-enabler-buttons button.active{background-color:#f9f9fd;color:#ed3b42;box-shadow:0px 10px 40px #d7d9e7}html.landing-page-only .sectors-robotics-easy{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSIxMDg5IiB2aWV3Qm94PSIwIDAgMTQ0MCAxMDg5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KPHBhdGggZD0iTTAgMEgxNDQwVjEwNTZDMTQ0MCAxMDU2IDEwMDEuNDYgMTA4OC41IDcyMCAxMDg4LjVDNDM4LjUzNiAxMDg4LjUgMCAxMDU2IDAgMTA1NlYwWiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyKSIvPg0KPGRlZnM+DQo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXIiIHgxPSI3MjAiIHkxPSIwIiB4Mj0iNzIwIiB5Mj0iMTA4OC41IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+DQo8c3RvcCBzdG9wLWNvbG9yPSIjRjJGMUY4Ii8+DQo8c3RvcCBvZmZzZXQ9IjAuMDAwMSIgc3RvcC1jb2xvcj0iI0YyRjFGOCIvPg0KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRjhGOEZDIi8+DQo8L2xpbmVhckdyYWRpZW50Pg0KPC9kZWZzPg0KPC9zdmc+DQo=);background-repeat:no-repeat;background-size:cover;padding-bottom:5rem}html.landing-page-only .sectors-robotics-easy .row{max-width:800px}html.landing-page-only .sectors-robotics-easy h2{color:#2f303b;font-weight:800;font-size:2.625rem;text-align:center;margin:4rem auto;padding:0 1rem}html.landing-page-only .sectors-step-box{padding:1rem;background-color:#f9f9fd;box-shadow:0px 10px 50px #edeef2;border-radius:10px;margin:1rem 1.5rem;color:#6c6e82}html.landing-page-only .sectors-step-box-header{display:flex}html.landing-page-only .sectors-step-box-number{color:#6c6e82;padding:.3rem .6rem;font-weight:700;font-size:1rem;background-color:#f2f1f7;border-radius:5px;margin-right:1rem;width:32px;height:32px;text-align:center}html.landing-page-only .sectors-step-box-title{font-size:1.375rem;font-weight:800;color:#444452}html.landing-page-only .sectors-step-box-content{font-size:1rem}html.landing-page-only .sectors-step-box-content p{margin-top:1rem}html.landing-page-only .sectors-code-block{display:block;width:100%;white-space:nowrap;overflow-x:auto;background-color:#292d3e;border-radius:5px;padding:1rem;font-family:Consolas,monospace;color:#c5c5c5}html.landing-page-only .sectors-code-block em{font-style:normal}html.landing-page-only .sectors-code-block em.blue{color:#7497db}html.landing-page-only .sectors-code-block em.gold{color:#feca72}html.landing-page-only em.code-em,html.landing-page-only .sectors-section em.code-em{font-style:normal;font-weight:normal;display:inline-block;padding:0 .35rem;background-color:#e1e1ec;border-radius:4px}html.landing-page-only .sectors-robotics-docker{color:#6c6e82;background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NzYiIHZpZXdCb3g9IjAgMCAxNDQwIDc3NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0wIDBMMTQ0MCA1Ni42MjYzVjc3NkgwVjBaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjcyMCIgeTE9IjAiIHgyPSI3MjAiIHkyPSI3NzYiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4NCjxzdG9wIHN0b3AtY29sb3I9IiNGMkYxRjgiLz4NCjxzdG9wIG9mZnNldD0iMC4wMDAxIiBzdG9wLWNvbG9yPSIjRjJGMUY4Ii8+DQo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGOEY4RkMiLz4NCjwvbGluZWFyR3JhZGllbnQ+DQo8L2RlZnM+DQo8L3N2Zz4NCg==) no-repeat top;background-size:cover}html.landing-page-only .sectors-robotics-docker .sectors-section-h2{margin-top:5rem;margin-bottom:3rem}html.landing-page-only .sectors-robotics-interested{padding:5rem 0}html.landing-page-only .sectors-robotics-interested .btn p{color:#fff}html.landing-page-only em.thin{font-weight:normal !important}html.landing-page-only .sectors-remote-security{background:linear-gradient(180deg, #f2f1f8 0%, #f2f1f8 0.01%, #f8f8fc 100%)}html.landing-page-only .btn.btn-primary.sectors-btn-blank{background-color:rgba(0,0,0,0);color:#ed3b42}html.landing-page-only .sectors-horizontal-rule{border-top:1px dashed #cccedc;height:20px;margin:1rem 0}html.landing-page-only .sectors-section em,html.landing-page-only .sectors-remote-security em{font-weight:700;font-style:normal}@media screen and (min-width: 576px){html.landing-page-only .sectors-popup{width:425px;top:80px;left:100px}}@media(min-width: 768px){html.landing-page-only .sectors-section .row{margin:auto}html.landing-page-only .sectors-header-section .row,html.landing-page-only .sectors-robotics-easy .row{margin:auto}html.landing-page-only .sectors-header-section .row{max-width:1440px}html.landing-page-only .sectors-header-section h1{white-space:normal;font-size:3.53rem}html.landing-page-only .sectors-header-section .sectors-slogan-text{font-size:1.38rem;line-height:1.5}html.landing-page-only .sectors-header-section .sectors-header-image{min-height:580px;max-height:600px}html.landing-page-only .sectors-iot-benefits,html.landing-page-only .sectors-robotics-virtual-lan{padding-bottom:7rem}html.landing-page-only .sectors-iot-benefits .row,html.landing-page-only .sectors-robotics-virtual-lan .row{max-width:1440px;margin:auto}html.landing-page-only .sectors-iot-benefits .sectors-section-h2,html.landing-page-only .sectors-robotics-virtual-lan .sectors-section-h2{max-width:480px;margin-bottom:3.5rem}html.landing-page-only .sectors-iot-benefits .sectors-iot-benefit-list p,html.landing-page-only .sectors-robotics-virtual-lan .sectors-iot-benefit-list p{max-width:480px;line-height:1.6;margin-bottom:2.88rem}html.landing-page-only .sectors-iot-benefits .sectors-iot-benefit-list h3,html.landing-page-only .sectors-robotics-virtual-lan .sectors-iot-benefit-list h3{margin-bottom:.65rem}html.landing-page-only .sectors-iot-features{background:linear-gradient(180deg, #f6f4fe 0%, #f8f8fc 100%)}html.landing-page-only .sectors-iot-features .row{margin:2rem auto}html.landing-page-only .sectors-iot-features p{max-width:80%}html.landing-page-only .sectors-iot-low-cost .row{max-width:1440px;margin:auto}html.landing-page-only .sectors-vertical-centered-md{display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%}html.landing-page-only .sectors-step-box-content{padding-left:48px}html.landing-page-only .sectors-enabler-paragraphs p,html.landing-page-only .sectors-enabler-paragraphs ul{max-width:70%;line-height:1.75}html.landing-page-only .sectors-robotics-easy{background-image:url(/assets/images/easy-to-config-bricks-left-a20631fbfb5e66c7c5295ae6dc7a9309.svg),url(/assets/images/easy-to-config-bricks-right-0c070656d5cbc9c59d6510b3675b852d.svg),url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSIxMDg5IiB2aWV3Qm94PSIwIDAgMTQ0MCAxMDg5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KPHBhdGggZD0iTTAgMEgxNDQwVjEwNTZDMTQ0MCAxMDU2IDEwMDEuNDYgMTA4OC41IDcyMCAxMDg4LjVDNDM4LjUzNiAxMDg4LjUgMCAxMDU2IDAgMTA1NlYwWiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyKSIvPg0KPGRlZnM+DQo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXIiIHgxPSI3MjAiIHkxPSIwIiB4Mj0iNzIwIiB5Mj0iMTA4OC41IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+DQo8c3RvcCBzdG9wLWNvbG9yPSIjRjJGMUY4Ii8+DQo8c3RvcCBvZmZzZXQ9IjAuMDAwMSIgc3RvcC1jb2xvcj0iI0YyRjFGOCIvPg0KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRjhGOEZDIi8+DQo8L2xpbmVhckdyYWRpZW50Pg0KPC9kZWZzPg0KPC9zdmc+DQo=);background-repeat:no-repeat;background-position:0% 95%,100% 95%,50% 100%;background-size:auto,auto,cover;padding-bottom:15rem}html.landing-page-only .sectors-easy-mobile-image{display:none}html.landing-page-only .sectors-robotics-secure .sectors-img-wrapper{padding-top:5rem}html.landing-page-only .sectors-robotics-docker{padding:10rem 0}html.landing-page-only .sectors-robotics-docker .sectors-section-h2{margin-top:3rem;margin-bottom:5rem}html.landing-page-only .sectors-remote-easy-setup p,html.landing-page-only .sectors-remote-security p{max-width:80%;line-height:1.75}}html.landing-page-only .gist table th,html.landing-page-only .gist table td,html.landing-page-only .gist table tr{border:none}html.landing-page-only .gist .gist-meta{display:none}html.landing-page-only body{background-color:#f6f4fe;overflow-x:hidden !important}@media(max-width: 991.98px){html.landing-page-only body{overflow-x:hidden !important}}@media screen and (max-width: 1156px){html.landing-page-only .text-nowrap{white-space:normal !important}}html.landing-page-only .custom-control-label::before{background:#cccedc}html.landing-page-only .custom-switch .custom-control-label::after{background:#fff}html.landing-page-only .main.navbar{padding-top:2rem}html.landing-page-only .container.hero{background:rgba(0,0,0,0)}html.landing-page-only .container-canvas{height:29rem;width:100%}html.landing-page-only .container-canvas canvas{height:100%;width:100%;pointer-events:none;transform:translate(17%, 0)}@media(max-width: 991.98px){html.landing-page-only .container-canvas canvas{transform:translate(8%, 0)}}html.landing-page-only .hero-background{background:linear-gradient(#f6f4fe 0%, #e5e3ef 100%);position:relative}html.landing-page-only .hero-background:after{content:"";position:absolute;display:block;width:calc(100% - 15px);background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE4NyIgaGVpZ2h0PSIxOTMiIHZpZXdCb3g9IjAgMCAxMTg3IDE5MyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjBfaSkiPgo8cGF0aCBkPSJNMzYyLjQxOCAxNEg4MTkuMjY4QzgyNy41NTkgMTQgODM1LjcwOCAxNC40OTI5IDg0OC4zMTYgMjEuMTA5OUw5NzcuMzI4IDk3LjQzNzJDOTg1LjcwMyAxMDIuOTAzIDk4OS43MjUgMTA4Ljg1MyA5ODkuOTg2IDExNC40MjdDOTkwLjI0NSAxMTkuOTQ0IDk4Ni44NDcgMTI1Ljk1NSA5NzguMzQxIDEzMS42NDRDOTYxLjI4NSAxNDMuMDQ5IDkyNS4yNzIgMTUyIDg2Ni44MDQgMTUySDMyMy4zODhDMjkxLjQ0MSAxNTIgMjY2LjQ4OSAxNDkuOTAxIDI0Ny42MTIgMTQ2LjM5N0MyMjguNjkyIDE0Mi44ODYgMjE2LjA0NyAxMzcuOTk1IDIwOC41NjQgMTMyLjUzOEMyMDEuMTU5IDEyNy4xMzggMTk5LjA0OSAxMjEuNDE2IDIwMC4zNzMgMTE1Ljg4NUMyMDEuNzYxIDExMC4wODEgMjA3LjA2IDEwMy44MjEgMjE2LjA4MiA5Ny44ODk2QzIxNi4wODYgOTcuODg3IDIxNi4wOSA5Ny44ODQ0IDIxNi4wOTQgOTcuODgxN0wzMzguNDAyIDIwLjA0MzJDMzQ2LjEyMSAxNS45OTc2IDM1My4yOTQgMTQgMzYyLjQxOCAxNFoiIHN0cm9rZT0iI0UxREZFQyIgc3Ryb2tlLXdpZHRoPSI0Ii8+CjwvZz4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjFfaSkiPgo8cGF0aCBkPSJNMzg4LjE0OCAySDgxNS40MzZDODE5LjUwNSAyIDg0My44NTUgNC40NzA5NCA4NzQuNyA5LjU1ODhDOTA1LjQ2OSAxNC42MzQzIDk0Mi40NTcgMjIuMjc1MiA5NzEuODQyIDMyLjU0NzhMMTE1Ni4wOSAxMTIuMzI1QzExNTYuMDkgMTEyLjMyNiAxMTU2LjA5IDExMi4zMjggMTE1Ni4xIDExMi4zM0MxMTcyLjY3IDExOS43NzEgMTE4MS44NyAxMjguMzUyIDExODQuMzIgMTM2LjYxNkMxMTg2LjY3IDE0NC41NTYgMTE4Mi45OSAxNTMuMTQ3IDExNzEuMjQgMTYxLjM2QzExNTkuNDkgMTY5LjU2NyAxMTQwLjEzIDE3Ni45OTggMTExMi41OSAxODIuMzY1QzEwODUuMDkgMTg3LjcyNSAxMDQ5LjU3IDE5MSAxMDA1LjY0IDE5MUgxODguMjk3QzE0MC4yMDYgMTkxIDEwMi4zOTcgMTg3Ljk0MiA3My43MzggMTgyLjg4MkM0NS4wMzEyIDE3Ny44MTQgMjUuNjgzOCAxNzAuNzY4IDE0LjM2MzcgMTYyLjkxOUM4LjcxNjc5IDE1OS4wMDQgNS4xODM4NyAxNTQuOTY5IDMuNDA5MjEgMTUwLjk5OEMxLjY1NzA5IDE0Ny4wNzYgMS41NTY5OSAxNDMuMDg2IDMuMDA3MzggMTM5LjA0MkM1Ljk2ODIxIDEzMC43ODggMTUuNDc5NiAxMjIuMTI3IDMxLjI2NTYgMTE0LjMxMkwyMTUuMTk0IDMzLjI3NThDMjQ5LjIwMyAxOS42NTk0IDI5MC4xOTQgMTEuODMxNCAzMjMuODc2IDcuNDExOThDMzU3LjU2IDIuOTkyMzYgMzgzLjc4MiAyIDM4OC4xNDggMloiIHN0cm9rZT0iI0UxREZFQyIgc3Ryb2tlLXdpZHRoPSI0Ii8+CjwvZz4KPGRlZnM+CjxmaWx0ZXIgaWQ9ImZpbHRlcjBfaSIgeD0iMTk4IiB5PSIxMiIgd2lkdGg9Ijc5NCIgaGVpZ2h0PSIxNDQiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJCYWNrZ3JvdW5kSW1hZ2VGaXgiIHJlc3VsdD0ic2hhcGUiLz4KPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUFscGhhIiB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMTI3IDAiIHJlc3VsdD0iaGFyZEFscGhhIi8+CjxmZU9mZnNldCBkeT0iMiIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIyIi8+CjxmZUNvbXBvc2l0ZSBpbjI9ImhhcmRBbHBoYSIgb3BlcmF0b3I9ImFyaXRobWV0aWMiIGsyPSItMSIgazM9IjEiLz4KPGZlQ29sb3JNYXRyaXggdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAuMDUgMCIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluMj0ic2hhcGUiIHJlc3VsdD0iZWZmZWN0MV9pbm5lclNoYWRvdyIvPgo8L2ZpbHRlcj4KPGZpbHRlciBpZD0iZmlsdGVyMV9pIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTE4NyIgaGVpZ2h0PSIxOTUiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJCYWNrZ3JvdW5kSW1hZ2VGaXgiIHJlc3VsdD0ic2hhcGUiLz4KPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUFscGhhIiB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMTI3IDAiIHJlc3VsdD0iaGFyZEFscGhhIi8+CjxmZU9mZnNldCBkeT0iMiIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIyIi8+CjxmZUNvbXBvc2l0ZSBpbjI9ImhhcmRBbHBoYSIgb3BlcmF0b3I9ImFyaXRobWV0aWMiIGsyPSItMSIgazM9IjEiLz4KPGZlQ29sb3JNYXRyaXggdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAuMDUgMCIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluMj0ic2hhcGUiIHJlc3VsdD0iZWZmZWN0MV9pbm5lclNoYWRvdyIvPgo8L2ZpbHRlcj4KPC9kZWZzPgo8L3N2Zz4K);background-repeat:no-repeat;background-size:65vw;background-position:112% top;min-height:13.5rem;bottom:-45.5%;z-index:5}@media screen and (min-width: 1999px){html.landing-page-only .hero-background:after{background-position:43vw top;background-size:936px}}@media screen and (min-width: 1800px)and (max-width: 1999px){html.landing-page-only .hero-background:after{background-position:42vw top;background-size:936px}}@media screen and (min-width: 1440px)and (max-width: 1799px){html.landing-page-only .hero-background:after{background-size:936px;background-position:40vw top}}@media screen and (min-width: 1400px)and (max-width: 1439px){html.landing-page-only .hero-background:after{background-position:40vw top}}@media screen and (min-width: 1350px)and (max-width: 1399px){html.landing-page-only .hero-background:after{background-position:40vw top}}@media screen and (min-width: 1300px)and (max-width: 1349px){html.landing-page-only .hero-background:after{background-position:40vw top}}@media screen and (min-width: 1250px)and (max-width: 1299px){html.landing-page-only .hero-background:after{background-position:40vw top}}@media screen and (min-width: 1200px)and (max-width: 1249px){html.landing-page-only .hero-background:after{background-position:40vw top}}@media screen and (min-width: 1155px)and (max-width: 1199px){html.landing-page-only .hero-background:after{background-position:43vw top}}@media screen and (min-width: 1150px)and (max-width: 1154px){html.landing-page-only .hero-background:after{background-position:43.5vw top}}@media screen and (min-width: 1100px)and (max-width: 1149px){html.landing-page-only .hero-background:after{background-position:39.5vw top}}@media screen and (min-width: 1050px)and (max-width: 1099px){html.landing-page-only .hero-background:after{background-position:40vw top}}@media screen and (min-width: 1000px)and (max-width: 1049px){html.landing-page-only .hero-background:after{background-position:43vw top}}@media screen and (min-width: 991px)and (max-width: 999px){html.landing-page-only .hero-background:after{background-position:44vw top}}@media screen and (min-width: 900px)and (max-width: 991px){html.landing-page-only .hero-background:after{background-position:33vw top}}@media screen and (min-width: 850px)and (max-width: 899px){html.landing-page-only .hero-background:after{background-position:34vw top}}@media screen and (min-width: 800px)and (max-width: 849px){html.landing-page-only .hero-background:after{background-position:35vw top}}@media screen and (min-width: 780px)and (max-width: 799px){html.landing-page-only .hero-background:after{background-position:36.5vw top}}@media screen and (min-width: 768px)and (max-width: 780px){html.landing-page-only .hero-background:after{background-position:36.5vw 10vw}}@media screen and (max-width: 767px){html.landing-page-only .hero-background:after{width:calc(100% - 15px);background-size:130%;background-position:center top;bottom:-32%;left:-1.5%}}@media screen and (max-width: 550px){html.landing-page-only .hero-background:after{width:100%;background-size:150%;background-position:center top;bottom:-29%;left:-1.5%}}@media screen and (max-width: 320px){html.landing-page-only .hero-background:after{bottom:-28%}}html.landing-page-only .hero-background:before{content:"";position:absolute;display:block;width:100%;height:auto;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjA3IiBoZWlnaHQ9IjE3MCIgdmlld0JveD0iMCAwIDYwNyAxNzAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2QpIj4KPHBhdGggZD0iTTQ1LjI3MjIgMTA3LjcyNEM1My4xNDA4IDEwMC42IDYxLjc0NDYgOTMuODk1MSA3Mi4xMjU3IDkxLjY4MjhDOTEuODA5MiA4Ny40ODgxIDExNy45OSA5MC4wMDA0IDE0OS42MTcgOTAuMDAwNEw0NTcuNjE3IDkwLjAwMDNDNDkyLjkzNyA5MC4wMDAzIDUxNy4wMDQgODcuMTQ4MiA1MzUuMTkzIDkxLjQxNTdDNTQzLjc5NCA5My40MzM3IDU1MS4wNSA5OC44MzA3IDU1Ny44NjcgMTA0LjQ1MUw1ODIuODc1IDEyNS4wNjdDNjAwLjExNyAxMzguNSA1NTAuNjE3IDE1MCA1MDkuNjE3IDE1MEg5My42MTc0QzQ3LjkyMzMgMTUwIDguNTA2NzggMTM1Ljk5OSAyNC4zNjYyIDEyNi4zNUMyNC45Mjg2IDEyNi4wMDggMjUuNTA0NSAxMjUuNjIgMjUuOTkyNSAxMjUuMTc4TDQ1LjI3MjIgMTA3LjcyNFoiIGZpbGw9IiNCM0I1QzQiLz4KPC9nPgo8cGF0aCBkPSJNMTguMTE3MiA4OS41MDAyQzQzLjM1MzQgOTEuMTE3OSA2OS40MjEyIDg1LjA2NjMgOTQuNjk5NCA4NC4zNTk3QzExMC40NjMgODMuOTE5MSAxMjguODY4IDg1LjAwMDQgMTQ5LjYxOCA4NS4wMDA0TDQ1Ny42MTggODUuMDAwM0M0NzkuMDI3IDg1LjAwMDMgNDk2LjMwMiA4My45NTI0IDUxMC42MzkgODQuMDc3NEM1MzUuNDg0IDg0LjI5NCA1NjAuNzUxIDkwLjE5OTQgNTg1LjU1IDg4LjY4NzJMNTg4LjYxNyA4OC41MDAyTDU4OS4xMTcgMTI0LjVDNTg5LjExNyAxMzUgNTUwLjYxOCAxNDUgNTA5LjYxOCAxNDVIOTMuNjE3N0M0Ny4xMTczIDE0NSAxOC4xMTcyIDEzMiAxOC4xMTcyIDEyNC41TDE4LjExNzIgODkuNTAwMloiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcikiLz4KPHBhdGggZD0iTTQ3Ljc0NzcgNjEuNDY5NkM1My45ODE0IDU2LjQ1NTYgNjAuNTYwNiA1MS42NTA3IDY4LjI3ODggNDkuNTQ2NEM4OC4zNDUzIDQ0LjA3NTUgMTE1Ljg4MyA0Ni45MzM2IDE0OS42MTcgNDYuOTMzNkw0NTcuNjE3IDQ2LjkzMzVDNDk0LjY0MyA0Ni45MzM1IDUxOS4zMDMgNDMuNzk5MyA1MzcuNzg4IDQ5LjAxODJDNTQ0LjU3OSA1MC45MzU3IDU1MC40NCA1NS4wNzc5IDU1Ni4wNTkgNTkuMzQ2OUw1ODUuODc1IDgxLjk5OThDNTk5LjYxNyA5NS43NDIgNTYyLjYxNyAxMDYuOTM0IDUwOS42MTggMTA2LjkzNEg5My42MTc2QzMzLjYxNjggMTA2LjkzNCA4LjYxNzE5IDk1LjQxNzUgMjEuMjU3OCA4Mi43NzY1TDQ3Ljc0NzcgNjEuNDY5NloiIGZpbGw9InVybCgjcGFpbnQxX2xpbmVhcikiLz4KPHBhdGggZD0iTTI5LjU2NjUgNDguNDUzMUM0Ny43NDE5IDQ2Ljc5MDkgNjUuNTAzMyA0MC41OTc5IDgzLjY3NzQgMzguOTIxM0MxMDEuNjU1IDM3LjI2MjggMTIzLjgyNSAzOC45MzM2IDE0OS42MTggMzguOTMzNkw0NTcuNjE4IDM4LjkzMzVDNDg1LjAzMyAzOC45MzM1IDUwNS42NyAzNy4yMTUxIDUyMi4wMzkgMzguNDQxOEM1MzkuNTQzIDM5Ljc1MzYgNTU2LjYwNSA0NS44MzU5IDU3NC4wNzEgNDcuNTg5OEw1ODguMTE3IDQ5LjAwMDJWNzguMDAwMkM1ODguMTE3IDkxLjAwMDIgNTU4LjExNyA5OC45MzM2IDUwOS42MTggOTguOTMzNkg5My42MTc3QzMxLjExNzIgOTguOTMzNiAxOC4xMTYyIDg5LjAwMDIgMTguMTE2MiA3Ny4wMDAyTDE4LjExNzIgNDkuNTAwMkwyOS41NjY1IDQ4LjQ1MzFaIiBmaWxsPSJ1cmwoI3BhaW50Ml9saW5lYXIpIi8+CjxwYXRoIGQ9Ik03Ni4xODU2IDE2LjExOTdDOTYuNjE3MiA1LjAwMDI0IDEwOS4xMTcgMC4wMDAzMzU2OTMgMTQ5LjYxNyAwLjAwMDMzNTY5NUw0NTcuNjE3IDAuMDAwMjQ0MTQxQzUwMS42MTcgMC4wMDAyNDQxNDEgNTExLjE5IDUuNDU1OTEgNTMwLjY1MiAxNS44ODJMNTg0LjkxIDQ0Ljk0ODVDNjA2LjExNyA1OC41MDAzIDUxNy45MzggNjAuMDAwMyA1MDkuNjE3IDYwLjAwMDNIOTMuNjE3MkM4NS4zMTI5IDYwLjAwMDMgLTMuMzgyODggNTguMDAwMyAyMi44MjYgNDQuOTYyN0w3Ni4xODU2IDE2LjExOTdaIiBmaWxsPSJ1cmwoI3BhaW50M19saW5lYXIpIi8+CjxkZWZzPgo8ZmlsdGVyIGlkPSJmaWx0ZXIwX2QiIHg9IjAuNzkyOTY5IiB5PSI2OS4wNjciIHdpZHRoPSI2MDUuNjA2IiBoZWlnaHQ9IjEwMC45MzMiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz4KPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUFscGhhIiB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMTI3IDAiLz4KPGZlT2Zmc2V0Lz4KPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMTAiLz4KPGZlQ29sb3JNYXRyaXggdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMC43NjEwMDcgMCAwIDAgMCAwLjc2NzIxMiAwIDAgMCAwIDAuODQxNjY3IDAgMCAwIDEgMCIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluMj0iQmFja2dyb3VuZEltYWdlRml4IiByZXN1bHQ9ImVmZmVjdDFfZHJvcFNoYWRvdyIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluPSJTb3VyY2VHcmFwaGljIiBpbjI9ImVmZmVjdDFfZHJvcFNoYWRvdyIgcmVzdWx0PSJzaGFwZSIvPgo8L2ZpbHRlcj4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyIiB4MT0iMTguMDc5IiB5MT0iMTE3LjA2NyIgeDI9IjU4OS4wNzgiIHkyPSIxMTcuMDY3IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNEQUQ5RTUiLz4KPHN0b3Agb2Zmc2V0PSIwLjEyNSIgc3RvcC1jb2xvcj0iI0UxRTFFQyIvPgo8c3RvcCBvZmZzZXQ9IjAuNTM2NDU4IiBzdG9wLWNvbG9yPSIjRTVFNUYwIi8+CjxzdG9wIG9mZnNldD0iMC44Njk3OTIiIHN0b3AtY29sb3I9IiNFMkUzRUQiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjREFEQUU2Ii8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQxX2xpbmVhciIgeDE9IjE4LjA3ODEiIHkxPSI5MC4wMDAxIiB4Mj0iNTg5LjA3OCIgeTI9IjkwLjAwMDEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0ZGQUJBQiIvPgo8c3RvcCBvZmZzZXQ9IjAuMDc4MTI1IiBzdG9wLWNvbG9yPSIjRkU3RDhDIi8+CjxzdG9wIG9mZnNldD0iMC40ODI2MjkiIHN0b3AtY29sb3I9IiNGRjY2NjgiLz4KPHN0b3Agb2Zmc2V0PSIwLjg0Mzc1IiBzdG9wLWNvbG9yPSIjRkY4ODkxIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0ZGQ0VDRSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50Ml9saW5lYXIiIHgxPSIxOC4wNzgxIiB5MT0iNzEuMDAwMyIgeDI9IjU4OC4wNzgiIHkyPSI3MS4wMDAzIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNEQUQ5RTUiLz4KPHN0b3Agb2Zmc2V0PSIwLjEyNSIgc3RvcC1jb2xvcj0iI0UxRTFFQyIvPgo8c3RvcCBvZmZzZXQ9IjAuNTM2NDU4IiBzdG9wLWNvbG9yPSIjRTVFNUYwIi8+CjxzdG9wIG9mZnNldD0iMC44Njk3OTIiIHN0b3AtY29sb3I9IiNFMkUzRUQiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjREFEQUU2Ii8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQzX2xpbmVhciIgeDE9IjQ4IiB5MT0iMzAiIHgyPSI1NTgiIHkyPSIzMCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRUVFQ0Y3Ii8+CjxzdG9wIG9mZnNldD0iMC41MDUyMDgiIHN0b3AtY29sb3I9IiNGOEY4RkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRjFFRkY5Ii8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==);background-repeat:no-repeat;background-size:37%;background-position:52.5vw top;min-height:13.5rem;bottom:-40%;z-index:7}@media screen and (min-width: 2000px){html.landing-page-only .hero-background:before{background-position:52vw top;background-size:532.8px}}@media screen and (min-width: 1800px)and (max-width: 1999px){html.landing-page-only .hero-background:before{background-position:52.5vw top;background-size:532.8px}}@media screen and (min-width: 1440px)and (max-width: 1799px){html.landing-page-only .hero-background:before{background-position:52vw top;background-size:532.8px}}@media screen and (min-width: 1400px)and (max-width: 1439px){html.landing-page-only .hero-background:before{background-position:53.5vw top}}@media screen and (min-width: 1350px)and (max-width: 1399px){html.landing-page-only .hero-background:before{background-position:54vw top}}@media screen and (min-width: 1300px)and (max-width: 1349px){html.landing-page-only .hero-background:before{background-position:54.5vw top}}@media screen and (min-width: 1250px)and (max-width: 1299px){html.landing-page-only .hero-background:before{background-position:55.5vw top}}@media screen and (min-width: 1200px)and (max-width: 1249px){html.landing-page-only .hero-background:before{background-position:56vw top}}@media screen and (min-width: 1155px)and (max-width: 1199px){html.landing-page-only .hero-background:before{background-position:58vw top}}@media screen and (min-width: 1150px)and (max-width: 1154px){html.landing-page-only .hero-background:before{background-position:57.5vw top}}@media screen and (min-width: 1100px)and (max-width: 1149px){html.landing-page-only .hero-background:before{background-position:54vw top}}@media screen and (min-width: 1050px)and (max-width: 1099px){html.landing-page-only .hero-background:before{background-position:56vw top}}@media screen and (min-width: 1000px)and (max-width: 1049px){html.landing-page-only .hero-background:before{background-position:57vw top}}@media screen and (min-width: 991px)and (max-width: 999px){html.landing-page-only .hero-background:before{background-position:58vw top}}@media screen and (min-width: 900px)and (max-width: 991px){html.landing-page-only .hero-background:before{background-position:48vw top}}@media screen and (min-width: 850px)and (max-width: 899px){html.landing-page-only .hero-background:before{background-position:49vw top}}@media screen and (min-width: 800px)and (max-width: 849px){html.landing-page-only .hero-background:before{background-position:50vw top}}@media screen and (min-width: 780px)and (max-width: 799px){html.landing-page-only .hero-background:before{background-position:52vw top}}@media screen and (min-width: 768px)and (max-width: 780px){html.landing-page-only .hero-background:before{background-position:52vw 10vw}}@media screen and (max-width: 767px){html.landing-page-only .hero-background:before{width:100%;background-size:70%;background-position:center top;bottom:-27.5%;left:-0.5%}}@media screen and (max-width: 650px){html.landing-page-only .hero-background:before{width:100%;background-size:80%;background-position:center top;bottom:-27.5%;left:-0.5%}}@media screen and (max-width: 550px){html.landing-page-only .hero-background:before{width:100%;background-size:90%;background-position:center top;bottom:-25.5%;left:-0.5%}}@media screen and (max-width: 320px){html.landing-page-only .hero-background:before{bottom:-25%}}@media(max-width: 991.98px){html.landing-page-only .hero-background h1{font-size:42px}}@media(max-width: 991.98px){html.landing-page-only .hero-background h5{font-size:16px}}html.landing-page-only .photo{border-radius:9px;box-shadow:0px 10px 40px #d7d9e7;-moz-box-shadow:0px 10px 40px #d7d9e7;width:56px;height:56px}html.landing-page-only .contact-background{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI2NTYiIHZpZXdCb3g9IjAgMCAxNDQwIDY1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMTM0LjEwM0M1NDguNSAyNzEuMzM5IDU4OCAtNDkuMjEzMSAxNDQwIDYuNTk3NThWNjU2SDBWMTM0LjEwM1oiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcikiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjcyMCIgeTE9IjAiIHgyPSI3MjAiIHkyPSI3MDQuMDgzIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNFOUU4RjIiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRjlGOEZGIi8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==);background-size:cover;background-repeat:no-repeat;background-position:top}html.landing-page-only .robo-background{margin-top:-10vh;min-height:1328px;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSIxMDc1IiB2aWV3Qm94PSIwIDAgMTQ0MCAxMDc1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAwLjVMMTQ0MCA3NlYxMDMxQzg4OS41IDExNzcgODc5LjUgOTAwLjUgMCAxMDI4VjAuNVoiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcikiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjcyMCIgeTE9IjAuNSIgeDI9IjcyMCIgeTI9IjEwNzQuODEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0YyRjFGOCIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGOEY4RkMiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);background-repeat:no-repeat;background-size:cover;background-position:center bottom;z-index:5}@media screen and (max-width: 767px){html.landing-page-only .robo-background{padding-bottom:43% !important}}html.landing-page-only .robo-background .text-robo{min-height:954px}@media screen and (max-width: 1151px)and (min-width: 1000px){html.landing-page-only .robo-background .text-robo{height:990px}}@media screen and (max-width: 999px)and (min-width: 768px){html.landing-page-only .robo-background .text-robo{height:1100px}}@media screen and (max-width: 767px){html.landing-page-only .robo-background .text-robo{min-height:unset;height:unset}}html.landing-page-only .robo-background .robo-icon::after{background-image:url(/assets/images/usecases_1-65e27c135c14432494f4b9ab7b7cbf0c.png)}html.landing-page-only .robo-background .robo-icon1::after{background-image:url(/assets/images/usecases_2-91f98d764480beb47abf8021772b1ee5.png)}html.landing-page-only .robo-background .robo-icon2::after{background-image:url(/assets/images/usecases_3-5da6e63c70e700dd305b9ad995d914b8.png)}html.landing-page-only .robo-background .robo-icon3::after{background-image:url(/assets/images/usecases_4-8f2d37bee9c3dd09d668311eaf99acc8.png)}html.landing-page-only .robo-background .robo-icon:after,html.landing-page-only .robo-background .robo-icon1:after,html.landing-page-only .robo-background .robo-icon2:after,html.landing-page-only .robo-background .robo-icon3:after{content:"";position:absolute;width:100%;top:0;left:-45%;background-repeat:no-repeat;background-size:67rem 40.625rem;height:100%;background-position:130% 60%}@media screen and (max-width: 1280px){html.landing-page-only .robo-background .robo-icon:after,html.landing-page-only .robo-background .robo-icon1:after,html.landing-page-only .robo-background .robo-icon2:after,html.landing-page-only .robo-background .robo-icon3:after{background-position:right 70%;background-size:100%}}@media screen and (max-width: 768px)and (min-width: 768px){html.landing-page-only .robo-background .robo-icon:after,html.landing-page-only .robo-background .robo-icon1:after,html.landing-page-only .robo-background .robo-icon2:after,html.landing-page-only .robo-background .robo-icon3:after{background-position:right 70%;background-size:100%}}@media screen and (max-width: 767px){html.landing-page-only .robo-background .robo-icon:after,html.landing-page-only .robo-background .robo-icon1:after,html.landing-page-only .robo-background .robo-icon2:after,html.landing-page-only .robo-background .robo-icon3:after{background-position:center 105%;left:-17.5%;width:135%;height:112%;top:10%;min-height:68rem;background-size:110%}}@media screen and (max-width: 680px){html.landing-page-only .robo-background .robo-icon:after,html.landing-page-only .robo-background .robo-icon1:after,html.landing-page-only .robo-background .robo-icon2:after,html.landing-page-only .robo-background .robo-icon3:after{background-position:center 105%;left:-17.5%;width:135%;height:100%;top:15%;min-height:68rem;background-size:106%}}@media screen and (max-width: 570px){html.landing-page-only .robo-background .robo-icon:after,html.landing-page-only .robo-background .robo-icon1:after,html.landing-page-only .robo-background .robo-icon2:after,html.landing-page-only .robo-background .robo-icon3:after{background-position:center 95%;left:-17.5%;width:135%;height:100%;top:20%;min-height:68rem;background-size:100%}}@media screen and (min-width: 461px)and (max-width: 540px){html.landing-page-only .robo-background .robo-icon:after,html.landing-page-only .robo-background .robo-icon1:after,html.landing-page-only .robo-background .robo-icon2:after,html.landing-page-only .robo-background .robo-icon3:after{background-position:center 90%;left:-17.5%;width:135%;top:18%;min-height:68rem;background-size:90%}}@media screen and (max-width: 460px){html.landing-page-only .robo-background .robo-icon:after,html.landing-page-only .robo-background .robo-icon1:after,html.landing-page-only .robo-background .robo-icon2:after,html.landing-page-only .robo-background .robo-icon3:after{background-position:center 95%;left:-7.5px;width:calc(100% + 15px);height:100%;top:10%;min-height:68rem;background-size:120%}}html.landing-page-only .why-background{background:linear-gradient(180deg, #f2f1f8 0%, #f8f8fc 100%);margin-top:0}@media(max-width: 991.98px){html.landing-page-only .why-background{margin-top:0}}html.landing-page-only .clients-background .clients-icons{background-image:url(/assets/images/client_say_platforms-8326a8eddc70e9ee691fd4860b4b29b9.svg);background-repeat:no-repeat;background-position:right bottom;background-color:inherit}@media screen and (max-width: 767px){html.landing-page-only .clients-background .clients-icons{min-height:100%;background-position:center 70px;background-size:60%;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjM4IiBoZWlnaHQ9IjIwNSIgdmlld0JveD0iMCAwIDIzOCAyMDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2QpIj4KPHBhdGggZD0iTTUxLjAyNzMgMTIxLjkwNkMzNi42NTU1IDExMy42NjEgMzYuNjU1NSAxMDAuMjk1IDUxLjAyNzMgOTIuMDUwNEwxMDEuNjYyIDYzLjAwMzdDMTExLjI0NCA1Ny41MDc0IDEyNi43NzggNTcuNTA3NCAxMzYuMzU5IDYzLjAwMzdMMTY2LjAxNCA4MC4wMTVMMTg2Ljk5NCA5Mi4wNTA0QzIwMS4zNjYgMTAwLjI5NSAyMDEuMzY2IDExMy42NjEgMTg2Ljk5NCAxMjEuOTA2TDEzNi4zNTkgMTUwLjk1MkMxMjYuNzc4IDE1Ni40NDkgMTExLjI0NCAxNTYuNDQ5IDEwMS42NjIgMTUwLjk1Mkw1MS4wMjczIDEyMS45MDZaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+CjwvZz4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjFfZCkiPgo8cGF0aCBkPSJNNTEuMDI3MyAxMTEuOTU4QzM2LjY1NTUgMTAzLjcxNCAzNi42NTU1IDkwLjM0NzQgNTEuMDI3MyA4Mi4xMDMxTDEwMS42NjIgNTMuMDU2NEMxMTEuMjQ0IDQ3LjU2MDIgMTI2Ljc3OCA0Ny41NjAyIDEzNi4zNTkgNTMuMDU2NEwxODYuOTk0IDgyLjEwMzFDMjAxLjM2NiA5MC4zNDc0IDIwMS4zNjYgMTAzLjcxNCAxODYuOTk0IDExMS45NThMMTM2LjM1OSAxNDEuMDA1QzEyNi43NzggMTQ2LjUwMSAxMTEuMjQ0IDE0Ni41MDEgMTAxLjY2MiAxNDEuMDA1TDUxLjAyNzMgMTExLjk1OFoiIGZpbGw9InVybCgjcGFpbnQxX2xpbmVhcikiLz4KPC9nPgo8cGF0aCBkPSJNMTE1Ljg4NCA3Ni40ODY4TDk4LjMyOTUgODYuNjIxN0M5Ni4yNjIzIDg3LjgxNTIgOTYuMjYyMyA4OS43NzE3IDk4LjMyOTUgOTAuOTY1MkwxMDQuNTk5IDk0LjU4NDhMOTMuMzE0IDEwMS4xQzkxLjI0NjkgMTAyLjI5NCA5MS4yNDY5IDEwNC4yNSA5My4zMTQgMTA1LjQ0NEwxMDkuNjE0IDExNC44NTVDMTExLjY4MiAxMTYuMDQ4IDExNS4wNyAxMTYuMDQ4IDExNy4xMzggMTE0Ljg1NUwxMzUuNDM3IDEwNC4yODlMMTQ3LjIzIDEwNC4yODlDMTQ4Ljc4OSAxMDQuMjg5IDE0OS42MDMgMTAzLjE5NCAxNDguNDg0IDEwMi41NDhDMTM3Ljg0MyA5Ni40MDQ0IDE0MC4wOCA5Ny42OTU3IDEyOS42NzYgOTEuNjg5MUwxMzUuOTQ2IDg4LjA2OTVDMTM4LjAxMyA4Ni44NzYgMTM4LjAxMyA4NC45MTk1IDEzNS45NDYgODMuNzI2TDEyMy40MDcgNzYuNDg2OEMxMjEuMzA2IDc1LjMxMjkgMTE3Ljk1MSA3NS4yOTM0IDExNS44ODQgNzYuNDg2OFpNMTQyLjkyNyAxMDIuMjM1TDEzNC42NTggMTAyLjIzNUMxMzQuNDU1IDEwMi4yMzUgMTM0LjE4MyAxMDIuMjc0IDEzMy45OCAxMDIuMzEzQzEzMy43NDMgMTAyLjM3MiAxMzMuNTczIDEwMi40MzEgMTMzLjQwNCAxMDIuNTI4TDExNC41OTYgMTEzLjM4N0MxMTMuOTE4IDExMy43NzggMTEyLjc2NiAxMTMuNzc4IDExMi4wODggMTEzLjM4N0w5NS43ODc5IDEwMy45NzZDOTUuMTEwMSAxMDMuNTg1IDk1LjExMDEgMTAyLjkyIDk1Ljc4NzkgMTAyLjUyOEwxMTguMzU4IDg5LjQ5NzhDMTE5LjA2OSA4OS4wODY5IDEyMC4xNTQgODkuMDg2OSAxMjAuODY1IDg5LjQ5NzhDMTI5LjcxIDk0LjYwNDQgMTM1LjA5OCA5Ny43MTUzIDE0Mi45MjcgMTAyLjIzNVpNMTMzLjQzOCA4NS4xNzM5QzEzNC4xMTYgODUuNTY1MiAxMzQuMTE2IDg2LjIzMDQgMTMzLjQzOCA4Ni42MjE3TDEyNy4xNjkgOTAuMjQxM0wxMjMuNDA3IDg4LjA2OTVDMTIxLjM0IDg2Ljg3NiAxMTcuOTUxIDg2Ljg3NiAxMTUuODg0IDg4LjA2OTVMMTA3LjEwNyA5My4xMzdMMTAwLjgzNyA4OS41MTc0QzEwMC4xMjYgODkuMTA2NSAxMDAuMTI2IDg4LjQ4MDQgMTAwLjgzNyA4OC4wNjk1TDExOC4zOTEgNzcuOTM0N0MxMTkuMDY5IDc3LjU0MzQgMTIwLjIyMSA3Ny41NDM0IDEyMC44OTkgNzcuOTM0N0wxMzMuNDM4IDg1LjE3MzlaIiBmaWxsPSIjQ0NDRURDIi8+CjxwYXRoIGQ9Ik0xMDcuODUzIDEwNC43MkMxMDcuODUzIDEwNS4zMDggMTA4LjY2NyAxMDUuNzM4IDEwOS42MTYgMTA1LjczOEMxMTAuNTY2IDEwNS43MzggMTExLjM4IDEwNS4yNjggMTExLjM4IDEwNC43MkMxMTEuMzggMTA0LjE3MiAxMTAuNjM0IDEwMy43MDIgMTA5LjYxNiAxMDMuNzAyQzEwOC43MDEgMTAzLjY4MiAxMDcuODUzIDEwNC4xNzIgMTA3Ljg1MyAxMDQuNzJaIiBmaWxsPSIjQ0NDRURDIi8+CjxwYXRoIGQ9Ik0xMTQuMTIyIDEwMS4wOTlDMTE0LjEyMiAxMDEuNjg3IDExNC45MzYgMTAyLjExNyAxMTUuODg2IDEwMi4xMTdDMTE2LjgzNSAxMDIuMTE3IDExNy42NDkgMTAxLjY0NyAxMTcuNjQ5IDEwMS4wOTlDMTE3LjY0OSAxMDAuNTUxIDExNi45MDMgMTAwLjA4MSAxMTUuODg2IDEwMC4wODFDMTE0Ljk3IDEwMC4wNjEgMTE0LjEyMiAxMDAuNTUxIDExNC4xMjIgMTAxLjA5OVoiIGZpbGw9IiNDQ0NFREMiLz4KPHBhdGggZD0iTTEyMC4zOTIgOTcuNDc5NUMxMjAuMzkyIDk4LjAyNzggMTIxLjI0IDk4LjUxNzMgMTIyLjE1NSA5OC40OTc3QzEyMy4wNzEgOTguNTE3MyAxMjMuOTE4IDk4LjAyNzggMTIzLjkxOCA5Ny40Nzk1QzEyMy45MTggOTYuOTMxMiAxMjMuMTM5IDk2LjQ0MTcgMTIyLjE1NSA5Ni40NjEzQzEyMS4yNCA5Ni40NDE3IDEyMC4zNTggOTYuOTUwOCAxMjAuMzkyIDk3LjQ3OTVaIiBmaWxsPSIjQ0NDRURDIi8+CjxkZWZzPgo8ZmlsdGVyIGlkPSJmaWx0ZXIwX2QiIHg9IjAuMjQ4MDQ3IiB5PSIyNS44ODEzIiB3aWR0aD0iMjM3LjUyNSIgaGVpZ2h0PSIxNzYuMTkzIiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIyMCIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAxIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxmaWx0ZXIgaWQ9ImZpbHRlcjFfZCIgeD0iMTAuMjQ4IiB5PSIyNS45MzQxIiB3aWR0aD0iMjE3LjUyNSIgaGVpZ2h0PSIxNTYuMTkzIiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIxNSIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAwLjQyIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjEyMi44OTYiIHkxPSIxNDIuMjIzIiB4Mj0iMTIzLjYzMyIgeTI9Ijc1LjgwNzUiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0YyRjJGQSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGN0Y3RkQiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDFfbGluZWFyIiB4MT0iMTIyLjg5NiIgeTE9IjEzMi4yNzYiIHgyPSIxMjMuNjMzIiB5Mj0iNjUuODYwMyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRjhGOEZDIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0ZERkRGRiIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=)}}@media screen and (max-width: 525px){html.landing-page-only .clients-background .clients-icons{min-height:100%;background-position:center 110px;background-size:60%;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjM4IiBoZWlnaHQ9IjIwNSIgdmlld0JveD0iMCAwIDIzOCAyMDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2QpIj4KPHBhdGggZD0iTTUxLjAyNzMgMTIxLjkwNkMzNi42NTU1IDExMy42NjEgMzYuNjU1NSAxMDAuMjk1IDUxLjAyNzMgOTIuMDUwNEwxMDEuNjYyIDYzLjAwMzdDMTExLjI0NCA1Ny41MDc0IDEyNi43NzggNTcuNTA3NCAxMzYuMzU5IDYzLjAwMzdMMTY2LjAxNCA4MC4wMTVMMTg2Ljk5NCA5Mi4wNTA0QzIwMS4zNjYgMTAwLjI5NSAyMDEuMzY2IDExMy42NjEgMTg2Ljk5NCAxMjEuOTA2TDEzNi4zNTkgMTUwLjk1MkMxMjYuNzc4IDE1Ni40NDkgMTExLjI0NCAxNTYuNDQ5IDEwMS42NjIgMTUwLjk1Mkw1MS4wMjczIDEyMS45MDZaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+CjwvZz4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjFfZCkiPgo8cGF0aCBkPSJNNTEuMDI3MyAxMTEuOTU4QzM2LjY1NTUgMTAzLjcxNCAzNi42NTU1IDkwLjM0NzQgNTEuMDI3MyA4Mi4xMDMxTDEwMS42NjIgNTMuMDU2NEMxMTEuMjQ0IDQ3LjU2MDIgMTI2Ljc3OCA0Ny41NjAyIDEzNi4zNTkgNTMuMDU2NEwxODYuOTk0IDgyLjEwMzFDMjAxLjM2NiA5MC4zNDc0IDIwMS4zNjYgMTAzLjcxNCAxODYuOTk0IDExMS45NThMMTM2LjM1OSAxNDEuMDA1QzEyNi43NzggMTQ2LjUwMSAxMTEuMjQ0IDE0Ni41MDEgMTAxLjY2MiAxNDEuMDA1TDUxLjAyNzMgMTExLjk1OFoiIGZpbGw9InVybCgjcGFpbnQxX2xpbmVhcikiLz4KPC9nPgo8cGF0aCBkPSJNMTE1Ljg4NCA3Ni40ODY4TDk4LjMyOTUgODYuNjIxN0M5Ni4yNjIzIDg3LjgxNTIgOTYuMjYyMyA4OS43NzE3IDk4LjMyOTUgOTAuOTY1MkwxMDQuNTk5IDk0LjU4NDhMOTMuMzE0IDEwMS4xQzkxLjI0NjkgMTAyLjI5NCA5MS4yNDY5IDEwNC4yNSA5My4zMTQgMTA1LjQ0NEwxMDkuNjE0IDExNC44NTVDMTExLjY4MiAxMTYuMDQ4IDExNS4wNyAxMTYuMDQ4IDExNy4xMzggMTE0Ljg1NUwxMzUuNDM3IDEwNC4yODlMMTQ3LjIzIDEwNC4yODlDMTQ4Ljc4OSAxMDQuMjg5IDE0OS42MDMgMTAzLjE5NCAxNDguNDg0IDEwMi41NDhDMTM3Ljg0MyA5Ni40MDQ0IDE0MC4wOCA5Ny42OTU3IDEyOS42NzYgOTEuNjg5MUwxMzUuOTQ2IDg4LjA2OTVDMTM4LjAxMyA4Ni44NzYgMTM4LjAxMyA4NC45MTk1IDEzNS45NDYgODMuNzI2TDEyMy40MDcgNzYuNDg2OEMxMjEuMzA2IDc1LjMxMjkgMTE3Ljk1MSA3NS4yOTM0IDExNS44ODQgNzYuNDg2OFpNMTQyLjkyNyAxMDIuMjM1TDEzNC42NTggMTAyLjIzNUMxMzQuNDU1IDEwMi4yMzUgMTM0LjE4MyAxMDIuMjc0IDEzMy45OCAxMDIuMzEzQzEzMy43NDMgMTAyLjM3MiAxMzMuNTczIDEwMi40MzEgMTMzLjQwNCAxMDIuNTI4TDExNC41OTYgMTEzLjM4N0MxMTMuOTE4IDExMy43NzggMTEyLjc2NiAxMTMuNzc4IDExMi4wODggMTEzLjM4N0w5NS43ODc5IDEwMy45NzZDOTUuMTEwMSAxMDMuNTg1IDk1LjExMDEgMTAyLjkyIDk1Ljc4NzkgMTAyLjUyOEwxMTguMzU4IDg5LjQ5NzhDMTE5LjA2OSA4OS4wODY5IDEyMC4xNTQgODkuMDg2OSAxMjAuODY1IDg5LjQ5NzhDMTI5LjcxIDk0LjYwNDQgMTM1LjA5OCA5Ny43MTUzIDE0Mi45MjcgMTAyLjIzNVpNMTMzLjQzOCA4NS4xNzM5QzEzNC4xMTYgODUuNTY1MiAxMzQuMTE2IDg2LjIzMDQgMTMzLjQzOCA4Ni42MjE3TDEyNy4xNjkgOTAuMjQxM0wxMjMuNDA3IDg4LjA2OTVDMTIxLjM0IDg2Ljg3NiAxMTcuOTUxIDg2Ljg3NiAxMTUuODg0IDg4LjA2OTVMMTA3LjEwNyA5My4xMzdMMTAwLjgzNyA4OS41MTc0QzEwMC4xMjYgODkuMTA2NSAxMDAuMTI2IDg4LjQ4MDQgMTAwLjgzNyA4OC4wNjk1TDExOC4zOTEgNzcuOTM0N0MxMTkuMDY5IDc3LjU0MzQgMTIwLjIyMSA3Ny41NDM0IDEyMC44OTkgNzcuOTM0N0wxMzMuNDM4IDg1LjE3MzlaIiBmaWxsPSIjQ0NDRURDIi8+CjxwYXRoIGQ9Ik0xMDcuODUzIDEwNC43MkMxMDcuODUzIDEwNS4zMDggMTA4LjY2NyAxMDUuNzM4IDEwOS42MTYgMTA1LjczOEMxMTAuNTY2IDEwNS43MzggMTExLjM4IDEwNS4yNjggMTExLjM4IDEwNC43MkMxMTEuMzggMTA0LjE3MiAxMTAuNjM0IDEwMy43MDIgMTA5LjYxNiAxMDMuNzAyQzEwOC43MDEgMTAzLjY4MiAxMDcuODUzIDEwNC4xNzIgMTA3Ljg1MyAxMDQuNzJaIiBmaWxsPSIjQ0NDRURDIi8+CjxwYXRoIGQ9Ik0xMTQuMTIyIDEwMS4wOTlDMTE0LjEyMiAxMDEuNjg3IDExNC45MzYgMTAyLjExNyAxMTUuODg2IDEwMi4xMTdDMTE2LjgzNSAxMDIuMTE3IDExNy42NDkgMTAxLjY0NyAxMTcuNjQ5IDEwMS4wOTlDMTE3LjY0OSAxMDAuNTUxIDExNi45MDMgMTAwLjA4MSAxMTUuODg2IDEwMC4wODFDMTE0Ljk3IDEwMC4wNjEgMTE0LjEyMiAxMDAuNTUxIDExNC4xMjIgMTAxLjA5OVoiIGZpbGw9IiNDQ0NFREMiLz4KPHBhdGggZD0iTTEyMC4zOTIgOTcuNDc5NUMxMjAuMzkyIDk4LjAyNzggMTIxLjI0IDk4LjUxNzMgMTIyLjE1NSA5OC40OTc3QzEyMy4wNzEgOTguNTE3MyAxMjMuOTE4IDk4LjAyNzggMTIzLjkxOCA5Ny40Nzk1QzEyMy45MTggOTYuOTMxMiAxMjMuMTM5IDk2LjQ0MTcgMTIyLjE1NSA5Ni40NjEzQzEyMS4yNCA5Ni40NDE3IDEyMC4zNTggOTYuOTUwOCAxMjAuMzkyIDk3LjQ3OTVaIiBmaWxsPSIjQ0NDRURDIi8+CjxkZWZzPgo8ZmlsdGVyIGlkPSJmaWx0ZXIwX2QiIHg9IjAuMjQ4MDQ3IiB5PSIyNS44ODEzIiB3aWR0aD0iMjM3LjUyNSIgaGVpZ2h0PSIxNzYuMTkzIiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIyMCIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAxIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxmaWx0ZXIgaWQ9ImZpbHRlcjFfZCIgeD0iMTAuMjQ4IiB5PSIyNS45MzQxIiB3aWR0aD0iMjE3LjUyNSIgaGVpZ2h0PSIxNTYuMTkzIiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIxNSIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAwLjQyIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjEyMi44OTYiIHkxPSIxNDIuMjIzIiB4Mj0iMTIzLjYzMyIgeTI9Ijc1LjgwNzUiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0YyRjJGQSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGN0Y3RkQiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDFfbGluZWFyIiB4MT0iMTIyLjg5NiIgeTE9IjEzMi4yNzYiIHgyPSIxMjMuNjMzIiB5Mj0iNjUuODYwMyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRjhGOEZDIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0ZERkRGRiIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=)}}@media screen and (max-width: 480px){html.landing-page-only .clients-background .clients-icons{min-height:100%;background-position:center 130%;background-size:90%;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjM4IiBoZWlnaHQ9IjIwNSIgdmlld0JveD0iMCAwIDIzOCAyMDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2QpIj4KPHBhdGggZD0iTTUxLjAyNzMgMTIxLjkwNkMzNi42NTU1IDExMy42NjEgMzYuNjU1NSAxMDAuMjk1IDUxLjAyNzMgOTIuMDUwNEwxMDEuNjYyIDYzLjAwMzdDMTExLjI0NCA1Ny41MDc0IDEyNi43NzggNTcuNTA3NCAxMzYuMzU5IDYzLjAwMzdMMTY2LjAxNCA4MC4wMTVMMTg2Ljk5NCA5Mi4wNTA0QzIwMS4zNjYgMTAwLjI5NSAyMDEuMzY2IDExMy42NjEgMTg2Ljk5NCAxMjEuOTA2TDEzNi4zNTkgMTUwLjk1MkMxMjYuNzc4IDE1Ni40NDkgMTExLjI0NCAxNTYuNDQ5IDEwMS42NjIgMTUwLjk1Mkw1MS4wMjczIDEyMS45MDZaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+CjwvZz4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjFfZCkiPgo8cGF0aCBkPSJNNTEuMDI3MyAxMTEuOTU4QzM2LjY1NTUgMTAzLjcxNCAzNi42NTU1IDkwLjM0NzQgNTEuMDI3MyA4Mi4xMDMxTDEwMS42NjIgNTMuMDU2NEMxMTEuMjQ0IDQ3LjU2MDIgMTI2Ljc3OCA0Ny41NjAyIDEzNi4zNTkgNTMuMDU2NEwxODYuOTk0IDgyLjEwMzFDMjAxLjM2NiA5MC4zNDc0IDIwMS4zNjYgMTAzLjcxNCAxODYuOTk0IDExMS45NThMMTM2LjM1OSAxNDEuMDA1QzEyNi43NzggMTQ2LjUwMSAxMTEuMjQ0IDE0Ni41MDEgMTAxLjY2MiAxNDEuMDA1TDUxLjAyNzMgMTExLjk1OFoiIGZpbGw9InVybCgjcGFpbnQxX2xpbmVhcikiLz4KPC9nPgo8cGF0aCBkPSJNMTE1Ljg4NCA3Ni40ODY4TDk4LjMyOTUgODYuNjIxN0M5Ni4yNjIzIDg3LjgxNTIgOTYuMjYyMyA4OS43NzE3IDk4LjMyOTUgOTAuOTY1MkwxMDQuNTk5IDk0LjU4NDhMOTMuMzE0IDEwMS4xQzkxLjI0NjkgMTAyLjI5NCA5MS4yNDY5IDEwNC4yNSA5My4zMTQgMTA1LjQ0NEwxMDkuNjE0IDExNC44NTVDMTExLjY4MiAxMTYuMDQ4IDExNS4wNyAxMTYuMDQ4IDExNy4xMzggMTE0Ljg1NUwxMzUuNDM3IDEwNC4yODlMMTQ3LjIzIDEwNC4yODlDMTQ4Ljc4OSAxMDQuMjg5IDE0OS42MDMgMTAzLjE5NCAxNDguNDg0IDEwMi41NDhDMTM3Ljg0MyA5Ni40MDQ0IDE0MC4wOCA5Ny42OTU3IDEyOS42NzYgOTEuNjg5MUwxMzUuOTQ2IDg4LjA2OTVDMTM4LjAxMyA4Ni44NzYgMTM4LjAxMyA4NC45MTk1IDEzNS45NDYgODMuNzI2TDEyMy40MDcgNzYuNDg2OEMxMjEuMzA2IDc1LjMxMjkgMTE3Ljk1MSA3NS4yOTM0IDExNS44ODQgNzYuNDg2OFpNMTQyLjkyNyAxMDIuMjM1TDEzNC42NTggMTAyLjIzNUMxMzQuNDU1IDEwMi4yMzUgMTM0LjE4MyAxMDIuMjc0IDEzMy45OCAxMDIuMzEzQzEzMy43NDMgMTAyLjM3MiAxMzMuNTczIDEwMi40MzEgMTMzLjQwNCAxMDIuNTI4TDExNC41OTYgMTEzLjM4N0MxMTMuOTE4IDExMy43NzggMTEyLjc2NiAxMTMuNzc4IDExMi4wODggMTEzLjM4N0w5NS43ODc5IDEwMy45NzZDOTUuMTEwMSAxMDMuNTg1IDk1LjExMDEgMTAyLjkyIDk1Ljc4NzkgMTAyLjUyOEwxMTguMzU4IDg5LjQ5NzhDMTE5LjA2OSA4OS4wODY5IDEyMC4xNTQgODkuMDg2OSAxMjAuODY1IDg5LjQ5NzhDMTI5LjcxIDk0LjYwNDQgMTM1LjA5OCA5Ny43MTUzIDE0Mi45MjcgMTAyLjIzNVpNMTMzLjQzOCA4NS4xNzM5QzEzNC4xMTYgODUuNTY1MiAxMzQuMTE2IDg2LjIzMDQgMTMzLjQzOCA4Ni42MjE3TDEyNy4xNjkgOTAuMjQxM0wxMjMuNDA3IDg4LjA2OTVDMTIxLjM0IDg2Ljg3NiAxMTcuOTUxIDg2Ljg3NiAxMTUuODg0IDg4LjA2OTVMMTA3LjEwNyA5My4xMzdMMTAwLjgzNyA4OS41MTc0QzEwMC4xMjYgODkuMTA2NSAxMDAuMTI2IDg4LjQ4MDQgMTAwLjgzNyA4OC4wNjk1TDExOC4zOTEgNzcuOTM0N0MxMTkuMDY5IDc3LjU0MzQgMTIwLjIyMSA3Ny41NDM0IDEyMC44OTkgNzcuOTM0N0wxMzMuNDM4IDg1LjE3MzlaIiBmaWxsPSIjQ0NDRURDIi8+CjxwYXRoIGQ9Ik0xMDcuODUzIDEwNC43MkMxMDcuODUzIDEwNS4zMDggMTA4LjY2NyAxMDUuNzM4IDEwOS42MTYgMTA1LjczOEMxMTAuNTY2IDEwNS43MzggMTExLjM4IDEwNS4yNjggMTExLjM4IDEwNC43MkMxMTEuMzggMTA0LjE3MiAxMTAuNjM0IDEwMy43MDIgMTA5LjYxNiAxMDMuNzAyQzEwOC43MDEgMTAzLjY4MiAxMDcuODUzIDEwNC4xNzIgMTA3Ljg1MyAxMDQuNzJaIiBmaWxsPSIjQ0NDRURDIi8+CjxwYXRoIGQ9Ik0xMTQuMTIyIDEwMS4wOTlDMTE0LjEyMiAxMDEuNjg3IDExNC45MzYgMTAyLjExNyAxMTUuODg2IDEwMi4xMTdDMTE2LjgzNSAxMDIuMTE3IDExNy42NDkgMTAxLjY0NyAxMTcuNjQ5IDEwMS4wOTlDMTE3LjY0OSAxMDAuNTUxIDExNi45MDMgMTAwLjA4MSAxMTUuODg2IDEwMC4wODFDMTE0Ljk3IDEwMC4wNjEgMTE0LjEyMiAxMDAuNTUxIDExNC4xMjIgMTAxLjA5OVoiIGZpbGw9IiNDQ0NFREMiLz4KPHBhdGggZD0iTTEyMC4zOTIgOTcuNDc5NUMxMjAuMzkyIDk4LjAyNzggMTIxLjI0IDk4LjUxNzMgMTIyLjE1NSA5OC40OTc3QzEyMy4wNzEgOTguNTE3MyAxMjMuOTE4IDk4LjAyNzggMTIzLjkxOCA5Ny40Nzk1QzEyMy45MTggOTYuOTMxMiAxMjMuMTM5IDk2LjQ0MTcgMTIyLjE1NSA5Ni40NjEzQzEyMS4yNCA5Ni40NDE3IDEyMC4zNTggOTYuOTUwOCAxMjAuMzkyIDk3LjQ3OTVaIiBmaWxsPSIjQ0NDRURDIi8+CjxkZWZzPgo8ZmlsdGVyIGlkPSJmaWx0ZXIwX2QiIHg9IjAuMjQ4MDQ3IiB5PSIyNS44ODEzIiB3aWR0aD0iMjM3LjUyNSIgaGVpZ2h0PSIxNzYuMTkzIiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIyMCIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAxIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxmaWx0ZXIgaWQ9ImZpbHRlcjFfZCIgeD0iMTAuMjQ4IiB5PSIyNS45MzQxIiB3aWR0aD0iMjE3LjUyNSIgaGVpZ2h0PSIxNTYuMTkzIiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIxNSIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAwLjQyIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjEyMi44OTYiIHkxPSIxNDIuMjIzIiB4Mj0iMTIzLjYzMyIgeTI9Ijc1LjgwNzUiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0YyRjJGQSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGN0Y3RkQiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDFfbGluZWFyIiB4MT0iMTIyLjg5NiIgeTE9IjEzMi4yNzYiIHgyPSIxMjMuNjMzIiB5Mj0iNjUuODYwMyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRjhGOEZDIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0ZERkRGRiIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=)}}html.landing-page-only .speak-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUzIiBoZWlnaHQ9IjIyMSIgdmlld0JveD0iMCAwIDI1MyAyMjEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2QpIj4KPHBhdGggZD0iTTUxLjMzMjkgMTMwLjA5MUMzNi45NjEyIDEyMS44NDcgMzYuOTYxMiAxMDguNDggNTEuMzMyOSAxMDAuMjM2TDEwOS4xNjEgNjcuMDYzMUMxMTguNzQyIDYxLjU2NjkgMTM0LjI3NiA2MS41NjY5IDE0My44NTcgNjcuMDYzMUwxNzcuMTA5IDg2LjEzNzRMMjAxLjY4NiAxMDAuMjM2QzIxNi4wNTcgMTA4LjQ4IDIxNi4wNTcgMTIxLjg0NyAyMDEuNjg2IDEzMC4wOTFMMTQzLjg1NyAxNjMuMjY0QzEzNC4yNzYgMTY4Ljc2IDExOC43NDIgMTY4Ljc2IDEwOS4xNjEgMTYzLjI2NEw1MS4zMzI5IDEzMC4wOTFaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+CjwvZz4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjFfZCkiPgo8cGF0aCBkPSJNNTEuMzMyOSAxMTkuMzgzQzM2Ljk2MTIgMTExLjEzOCAzNi45NjEyIDk3Ljc3MTcgNTEuMzMyOSA4OS41Mjc0TDEwOS4xNjEgNTYuMzU0NkMxMTguNzQyIDUwLjg1ODQgMTM0LjI3NiA1MC44NTg0IDE0My44NTcgNTYuMzU0NkwyMDEuNjg2IDg5LjUyNzRDMjE2LjA1NyA5Ny43NzE3IDIxNi4wNTcgMTExLjEzOCAyMDEuNjg2IDExOS4zODNMMTQzLjg1NyAxNTIuNTU2QzEzNC4yNzYgMTU4LjA1MiAxMTguNzQyIDE1OC4wNTIgMTA5LjE2MSAxNTIuNTU2TDUxLjMzMjkgMTE5LjM4M1oiIGZpbGw9InVybCgjcGFpbnQxX2xpbmVhcikiLz4KPC9nPgo8cGF0aCBkPSJNMTI0LjY3NCA4My40NjAyTDkwLjcyNTIgMTAzLjA2MUM4Ni40NjU5IDEwNS41MiA4Ni40NjU5IDEwOS41MjIgOTAuNzI1MiAxMTEuOTgxTDExMC44MTEgMTIzLjU3OEMxMTUuMDcgMTI2LjAzNyAxMjIuMDAyIDEyNi4wMzcgMTI2LjI2MSAxMjMuNTc4TDE2MC4yMSAxMDMuOTc3QzE2NC40NyAxMDEuNTE4IDE2NC40NyA5Ny41MTU4IDE2MC4yMSA5NS4wNTY3TDE0MC4xMjUgODMuNDYwMkMxMzUuODI0IDgxLjAyNTIgMTI4Ljg5MiA4MS4wMjUyIDEyNC42NzQgODMuNDYwMlpNMTI3Ljc2NSA4NS4yNDQzQzEyOC40NzQgODQuODM0NSAxMjkuMzEgODQuNTQ1MSAxMzAuMjI4IDg0LjM1MjNMMTMwLjIyOCAxMDQuOTlDMTMwLjIyOCAxMDUuNjY1IDEyOS4yMjYgMTA2LjI0MyAxMjguMDU3IDEwNi4yNDNMOTIuMjcwMyAxMDYuMjY3QzkyLjU2MjYgMTA1Ljc2MSA5My4wNjM3IDEwNS4yNzkgOTMuODE1MyAxMDQuODQ1TDEyNy43NjUgODUuMjQ0M1pNMTU3LjA3OSA5Ni44NjQ4QzE1OS42MjYgOTguMzM1NSAxNTkuNjI2IDEwMC43NDYgMTU3LjA3OSAxMDIuMjE3TDEyMy4xMjkgMTIxLjgxOEMxMjAuNTgyIDEyMy4yODggMTE2LjQwNiAxMjMuMjg4IDExMy44NTkgMTIxLjgxOEw5My43NzM2IDExMC4yMjFDOTMuMDYzNyAxMDkuODExIDkyLjU2MjYgMTA5LjMyOSA5Mi4yMjg1IDEwOC43OTlMMTI3Ljk3MyAxMDguNzk5QzEzMS41NjUgMTA4Ljc5OSAxMzQuNTI5IDEwNy4wODcgMTM0LjUyOSAxMDUuMDE0TDEzNC41MjkgODQuMzc2NEMxMzUuNDA2IDg0LjU0NTEgMTM2LjI0MSA4NC44MzQ1IDEzNi45OTMgODUuMjY4NEwxNTcuMDc5IDk2Ljg2NDhaIiBmaWxsPSIjQ0NDRURDIi8+CjxkZWZzPgo8ZmlsdGVyIGlkPSJmaWx0ZXIwX2QiIHg9IjAuNTUzNzExIiB5PSIyOS45NDA5IiB3aWR0aD0iMjUxLjkxIiBoZWlnaHQ9IjE4NC40NDUiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz4KPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUFscGhhIiB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMTI3IDAiLz4KPGZlT2Zmc2V0IGR5PSI3Ii8+CjxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjIwIi8+CjxmZUNvbG9yTWF0cml4IHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAuODQzMTM3IDAgMCAwIDAgMC44NTA5OCAwIDAgMCAwIDAuODk4MDM5IDAgMCAwIDEgMCIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluMj0iQmFja2dyb3VuZEltYWdlRml4IiByZXN1bHQ9ImVmZmVjdDFfZHJvcFNoYWRvdyIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluPSJTb3VyY2VHcmFwaGljIiBpbjI9ImVmZmVjdDFfZHJvcFNoYWRvdyIgcmVzdWx0PSJzaGFwZSIvPgo8L2ZpbHRlcj4KPGZpbHRlciBpZD0iZmlsdGVyMV9kIiB4PSIxMC41NTM3IiB5PSIyOS4yMzI0IiB3aWR0aD0iMjMxLjkxIiBoZWlnaHQ9IjE2NC40NDUiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz4KPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUFscGhhIiB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMTI3IDAiLz4KPGZlT2Zmc2V0IGR5PSI3Ii8+CjxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjE1Ii8+CjxmZUNvbG9yTWF0cml4IHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAuODQzMTM3IDAgMCAwIDAgMC44NTA5OCAwIDAgMCAwIDAuODk4MDM5IDAgMCAwIDAuNDIgMCIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluMj0iQmFja2dyb3VuZEltYWdlRml4IiByZXN1bHQ9ImVmZmVjdDFfZHJvcFNoYWRvdyIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluPSJTb3VyY2VHcmFwaGljIiBpbjI9ImVmZmVjdDFfZHJvcFNoYWRvdyIgcmVzdWx0PSJzaGFwZSIvPgo8L2ZpbHRlcj4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyIiB4MT0iMTMwLjY5MiIgeTE9IjE1My4xMDUiIHgyPSIxMzEuNDg1IiB5Mj0iODEuNjA4MSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRjJGMkZBIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0Y3RjdGRCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MV9saW5lYXIiIHgxPSIxMzAuNjkyIiB5MT0iMTQyLjM5NyIgeDI9IjEzMS40ODUiIHkyPSI3MC44OTk2IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGOEY4RkMiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkRGREZGIi8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==);background-repeat:no-repeat;background-position:right 25rem;z-index:5}@media screen and (max-width: 1150px){html.landing-page-only .speak-icon{background-position:right 80%}}@media screen and (max-width: 992px){html.landing-page-only .speak-icon{background-position:right 85%}}@media screen and (max-width: 768px)and (min-width: 768px){html.landing-page-only .speak-icon{background-position:right 85%}}@media screen and (max-width: 767px){html.landing-page-only .speak-icon{background-position:center 31.5%}}@media screen and (max-width: 450px){html.landing-page-only .speak-icon{background-position:center 33.5%}}@media screen and (max-width: 356px){html.landing-page-only .speak-icon{background-position:center 32.5%}}html.landing-page-only .connect{background:linear-gradient(180deg, #e3e1ed 0%, #f3f1fa 34.02%, #faf8fd 100%);height:100%}@media(max-width: 991.98px){html.landing-page-only .connect{min-height:105rem}}html.landing-page-only .connect .base{min-height:13.5rem;position:relative}@media(max-width: 991.98px){html.landing-page-only .connect .base{min-height:196px}}html.landing-page-only .connect .logos-wrapper{height:10rem;width:100%;margin-top:5rem;margin-bottom:5rem;background:red}html.landing-page-only .connect .connected-devices:after{content:"";position:absolute;width:100%;top:0;left:-45%;background-image:url(/assets/images/connect_devices-10f94288f509078d9d386c8033c497ea.png);background-repeat:no-repeat;background-size:67rem 40.625rem;height:100%;background-position:130% top}@media screen and (max-width: 1280px){html.landing-page-only .connect .connected-devices:after{background-position:right 65%;background-size:100%}}@media screen and (max-width: 768px)and (min-width: 768px){html.landing-page-only .connect .connected-devices:after{background-position:right 70%;background-size:100%}}@media screen and (max-width: 767px){html.landing-page-only .connect .connected-devices:after{background-position:center 101%;left:-17.5%;width:135%;height:112%;top:10%;min-height:68rem;background-size:110%}}@media screen and (max-width: 680px){html.landing-page-only .connect .connected-devices:after{background-position:center 95%;left:-17.5%;width:135%;height:100%;top:15%;min-height:68rem;background-size:106%}}@media screen and (max-width: 570px){html.landing-page-only .connect .connected-devices:after{background-position:center 85%;left:-17.5%;width:135%;height:100%;top:20%;min-height:68rem;background-size:100%}}@media screen and (min-width: 461px)and (max-width: 540px){html.landing-page-only .connect .connected-devices:after{background-position:center 80%;left:-17.5%;width:135%;top:18%;min-height:68rem;background-size:90%}}@media screen and (max-width: 460px){html.landing-page-only .connect .connected-devices:after{background-position:center 85%;left:-7.5px;width:calc(100% + 15px);height:100%;top:10%;min-height:68rem;background-size:120%}}@media screen and (max-width: 400px){html.landing-page-only .connect .connected-devices:after{background-position:center 95%;left:-7.5px;width:calc(100% + 15px);height:100%;top:10%;min-height:68rem;background-size:120%}}html.landing-page-only .navbar-nav .nav-item:hover{color:#ed3b42 !important}html.landing-page-only .navbar-nav .nav-item .active{color:#ed3b42 !important}html.landing-page-only .pointer-events-none,html.landing-page-only .pointer-events-none>*{pointer-events:none}html.landing-page-only .cursor-pointer{cursor:pointer}html.landing-page-only .card .irs--big .irs-handle{top:23px;width:2rem;height:2rem;border-radius:6px;box-shadow:5px 5px 20px #d7d9e7;-moz-box-shadow:5px 5px 20px #d7d9e7;border:none}html.landing-page-only .card .irs--big .irs-handle,html.landing-page-only .card .irs--big .irs-handle:hover,html.landing-page-only .card .irs--big .irs-handle.state_hover{background:#f9f9fd}html.landing-page-only .card .irs--big .irs-bar{background:#cccedc;border:none;box-shadow:none;-moz-box-shadow:none}html.landing-page-only .card .irs--big .irs-line{background:#e7e8f3;border:none;box-shadow:none;-moz-box-shadow:none}html.landing-page-only .card .irs--big .irs-single{display:none}html.landing-page-only .card .irs--big .irs-grid{top:-1rem}html.landing-page-only .card .irs--big .irs-grid-text{font-size:.75rem;line-height:1rem;color:#a6a8b7}html.landing-page-only .card .irs--big .irs-grid-pol{top:3rem;height:1rem;width:2px;background:#fff;z-index:1}html.landing-page-only .card .irs--big .irs-grid-pol.small{display:none}html.landing-page-only .pricing-contact-form{background:#fafaff url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI2NTciIHZpZXdCb3g9IjAgMCAxNDQwIDY1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMTM0Ljk3NEM1NDguNSAyNzIuMjEgNTg4IC00OC4zNDE1IDE0NDAgNy40NjkxN1Y2NTYuODcySDBWMTM0Ljk3NFoiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcikiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjcyMCIgeTE9IjAuODcxNTgyIiB4Mj0iNzIwIiB5Mj0iNzA0Ljk1NCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRTlFOEYyIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0Y5RjhGRiIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=);background-size:cover;background-repeat:no-repeat;background-position:top}@media(max-width: 767.98px){html.landing-page-only .pricing-contact-form{margin-top:-30px;background-position:center -80px}html.landing-page-only .pricing-contact-form .speak-icon{background-position:center 320px}}html.landing-page-only .pricing .price-tag{height:150px}html.landing-page-only .bg-svg{position:absolute;bottom:0;left:0;width:100%;height:100%;z-index:-1}html.landing-page-only .magazines{opacity:.2}html.landing-page-only .try-it-now{min-height:1066px;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSIxMDY5IiB2aWV3Qm94PSIwIDAgMTQ0MCAxMDY5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMzkxLjUgNzQuNDdDNjI5LjUgNTguNjM1IDEwMTQgLTQxLjI3NjIgMTQ0MCAxOS4zMDk5VjEwMzguNUM5MDMuNSAxMDc4LjUgNTM1LjUgMTA3OSAwIDEwMzguNVYxOS4zMDk5QzUxIDUwLjA2MTkgMjAxLjEgODcuMTM4IDM5MS41IDc0LjQ3WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyKSIvPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyIiB4MT0iNzIwIiB5MT0iMCIgeDI9IjcyMCIgeTI9IjEwNjguNjkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0YyRjFGOCIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGOEY4RkMiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);margin-top:-20vh;background-size:cover;background-repeat:no-repeat;background-position:top;position:relative}@media(max-width: 991.98px){html.landing-page-only .try-it-now{min-height:1230px}}html.landing-page-only .try-it-now::after{content:"";min-height:449px;width:100%;top:550px;position:absolute;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkyIiBoZWlnaHQ9IjMwNyIgdmlld0JveD0iMCAwIDM5MiAzMDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2QpIj4KPHBhdGggZD0iTTE4Ny40MDEgMjE0LjM2OUMxNzMuMDMgMjA2LjEyNSAxNzMuMDMgMTkyLjc1OCAxODcuNDAxIDE4NC41MTRMMjQ2LjgxOCAxNTAuNDNDMjU2LjM5OSAxNDQuOTM0IDI3MS45MzQgMTQ0LjkzNCAyODEuNTE1IDE1MC40M0wzMTUuNTYgMTY5Ljk2TDM0MC45MzIgMTg0LjUxNEMzNTUuMzAzIDE5Mi43NTggMzU1LjMwMyAyMDYuMTI1IDM0MC45MzIgMjE0LjM2OUwyODEuNTE1IDI0OC40NTRDMjcxLjkzMyAyNTMuOTUgMjU2LjM5OSAyNTMuOTUgMjQ2LjgxOCAyNDguNDU0TDE4Ny40MDEgMjE0LjM2OVoiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcikiLz4KPC9nPgo8ZyBmaWx0ZXI9InVybCgjZmlsdGVyMV9kKSI+CjxwYXRoIGQ9Ik0xODcuNDAxIDIwMy40OTNDMTczLjAzIDE5NS4yNDkgMTczLjAzIDE4MS44ODIgMTg3LjQwMSAxNzMuNjM4TDI0Ni44MTggMTM5LjU1M0MyNTYuMzk5IDEzNC4wNTcgMjcxLjkzNCAxMzQuMDU3IDI4MS41MTUgMTM5LjU1M0wzNDAuOTMyIDE3My42MzhDMzU1LjMwMyAxODEuODgyIDM1NS4zMDMgMTk1LjI0OSAzNDAuOTMyIDIwMy40OTNMMjgxLjUxNSAyMzcuNTc3QzI3MS45MzMgMjQzLjA3MyAyNTYuMzk5IDI0My4wNzMgMjQ2LjgxOCAyMzcuNTc3TDE4Ny40MDEgMjAzLjQ5M1oiIGZpbGw9InVybCgjcGFpbnQxX2xpbmVhcikiLz4KPC9nPgo8cGF0aCBkPSJNMjM4LjQ4NyAyMDIuOTMxTDIyMC4zNjYgMTkyLjQ2OUwyMzguNDg1IDE3OC43MjhMMjU5LjQ0NyAxOTAuODNMMjM4LjQ4NyAyMDIuOTMxWk0yNjEuNTQzIDE4OS42MkwyODguNzkgMTczLjg4OUwyNjMuNjM5IDE1OS4zNjhMMjQwLjE3OSAxNzcuMjg2TDI2MS41NDMgMTg5LjYyWk0yNjEuNTQzIDE5Mi4wNEwyNDAuNTgzIDIwNC4xNDFMMjU2LjYwOSAyMTMuMzk0TDI4MC40MDkgMjAyLjkzMkwyNjEuNTQzIDE5Mi4wNFpNMjYzLjYzOSAxOTAuODNMMjgyLjkwOSAyMDEuOTU2TDMxMy45NDIgMTg4LjQxTDI5MC44ODYgMTc1LjA5OUwyNjMuNjM5IDE5MC44M1oiIGZpbGw9IiNDQ0NFREMiLz4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjJfZCkiPgo8cGF0aCBkPSJNNTEuNDAxMyAxMzIuMzY5QzM3LjAyOTUgMTI0LjEyNSAzNy4wMjk1IDExMC43NTggNTEuNDAxMyAxMDIuNTE0TDExMC44MTggNjguNDI5N0MxMjAuMzk5IDYyLjkzMzUgMTM1LjkzNCA2Mi45MzM1IDE0NS41MTUgNjguNDI5N0wxNzkuNTYgODcuOTU5OEwyMDQuOTMyIDEwMi41MTRDMjE5LjMwMyAxMTAuNzU4IDIxOS4zMDMgMTI0LjEyNSAyMDQuOTMyIDEzMi4zNjlMMTQ1LjUxNSAxNjYuNDU0QzEzNS45MzQgMTcxLjk1IDEyMC4zOTkgMTcxLjk1IDExMC44MTggMTY2LjQ1NEw1MS40MDEzIDEzMi4zNjlaIiBmaWxsPSJ1cmwoI3BhaW50Ml9saW5lYXIpIi8+CjwvZz4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjNfZCkiPgo8cGF0aCBkPSJNNTEuNDAxMyAxMjEuNDkzQzM3LjAyOTUgMTEzLjI0OSAzNy4wMjk1IDk5Ljg4MTggNTEuNDAxMyA5MS42Mzc1TDExMC44MTggNTcuNTUzMkMxMjAuMzk5IDUyLjA1NyAxMzUuOTM0IDUyLjA1NyAxNDUuNTE1IDU3LjU1MzJMMjA0LjkzMiA5MS42Mzc1QzIxOS4zMDMgOTkuODgxOSAyMTkuMzAzIDExMy4yNDkgMjA0LjkzMiAxMjEuNDkzTDE0NS41MTUgMTU1LjU3N0MxMzUuOTM0IDE2MS4wNzMgMTIwLjM5OSAxNjEuMDczIDExMC44MTggMTU1LjU3N0w1MS40MDEzIDEyMS40OTNaIiBmaWxsPSJ1cmwoI3BhaW50M19saW5lYXIpIi8+CjwvZz4KPHBhdGggZD0iTTE2OS45ODggMTAyLjA2N0MxNjcuMjE1IDEwMi4yMzQgMTY1LjA2OCAxMDAuMzA3IDE2Mi4xMjUgMTAwLjQ0M0MxNTQuMjk2IDk0LjE0NTEgMTQxLjcyMiA5MS44Njg5IDEzMS4yODQgOTEuNzgzN0MxMjIuNTI1IDkxLjcxMyAxMTkuNTk2IDg4LjQxNDQgMTE1Ljg1NyA4Ni4yNTU2QzEwOS44ODIgODIuODA1OSAxMDEuMTI1IDgwLjU4MjggOTMuNjk0IDg0Ljg3MzFDODUuNzUwNSA4OS40NTkzIDkwLjE5OTcgOTQuNTQyMiA5My45MDI4IDk2Ljc3MDFDMTAyLjc5NiAxMDIuMTIzIDEwNy4xODEgMTAyLjMxOCAxMDguNDc2IDEwOS4yMDJDMTA5Ljk5OCAxMTcuMzAzIDExNi44MzQgMTIyLjMxMyAxMjIuMzYxIDEyMy44NzRDMTIyLjQ2OSAxMjQuNjk5IDEyMi40MyAxMjUuNzA1IDEyMS40NyAxMjcuMDczQzExOC44NzUgMTMwLjg4NiAxMjUuNjAxIDEzMC44NzYgMTI2LjcxIDEzMi45ODVDMTI3LjAyNCAxMzMuNTg1IDEyNy41NTkgMTM0LjA5MyAxMjguMjM1IDEzNC40ODNDMTMwLjMyMyAxMzUuNjg5IDEzMy43OSAxMzUuNzc0IDEzNi41MzUgMTMzLjg3N0MxNDAuMjQxIDEzMS4zMiAxNDYuODc2IDEzMC44MTcgMTQ5LjMwNCAxMjkuNDE1QzE1MS40NDggMTI4LjE3NyAxNTEuOTg4IDEyNi40NTcgMTUxLjEyNyAxMjUuMDE1QzE1NC4wMTcgMTIyLjI1NyAxNTguODcgMTE5LjU5MyAxNjMuNjkgMTE3Ljk1MkMxNjYuMzAxIDExOC42NjYgMTY5LjQyIDExOC4zMTIgMTcxLjQ5NCAxMTcuMTE0QzE3Ni4wMzUgMTE0LjQ5MyAxNzEuNzYxIDExMS4wMTYgMTc1LjIyOCAxMDcuMDAyQzE3Ni40NzggMTA1LjU1NyAxNzUuNjAxIDEwMy45NiAxNzMuOTA1IDEwMi45ODFDMTcyLjgxOSAxMDIuMzU1IDE3MS4zOTkgMTAxLjk4MiAxNjkuOTg4IDEwMi4wNjdaTTExNS4zODMgOTkuOTQ4MUMxMTQuNDk1IDEwMC40NjEgMTEzLjA0MiAxMDAuNDcxIDExMS4wMTggMTAwLjY0M0MxMDguNDU2IDEwMC44NjEgMTA2LjMzMiAxMDEuMzYxIDEwNS4yMDEgMTAwLjY4OUMxMDQuNDEzIDEwMC4yMzQgMTA1LjIyNiA5OS40ODUyIDEwNS43MjUgOTguMTk3NkMxMDYuMjYyIDk2LjgxNjcgMTA1Ljg5MiA5NS45NDM5IDEwNy4zMzQgOTUuMTExMkMxMDguODEgOTQuMjU5MiAxMTAuMDAxIDk0LjQzMjggMTEyLjg3MiA5My43NzU0QzExNS42OTggOTMuMTMwOCAxMTcuNDA1IDkyLjUzMTIgMTE4LjM2OCA5My4wODc0QzExOS4zNTYgOTMuNjU4IDExOCA5NS4yNTc1IDExNy41NjEgOTYuMzQ0MUMxMTYuOTA2IDk3LjkzNzIgMTE3LjAwOSA5OS4wMDk0IDExNS4zODMgOTkuOTQ4MVpNMTA1LjQ5OSA4OC44ODg2QzEwOC4zNDcgODcuNjk3NSAxMTIuOTM5IDkwLjAzIDExMy44ODggOTEuOTM0OEwxMTIuNDk2IDkyLjI3MjRDMTExLjQ5NiA5MS4xMDM3IDEwOC45OTkgODkuNjcxNSAxMDcuMTI1IDkwLjU3MDFDMTA1LjkzNiA5MS4xNDA3IDEwNi42NzEgOTIuMzc1MyAxMDcuNzUyIDkzLjE3MjZDMTA3LjE0NyA5My4zMTU2IDEwNi41NTQgOTMuNTEwMiAxMDUuOTQyIDkzLjgwOTFDMTAzLjU0NSA5Mi4yMjU4IDEwMi45MzggODkuOTU5MiAxMDUuNDk5IDg4Ljg4ODZaTTk2Ljk0NiA5NC44OTFDOTguMzYwNCA5My41MzQzIDEwMS42NiA5NC4xNTY0IDEwMy45NDMgOTUuNDY0OUwxMDMuNjA5IDk2LjI2ODZDMTAyLjUzNyA5NS43ODQ3IDEwMC41NjggOTUuMTQwMSA5OS44Mjc3IDk1Ljk0NzFDOTkuMDM5NyA5Ni44MTM1IDEwMS44ODUgOTguMjQxIDEwMy4wNjkgOTguMTg3OUwxMDIuNjkgOTguOTUzMUM5OS41NTIgOTguNDkxNyA5NS41ODQ1IDk2LjE5NzkgOTYuOTQ2IDk0Ljg5MVpNMTQ0LjYzNCAxMjkuMjI0QzEzNi42ODMgMTMwLjk0NCAxMzUuMzkxIDEzMi4zNDIgMTM0LjM0NyAxMzIuOTQ1QzEzMi4xODMgMTM0LjE5NCAxMjkuODY0IDEzMy42NzIgMTI5LjE1MSAxMzIuMzIxQzEyOC41NDcgMTMxLjE3NSAxMjYuOTc3IDEzMC41MTYgMTI1LjcxOCAxMjkuOTg2QzEyMy43ODkgMTI5LjE3NCAxMjMuMTk5IDEyOC44ODggMTI0LjEyIDEyNy41MjZDMTI1LjQyNiAxMjUuNjYgMTI1LjE5NSAxMjQuMzYzIDEyNS4wMTkgMTIzLjM5M0MxMjQuNTIxIDEyMC42NjkgMTMwLjc1NSAxMjEuODA4IDEzNi4xNTYgMTIyLjkxMUMxMzkuNjU5IDEyMy42MjUgMTQzLjA4OSAxMjMuMDMgMTQ2LjQwMiAxMjQuMTQ5QzE0OS40NiAxMjUuMTg0IDE0OS40NCAxMjguMTg1IDE0NC42MzQgMTI5LjIyNFpNMTU4Ljg3IDExNC45OEMxNTYuODkxIDExOC4yODYgMTUyLjg0MiAxMjEuNjE3IDE0Ny4yNjggMTIyLjYzOUMxNDUuMTU4IDEyMi4wNDggMTQzLjI3NiAxMjEuOTY0IDE0MS4zMjEgMTIxLjkxNkMxNDIuNDI3IDEyMC44MjEgMTQxLjY2OSAxMTkuMDk4IDEzOC40NTYgMTE4Ljc4M0MxMzUuMDI2IDExOC40NDUgMTMwLjcxOSAxMTkuMzE1IDEyNS41MSAxMTkuNjk5QzEyMC42MzcgMTIwLjA1OSAxMTQuNTMxIDExNy41MzcgMTEyLjQyMSAxMTEuOTk4QzExNS43ODEgMTE2LjA0NCAxMjEuNjI1IDExOC4xODcgMTIzLjkwOSAxMTguNDQ3QzEyMS4zNDcgMTE2Ljc1IDExNi45NyAxMTMuOTcyIDExNS4yMjUgMTA4LjYyNEMxMTQuMzQyIDEwNS45MjUgMTEwLjcgMTAzLjc5IDEwOC40NDggMTAyLjQ0MUwxMTEuMzU0IDEwMi4xMjZDMTEzLjU2MiAxMDEuOTM1IDExNS42NTkgMTAxLjkxNyAxMTcuMTg1IDEwMS4wMzZDMTE5LjQ0IDk5LjczNDMgMTE5LjM5IDk4LjI2NTEgMTIwLjA1IDk2LjYzOTlDMTIwLjMxMSA5Ni4wMDY2IDEyMC45MTYgOTUuMTY5MSAxMjEuMTkxIDk0LjMzMTZDMTI5LjUzMyA5Ny40NzU4IDE0My44MjEgOTguODAwNCAxNDguODggMTAxLjMzMkMxNDcuNDAyIDk4Ljg2NzkgMTM4LjcwMSA5NS45MTE3IDEzOC43MDEgOTUuOTExN0MxNDQuNjIzIDk2LjYyMzggMTQ3Ljc5MiA5OC4yMzc4IDE1MS41NTMgMTAwLjI5MUMxNTMuODY0IDk5LjczMTEgMTU3LjM3MiA5OS43MjQ3IDE1OS44MzYgMTAwLjk2MUwxNTkuMDc2IDEwMS4zMUMxNTYuMTY3IDEwMC4wMzUgMTQ1LjUgMTAxLjg1MyAxNDkuNjk2IDEwNC45OTJDMTQ2Ljg4NyAxMDcuMTk2IDE1My4zNDEgMTA5LjUzIDE1Ni4wNzUgMTExLjg4QzE1Ny4zMjUgMTEyLjk1NiAxNTcuOTg4IDExMy45OTQgMTU4Ljg3IDExNC45OFpNMTcyLjI0OSAxMDcuMTI0QzE3MC41NjQgMTA5LjMxOCAxNzAuOTU5IDExMS42ODQgMTcxLjA4MiAxMTMuMjI0QzE3MS4zMjEgMTE2LjE5MiAxNjYuNzkxIDExNy4zMTkgMTYzLjkyOSAxMTYuMDY1QzE2MC44NzUgMTE0LjcyMyAxNjAuNzc1IDExMy4wODYgMTU4LjM1NSAxMTEuMDA4QzE1Ni4xNDUgMTA5LjExMSAxNTEuMzE0IDEwNy4wMTYgMTUyLjEyNyAxMDYuMDI2QzE1Ny44MjkgMTA4LjM3IDE2MC43MDggMTA0LjMzOCAxNjAuNTAyIDEwMi45MkMxNjIuMzMxIDEwMS44NjQgMTYzLjEwMiAxMDIuMTMzIDE2NS4yMjQgMTAyLjg4NUMxNjYuNTUyIDEwMy4zNTYgMTY3LjgwOCAxMDMuNjczIDE2OS44NjggMTAzLjcwOEMxNzIuMjc2IDEwMy43NTUgMTczLjgzIDEwNS4wNjMgMTcyLjI0OSAxMDcuMTI0Wk0xMTMuNzYzIDk5LjA3NjlDMTExLjk1IDEwMC4xMjMgMTA5LjM4OSAxMDAuMjEgMTA3LjM1MSAxMDAuMzA3QzEwNi4zMDkgMTAwLjM1OCAxMDYuMTM0IDk5LjQ0MzQgMTA3LjE3OCA5OS4zOTM1QzEwOS4xNjkgOTkuMjk4NyAxMTEuMjIxIDk5LjIyOTYgMTEyLjYyNCA5OC40MTk0QzExNC4zMTQgOTcuNDQzNyAxMTQuMzU5IDk1Ljc0OTQgMTE1LjU4MSA5NC4xMjQyQzExNS45OTkgOTMuNTcxMiAxMTcuNDU1IDkzLjk1ODYgMTE3LjA0MyA5NC41MDg0QzExNS44NTQgOTYuMDg1MyAxMTUuODI2IDk3Ljg4NTcgMTEzLjc2MyA5OS4wNzY5WiIgZmlsbD0iI0NDQ0VEQyIvPgo8ZGVmcz4KPGZpbHRlciBpZD0iZmlsdGVyMF9kIiB4PSIxMzYuNjIyIiB5PSIxMTMuMzA4IiB3aWR0aD0iMjU1LjA4OCIgaGVpZ2h0PSIxODYuMjY4IiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIyMCIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAxIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxmaWx0ZXIgaWQ9ImZpbHRlcjFfZCIgeD0iMTQ2LjYyMiIgeT0iMTEyLjQzMSIgd2lkdGg9IjIzNS4wODgiIGhlaWdodD0iMTY2LjI2OCIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIiBjb2xvci1pbnRlcnBvbGF0aW9uLWZpbHRlcnM9InNSR0IiPgo8ZmVGbG9vZCBmbG9vZC1vcGFjaXR5PSIwIiByZXN1bHQ9IkJhY2tncm91bmRJbWFnZUZpeCIvPgo8ZmVDb2xvck1hdHJpeCBpbj0iU291cmNlQWxwaGEiIHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAxMjcgMCIvPgo8ZmVPZmZzZXQgZHk9IjciLz4KPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMTUiLz4KPGZlQ29sb3JNYXRyaXggdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMC44NDMxMzcgMCAwIDAgMCAwLjg1MDk4IDAgMCAwIDAgMC44OTgwMzkgMCAwIDAgMC40MiAwIi8+CjxmZUJsZW5kIG1vZGU9Im5vcm1hbCIgaW4yPSJCYWNrZ3JvdW5kSW1hZ2VGaXgiIHJlc3VsdD0iZWZmZWN0MV9kcm9wU2hhZG93Ii8+CjxmZUJsZW5kIG1vZGU9Im5vcm1hbCIgaW49IlNvdXJjZUdyYXBoaWMiIGluMj0iZWZmZWN0MV9kcm9wU2hhZG93IiByZXN1bHQ9InNoYXBlIi8+CjwvZmlsdGVyPgo8ZmlsdGVyIGlkPSJmaWx0ZXIyX2QiIHg9IjAuNjIyMDciIHk9IjMxLjMwNzYiIHdpZHRoPSIyNTUuMDg4IiBoZWlnaHQ9IjE4Ni4yNjgiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz4KPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUFscGhhIiB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMTI3IDAiLz4KPGZlT2Zmc2V0IGR5PSI3Ii8+CjxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjIwIi8+CjxmZUNvbG9yTWF0cml4IHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAuODQzMTM3IDAgMCAwIDAgMC44NTA5OCAwIDAgMCAwIDAuODk4MDM5IDAgMCAwIDEgMCIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluMj0iQmFja2dyb3VuZEltYWdlRml4IiByZXN1bHQ9ImVmZmVjdDFfZHJvcFNoYWRvdyIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluPSJTb3VyY2VHcmFwaGljIiBpbjI9ImVmZmVjdDFfZHJvcFNoYWRvdyIgcmVzdWx0PSJzaGFwZSIvPgo8L2ZpbHRlcj4KPGZpbHRlciBpZD0iZmlsdGVyM19kIiB4PSIxMC42MjIxIiB5PSIzMC40MzExIiB3aWR0aD0iMjM1LjA4OCIgaGVpZ2h0PSIxNjYuMjY4IiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIxNSIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAwLjQyIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjI2OC40MTUiIHkxPSIyMzcuOTc5IiB4Mj0iMjY5LjIyMSIgeTI9IjE2NS4zNTkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0YyRjJGQSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGN0Y3RkQiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDFfbGluZWFyIiB4MT0iMjY4LjQxNSIgeTE9IjIyNy4xMDMiIHgyPSIyNjkuMjIxIiB5Mj0iMTU0LjQ4MyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRjhGOEZDIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0ZERkRGRiIvPgo8L2xpbmVhckdyYWRpZW50Pgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50Ml9saW5lYXIiIHgxPSIxMzIuNDE1IiB5MT0iMTU1Ljk3OSIgeDI9IjEzMy4yMjEiIHkyPSI4My4zNTkzIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGMkYyRkEiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRjdGN0ZEIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQzX2xpbmVhciIgeDE9IjEzMi40MTUiIHkxPSIxNDUuMTAzIiB4Mj0iMTMzLjIyMSIgeTI9IjcyLjQ4MjkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0Y4RjhGQyIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGREZERkYiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K),url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkyIiBoZWlnaHQ9IjMwNyIgdmlld0JveD0iMCAwIDM5MiAzMDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2QpIj4KPHBhdGggZD0iTTE4Ny40MDEgMTMyLjM2OUMxNzMuMDMgMTI0LjEyNSAxNzMuMDMgMTEwLjc1OCAxODcuNDAxIDEwMi41MTRMMjQ2LjgxOCA2OC40Mjk3QzI1Ni4zOTkgNjIuOTMzNSAyNzEuOTM0IDYyLjkzMzUgMjgxLjUxNSA2OC40Mjk3TDMxNS41NiA4Ny45NTk4TDM0MC45MzIgMTAyLjUxNEMzNTUuMzAzIDExMC43NTggMzU1LjMwMyAxMjQuMTI1IDM0MC45MzIgMTMyLjM2OUwyODEuNTE1IDE2Ni40NTRDMjcxLjkzNCAxNzEuOTUgMjU2LjM5OSAxNzEuOTUgMjQ2LjgxOCAxNjYuNDU0TDE4Ny40MDEgMTMyLjM2OVoiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcikiLz4KPC9nPgo8ZyBmaWx0ZXI9InVybCgjZmlsdGVyMV9kKSI+CjxwYXRoIGQ9Ik0xODcuNDAxIDEyMS40OTNDMTczLjAzIDExMy4yNDkgMTczLjAzIDk5Ljg4MTggMTg3LjQwMSA5MS42Mzc1TDI0Ni44MTggNTcuNTUzMkMyNTYuMzk5IDUyLjA1NyAyNzEuOTM0IDUyLjA1NyAyODEuNTE1IDU3LjU1MzJMMzQwLjkzMiA5MS42Mzc1QzM1NS4zMDMgOTkuODgxOSAzNTUuMzAzIDExMy4yNDkgMzQwLjkzMiAxMjEuNDkzTDI4MS41MTUgMTU1LjU3N0MyNzEuOTM0IDE2MS4wNzMgMjU2LjM5OSAxNjEuMDczIDI0Ni44MTggMTU1LjU3N0wxODcuNDAxIDEyMS40OTNaIiBmaWxsPSJ1cmwoI3BhaW50MV9saW5lYXIpIi8+CjwvZz4KPHBhdGggZD0iTTI2OC4yMDYgODkuMTE1MkMyNjYuMjE3IDg3Ljk2NjkgMjYyLjk4OSA4Ny45NjY5IDI2MSA4OS4xMTUyTDIzMy45NzcgMTA0LjcxN0MyMzEuOTg4IDEwNS44NjUgMjMxLjk4OCAxMDcuNzI5IDIzMy45NzcgMTA4Ljg3N0wyNjEgMTI0LjQ3OUMyNjIuOTg5IDEyNS42MjcgMjY2LjIxNyAxMjUuNjI3IDI2OC4yMDYgMTI0LjQ3OUwyOTUuMjI5IDEwOC44NzdDMjk3LjIxOCAxMDcuNzI5IDI5Ny4yMTggMTA1Ljg2NSAyOTUuMjI5IDEwNC43MTdMMjY4LjIwNiA4OS4xMTUyWk0yOTAuMjc1IDEwNi4wMTdDMjkxLjAyMSAxMDYuNDQ4IDI5MS4wMjEgMTA3LjE0NyAyOTAuMjc1IDEwNy41NzdMMjY1Ljk1NCAxMjEuNjE5QzI2NS4yMDkgMTIyLjA0OSAyNjMuOTk4IDEyMi4wNDkgMjYzLjI1MiAxMjEuNjE5TDIzOC45MzEgMTA3LjU3N0MyMzguMTg2IDEwNy4xNDcgMjM4LjE4NiAxMDYuNDQ4IDIzOC45MzEgMTA2LjAxN0wyNjMuMjUyIDkxLjk3NTVDMjYzLjk5OCA5MS41NDQ5IDI2NS4yMDkgOTEuNTQ0OSAyNjUuOTU0IDkxLjk3NTVMMjkwLjI3NSAxMDYuMDE3Wk0yODAuODE3IDExOS4yNzlMMjgyLjYxOSAxMjAuMzE5TDI4MC44MTcgMTIxLjM1OUwyNzkuMDE2IDEyMC4zMTlMMjgwLjgxNyAxMTkuMjc5Wk0yODQuNDIgMTE3LjE5OEwyODYuMjIyIDExOC4yMzhMMjg0LjQyIDExOS4yNzlMMjgyLjYxOSAxMTguMjM4TDI4NC40MiAxMTcuMTk4Wk0yNzcuMjE0IDEyMS4zNTlMMjc5LjAxNiAxMjIuMzk5TDI3Ny4yMTQgMTIzLjQzOUwyNzUuNDEzIDEyMi4zOTlMMjc3LjIxNCAxMjEuMzU5Wk0yODguMDIzIDExNS4xMThMMjg5LjgyNSAxMTYuMTU4TDI4OC4wMjMgMTE3LjE5OEwyODYuMjIyIDExNi4xNThMMjg4LjAyMyAxMTUuMTE4Wk0yOTEuNjI2IDExMy4wMzhMMjkzLjQyOCAxMTQuMDc4TDI5MS42MjYgMTE1LjExOEwyODkuODI1IDExNC4wNzhMMjkxLjYyNiAxMTMuMDM4Wk0yNDEuMTgzIDk2LjM5NkwyNDIuOTg1IDk3LjQzNjFMMjQxLjE4MyA5OC40NzYyTDIzOS4zODIgOTcuNDM2MUwyNDEuMTgzIDk2LjM5NlpNMjQ0Ljc4NiA5NC4zMTU3TDI0Ni41ODggOTUuMzU1OUwyNDQuNzg2IDk2LjM5NkwyNDIuOTg1IDk1LjM1NTlMMjQ0Ljc4NiA5NC4zMTU3Wk0yMzcuNTggOTguNDc2MkwyMzkuMzgyIDk5LjUxNjNMMjM3LjU4IDEwMC41NTZMMjM1Ljc3OSA5OS41MTYzTDIzNy41OCA5OC40NzYyWk0yNDguMzg5IDkyLjIzNTVMMjUwLjE5MSA5My4yNzU2TDI0OC4zODkgOTQuMzE1N0wyNDYuNTg4IDkzLjI3NTZMMjQ4LjM4OSA5Mi4yMzU1Wk0yNTEuOTkzIDkwLjE1NTNMMjUzLjc5NCA5MS4xOTU0TDI1MS45OTMgOTIuMjM1NUwyNTAuMTkxIDkxLjE5NTRMMjUxLjk5MyA5MC4xNTUzWk0yODYuMjIyIDk3LjQzNjFMMjg4LjAyMyA5Ni4zOTZMMjg5LjgyNSA5Ny40MzYxTDI4OC4wMjMgOTguNDc2MkwyODYuMjIyIDk3LjQzNjFaTTI3OS4wMTYgOTMuMjc1NkwyODAuODE3IDkyLjIzNTVMMjgyLjYxOSA5My4yNzU2TDI4MC44MTcgOTQuMzE1N0wyNzkuMDE2IDkzLjI3NTZaTTI3NS40MTMgOTEuMTk1NEwyNzcuMjE0IDkwLjE1NTNMMjc5LjAxNiA5MS4xOTU0TDI3Ny4yMTQgOTIuMjM1NUwyNzUuNDEzIDkxLjE5NTRaTTI4Mi42MTkgOTUuMzU1OUwyODQuNDIgOTQuMzE1N0wyODYuMjIyIDk1LjM1NTlMMjg0LjQyIDk2LjM5NkwyODIuNjE5IDk1LjM1NTlaTTI4OS44MjUgOTkuNTE2M0wyOTEuNjI2IDk4LjQ3NjJMMjkzLjQyOCA5OS41MTYzTDI5MS42MjYgMTAwLjU1NkwyODkuODI1IDk5LjUxNjNaTTI0Ni41ODggMTIwLjMxOUwyNDguMzg5IDExOS4yNzlMMjUwLjE5MSAxMjAuMzE5TDI0OC4zODkgMTIxLjM1OUwyNDYuNTg4IDEyMC4zMTlaTTIzOS4zODIgMTE2LjE1OEwyNDEuMTgzIDExNS4xMThMMjQyLjk4NSAxMTYuMTU4TDI0MS4xODMgMTE3LjE5OEwyMzkuMzgyIDExNi4xNThaTTIzNS43NzkgMTE0LjA3OEwyMzcuNTggMTEzLjAzOEwyMzkuMzgyIDExNC4wNzhMMjM3LjU4IDExNS4xMThMMjM1Ljc3OSAxMTQuMDc4Wk0yNDIuOTg1IDExOC4yMzhMMjQ0Ljc4NiAxMTcuMTk4TDI0Ni41ODggMTE4LjIzOEwyNDQuNzg2IDExOS4yNzlMMjQyLjk4NSAxMTguMjM4Wk0yNTAuMTkxIDEyMi4zOTlMMjUxLjk5MyAxMjEuMzU5TDI1My43OTQgMTIyLjM5OUwyNTEuOTkzIDEyMy40MzlMMjUwLjE5MSAxMjIuMzk5Wk0yODQuNDIgMTA2Ljc5N0wyNjQuNjAzIDExOC4yMzhMMjQ0Ljc4NiAxMDYuNzk3TDI2NC42MDMgOTUuMzU1OUwyODQuNDIgMTA2Ljc5N1oiIGZpbGw9IiNDQ0NFREMiLz4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjJfZCkiPgo8cGF0aCBkPSJNNTEuNDAxMyAyMTQuMzY5QzM3LjAyOTUgMjA2LjEyNSAzNy4wMjk1IDE5Mi43NTggNTEuNDAxMyAxODQuNTE0TDExMC44MTggMTUwLjQzQzEyMC4zOTkgMTQ0LjkzNCAxMzUuOTM0IDE0NC45MzQgMTQ1LjUxNSAxNTAuNDNMMTc5LjU2IDE2OS45NkwyMDQuOTMyIDE4NC41MTRDMjE5LjMwMyAxOTIuNzU4IDIxOS4zMDMgMjA2LjEyNSAyMDQuOTMyIDIxNC4zNjlMMTQ1LjUxNSAyNDguNDU0QzEzNS45MzQgMjUzLjk1IDEyMC4zOTkgMjUzLjk1IDExMC44MTggMjQ4LjQ1NEw1MS40MDEzIDIxNC4zNjlaIiBmaWxsPSJ1cmwoI3BhaW50Ml9saW5lYXIpIi8+CjwvZz4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjNfZCkiPgo8cGF0aCBkPSJNNTEuNDAxMyAyMDMuNDkzQzM3LjAyOTUgMTk1LjI0OSAzNy4wMjk1IDE4MS44ODIgNTEuNDAxMyAxNzMuNjM4TDExMC44MTggMTM5LjU1M0MxMjAuMzk5IDEzNC4wNTcgMTM1LjkzNCAxMzQuMDU3IDE0NS41MTUgMTM5LjU1M0wyMDQuOTMyIDE3My42MzhDMjE5LjMwMyAxODEuODgyIDIxOS4zMDMgMTk1LjI0OSAyMDQuOTMyIDIwMy40OTNMMTQ1LjUxNSAyMzcuNTc3QzEzNS45MzQgMjQzLjA3MyAxMjAuMzk5IDI0My4wNzMgMTEwLjgxOCAyMzcuNTc3TDUxLjQwMTMgMjAzLjQ5M1oiIGZpbGw9InVybCgjcGFpbnQzX2xpbmVhcikiLz4KPC9nPgo8cGF0aCBkPSJNMTAxLjE1NyAxOTAuNzg2TDEyNi4xMjggMjA1LjJDMTI4LjQwNSAyMDYuNTE0IDEzMi4wODIgMjA2LjUxMyAxMzQuMzU5IDIwNS4xOThMMTM1LjUyNyAyMDQuNTI0TDE0NC44OTIgMjA5LjkzQzE0Ny4wMTggMjExLjE1OCAxNTAuNjE2IDIxMS4wNzcgMTUyLjczOSAyMDkuODUxQzE1NC44NyAyMDguNjIxIDE1NC45NDkgMjA2LjU3OCAxNTIuODIxIDIwNS4zNUwxNDMuNDU5IDE5OS45NDRMMTQ4Ljc0NyAxOTYuODkyTDE1OC4xMTEgMjAyLjI5OEMxNjAuMjM3IDIwMy41MjUgMTYzLjgzNSAyMDMuNDQ1IDE2NS45NjEgMjAyLjIxN0MxNjguMDkyIDIwMC45ODcgMTY4LjE2OSAxOTguOTQ2IDE2Ni4wNCAxOTcuNzE3TDE1Ni42NzggMTkyLjMxMkwxNTcuODUgMTkxLjYzM0MxNjAuMTE4IDE5MC4zMjMgMTYwLjEyMyAxODguMTk1IDE1Ny44NDcgMTg2Ljg4MUwxMzIuODg0IDE3Mi40NjlMMTAxLjE1NyAxOTAuNzg2Wk0xNDcuMzQ4IDE2OC42MDhDMTQ1LjIyIDE2Ny4zNzkgMTQxLjYyMiAxNjcuNDI0IDEzOS40OTMgMTY4LjY1MkMxMzcuMzYyIDE2OS44OCAxMzcuMjkxIDE3MS45NiAxMzkuNDE5IDE3My4xODlMMTU1LjU2MyAxODIuNTA5QzE1Ny42OTQgMTgzLjc0IDE2MS4xNTcgMTgzLjYyMSAxNjMuMjg4IDE4Mi4zOUMxNjUuNDE2IDE4MS4xNjIgMTY1LjYyOCAxNzkuMTYyIDE2My40OTQgMTc3LjkzTDE0Ny4zNDggMTY4LjYwOFpNMTAyLjQwMiAxOTQuNTU4QzEwMC4yNzQgMTkzLjMyOSA5Ni42NzU4IDE5My4zNzMgOTQuNTQ3NCAxOTQuNjAyQzkyLjQxNjUgMTk1LjgyOSA5Mi4zNDUxIDE5Ny45MSA5NC40NzM0IDE5OS4xMzhMMTEwLjYxNyAyMDguNDU5QzExMi43NDggMjA5LjY4OSAxMTYuMjExIDIwOS41NyAxMTguMzQyIDIwOC4zNEMxMjAuNDcxIDIwNy4xMTEgMTIwLjY4MiAyMDUuMTExIDExOC41NDkgMjAzLjg4TDEwMi40MDIgMTk0LjU1OFpNMTA5LjM4IDE2OC4yMDdMMTA2Ljk1IDE2My45MzRDMTA2Ljc4MSAxNjMuNjI5IDEwNi4xMDYgMTYzLjUwNSAxMDUuNzI2IDE2My43MjVDMTA1LjU1MSAxNjMuODI2IDEwNS40ODIgMTYzLjk4MiAxMDUuNTcgMTY0LjEzNkwxMDguMDI2IDE2OC40NTFDMTAyLjAzIDE2OS42NjMgOTYuNTA5MiAxNzIuNjIxIDk0LjIwMTEgMTc2LjQzM0w4Ni43MjQyIDE3NS4wMTZDODYuNDU5OCAxNzQuOTY0IDg2LjE5MDIgMTc1LjAwNCA4Ni4wMTMgMTc1LjEwNkM4NS42MzIzIDE3NS4zMjYgODUuODQ2NSAxNzUuNzE1IDg2LjM3NTIgMTc1LjgxM0w5My43NzU0IDE3Ny4yMTZDOTEuNjMxMyAxODEuNjEgOTIuNTQ2IDE4NS44MTQgOTguNTEwNiAxODkuMjU4TDEzMC4yMzcgMTcwLjk0MUMxMjQuMjcyIDE2Ny40OTcgMTE2Ljk5MSAxNjYuOTY5IDEwOS4zOCAxNjguMjA3Wk0xMDIuNDgyIDE4MC44NjJDMTAxLjc1MiAxODEuMjg0IDEwMC41NjUgMTgxLjI4NSA5OS44MzUyIDE4MC44NjRDOTkuMTEwOCAxODAuNDQ2IDk5LjEwODEgMTc5Ljc1NyA5OS44Mzc4IDE3OS4zMzZDMTAwLjU2OCAxNzguOTE1IDEwMS43NTUgMTc4LjkxOSAxMDIuNDc5IDE3OS4zMzhDMTAzLjIwOSAxNzkuNzU5IDEwMy4yMTEgMTgwLjQ0MSAxMDIuNDgyIDE4MC44NjJaTTExNS42OTYgMTczLjIzM0MxMTQuOTY2IDE3My42NTUgMTEzLjc4NCAxNzMuNjUzIDExMy4wNTUgMTczLjIzMkMxMTIuMzMgMTcyLjgxNCAxMTIuMzIyIDE3Mi4xMjggMTEzLjA1MiAxNzEuNzA3QzExMy43ODIgMTcxLjI4NiAxMTQuOTc0IDE3MS4yODcgMTE1LjY5OCAxNzEuNzA1QzExNi40MjggMTcyLjEyNyAxMTYuNDI1IDE3Mi44MTIgMTE1LjY5NiAxNzMuMjMzWiIgZmlsbD0iI0NDQ0VEQyIvPgo8ZGVmcz4KPGZpbHRlciBpZD0iZmlsdGVyMF9kIiB4PSIxMzYuNjIyIiB5PSIzMS4zMDc2IiB3aWR0aD0iMjU1LjA4OCIgaGVpZ2h0PSIxODYuMjY4IiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIyMCIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAxIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxmaWx0ZXIgaWQ9ImZpbHRlcjFfZCIgeD0iMTQ2LjYyMiIgeT0iMzAuNDMxMSIgd2lkdGg9IjIzNS4wODgiIGhlaWdodD0iMTY2LjI2OCIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIiBjb2xvci1pbnRlcnBvbGF0aW9uLWZpbHRlcnM9InNSR0IiPgo8ZmVGbG9vZCBmbG9vZC1vcGFjaXR5PSIwIiByZXN1bHQ9IkJhY2tncm91bmRJbWFnZUZpeCIvPgo8ZmVDb2xvck1hdHJpeCBpbj0iU291cmNlQWxwaGEiIHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAxMjcgMCIvPgo8ZmVPZmZzZXQgZHk9IjciLz4KPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMTUiLz4KPGZlQ29sb3JNYXRyaXggdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMC44NDMxMzcgMCAwIDAgMCAwLjg1MDk4IDAgMCAwIDAgMC44OTgwMzkgMCAwIDAgMC40MiAwIi8+CjxmZUJsZW5kIG1vZGU9Im5vcm1hbCIgaW4yPSJCYWNrZ3JvdW5kSW1hZ2VGaXgiIHJlc3VsdD0iZWZmZWN0MV9kcm9wU2hhZG93Ii8+CjxmZUJsZW5kIG1vZGU9Im5vcm1hbCIgaW49IlNvdXJjZUdyYXBoaWMiIGluMj0iZWZmZWN0MV9kcm9wU2hhZG93IiByZXN1bHQ9InNoYXBlIi8+CjwvZmlsdGVyPgo8ZmlsdGVyIGlkPSJmaWx0ZXIyX2QiIHg9IjAuNjIyMDciIHk9IjExMy4zMDgiIHdpZHRoPSIyNTUuMDg4IiBoZWlnaHQ9IjE4Ni4yNjgiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz4KPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUFscGhhIiB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMTI3IDAiLz4KPGZlT2Zmc2V0IGR5PSI3Ii8+CjxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjIwIi8+CjxmZUNvbG9yTWF0cml4IHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAuODQzMTM3IDAgMCAwIDAgMC44NTA5OCAwIDAgMCAwIDAuODk4MDM5IDAgMCAwIDEgMCIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluMj0iQmFja2dyb3VuZEltYWdlRml4IiByZXN1bHQ9ImVmZmVjdDFfZHJvcFNoYWRvdyIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluPSJTb3VyY2VHcmFwaGljIiBpbjI9ImVmZmVjdDFfZHJvcFNoYWRvdyIgcmVzdWx0PSJzaGFwZSIvPgo8L2ZpbHRlcj4KPGZpbHRlciBpZD0iZmlsdGVyM19kIiB4PSIxMC42MjIxIiB5PSIxMTIuNDMxIiB3aWR0aD0iMjM1LjA4OCIgaGVpZ2h0PSIxNjYuMjY4IiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldCBkeT0iNyIvPgo8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIxNSIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjg0MzEzNyAwIDAgMCAwIDAuODUwOTggMCAwIDAgMCAwLjg5ODAzOSAwIDAgMCAwLjQyIDAiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3ciLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhciIgeDE9IjI2OC40MTUiIHkxPSIxNTUuOTc5IiB4Mj0iMjY5LjIyMSIgeTI9IjgzLjM1OTMiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0YyRjJGQSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGN0Y3RkQiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDFfbGluZWFyIiB4MT0iMjY4LjQxNSIgeTE9IjE0NS4xMDMiIHgyPSIyNjkuMjIxIiB5Mj0iNzIuNDgyOSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRjhGOEZDIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0ZERkRGRiIvPgo8L2xpbmVhckdyYWRpZW50Pgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50Ml9saW5lYXIiIHgxPSIxMzIuNDE1IiB5MT0iMjM3Ljk3OSIgeDI9IjEzMy4yMjEiIHkyPSIxNjUuMzU5IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGMkYyRkEiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRjdGN0ZEIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQzX2xpbmVhciIgeDE9IjEzMi40MTUiIHkxPSIyMjcuMTAzIiB4Mj0iMTMzLjIyMSIgeTI9IjE1NC40ODMiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0Y4RjhGQyIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGREZERkYiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K);background-position:left bottom,right bottom;background-repeat:no-repeat}@media(max-width: 991.98px){html.landing-page-only .try-it-now::after{top:unset;background-image:url(/assets/images/logo-mobile-e35023873b1d427d458e8a0fcfdcf8e3.svg);background-position:center 1rem}}html.landing-page-only .try-it-now .badge{font-size:6px}html.landing-page-only .try-it-now .nav-pills .nav-link{border:none;padding:12px 32px}html.landing-page-only .try-it-now .nav-pills .nav-link.active{color:#897fd4 !important;padding:12px 32px}html.landing-page-only .try-it-now .nav-pills .nav-link:hover{color:#897fd4 !important}html.landing-page-only .try-it-now .terminal{height:24rem;box-shadow:0px 4px 45px #b7b9c5;-moz-box-shadow:0px 4px 45px #b7b9c5}html.landing-page-only .try-it-now .terminal .terminal-numbers{width:3.25rem;height:100%}@media(max-width: 991.98px){html.landing-page-only .try-it-now .terminal{min-height:390px}}html.landing-page-only .try-it-now .terminal .tab-pane{height:100%}@media screen and (max-width: 768px)and (min-width: 768px){html.landing-page-only .footer .sub{margin-left:0 !important}}html.landing-page-only .footer a{font-size:14px}html.landing-page-only .footer p{font-size:14px}@media screen and (max-width: 768px){html.landing-page-only .form-register{margin:0 auto !important}}html.landing-page-only .white-space-nowrap{white-space:nowrap}html.landing-page-only .h7{font-size:14px}html.landing-page-only .carousel-control-next{bottom:0;top:unset;opacity:1}@media(max-width: 991.98px){html.landing-page-only .carousel-control-next{right:41px;bottom:-55px;width:100px}}html.landing-page-only .carousel-control-next .carousel-control-next-icon{width:48px;height:48px;background-color:#f9f9fd;box-shadow:0px 10px 40px #d7d9e7;-moz-box-shadow:0px 10px 40px #d7d9e7;border-radius:10px;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAyMCAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE5LjY5MjcgNy4yNDIyNkwxMi45NjgzIDAuMzA2MDExQzEyLjU3MjggLTAuMTAyMDA0IDExLjg5NDcgLTAuMTAyMDA0IDExLjQ5OTIgMC4zMDYwMTFDMTEuMTAzNiAwLjcxNDAyNiAxMS4xMDM2IDEuNDEzNDggMTEuNDk5MiAxLjgyMTVMMTYuNDQzNSA2LjkyMTY4SDEuMDQ1MzhDMC40ODAzMTIgNi45MjE2OCAwIDcuNDE3MTMgMCA4LjAwMDAxQzAgOC41ODI4OSAwLjQ4MDMxMiA5LjA3ODMyIDEuMDQ1MzggOS4wNzgzMkgxNi40NDM1TDExLjQ5OTIgMTQuMTc4NUMxMS4xMDM2IDE0LjU4NjUgMTEuMTAzNiAxNS4yODYgMTEuNDk5MiAxNS42OTRDMTEuODk0NyAxNi4xMDIgMTIuNTcyOCAxNi4xMDIgMTIuOTY4MyAxNS42OTRMMTkuNjkyNyA4Ljc1Nzc0QzIwLjExNjUgOC4zNDk3MyAyMC4wODgyIDcuNjUwMjcgMTkuNjkyNyA3LjI0MjI2WiIgZmlsbD0iI0VEM0I0MiIvPgo8L3N2Zz4K);background-size:20px 16px}@media(max-width: 991.98px){html.landing-page-only .carousel-control-next .carousel-control-next-icon{width:48px !important;height:48px !important}}html.landing-page-only .tab-content ul{list-style:none;padding:0;margin:0}html.landing-page-only .tab-content li::before{content:"•";color:#ed3b42;padding-right:10px}html.landing-page-only .nav-pills .nav-link{border:none}@media(max-width: 991.98px){html.landing-page-only .nav-pills .nav-link{padding:12px 20px}}html.landing-page-only .nav-pills .nav-link.active{background:#f9f9fd;box-shadow:0px 10px 40px #d7d9e7;-moz-box-shadow:0px 10px 40px #d7d9e7;border-radius:10px;color:#ed3b42 !important;border:none;font-weight:normal;padding:12px 20px}html.landing-page-only .nav-pills .nav-link:hover{color:#ed3b42 !important}html.landing-page-only .btn{font-size:16px}@media screen and (max-width: 320px){html.landing-page-only .connect .connected-devices::after{top:5%;background-position:center 102%;background-size:130%}html.landing-page-only .connect .connected-devices .btn p{padding-left:30px !important;padding-right:30px !important}html.landing-page-only .try-it-now{min-height:1600px}html.landing-page-only .try-it-now ul{margin-left:0 !important;margin-right:0 !important}html.landing-page-only .try-it-now .terminal{height:550px}html.landing-page-only .speak-icon{background-position:center 35%}html.landing-page-only .clients-background .clients-icons{background-position:center 200px}html.landing-page-only .robo-background{background-position:center center;background-size:cover}html.landing-page-only .robo-background .robo-icon::after,html.landing-page-only .robo-background .robo-icon1::after,html.landing-page-only .robo-background .robo-icon2::after,html.landing-page-only .robo-background .robo-icon3::after{top:5%;background-position:center 97%;background-size:160%}html.landing-page-only .hero-background{padding-left:0 !important}html.landing-page-only .hero-background .bg-transparent{margin-left:0 !important;margin-right:0 !important}html.landing-page-only .hero-background .bg-transparent input{margin-right:-45px !important}html.landing-page-only .pricing-contact-form .speak-icon{background-position:center 430px}html.landing-page-only .footer-logos{max-width:300px}}html.landing-page-only .pricing-muted-info{line-height:1;font-size:14px;text-align:center;margin-top:10px}
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tabList__CuJ {
  margin-bottom: var(--ifm-leading);
}

.tabItem_LNqP {
  margin-top: 0 !important;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tabItem_Ymn6 > *:last-child {
  margin-bottom: 0;
}

.yarl__fullsize {
  width: 100%;
  height: 100%;
}
.yarl__relative {
  position: relative;
}
.yarl__portal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  z-index: var(--yarl__portal_zindex, 9999);
  transition: opacity var(--yarl__fade_animation_duration, 250ms) var(--yarl__fade_animation_timing_function, ease);
}
.yarl__portal_open {
  opacity: 1;
}
.yarl__container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-color: var(--yarl__container_background_color, var(--yarl__color_backdrop, #000));
  outline: 0;
  -webkit-user-select: none;
          user-select: none;
  touch-action: var(--yarl__controller_touch_action, none);
  overscroll-behavior: var(--yarl__controller_overscroll-behavior, contain);
}
.yarl__carousel {
  display: flex;
  flex: 0 0 auto;
  height: 100%;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  width: calc(100% + (var(--yarl__carousel_slides_count) - 1) * (100% + var(--yarl__carousel_spacing_px, 0) * 1px + var(--yarl__carousel_spacing_percent, 0) * 1%));
  transform: translateX(var(--yarl__swipe_offset, 0px));
}
.yarl__carousel_with_slides {
  column-gap: calc(var(--yarl__carousel_spacing_px, 0) * 1px + 100 / (100 * var(--yarl__carousel_slides_count) + (var(--yarl__carousel_slides_count) - 1) * var(--yarl__carousel_spacing_percent, 0)) * var(--yarl__carousel_spacing_percent, 0) * 1%);
}
.yarl__flex_center {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.yarl__slide {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: calc(var(--yarl__carousel_padding_px, 0) * 1px + 100 / (100 * var(--yarl__carousel_slides_count) + (var(--yarl__carousel_slides_count) - 1) * var(--yarl__carousel_spacing_percent, 0)) * var(--yarl__carousel_padding_percent, 0) * 1%);
}
[dir=rtl] .yarl__slide {
  --yarl__direction: -1;
}
.yarl__slide_image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  touch-action: var(--yarl__controller_touch_action, none);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
@media screen and (min-width: 800px) {
  .yarl__slide_image {
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
  }
}
.yarl__slide_image_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yarl__slide_image_loading {
  opacity: 0;
}
.yarl__slide_placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 0;
}
.yarl__slide_loading {
  color: var(--yarl__slide_icon_loading_color, var(--yarl__color_button, rgba(255, 255, 255, 0.8)));
  animation: yarl__delayed_fadein 1s linear;
}
.yarl__slide_loading line {
  animation: yarl__stroke_opacity 1s linear infinite;
}
.yarl__slide_loading line:nth-of-type(1) {
  animation-delay: -1.875s;
}
.yarl__slide_loading line:nth-of-type(2) {
  animation-delay: -1.75s;
}
.yarl__slide_loading line:nth-of-type(3) {
  animation-delay: -1.625s;
}
.yarl__slide_loading line:nth-of-type(4) {
  animation-delay: -1.5s;
}
.yarl__slide_loading line:nth-of-type(5) {
  animation-delay: -1.375s;
}
.yarl__slide_loading line:nth-of-type(6) {
  animation-delay: -1.25s;
}
.yarl__slide_loading line:nth-of-type(7) {
  animation-delay: -1.125s;
}
.yarl__slide_loading line:nth-of-type(8) {
  animation-delay: -1s;
}
.yarl__slide_error {
  width: var(--yarl__slide_icon_error_size, 48px);
  height: var(--yarl__slide_icon_error_size, 48px);
  color: var(--yarl__slide_icon_error_color, red);
}
@media (prefers-reduced-motion) {
  .yarl__portal, .yarl__slide {
    transition: unset;
  }
  .yarl__slide_loading, .yarl__slide_loading line {
    animation: unset;
  }
}
.yarl__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  display: flex;
  justify-content: flex-end;
  padding: var(--yarl__toolbar_padding, 8px);
}
[dir=rtl] .yarl__toolbar {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.yarl__icon {
  width: var(--yarl__icon_size, 32px);
  height: var(--yarl__icon_size, 32px);
}
.yarl__button {
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  background-color: var(--yarl__button_background_color, transparent);
  border: var(--yarl__button_border, 0);
  margin: var(--yarl__button_margin, 0);
  outline: none;
  line-height: 0;
  padding: var(--yarl__button_padding, 8px);
  color: var(--yarl__color_button, rgba(255, 255, 255, 0.8));
  filter: var(--yarl__button_filter, drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8)));
  -webkit-tap-highlight-color: transparent;
}
.yarl__button:focus {
  color: var(--yarl__color_button_active, #fff);
}
.yarl__button:focus:not(:focus-visible) {
  color: var(--yarl__color_button, rgba(255, 255, 255, 0.8));
}
.yarl__button:focus-visible {
  color: var(--yarl__color_button_active, #fff);
}
@media (hover: hover) {
  .yarl__button:hover, .yarl__button:focus:hover, .yarl__button:focus-visible:hover {
    color: var(--yarl__color_button_active, #fff);
  }
}
.yarl__button:disabled {
  color: var(--yarl__color_button_disabled, rgba(255, 255, 255, 0.4));
  cursor: default;
}
.yarl__navigation_prev, .yarl__navigation_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: var(--yarl__navigation_button_padding, 24px 16px);
}
.yarl__navigation_prev {
  left: 0;
}
[dir=rtl] .yarl__navigation_prev {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.yarl__navigation_next {
  right: 0;
}
[dir=rtl] .yarl__navigation_next {
  left: 0;
  right: unset;
  transform: translateY(-50%) rotate(180deg);
}
.yarl__no_scroll {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

@keyframes yarl__delayed_fadein {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes yarl__stroke_opacity {
  from {
    stroke-opacity: 1;
  }
  to {
    stroke-opacity: 0.125;
  }
}

div.ap-wrapper {
  outline: none;
  height: 100%;
  display: flex;
  justify-content: center;
}
div.ap-wrapper .title-bar {
  display: none;
  top: -78px;
  transition: top 0.15s linear;
  position: absolute;
  left: 0;
  right: 0;
  box-sizing: content-box;
  font-size: 20px;
  line-height: 1em;
  padding: 15px;
  font-family: sans-serif;
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
}
div.ap-wrapper .title-bar img {
  vertical-align: middle;
  height: 48px;
  margin-right: 16px;
}
div.ap-wrapper .title-bar a {
  color: white;
  text-decoration: underline;
}
div.ap-wrapper .title-bar a:hover {
  text-decoration: none;
}
div.ap-wrapper:fullscreen {
  background-color: #000;
  width: 100%;
  align-items: center;
}
div.ap-wrapper:fullscreen div.ap-player {
  position: static;
}
div.ap-wrapper:fullscreen .title-bar {
  display: initial;
}
div.ap-wrapper:fullscreen.hud .title-bar {
  top: 0;
}
div.ap-wrapper div.ap-player {
  text-align: left;
  display: inline-block;
  padding: 0px;
  position: relative;
  box-sizing: content-box;
  overflow: hidden;
  max-width: 100%;
  border-radius: 4px;
  font-size: 15px;
  background-color: var(--term-color-background);
}
.ap-player {
  --term-color-foreground: #ffffff;
  --term-color-background: #000000;
  --term-color-0: var(--term-color-foreground);
  --term-color-1: var(--term-color-foreground);
  --term-color-2: var(--term-color-foreground);
  --term-color-3: var(--term-color-foreground);
  --term-color-4: var(--term-color-foreground);
  --term-color-5: var(--term-color-foreground);
  --term-color-6: var(--term-color-foreground);
  --term-color-7: var(--term-color-foreground);
  --term-color-8: var(--term-color-0);
  --term-color-9: var(--term-color-1);
  --term-color-10: var(--term-color-2);
  --term-color-11: var(--term-color-3);
  --term-color-12: var(--term-color-4);
  --term-color-13: var(--term-color-5);
  --term-color-14: var(--term-color-6);
  --term-color-15: var(--term-color-7);
}
.ap-player .fg-default {
  color: var(--term-color-foreground);
}
.ap-player .fg-bg {
  color: var(--term-color-background);
}
.ap-player .bg-default {
  background-color: var(--term-color-background);
}
.ap-player .bg-fg {
  background-color: var(--term-color-foreground);
}
.ap-player .fg-0 {
  color: var(--term-color-0);
}
.ap-player .bg-0 {
  background-color: var(--term-color-0);
}
.ap-player .fg-1 {
  color: var(--term-color-1);
}
.ap-player .bg-1 {
  background-color: var(--term-color-1);
}
.ap-player .fg-2 {
  color: var(--term-color-2);
}
.ap-player .bg-2 {
  background-color: var(--term-color-2);
}
.ap-player .fg-3 {
  color: var(--term-color-3);
}
.ap-player .bg-3 {
  background-color: var(--term-color-3);
}
.ap-player .fg-4 {
  color: var(--term-color-4);
}
.ap-player .bg-4 {
  background-color: var(--term-color-4);
}
.ap-player .fg-5 {
  color: var(--term-color-5);
}
.ap-player .bg-5 {
  background-color: var(--term-color-5);
}
.ap-player .fg-6 {
  color: var(--term-color-6);
}
.ap-player .bg-6 {
  background-color: var(--term-color-6);
}
.ap-player .fg-7 {
  color: var(--term-color-7);
}
.ap-player .bg-7 {
  background-color: var(--term-color-7);
}
.ap-player .fg-8 {
  color: var(--term-color-8);
}
.ap-player .bg-8 {
  background-color: var(--term-color-8);
}
.ap-player .fg-9 {
  color: var(--term-color-9);
}
.ap-player .bg-9 {
  background-color: var(--term-color-9);
}
.ap-player .fg-10 {
  color: var(--term-color-10);
}
.ap-player .bg-10 {
  background-color: var(--term-color-10);
}
.ap-player .fg-11 {
  color: var(--term-color-11);
}
.ap-player .bg-11 {
  background-color: var(--term-color-11);
}
.ap-player .fg-12 {
  color: var(--term-color-12);
}
.ap-player .bg-12 {
  background-color: var(--term-color-12);
}
.ap-player .fg-13 {
  color: var(--term-color-13);
}
.ap-player .bg-13 {
  background-color: var(--term-color-13);
}
.ap-player .fg-14 {
  color: var(--term-color-14);
}
.ap-player .bg-14 {
  background-color: var(--term-color-14);
}
.ap-player .fg-15 {
  color: var(--term-color-15);
}
.ap-player .bg-15 {
  background-color: var(--term-color-15);
}
.ap-player .fg-8,
.ap-player .fg-9,
.ap-player .fg-10,
.ap-player .fg-11,
.ap-player .fg-12,
.ap-player .fg-13,
.ap-player .fg-14,
.ap-player .fg-15 {
  font-weight: bold;
}
pre.ap-terminal {
  box-sizing: content-box;
  overflow: hidden;
  padding: 0;
  margin: 0px;
  display: block;
  white-space: pre;
  word-wrap: normal;
  word-break: normal;
  border-radius: 0;
  border-style: solid;
  cursor: text;
  border-width: 0.75em;
  color: var(--term-color-foreground);
  background-color: var(--term-color-background);
  border-color: var(--term-color-background);
  font-family: Consolas, Menlo, 'Bitstream Vera Sans Mono', monospace, 'Powerline Symbols';
  font-variant-ligatures: none;
}
pre.ap-terminal .ap-line {
  letter-spacing: normal;
  overflow: hidden;
}
pre.ap-terminal .ap-line span {
  padding: 0;
  display: inline-block;
  height: 100%;
}
pre.ap-terminal .ap-line {
  display: block;
  width: 200%;
}
pre.ap-terminal .ap-line .ap-cursor-a {
  display: inline-block;
}
pre.ap-terminal .ap-line .ap-cursor-b {
  display: none;
  border-radius: 0.05em;
}
pre.ap-terminal .ap-line .ap-blink {
  visibility: hidden;
}
pre.ap-terminal.ap-cursor .ap-line .ap-cursor-a {
  display: none;
}
pre.ap-terminal.ap-cursor .ap-line .ap-cursor-b {
  display: inline-block;
}
pre.ap-terminal.ap-blink .ap-line .ap-blink {
  visibility: visible;
}
pre.ap-terminal .ap-bright {
  font-weight: bold;
}
pre.ap-terminal .ap-faint {
  opacity: 0.5;
}
pre.ap-terminal .ap-underline {
  text-decoration: underline;
}
pre.ap-terminal .ap-italic {
  font-style: italic;
}
pre.ap-terminal .ap-strikethrough {
  text-decoration: line-through;
}
div.ap-player div.ap-control-bar {
  width: 100%;
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, #000000 25%, #000000 100%);
  color: #bbb;
  box-sizing: content-box;
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.15s linear;
  -webkit-user-select: none;
          user-select: none;
  z-index: 30;
}
div.ap-player div.ap-control-bar * {
  box-sizing: inherit;
  font-size: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}
div.ap-control-bar svg.ap-icon path {
  fill: #bbb;
}
div.ap-control-bar span.ap-playback-button {
  display: block;
  flex: 0 0 auto;
  cursor: pointer;
  height: 12px;
  width: 12px;
  padding: 10px;
}
div.ap-control-bar span.ap-playback-button svg {
  height: 12px;
  width: 12px;
}
div.ap-control-bar span.ap-timer {
  display: block;
  flex: 0 0 auto;
  min-width: 50px;
  margin: 0 10px;
  height: 100%;
  text-align: center;
  font-size: 11px;
  line-height: 34px;
  cursor: default;
}
div.ap-control-bar span.ap-timer span {
  display: inline-block;
  font-size: inherit;
}
div.ap-control-bar span.ap-timer .ap-time-remaining {
  display: none;
}
div.ap-control-bar span.ap-timer:hover .ap-time-elapsed {
  display: none;
}
div.ap-control-bar span.ap-timer:hover .ap-time-remaining {
  display: inline;
}
div.ap-control-bar .ap-progressbar {
  display: block;
  flex: 1 1 auto;
  height: 100%;
  padding: 0 10px;
}
div.ap-control-bar .ap-progressbar .ap-bar {
  display: block;
  position: relative;
  cursor: default;
  height: 100%;
  font-size: 0;
}
div.ap-control-bar .ap-progressbar .ap-bar .ap-gutter {
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #333;
}
div.ap-control-bar .ap-progressbar .ap-bar .ap-gutter .ap-gutter-fill {
  display: inline-block;
  height: 100%;
  background-color: #bbb;
  border-radius: 3px;
  z-index: 10;
}
div.ap-control-bar.ap-seekable .ap-progressbar .ap-bar {
  cursor: pointer;
}
div.ap-control-bar .ap-fullscreen-button {
  display: block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  padding: 9px;
  cursor: pointer;
}
div.ap-control-bar .ap-fullscreen-button svg {
  width: 14px;
  height: 14px;
}
div.ap-control-bar .ap-fullscreen-button svg:first-child {
  display: inline;
}
div.ap-control-bar .ap-fullscreen-button svg:last-child {
  display: none;
}
div.ap-wrapper.ap-hud .ap-control-bar {
  opacity: 1;
}
div.ap-wrapper:fullscreen .ap-fullscreen-button svg:first-child {
  display: none;
}
div.ap-wrapper:fullscreen .ap-fullscreen-button svg:last-child {
  display: inline;
}
span.ap-progressbar span.ap-marker-container {
  display: block;
  top: 0;
  bottom: 0;
  width: 21px;
  position: absolute;
  margin-left: -10px;
  z-index: 9;
}
span.ap-marker-container span.ap-marker {
  display: block;
  top: 13px;
  bottom: 12px;
  left: 7px;
  right: 7px;
  background-color: #555;
  position: absolute;
  transition: top 0.1s, bottom 0.1s, left 0.1s, right 0.1s, background-color 0.1s;
  border-radius: 50%;
}
span.ap-marker-container span.ap-marker.ap-marker-past {
  background-color: #bbb;
}
span.ap-marker-container span.ap-marker:hover,
span.ap-marker-container:hover span.ap-marker {
  background-color: #bbb;
  top: 11px;
  bottom: 10px;
  left: 5px;
  right: 5px;
}
span.ap-marker-container span.ap-marker-tooltip {
  visibility: hidden;
  background-color: #333;
  color: #bbb;
  text-align: center;
  padding: 2px 8px 0px 8px;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  white-space: nowrap;
  /* Prevents the text from wrapping and makes sure the tooltip width adapts to the text length */
  font-size: 11px;
  line-height: 2em;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
span.ap-marker-container:hover span.ap-marker-tooltip {
  visibility: visible;
}
.ap-player .ap-overlay {
  z-index: 10;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ap-player .ap-overlay-start {
  cursor: pointer;
}
.ap-player .ap-overlay-start .ap-play-button {
  font-size: 0px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: white;
  height: 80px;
  max-height: 66%;
  margin: auto;
}
.ap-player .ap-overlay-start .ap-play-button div {
  height: 100%;
}
.ap-player .ap-overlay-start .ap-play-button div span {
  height: 100%;
  display: block;
}
.ap-player .ap-overlay-start .ap-play-button div span svg {
  height: 100%;
}
.ap-player .ap-overlay-start .ap-play-button svg {
  filter: drop-shadow(0px 0px 5px var(--term-color-background));
}
.ap-player .ap-overlay-loading .ap-loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 10px solid;
  border-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.7) #ffffff;
  border-color: color-mix(in srgb, var(--term-color-foreground) 30%, var(--term-color-background)) color-mix(in srgb, var(--term-color-foreground) 50%, var(--term-color-background)) color-mix(in srgb, var(--term-color-foreground) 70%, var(--term-color-background)) color-mix(in srgb, var(--term-color-foreground) 100%, var(--term-color-background));
  box-sizing: border-box;
  animation: ap-loader-rotation 1s linear infinite;
}
.ap-player .ap-overlay-info span {
  font-family: Consolas, Menlo, 'Bitstream Vera Sans Mono', monospace, 'Powerline Symbols';
  font-variant-ligatures: none;
  font-size: 2em;
}
.ap-player .ap-overlay-info span .ap-line {
  letter-spacing: normal;
  overflow: hidden;
}
.ap-player .ap-overlay-info span .ap-line span {
  padding: 0;
  display: inline-block;
  height: 100%;
}
.ap-player .ap-overlay-error span {
  font-size: 8em;
}
@keyframes ap-loader-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ap-terminal .fg-16 {
  color: #000000;
}
.ap-terminal .bg-16 {
  background-color: #000000;
}
.ap-terminal .fg-17 {
  color: #00005f;
}
.ap-terminal .bg-17 {
  background-color: #00005f;
}
.ap-terminal .fg-18 {
  color: #000087;
}
.ap-terminal .bg-18 {
  background-color: #000087;
}
.ap-terminal .fg-19 {
  color: #0000af;
}
.ap-terminal .bg-19 {
  background-color: #0000af;
}
.ap-terminal .fg-20 {
  color: #0000d7;
}
.ap-terminal .bg-20 {
  background-color: #0000d7;
}
.ap-terminal .fg-21 {
  color: #0000ff;
}
.ap-terminal .bg-21 {
  background-color: #0000ff;
}
.ap-terminal .fg-22 {
  color: #005f00;
}
.ap-terminal .bg-22 {
  background-color: #005f00;
}
.ap-terminal .fg-23 {
  color: #005f5f;
}
.ap-terminal .bg-23 {
  background-color: #005f5f;
}
.ap-terminal .fg-24 {
  color: #005f87;
}
.ap-terminal .bg-24 {
  background-color: #005f87;
}
.ap-terminal .fg-25 {
  color: #005faf;
}
.ap-terminal .bg-25 {
  background-color: #005faf;
}
.ap-terminal .fg-26 {
  color: #005fd7;
}
.ap-terminal .bg-26 {
  background-color: #005fd7;
}
.ap-terminal .fg-27 {
  color: #005fff;
}
.ap-terminal .bg-27 {
  background-color: #005fff;
}
.ap-terminal .fg-28 {
  color: #008700;
}
.ap-terminal .bg-28 {
  background-color: #008700;
}
.ap-terminal .fg-29 {
  color: #00875f;
}
.ap-terminal .bg-29 {
  background-color: #00875f;
}
.ap-terminal .fg-30 {
  color: #008787;
}
.ap-terminal .bg-30 {
  background-color: #008787;
}
.ap-terminal .fg-31 {
  color: #0087af;
}
.ap-terminal .bg-31 {
  background-color: #0087af;
}
.ap-terminal .fg-32 {
  color: #0087d7;
}
.ap-terminal .bg-32 {
  background-color: #0087d7;
}
.ap-terminal .fg-33 {
  color: #0087ff;
}
.ap-terminal .bg-33 {
  background-color: #0087ff;
}
.ap-terminal .fg-34 {
  color: #00af00;
}
.ap-terminal .bg-34 {
  background-color: #00af00;
}
.ap-terminal .fg-35 {
  color: #00af5f;
}
.ap-terminal .bg-35 {
  background-color: #00af5f;
}
.ap-terminal .fg-36 {
  color: #00af87;
}
.ap-terminal .bg-36 {
  background-color: #00af87;
}
.ap-terminal .fg-37 {
  color: #00afaf;
}
.ap-terminal .bg-37 {
  background-color: #00afaf;
}
.ap-terminal .fg-38 {
  color: #00afd7;
}
.ap-terminal .bg-38 {
  background-color: #00afd7;
}
.ap-terminal .fg-39 {
  color: #00afff;
}
.ap-terminal .bg-39 {
  background-color: #00afff;
}
.ap-terminal .fg-40 {
  color: #00d700;
}
.ap-terminal .bg-40 {
  background-color: #00d700;
}
.ap-terminal .fg-41 {
  color: #00d75f;
}
.ap-terminal .bg-41 {
  background-color: #00d75f;
}
.ap-terminal .fg-42 {
  color: #00d787;
}
.ap-terminal .bg-42 {
  background-color: #00d787;
}
.ap-terminal .fg-43 {
  color: #00d7af;
}
.ap-terminal .bg-43 {
  background-color: #00d7af;
}
.ap-terminal .fg-44 {
  color: #00d7d7;
}
.ap-terminal .bg-44 {
  background-color: #00d7d7;
}
.ap-terminal .fg-45 {
  color: #00d7ff;
}
.ap-terminal .bg-45 {
  background-color: #00d7ff;
}
.ap-terminal .fg-46 {
  color: #00ff00;
}
.ap-terminal .bg-46 {
  background-color: #00ff00;
}
.ap-terminal .fg-47 {
  color: #00ff5f;
}
.ap-terminal .bg-47 {
  background-color: #00ff5f;
}
.ap-terminal .fg-48 {
  color: #00ff87;
}
.ap-terminal .bg-48 {
  background-color: #00ff87;
}
.ap-terminal .fg-49 {
  color: #00ffaf;
}
.ap-terminal .bg-49 {
  background-color: #00ffaf;
}
.ap-terminal .fg-50 {
  color: #00ffd7;
}
.ap-terminal .bg-50 {
  background-color: #00ffd7;
}
.ap-terminal .fg-51 {
  color: #00ffff;
}
.ap-terminal .bg-51 {
  background-color: #00ffff;
}
.ap-terminal .fg-52 {
  color: #5f0000;
}
.ap-terminal .bg-52 {
  background-color: #5f0000;
}
.ap-terminal .fg-53 {
  color: #5f005f;
}
.ap-terminal .bg-53 {
  background-color: #5f005f;
}
.ap-terminal .fg-54 {
  color: #5f0087;
}
.ap-terminal .bg-54 {
  background-color: #5f0087;
}
.ap-terminal .fg-55 {
  color: #5f00af;
}
.ap-terminal .bg-55 {
  background-color: #5f00af;
}
.ap-terminal .fg-56 {
  color: #5f00d7;
}
.ap-terminal .bg-56 {
  background-color: #5f00d7;
}
.ap-terminal .fg-57 {
  color: #5f00ff;
}
.ap-terminal .bg-57 {
  background-color: #5f00ff;
}
.ap-terminal .fg-58 {
  color: #5f5f00;
}
.ap-terminal .bg-58 {
  background-color: #5f5f00;
}
.ap-terminal .fg-59 {
  color: #5f5f5f;
}
.ap-terminal .bg-59 {
  background-color: #5f5f5f;
}
.ap-terminal .fg-60 {
  color: #5f5f87;
}
.ap-terminal .bg-60 {
  background-color: #5f5f87;
}
.ap-terminal .fg-61 {
  color: #5f5faf;
}
.ap-terminal .bg-61 {
  background-color: #5f5faf;
}
.ap-terminal .fg-62 {
  color: #5f5fd7;
}
.ap-terminal .bg-62 {
  background-color: #5f5fd7;
}
.ap-terminal .fg-63 {
  color: #5f5fff;
}
.ap-terminal .bg-63 {
  background-color: #5f5fff;
}
.ap-terminal .fg-64 {
  color: #5f8700;
}
.ap-terminal .bg-64 {
  background-color: #5f8700;
}
.ap-terminal .fg-65 {
  color: #5f875f;
}
.ap-terminal .bg-65 {
  background-color: #5f875f;
}
.ap-terminal .fg-66 {
  color: #5f8787;
}
.ap-terminal .bg-66 {
  background-color: #5f8787;
}
.ap-terminal .fg-67 {
  color: #5f87af;
}
.ap-terminal .bg-67 {
  background-color: #5f87af;
}
.ap-terminal .fg-68 {
  color: #5f87d7;
}
.ap-terminal .bg-68 {
  background-color: #5f87d7;
}
.ap-terminal .fg-69 {
  color: #5f87ff;
}
.ap-terminal .bg-69 {
  background-color: #5f87ff;
}
.ap-terminal .fg-70 {
  color: #5faf00;
}
.ap-terminal .bg-70 {
  background-color: #5faf00;
}
.ap-terminal .fg-71 {
  color: #5faf5f;
}
.ap-terminal .bg-71 {
  background-color: #5faf5f;
}
.ap-terminal .fg-72 {
  color: #5faf87;
}
.ap-terminal .bg-72 {
  background-color: #5faf87;
}
.ap-terminal .fg-73 {
  color: #5fafaf;
}
.ap-terminal .bg-73 {
  background-color: #5fafaf;
}
.ap-terminal .fg-74 {
  color: #5fafd7;
}
.ap-terminal .bg-74 {
  background-color: #5fafd7;
}
.ap-terminal .fg-75 {
  color: #5fafff;
}
.ap-terminal .bg-75 {
  background-color: #5fafff;
}
.ap-terminal .fg-76 {
  color: #5fd700;
}
.ap-terminal .bg-76 {
  background-color: #5fd700;
}
.ap-terminal .fg-77 {
  color: #5fd75f;
}
.ap-terminal .bg-77 {
  background-color: #5fd75f;
}
.ap-terminal .fg-78 {
  color: #5fd787;
}
.ap-terminal .bg-78 {
  background-color: #5fd787;
}
.ap-terminal .fg-79 {
  color: #5fd7af;
}
.ap-terminal .bg-79 {
  background-color: #5fd7af;
}
.ap-terminal .fg-80 {
  color: #5fd7d7;
}
.ap-terminal .bg-80 {
  background-color: #5fd7d7;
}
.ap-terminal .fg-81 {
  color: #5fd7ff;
}
.ap-terminal .bg-81 {
  background-color: #5fd7ff;
}
.ap-terminal .fg-82 {
  color: #5fff00;
}
.ap-terminal .bg-82 {
  background-color: #5fff00;
}
.ap-terminal .fg-83 {
  color: #5fff5f;
}
.ap-terminal .bg-83 {
  background-color: #5fff5f;
}
.ap-terminal .fg-84 {
  color: #5fff87;
}
.ap-terminal .bg-84 {
  background-color: #5fff87;
}
.ap-terminal .fg-85 {
  color: #5fffaf;
}
.ap-terminal .bg-85 {
  background-color: #5fffaf;
}
.ap-terminal .fg-86 {
  color: #5fffd7;
}
.ap-terminal .bg-86 {
  background-color: #5fffd7;
}
.ap-terminal .fg-87 {
  color: #5fffff;
}
.ap-terminal .bg-87 {
  background-color: #5fffff;
}
.ap-terminal .fg-88 {
  color: #870000;
}
.ap-terminal .bg-88 {
  background-color: #870000;
}
.ap-terminal .fg-89 {
  color: #87005f;
}
.ap-terminal .bg-89 {
  background-color: #87005f;
}
.ap-terminal .fg-90 {
  color: #870087;
}
.ap-terminal .bg-90 {
  background-color: #870087;
}
.ap-terminal .fg-91 {
  color: #8700af;
}
.ap-terminal .bg-91 {
  background-color: #8700af;
}
.ap-terminal .fg-92 {
  color: #8700d7;
}
.ap-terminal .bg-92 {
  background-color: #8700d7;
}
.ap-terminal .fg-93 {
  color: #8700ff;
}
.ap-terminal .bg-93 {
  background-color: #8700ff;
}
.ap-terminal .fg-94 {
  color: #875f00;
}
.ap-terminal .bg-94 {
  background-color: #875f00;
}
.ap-terminal .fg-95 {
  color: #875f5f;
}
.ap-terminal .bg-95 {
  background-color: #875f5f;
}
.ap-terminal .fg-96 {
  color: #875f87;
}
.ap-terminal .bg-96 {
  background-color: #875f87;
}
.ap-terminal .fg-97 {
  color: #875faf;
}
.ap-terminal .bg-97 {
  background-color: #875faf;
}
.ap-terminal .fg-98 {
  color: #875fd7;
}
.ap-terminal .bg-98 {
  background-color: #875fd7;
}
.ap-terminal .fg-99 {
  color: #875fff;
}
.ap-terminal .bg-99 {
  background-color: #875fff;
}
.ap-terminal .fg-100 {
  color: #878700;
}
.ap-terminal .bg-100 {
  background-color: #878700;
}
.ap-terminal .fg-101 {
  color: #87875f;
}
.ap-terminal .bg-101 {
  background-color: #87875f;
}
.ap-terminal .fg-102 {
  color: #878787;
}
.ap-terminal .bg-102 {
  background-color: #878787;
}
.ap-terminal .fg-103 {
  color: #8787af;
}
.ap-terminal .bg-103 {
  background-color: #8787af;
}
.ap-terminal .fg-104 {
  color: #8787d7;
}
.ap-terminal .bg-104 {
  background-color: #8787d7;
}
.ap-terminal .fg-105 {
  color: #8787ff;
}
.ap-terminal .bg-105 {
  background-color: #8787ff;
}
.ap-terminal .fg-106 {
  color: #87af00;
}
.ap-terminal .bg-106 {
  background-color: #87af00;
}
.ap-terminal .fg-107 {
  color: #87af5f;
}
.ap-terminal .bg-107 {
  background-color: #87af5f;
}
.ap-terminal .fg-108 {
  color: #87af87;
}
.ap-terminal .bg-108 {
  background-color: #87af87;
}
.ap-terminal .fg-109 {
  color: #87afaf;
}
.ap-terminal .bg-109 {
  background-color: #87afaf;
}
.ap-terminal .fg-110 {
  color: #87afd7;
}
.ap-terminal .bg-110 {
  background-color: #87afd7;
}
.ap-terminal .fg-111 {
  color: #87afff;
}
.ap-terminal .bg-111 {
  background-color: #87afff;
}
.ap-terminal .fg-112 {
  color: #87d700;
}
.ap-terminal .bg-112 {
  background-color: #87d700;
}
.ap-terminal .fg-113 {
  color: #87d75f;
}
.ap-terminal .bg-113 {
  background-color: #87d75f;
}
.ap-terminal .fg-114 {
  color: #87d787;
}
.ap-terminal .bg-114 {
  background-color: #87d787;
}
.ap-terminal .fg-115 {
  color: #87d7af;
}
.ap-terminal .bg-115 {
  background-color: #87d7af;
}
.ap-terminal .fg-116 {
  color: #87d7d7;
}
.ap-terminal .bg-116 {
  background-color: #87d7d7;
}
.ap-terminal .fg-117 {
  color: #87d7ff;
}
.ap-terminal .bg-117 {
  background-color: #87d7ff;
}
.ap-terminal .fg-118 {
  color: #87ff00;
}
.ap-terminal .bg-118 {
  background-color: #87ff00;
}
.ap-terminal .fg-119 {
  color: #87ff5f;
}
.ap-terminal .bg-119 {
  background-color: #87ff5f;
}
.ap-terminal .fg-120 {
  color: #87ff87;
}
.ap-terminal .bg-120 {
  background-color: #87ff87;
}
.ap-terminal .fg-121 {
  color: #87ffaf;
}
.ap-terminal .bg-121 {
  background-color: #87ffaf;
}
.ap-terminal .fg-122 {
  color: #87ffd7;
}
.ap-terminal .bg-122 {
  background-color: #87ffd7;
}
.ap-terminal .fg-123 {
  color: #87ffff;
}
.ap-terminal .bg-123 {
  background-color: #87ffff;
}
.ap-terminal .fg-124 {
  color: #af0000;
}
.ap-terminal .bg-124 {
  background-color: #af0000;
}
.ap-terminal .fg-125 {
  color: #af005f;
}
.ap-terminal .bg-125 {
  background-color: #af005f;
}
.ap-terminal .fg-126 {
  color: #af0087;
}
.ap-terminal .bg-126 {
  background-color: #af0087;
}
.ap-terminal .fg-127 {
  color: #af00af;
}
.ap-terminal .bg-127 {
  background-color: #af00af;
}
.ap-terminal .fg-128 {
  color: #af00d7;
}
.ap-terminal .bg-128 {
  background-color: #af00d7;
}
.ap-terminal .fg-129 {
  color: #af00ff;
}
.ap-terminal .bg-129 {
  background-color: #af00ff;
}
.ap-terminal .fg-130 {
  color: #af5f00;
}
.ap-terminal .bg-130 {
  background-color: #af5f00;
}
.ap-terminal .fg-131 {
  color: #af5f5f;
}
.ap-terminal .bg-131 {
  background-color: #af5f5f;
}
.ap-terminal .fg-132 {
  color: #af5f87;
}
.ap-terminal .bg-132 {
  background-color: #af5f87;
}
.ap-terminal .fg-133 {
  color: #af5faf;
}
.ap-terminal .bg-133 {
  background-color: #af5faf;
}
.ap-terminal .fg-134 {
  color: #af5fd7;
}
.ap-terminal .bg-134 {
  background-color: #af5fd7;
}
.ap-terminal .fg-135 {
  color: #af5fff;
}
.ap-terminal .bg-135 {
  background-color: #af5fff;
}
.ap-terminal .fg-136 {
  color: #af8700;
}
.ap-terminal .bg-136 {
  background-color: #af8700;
}
.ap-terminal .fg-137 {
  color: #af875f;
}
.ap-terminal .bg-137 {
  background-color: #af875f;
}
.ap-terminal .fg-138 {
  color: #af8787;
}
.ap-terminal .bg-138 {
  background-color: #af8787;
}
.ap-terminal .fg-139 {
  color: #af87af;
}
.ap-terminal .bg-139 {
  background-color: #af87af;
}
.ap-terminal .fg-140 {
  color: #af87d7;
}
.ap-terminal .bg-140 {
  background-color: #af87d7;
}
.ap-terminal .fg-141 {
  color: #af87ff;
}
.ap-terminal .bg-141 {
  background-color: #af87ff;
}
.ap-terminal .fg-142 {
  color: #afaf00;
}
.ap-terminal .bg-142 {
  background-color: #afaf00;
}
.ap-terminal .fg-143 {
  color: #afaf5f;
}
.ap-terminal .bg-143 {
  background-color: #afaf5f;
}
.ap-terminal .fg-144 {
  color: #afaf87;
}
.ap-terminal .bg-144 {
  background-color: #afaf87;
}
.ap-terminal .fg-145 {
  color: #afafaf;
}
.ap-terminal .bg-145 {
  background-color: #afafaf;
}
.ap-terminal .fg-146 {
  color: #afafd7;
}
.ap-terminal .bg-146 {
  background-color: #afafd7;
}
.ap-terminal .fg-147 {
  color: #afafff;
}
.ap-terminal .bg-147 {
  background-color: #afafff;
}
.ap-terminal .fg-148 {
  color: #afd700;
}
.ap-terminal .bg-148 {
  background-color: #afd700;
}
.ap-terminal .fg-149 {
  color: #afd75f;
}
.ap-terminal .bg-149 {
  background-color: #afd75f;
}
.ap-terminal .fg-150 {
  color: #afd787;
}
.ap-terminal .bg-150 {
  background-color: #afd787;
}
.ap-terminal .fg-151 {
  color: #afd7af;
}
.ap-terminal .bg-151 {
  background-color: #afd7af;
}
.ap-terminal .fg-152 {
  color: #afd7d7;
}
.ap-terminal .bg-152 {
  background-color: #afd7d7;
}
.ap-terminal .fg-153 {
  color: #afd7ff;
}
.ap-terminal .bg-153 {
  background-color: #afd7ff;
}
.ap-terminal .fg-154 {
  color: #afff00;
}
.ap-terminal .bg-154 {
  background-color: #afff00;
}
.ap-terminal .fg-155 {
  color: #afff5f;
}
.ap-terminal .bg-155 {
  background-color: #afff5f;
}
.ap-terminal .fg-156 {
  color: #afff87;
}
.ap-terminal .bg-156 {
  background-color: #afff87;
}
.ap-terminal .fg-157 {
  color: #afffaf;
}
.ap-terminal .bg-157 {
  background-color: #afffaf;
}
.ap-terminal .fg-158 {
  color: #afffd7;
}
.ap-terminal .bg-158 {
  background-color: #afffd7;
}
.ap-terminal .fg-159 {
  color: #afffff;
}
.ap-terminal .bg-159 {
  background-color: #afffff;
}
.ap-terminal .fg-160 {
  color: #d70000;
}
.ap-terminal .bg-160 {
  background-color: #d70000;
}
.ap-terminal .fg-161 {
  color: #d7005f;
}
.ap-terminal .bg-161 {
  background-color: #d7005f;
}
.ap-terminal .fg-162 {
  color: #d70087;
}
.ap-terminal .bg-162 {
  background-color: #d70087;
}
.ap-terminal .fg-163 {
  color: #d700af;
}
.ap-terminal .bg-163 {
  background-color: #d700af;
}
.ap-terminal .fg-164 {
  color: #d700d7;
}
.ap-terminal .bg-164 {
  background-color: #d700d7;
}
.ap-terminal .fg-165 {
  color: #d700ff;
}
.ap-terminal .bg-165 {
  background-color: #d700ff;
}
.ap-terminal .fg-166 {
  color: #d75f00;
}
.ap-terminal .bg-166 {
  background-color: #d75f00;
}
.ap-terminal .fg-167 {
  color: #d75f5f;
}
.ap-terminal .bg-167 {
  background-color: #d75f5f;
}
.ap-terminal .fg-168 {
  color: #d75f87;
}
.ap-terminal .bg-168 {
  background-color: #d75f87;
}
.ap-terminal .fg-169 {
  color: #d75faf;
}
.ap-terminal .bg-169 {
  background-color: #d75faf;
}
.ap-terminal .fg-170 {
  color: #d75fd7;
}
.ap-terminal .bg-170 {
  background-color: #d75fd7;
}
.ap-terminal .fg-171 {
  color: #d75fff;
}
.ap-terminal .bg-171 {
  background-color: #d75fff;
}
.ap-terminal .fg-172 {
  color: #d78700;
}
.ap-terminal .bg-172 {
  background-color: #d78700;
}
.ap-terminal .fg-173 {
  color: #d7875f;
}
.ap-terminal .bg-173 {
  background-color: #d7875f;
}
.ap-terminal .fg-174 {
  color: #d78787;
}
.ap-terminal .bg-174 {
  background-color: #d78787;
}
.ap-terminal .fg-175 {
  color: #d787af;
}
.ap-terminal .bg-175 {
  background-color: #d787af;
}
.ap-terminal .fg-176 {
  color: #d787d7;
}
.ap-terminal .bg-176 {
  background-color: #d787d7;
}
.ap-terminal .fg-177 {
  color: #d787ff;
}
.ap-terminal .bg-177 {
  background-color: #d787ff;
}
.ap-terminal .fg-178 {
  color: #d7af00;
}
.ap-terminal .bg-178 {
  background-color: #d7af00;
}
.ap-terminal .fg-179 {
  color: #d7af5f;
}
.ap-terminal .bg-179 {
  background-color: #d7af5f;
}
.ap-terminal .fg-180 {
  color: #d7af87;
}
.ap-terminal .bg-180 {
  background-color: #d7af87;
}
.ap-terminal .fg-181 {
  color: #d7afaf;
}
.ap-terminal .bg-181 {
  background-color: #d7afaf;
}
.ap-terminal .fg-182 {
  color: #d7afd7;
}
.ap-terminal .bg-182 {
  background-color: #d7afd7;
}
.ap-terminal .fg-183 {
  color: #d7afff;
}
.ap-terminal .bg-183 {
  background-color: #d7afff;
}
.ap-terminal .fg-184 {
  color: #d7d700;
}
.ap-terminal .bg-184 {
  background-color: #d7d700;
}
.ap-terminal .fg-185 {
  color: #d7d75f;
}
.ap-terminal .bg-185 {
  background-color: #d7d75f;
}
.ap-terminal .fg-186 {
  color: #d7d787;
}
.ap-terminal .bg-186 {
  background-color: #d7d787;
}
.ap-terminal .fg-187 {
  color: #d7d7af;
}
.ap-terminal .bg-187 {
  background-color: #d7d7af;
}
.ap-terminal .fg-188 {
  color: #d7d7d7;
}
.ap-terminal .bg-188 {
  background-color: #d7d7d7;
}
.ap-terminal .fg-189 {
  color: #d7d7ff;
}
.ap-terminal .bg-189 {
  background-color: #d7d7ff;
}
.ap-terminal .fg-190 {
  color: #d7ff00;
}
.ap-terminal .bg-190 {
  background-color: #d7ff00;
}
.ap-terminal .fg-191 {
  color: #d7ff5f;
}
.ap-terminal .bg-191 {
  background-color: #d7ff5f;
}
.ap-terminal .fg-192 {
  color: #d7ff87;
}
.ap-terminal .bg-192 {
  background-color: #d7ff87;
}
.ap-terminal .fg-193 {
  color: #d7ffaf;
}
.ap-terminal .bg-193 {
  background-color: #d7ffaf;
}
.ap-terminal .fg-194 {
  color: #d7ffd7;
}
.ap-terminal .bg-194 {
  background-color: #d7ffd7;
}
.ap-terminal .fg-195 {
  color: #d7ffff;
}
.ap-terminal .bg-195 {
  background-color: #d7ffff;
}
.ap-terminal .fg-196 {
  color: #ff0000;
}
.ap-terminal .bg-196 {
  background-color: #ff0000;
}
.ap-terminal .fg-197 {
  color: #ff005f;
}
.ap-terminal .bg-197 {
  background-color: #ff005f;
}
.ap-terminal .fg-198 {
  color: #ff0087;
}
.ap-terminal .bg-198 {
  background-color: #ff0087;
}
.ap-terminal .fg-199 {
  color: #ff00af;
}
.ap-terminal .bg-199 {
  background-color: #ff00af;
}
.ap-terminal .fg-200 {
  color: #ff00d7;
}
.ap-terminal .bg-200 {
  background-color: #ff00d7;
}
.ap-terminal .fg-201 {
  color: #ff00ff;
}
.ap-terminal .bg-201 {
  background-color: #ff00ff;
}
.ap-terminal .fg-202 {
  color: #ff5f00;
}
.ap-terminal .bg-202 {
  background-color: #ff5f00;
}
.ap-terminal .fg-203 {
  color: #ff5f5f;
}
.ap-terminal .bg-203 {
  background-color: #ff5f5f;
}
.ap-terminal .fg-204 {
  color: #ff5f87;
}
.ap-terminal .bg-204 {
  background-color: #ff5f87;
}
.ap-terminal .fg-205 {
  color: #ff5faf;
}
.ap-terminal .bg-205 {
  background-color: #ff5faf;
}
.ap-terminal .fg-206 {
  color: #ff5fd7;
}
.ap-terminal .bg-206 {
  background-color: #ff5fd7;
}
.ap-terminal .fg-207 {
  color: #ff5fff;
}
.ap-terminal .bg-207 {
  background-color: #ff5fff;
}
.ap-terminal .fg-208 {
  color: #ff8700;
}
.ap-terminal .bg-208 {
  background-color: #ff8700;
}
.ap-terminal .fg-209 {
  color: #ff875f;
}
.ap-terminal .bg-209 {
  background-color: #ff875f;
}
.ap-terminal .fg-210 {
  color: #ff8787;
}
.ap-terminal .bg-210 {
  background-color: #ff8787;
}
.ap-terminal .fg-211 {
  color: #ff87af;
}
.ap-terminal .bg-211 {
  background-color: #ff87af;
}
.ap-terminal .fg-212 {
  color: #ff87d7;
}
.ap-terminal .bg-212 {
  background-color: #ff87d7;
}
.ap-terminal .fg-213 {
  color: #ff87ff;
}
.ap-terminal .bg-213 {
  background-color: #ff87ff;
}
.ap-terminal .fg-214 {
  color: #ffaf00;
}
.ap-terminal .bg-214 {
  background-color: #ffaf00;
}
.ap-terminal .fg-215 {
  color: #ffaf5f;
}
.ap-terminal .bg-215 {
  background-color: #ffaf5f;
}
.ap-terminal .fg-216 {
  color: #ffaf87;
}
.ap-terminal .bg-216 {
  background-color: #ffaf87;
}
.ap-terminal .fg-217 {
  color: #ffafaf;
}
.ap-terminal .bg-217 {
  background-color: #ffafaf;
}
.ap-terminal .fg-218 {
  color: #ffafd7;
}
.ap-terminal .bg-218 {
  background-color: #ffafd7;
}
.ap-terminal .fg-219 {
  color: #ffafff;
}
.ap-terminal .bg-219 {
  background-color: #ffafff;
}
.ap-terminal .fg-220 {
  color: #ffd700;
}
.ap-terminal .bg-220 {
  background-color: #ffd700;
}
.ap-terminal .fg-221 {
  color: #ffd75f;
}
.ap-terminal .bg-221 {
  background-color: #ffd75f;
}
.ap-terminal .fg-222 {
  color: #ffd787;
}
.ap-terminal .bg-222 {
  background-color: #ffd787;
}
.ap-terminal .fg-223 {
  color: #ffd7af;
}
.ap-terminal .bg-223 {
  background-color: #ffd7af;
}
.ap-terminal .fg-224 {
  color: #ffd7d7;
}
.ap-terminal .bg-224 {
  background-color: #ffd7d7;
}
.ap-terminal .fg-225 {
  color: #ffd7ff;
}
.ap-terminal .bg-225 {
  background-color: #ffd7ff;
}
.ap-terminal .fg-226 {
  color: #ffff00;
}
.ap-terminal .bg-226 {
  background-color: #ffff00;
}
.ap-terminal .fg-227 {
  color: #ffff5f;
}
.ap-terminal .bg-227 {
  background-color: #ffff5f;
}
.ap-terminal .fg-228 {
  color: #ffff87;
}
.ap-terminal .bg-228 {
  background-color: #ffff87;
}
.ap-terminal .fg-229 {
  color: #ffffaf;
}
.ap-terminal .bg-229 {
  background-color: #ffffaf;
}
.ap-terminal .fg-230 {
  color: #ffffd7;
}
.ap-terminal .bg-230 {
  background-color: #ffffd7;
}
.ap-terminal .fg-231 {
  color: #ffffff;
}
.ap-terminal .bg-231 {
  background-color: #ffffff;
}
.ap-terminal .fg-232 {
  color: #080808;
}
.ap-terminal .bg-232 {
  background-color: #080808;
}
.ap-terminal .fg-233 {
  color: #121212;
}
.ap-terminal .bg-233 {
  background-color: #121212;
}
.ap-terminal .fg-234 {
  color: #1c1c1c;
}
.ap-terminal .bg-234 {
  background-color: #1c1c1c;
}
.ap-terminal .fg-235 {
  color: #262626;
}
.ap-terminal .bg-235 {
  background-color: #262626;
}
.ap-terminal .fg-236 {
  color: #303030;
}
.ap-terminal .bg-236 {
  background-color: #303030;
}
.ap-terminal .fg-237 {
  color: #3a3a3a;
}
.ap-terminal .bg-237 {
  background-color: #3a3a3a;
}
.ap-terminal .fg-238 {
  color: #444444;
}
.ap-terminal .bg-238 {
  background-color: #444444;
}
.ap-terminal .fg-239 {
  color: #4e4e4e;
}
.ap-terminal .bg-239 {
  background-color: #4e4e4e;
}
.ap-terminal .fg-240 {
  color: #585858;
}
.ap-terminal .bg-240 {
  background-color: #585858;
}
.ap-terminal .fg-241 {
  color: #626262;
}
.ap-terminal .bg-241 {
  background-color: #626262;
}
.ap-terminal .fg-242 {
  color: #6c6c6c;
}
.ap-terminal .bg-242 {
  background-color: #6c6c6c;
}
.ap-terminal .fg-243 {
  color: #767676;
}
.ap-terminal .bg-243 {
  background-color: #767676;
}
.ap-terminal .fg-244 {
  color: #808080;
}
.ap-terminal .bg-244 {
  background-color: #808080;
}
.ap-terminal .fg-245 {
  color: #8a8a8a;
}
.ap-terminal .bg-245 {
  background-color: #8a8a8a;
}
.ap-terminal .fg-246 {
  color: #949494;
}
.ap-terminal .bg-246 {
  background-color: #949494;
}
.ap-terminal .fg-247 {
  color: #9e9e9e;
}
.ap-terminal .bg-247 {
  background-color: #9e9e9e;
}
.ap-terminal .fg-248 {
  color: #a8a8a8;
}
.ap-terminal .bg-248 {
  background-color: #a8a8a8;
}
.ap-terminal .fg-249 {
  color: #b2b2b2;
}
.ap-terminal .bg-249 {
  background-color: #b2b2b2;
}
.ap-terminal .fg-250 {
  color: #bcbcbc;
}
.ap-terminal .bg-250 {
  background-color: #bcbcbc;
}
.ap-terminal .fg-251 {
  color: #c6c6c6;
}
.ap-terminal .bg-251 {
  background-color: #c6c6c6;
}
.ap-terminal .fg-252 {
  color: #d0d0d0;
}
.ap-terminal .bg-252 {
  background-color: #d0d0d0;
}
.ap-terminal .fg-253 {
  color: #dadada;
}
.ap-terminal .bg-253 {
  background-color: #dadada;
}
.ap-terminal .fg-254 {
  color: #e4e4e4;
}
.ap-terminal .bg-254 {
  background-color: #e4e4e4;
}
.ap-terminal .fg-255 {
  color: #eeeeee;
}
.ap-terminal .bg-255 {
  background-color: #eeeeee;
}
.asciinema-player-theme-asciinema {
  --term-color-foreground: #cccccc;
  --term-color-background: #121314;
  --term-color-0: hsl(0, 0%, 0%);
  --term-color-1: hsl(343, 70%, 55%);
  --term-color-2: hsl(103, 70%, 44%);
  --term-color-3: hsl(43, 70%, 55%);
  --term-color-4: hsl(193, 70%, 49.5%);
  --term-color-5: hsl(283, 70%, 60.5%);
  --term-color-6: hsl(163, 70%, 60.5%);
  --term-color-7: hsl(0, 0%, 85%);
  --term-color-8: hsl(0, 0%, 30%);
  --term-color-9: hsl(343, 70%, 55%);
  --term-color-10: hsl(103, 70%, 44%);
  --term-color-11: hsl(43, 70%, 55%);
  --term-color-12: hsl(193, 70%, 49.5%);
  --term-color-13: hsl(283, 70%, 60.5%);
  --term-color-14: hsl(163, 70%, 60.5%);
  --term-color-15: hsl(0, 0%, 100%);
}
/*
  Based on Dracula: https://draculatheme.com
 */
.asciinema-player-theme-dracula {
  --term-color-foreground: #f8f8f2;
  --term-color-background: #282a36;
  --term-color-0: #21222c;
  --term-color-1: #ff5555;
  --term-color-2: #50fa7b;
  --term-color-3: #f1fa8c;
  --term-color-4: #bd93f9;
  --term-color-5: #ff79c6;
  --term-color-6: #8be9fd;
  --term-color-7: #f8f8f2;
  --term-color-8: #6272a4;
  --term-color-9: #ff6e6e;
  --term-color-10: #69ff94;
  --term-color-11: #ffffa5;
  --term-color-12: #d6acff;
  --term-color-13: #ff92df;
  --term-color-14: #a4ffff;
  --term-color-15: #ffffff;
}
/* Based on Monokai from base16 collection - https://github.com/chriskempson/base16 */
.asciinema-player-theme-monokai {
  --term-color-foreground: #f8f8f2;
  --term-color-background: #272822;
  --term-color-0: #272822;
  --term-color-1: #f92672;
  --term-color-2: #a6e22e;
  --term-color-3: #f4bf75;
  --term-color-4: #66d9ef;
  --term-color-5: #ae81ff;
  --term-color-6: #a1efe4;
  --term-color-7: #f8f8f2;
  --term-color-8: #75715e;
  --term-color-15: #f9f8f5;
}
/*
  Based on Nord: https://github.com/arcticicestudio/nord
  Via: https://github.com/neilotoole/asciinema-theme-nord
 */
.asciinema-player-theme-nord {
  --term-color-foreground: #eceff4;
  --term-color-background: #2e3440;
  --term-color-0: #3b4252;
  --term-color-1: #bf616a;
  --term-color-2: #a3be8c;
  --term-color-3: #ebcb8b;
  --term-color-4: #81a1c1;
  --term-color-5: #b48ead;
  --term-color-6: #88c0d0;
  --term-color-7: #eceff4;
}
.asciinema-player-theme-seti {
  --term-color-foreground: #cacecd;
  --term-color-background: #111213;
  --term-color-0: #323232;
  --term-color-1: #c22832;
  --term-color-2: #8ec43d;
  --term-color-3: #e0c64f;
  --term-color-4: #43a5d5;
  --term-color-5: #8b57b5;
  --term-color-6: #8ec43d;
  --term-color-7: #eeeeee;
  --term-color-15: #ffffff;
}
/*
  Based on Solarized Dark: https://ethanschoonover.com/solarized/
 */
.asciinema-player-theme-solarized-dark {
  --term-color-foreground: #839496;
  --term-color-background: #002b36;
  --term-color-0: #073642;
  --term-color-1: #dc322f;
  --term-color-2: #859900;
  --term-color-3: #b58900;
  --term-color-4: #268bd2;
  --term-color-5: #d33682;
  --term-color-6: #2aa198;
  --term-color-7: #eee8d5;
  --term-color-8: #002b36;
  --term-color-9: #cb4b16;
  --term-color-10: #586e75;
  --term-color-11: #657b83;
  --term-color-12: #839496;
  --term-color-13: #6c71c4;
  --term-color-14: #93a1a1;
  --term-color-15: #fdf6e3;
}
/*
  Based on Solarized Light: https://ethanschoonover.com/solarized/
 */
.asciinema-player-theme-solarized-light {
  --term-color-foreground: #657b83;
  --term-color-background: #fdf6e3;
  --term-color-0: #073642;
  --term-color-1: #dc322f;
  --term-color-2: #859900;
  --term-color-3: #b58900;
  --term-color-4: #268bd2;
  --term-color-5: #d33682;
  --term-color-6: #2aa198;
  --term-color-7: #eee8d5;
  --term-color-8: #002b36;
  --term-color-9: #cb4b16;
  --term-color-10: #586e75;
  --term-color-11: #657c83;
  --term-color-12: #839496;
  --term-color-13: #6c71c4;
  --term-color-14: #93a1a1;
  --term-color-15: #fdf6e3;
}
.asciinema-player-theme-solarized-light .ap-overlay-start .ap-play-button svg .ap-play-btn-fill {
  fill: var(--term-color-1);
}
.asciinema-player-theme-solarized-light .ap-overlay-start .ap-play-button svg .ap-play-btn-stroke {
  stroke: var(--term-color-1);
}
/*
  Based on Tango: https://en.wikipedia.org/wiki/Tango_Desktop_Project
 */
.asciinema-player-theme-tango {
  --term-color-foreground: #cccccc;
  --term-color-background: #121314;
  --term-color-0: #000000;
  --term-color-1: #cc0000;
  --term-color-2: #4e9a06;
  --term-color-3: #c4a000;
  --term-color-4: #3465a4;
  --term-color-5: #75507b;
  --term-color-6: #06989a;
  --term-color-7: #d3d7cf;
  --term-color-8: #555753;
  --term-color-9: #ef2929;
  --term-color-10: #8ae234;
  --term-color-11: #fce94f;
  --term-color-12: #729fcf;
  --term-color-13: #ad7fa8;
  --term-color-14: #34e2e2;
  --term-color-15: #eeeeec;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.skipToContent_fXgn {
  position: fixed;
  top: 1rem;
  left: 100%;
  z-index: calc(var(--ifm-z-index-fixed) + 1);
  padding: calc(var(--ifm-global-spacing) / 2) var(--ifm-global-spacing);
  color: var(--ifm-color-emphasis-900);
  background-color: var(--ifm-background-surface-color);
}

.skipToContent_fXgn:focus {
  left: 1rem;
  box-shadow: var(--ifm-global-shadow-md);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.closeButton_CVFx {
  padding: 0;
  line-height: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.content_knG7 {
  font-size: 85%;
  text-align: center;
  padding: 5px 0;
}

.content_knG7 a {
  color: inherit;
  text-decoration: underline;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-announcement-bar-height: auto;
}

.announcementBar_mb4j {
  display: flex;
  align-items: center;
  height: var(--docusaurus-announcement-bar-height);
  background-color: var(--ifm-color-white);
  color: var(--ifm-color-black);

  /*
  Unfortunately we can't make announcement bar render above the navbar
  IE need to use border-bottom instead of shadow
  See https://github.com/facebookincubator/infima/issues/275

  box-shadow: var(--ifm-global-shadow-lw);
  z-index: calc(var(--ifm-z-index-fixed) + 1);
  */
  border-bottom: 1px solid var(--ifm-color-emphasis-100);
}

html[data-announcement-bar-initially-dismissed='true'] .announcementBar_mb4j {
  display: none;
}

.announcementBarPlaceholder_vyr4 {
  flex: 0 0 10px;
}

.announcementBarClose_gvF7 {
  flex: 0 0 30px;
  align-self: stretch;
}

.announcementBarContent_xLdY {
  flex: 1 1 auto;
}

@media print {
  .announcementBar_mb4j {
    display: none;
  }
}

@media (min-width: 997px) {
  :root {
    --docusaurus-announcement-bar-height: 30px;
  }

  .announcementBarPlaceholder_vyr4,
  .announcementBarClose_gvF7 {
    flex-basis: 50px;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.toggle_vylO {
  width: 2rem;
  height: 2rem;
}

.toggleButton_gllP {
  -webkit-tap-highlight-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: background var(--ifm-transition-fast);
}

.toggleButton_gllP:hover {
  background: var(--ifm-color-emphasis-200);
}

[data-theme='light'] .darkToggleIcon_wfgR,
[data-theme='dark'] .lightToggleIcon_pyhR {
  display: none;
}

.toggleButtonDisabled_aARS {
  cursor: not-allowed;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.darkNavbarColorModeToggle_X3D1:hover {
  background: var(--ifm-color-gray-800);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.themedImage_ToTc {
  display: none;
}

[data-theme='light'] .themedImage--light_HNdA {
  display: initial;
}

[data-theme='dark'] .themedImage--dark_i4oU {
  display: initial;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.iconExternalLink_nPIU {
  margin-left: 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.iconLanguage_nlXk {
  vertical-align: text-bottom;
  margin-right: 5px;
}

.searchBar_RVTs .dropdownMenu_qbY6 {
  left: auto !important;
  right: 0 !important;

  background: var(--search-local-modal-background, #f5f6f7);
  border-radius: 6px;
  box-shadow: var(
    --search-local-modal-shadow,
    inset 1px 1px 0 0 hsla(0, 0%, 100%, 0.5),
    0 3px 8px 0 #555a64
  );
  margin-top: 8px;
  width: var(--search-local-modal-width, 560px);
  position: relative;

  padding: var(--search-local-spacing, 12px);
}

@media not (max-width: 996px) {
  .searchBar_RVTs.searchBarLeft_MXDe .dropdownMenu_qbY6 {
    left: 0 !important;
    right: auto !important;
  }
}

@media (max-width: 576px) {
  .navbar__search-input:not(:focus) {
    width: 2rem;
  }

  .searchBar_RVTs .dropdownMenu_qbY6 {
    width: var(--search-local-modal-width-sm, 340px);
    max-width: calc(100vw - var(--ifm-navbar-padding-horizontal) * 2);
  }
}

html[data-theme="dark"] .searchBar_RVTs .dropdownMenu_qbY6 {
  background: var(--search-local-modal-background, var(--ifm-background-color));
  box-shadow: var(
    --search-local-modal-shadow,
    inset 1px 1px 0 0 #2c2e40,
    0 3px 8px 0 #000309
  );
}

.searchBar_RVTs .dropdownMenu_qbY6 .suggestion_fB_2 {
  cursor: pointer;
  background: var(--search-local-hit-background, #fff);
  border-radius: 4px;
  box-shadow: var(--search-local-hit-shadow, 0 1px 3px 0 #d4d9e1);
  padding: 0 var(--search-local-spacing, 12px);
  width: 100%;

  align-items: center;
  color: var(--search-local-hit-color, #444950);
  display: flex;
  flex-direction: row;
  height: var(--search-local-hit-height, 56px);
}

html[data-theme="dark"] .dropdownMenu_qbY6 .suggestion_fB_2 {
  background: var(--search-local-hit-background, var(--ifm-color-emphasis-100));
  box-shadow: var(--search-local-hit-shadow, none);
  color: var(--search-local-hit-color, var(--ifm-font-color-base));
}

.searchBar_RVTs .dropdownMenu_qbY6 .suggestion_fB_2:not(:last-child) {
  margin-bottom: 4px;
}

.searchBar_RVTs .dropdownMenu_qbY6 .suggestion_fB_2.cursor_eG29 {
  background-color: var(
    --search-local-highlight-color,
    var(--ifm-color-primary)
  );
}

.hitTree_kk6K,
.hitIcon_a7Zy,
.hitPath_ieM4,
.noResultsIcon_EBY5,
.hitFooter_E9YW a {
  color: var(--search-local-muted-color, #969faf);
}

html[data-theme="dark"] .hitTree_kk6K,
html[data-theme="dark"] .hitIcon_a7Zy,
html[data-theme="dark"] .hitPath_ieM4,
html[data-theme="dark"] .noResultsIcon_EBY5 {
  color: var(--search-local-muted-color, var(--ifm-color-secondary-darkest));
}

.hitTree_kk6K {
  display: flex;
  align-items: center;
}

.hitTree_kk6K > svg {
  height: var(--search-local-hit-height, 56px);
  opacity: 0.5;
  stroke-width: var(--search-local-icon-stroke-width, 1.4);
  width: 24px;
}

.hitIcon_a7Zy {
  stroke-width: var(--search-local-icon-stroke-width, 1.4);

  height: 20px;
  width: 20px;
}

.hitWrapper_sAK8 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  justify-content: center;
  margin: 0 8px;
  overflow-x: hidden;
  width: 80%;
}

.hitWrapper_sAK8 mark {
  background: none;
  color: var(--search-local-highlight-color, var(--ifm-color-primary));
}

.hitTitle_vyVt {
  font-size: 0.9em;
}

.hitPath_ieM4 {
  font-size: 0.75em;
}

.hitPath_ieM4,
.hitTitle_vyVt {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.hitAction_NqkB {
  height: 20px;
  width: 20px;
}

.hideAction_vcyE > svg {
  display: none;
}

.noResults_l6Q3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--search-local-spacing, 12px) 0;
}

.noResultsIcon_EBY5 {
  margin-bottom: var(--search-local-spacing, 12px);
}

.hitFooter_E9YW {
  text-align: center;
  margin-top: var(--search-local-spacing, 12px);
  font-size: 0.85em;
}

.hitFooter_E9YW a {
  text-decoration: underline;
}

.cursor_eG29 .hideAction_vcyE > svg {
  display: block;
}

.suggestion_fB_2.cursor_eG29,
.suggestion_fB_2.cursor_eG29 mark,
.suggestion_fB_2.cursor_eG29 .hitTree_kk6K,
.suggestion_fB_2.cursor_eG29 .hitIcon_a7Zy,
.suggestion_fB_2.cursor_eG29 .hitPath_ieM4 {
  color: var(
    --search-local-hit-active-color,
    var(--ifm-color-white)
  ) !important;
}

.suggestion_fB_2.cursor_eG29 mark {
  text-decoration: underline;
}

.searchBarContainer_NW3z {
  margin-left: 16px;
}

.searchBarContainer_NW3z .searchBarLoadingRing_YnHq {
  display: none;
  position: absolute;
  left: 10px;
  top: 6px;
}

.searchBarContainer_NW3z .searchClearButton_qk4g {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  background: none;
  border: none;
  line-height: 1rem;
}

.navbar__search {
  position: relative;
}

.searchIndexLoading_EJ1f .navbar__search-input {
  background-image: none;
}

.searchBarContainer_NW3z.searchIndexLoading_EJ1f .searchBarLoadingRing_YnHq {
  display: inline-block;
}

.searchHintContainer_Pkmr {
  position: absolute;
  right: 10px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  pointer-events: none;
  gap: 4px;
}

.searchHint_iIMx {
  color: var(--ifm-navbar-search-input-placeholder-color);
  background-color: var(--ifm-navbar-search-input-background-color);
  border: 1px solid var(--ifm-color-emphasis-500);
  box-shadow: inset 0 -1px 0 var(--ifm-color-emphasis-500);
}

@media (max-width: 576px) {
  .searchBarContainer_NW3z:not(.focused_OWtg) .searchClearButton_qk4g,
  .searchHintContainer_Pkmr {
    display: none;
  }
}

/* For autocomplete.js only. */
.input_FOTf {
}
.hint_URu1 {
}
.suggestions_X8XU {
}
.dataset_QiCy {
}
.empty_eITn {
}
/**/

/* https://loading.io/css/ */
.loadingRing_RJI3 {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  opacity: var(--search-local-loading-icon-opacity, 0.5);
}

.loadingRing_RJI3 div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 2px;
  border: 2px solid
    var(--search-load-loading-icon-color, var(--ifm-navbar-search-input-color));
  border-radius: 50%;
  animation: loading-ring_FB5o 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(
      --search-load-loading-icon-color,
      var(--ifm-navbar-search-input-color)
    )
    transparent transparent transparent;
}

.loadingRing_RJI3 div:nth-child(1) {
  animation-delay: -0.45s;
}

.loadingRing_RJI3 div:nth-child(2) {
  animation-delay: -0.3s;
}

.loadingRing_RJI3 div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes loading-ring_FB5o {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (max-width: 996px) {
  .searchBox_ZlJk {
    position: absolute;
    right: var(--ifm-navbar-padding-horizontal);
  }
}

@media (min-width: 997px) {
  .searchBox_ZlJk {
    padding: var(--ifm-navbar-item-padding-vertical)
      var(--ifm-navbar-item-padding-horizontal);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.navbarHideable_m1mJ {
  transition: transform var(--ifm-transition-fast) ease;
}

.navbarHidden_jGov {
  transform: translate3d(0, calc(-100% - 2px), 0);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/*
Hide color mode toggle in small viewports
 */
@media (max-width: 996px) {
  .colorModeToggle_DEke {
    display: none;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.errorBoundaryError_a6uf {
  white-space: pre-wrap;
  color: red;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

body:not(.navigation-with-keyboard) *:not(input):focus {
  outline: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

#__docusaurus-base-url-issue-banner-container {
  display: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.footerLogoLink_BH7S {
  opacity: 0.5;
  transition: opacity var(--ifm-transition-fast)
    var(--ifm-transition-timing-default);
}

.footerLogoLink_BH7S:hover {
  opacity: 1;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

html,
body {
  height: 100%;
}

.mainWrapper_z2l0 {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* Docusaurus-specific utility class */
.docusaurus-mt-lg {
  margin-top: 3rem;
}

#__docusaurus {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.sidebar_re4s {
  max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem));
  overflow-y: auto;
  position: sticky;
  top: calc(var(--ifm-navbar-height) + 2rem);
}

.sidebarItemTitle_pO2u {
  font-size: var(--ifm-h3-font-size);
  font-weight: var(--ifm-font-weight-bold);
}

.sidebarItemList_Yudw {
  font-size: 0.9rem;
}

.sidebarItem__DBe {
  margin-top: 0.7rem;
}

.sidebarItemLink_mo7H {
  color: var(--ifm-font-color-base);
  display: block;
}

.sidebarItemLink_mo7H:hover {
  text-decoration: none;
}

.sidebarItemLinkActive_I1ZP {
  color: var(--ifm-color-primary) !important;
}

@media (max-width: 996px) {
  .sidebar_re4s {
    display: none;
  }
}

.searchContextInput_mXoe,
.searchQueryInput_CFBF {
  border-radius: var(--ifm-global-radius);
  border: var(--ifm-global-border-width) solid
    var(--ifm-color-content-secondary);
  font-size: var(--ifm-font-size-base);
  padding: 0.5rem;
  width: 100%;
  background: var(--ifm-background-color);
  color: var(--ifm-font-color-base);
  margin-bottom: 1rem;
}

.searchResultItem_U687 {
  padding: 1rem 0px;
  border-bottom: 1px solid rgb(223, 227, 232);
}

.searchResultItem_U687 > h2 {
  margin-bottom: 0;
}

.searchResultItemPath_uIbk {
  color: var(--ifm-color-content-secondary);
  font-size: 0.8rem;
  margin: 0.5rem 0px 0px;
}

.searchResultItemSummary_oZHr {
  font-style: italic;
  margin: 0.5rem 0px 0px;
}

@media only screen and (max-width: 996px) {
  .searchQueryColumn_q7nx {
    max-width: 60% !important;
  }

  .searchContextColumn_oWAF {
    max-width: 40% !important;
  }
}

@media screen and (max-width: 576px) {
  .searchQueryColumn_q7nx {
    max-width: 100% !important;
  }

  .searchContextColumn_oWAF {
    max-width: 100% !important;
    padding-left: var(--ifm-spacing-horizontal) !important;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.backToTopButton_sjWU {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  border-radius: 50%;
  background-color: var(--ifm-color-emphasis-200);
  width: 3rem;
  height: 3rem;
  z-index: calc(var(--ifm-z-index-fixed) - 1);
  box-shadow: var(--ifm-global-shadow-lw);
  transition: all var(--ifm-transition-fast)
    var(--ifm-transition-timing-default);
  opacity: 0;
  transform: scale(0);
  visibility: hidden;
}

.backToTopButton_sjWU::after {
  content: ' ';
  display: inline-block;
  -webkit-mask: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem no-repeat;
          mask: var(--ifm-menu-link-sublist-icon) 50% / 2rem 2rem no-repeat;
  background-color: var(--ifm-color-emphasis-1000);
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  .backToTopButton_sjWU:hover {
    background-color: var(--ifm-color-emphasis-300);
  }
}

.backToTopButtonShow_xfvO {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-collapse-button-bg: transparent;
  --docusaurus-collapse-button-bg-hover: rgb(0 0 0 / 10%);
}

[data-theme='dark']:root {
  --docusaurus-collapse-button-bg: rgb(255 255 255 / 5%);
  --docusaurus-collapse-button-bg-hover: rgb(255 255 255 / 10%);
}

@media (min-width: 997px) {
  .collapseSidebarButton_PEFL {
    display: block !important;
    background-color: var(--docusaurus-collapse-button-bg);
    height: 40px;
    position: sticky;
    bottom: 0;
    border-radius: 0;
    border: 1px solid var(--ifm-toc-border-color);
  }

  .collapseSidebarButtonIcon_kv0_ {
    transform: rotate(180deg);
    margin-top: 4px;
  }

  [dir='rtl'] .collapseSidebarButtonIcon_kv0_ {
    transform: rotate(0);
  }

  .collapseSidebarButton_PEFL:hover,
  .collapseSidebarButton_PEFL:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }
}

.collapseSidebarButton_PEFL {
  display: none;
  margin: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.menuExternalLink_NmtK {
  align-items: center;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .menuHtmlItem_M9Kj {
    padding: var(--ifm-menu-link-padding-vertical)
      var(--ifm-menu-link-padding-horizontal);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .menu_SIkG {
    flex-grow: 1;
    padding: 0.5rem;
  }
  @supports (scrollbar-gutter: stable) {
    .menu_SIkG {
      padding: 0.5rem 0 0.5rem 0.5rem;
      scrollbar-gutter: stable;
    }
  }

  .menuWithAnnouncementBar_GW3s {
    margin-bottom: var(--docusaurus-announcement-bar-height);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .sidebar_njMd {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: var(--ifm-navbar-height);
    width: var(--doc-sidebar-width);
  }

  .sidebarWithHideableNavbar_wUlq {
    padding-top: 0;
  }

  .sidebarHidden_VK0M {
    opacity: 0;
    visibility: hidden;
  }

  .sidebarLogo_isFc {
    display: flex !important;
    align-items: center;
    margin: 0 var(--ifm-navbar-padding-horizontal);
    min-height: var(--ifm-navbar-height);
    max-height: var(--ifm-navbar-height);
    color: inherit !important;
    text-decoration: none !important;
  }

  .sidebarLogo_isFc img {
    margin-right: 0.5rem;
    height: 2rem;
  }
}

.sidebarLogo_isFc {
  display: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  .expandButton_m80_ {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--ifm-transition-fast) ease;
    background-color: var(--docusaurus-collapse-button-bg);
  }

  .expandButton_m80_:hover,
  .expandButton_m80_:focus {
    background-color: var(--docusaurus-collapse-button-bg-hover);
  }

  .expandButtonIcon_BlDH {
    transform: rotate(0);
  }

  [dir='rtl'] .expandButtonIcon_BlDH {
    transform: rotate(180deg);
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --doc-sidebar-width: 300px;
  --doc-sidebar-hidden-width: 30px;
}

.docSidebarContainer_b6E3 {
  display: none;
}

@media (min-width: 997px) {
  .docSidebarContainer_b6E3 {
    display: block;
    width: var(--doc-sidebar-width);
    margin-top: calc(-1 * var(--ifm-navbar-height));
    border-right: 1px solid var(--ifm-toc-border-color);
    will-change: width;
    transition: width var(--ifm-transition-fast) ease;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }

  .docSidebarContainerHidden_b3ry {
    width: var(--doc-sidebar-hidden-width);
    cursor: pointer;
  }

  .sidebarViewport_Xe31 {
    top: 0;
    position: sticky;
    height: 100%;
    max-height: 100vh;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docMainContainer_gTbr {
  display: flex;
  width: 100%;
}

@media (min-width: 997px) {
  .docMainContainer_gTbr {
    flex-grow: 1;
    max-width: calc(100% - var(--doc-sidebar-width));
  }

  .docMainContainerEnhanced_Uz_u {
    max-width: calc(100% - var(--doc-sidebar-hidden-width));
  }

  .docItemWrapperEnhanced_czyv {
    max-width: calc(
      var(--ifm-container-width) + var(--doc-sidebar-width)
    ) !important;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docPage__5DB {
  display: flex;
  width: 100%;
  flex: 1 0;
}

.docsWrapper_BCFX {
  display: flex;
  flex: 1 0 auto;
}

/*
JS disabled??? Show light version by default => better than showing nothing
TODO bad, but we currently always show light mode when there's no data-theme
 */
html:not([data-theme]) .themedComponent--light_NU7w {
  display: initial;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.title_f1Hy {
  font-size: 3rem;
}

/**
  Blog post title should be smaller on smaller devices
**/
@media (max-width: 576px) {
  .title_f1Hy {
    font-size: 2rem;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.container_mt6G {
  font-size: 0.9rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.authorCol_Hf19 {
  max-width: inherit !important;
  flex-grow: 1 !important;
}

.imageOnlyAuthorRow_pa_O {
  display: flex;
  flex-flow: row wrap;
}

.imageOnlyAuthorCol_G86a {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.codeBlockContainer_Ckt0 {
  background: var(--prism-background-color);
  color: var(--prism-color);
  margin-bottom: var(--ifm-leading);
  box-shadow: var(--ifm-global-shadow-lw);
  border-radius: var(--ifm-code-border-radius);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.codeBlockContent_biex {
  position: relative;
  /* rtl:ignore */
  direction: ltr;
  border-radius: inherit;
}

.codeBlockTitle_Ktv7 {
  border-bottom: 1px solid var(--ifm-color-emphasis-300);
  font-size: var(--ifm-code-font-size);
  font-weight: 500;
  padding: 0.75rem var(--ifm-pre-padding);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.codeBlock_bY9V {
  --ifm-pre-background: var(--prism-background-color);
  margin: 0;
  padding: 0;
}

.codeBlockTitle_Ktv7 + .codeBlockContent_biex .codeBlock_bY9V {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.codeBlockStandalone_MEMb {
  padding: 0;
}

.codeBlockLines_e6Vv {
  font: inherit;
  /* rtl:ignore */
  float: left;
  min-width: 100%;
  padding: var(--ifm-pre-padding);
}

.codeBlockLinesWithNumbering_o6Pm {
  display: table;
  padding: var(--ifm-pre-padding) 0;
}

@media print {
  .codeBlockLines_e6Vv {
    white-space: pre-wrap;
  }
}

.buttonGroup__atx {
  display: flex;
  column-gap: 0.2rem;
  position: absolute;
  /* rtl:ignore */
  right: calc(var(--ifm-pre-padding) / 2);
  top: calc(var(--ifm-pre-padding) / 2);
}

.buttonGroup__atx button {
  display: flex;
  align-items: center;
  background: var(--prism-background-color);
  color: var(--prism-color);
  border: 1px solid var(--ifm-color-emphasis-300);
  border-radius: var(--ifm-global-radius);
  padding: 0.4rem;
  line-height: 0;
  transition: opacity var(--ifm-transition-fast) ease-in-out;
  opacity: 0;
}

.buttonGroup__atx button:focus-visible,
.buttonGroup__atx button:hover {
  opacity: 1 !important;
}

.theme-code-block:hover .buttonGroup__atx button {
  opacity: 0.4;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.iconEdit_Z9Sw {
  margin-right: 0.3em;
  vertical-align: sub;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/* Intentionally has zero specificity, so that to be able to override
the background in custom CSS file due bug https://github.com/facebook/docusaurus/issues/3678 */
:where(:root) {
  --docusaurus-highlighted-code-line-bg: rgb(72 77 91);
}

:where([data-theme='dark']) {
  --docusaurus-highlighted-code-line-bg: rgb(100 100 100);
}

.theme-code-block-highlighted-line {
  background-color: var(--docusaurus-highlighted-code-line-bg);
  display: block;
  margin: 0 calc(-1 * var(--ifm-pre-padding));
  padding: 0 var(--ifm-pre-padding);
}

.codeLine_lJS_ {
  display: table-row;
  counter-increment: line-count;
}

.codeLineNumber_Tfdd {
  display: table-cell;
  text-align: right;
  width: 1%;
  position: sticky;
  left: 0;
  padding: 0 var(--ifm-pre-padding);
  background: var(--ifm-pre-background);
  overflow-wrap: normal;
}

.codeLineNumber_Tfdd::before {
  content: counter(line-count);
  opacity: 0.4;
}

.theme-code-block-highlighted-line .codeLineNumber_Tfdd::before {
  opacity: 0.8;
}

.codeLineContent_feaV {
  padding-right: var(--ifm-pre-padding);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

:root {
  --docusaurus-tag-list-border: var(--ifm-color-emphasis-300);
}

.tag_zVej {
  border: 1px solid var(--docusaurus-tag-list-border);
  transition: border var(--ifm-transition-fast);
}

.tag_zVej:hover {
  --docusaurus-tag-list-border: var(--ifm-link-color);
  text-decoration: none;
}

.tagRegular_sFm0 {
  border-radius: var(--ifm-global-radius);
  padding: 0.2rem 0.5rem 0.3rem;
  font-size: 90%;
}

.tagWithCount_h2kH {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0.5rem 0 1rem;
  border-left: 0;
}

.tagWithCount_h2kH::before,
.tagWithCount_h2kH::after {
  content: '';
  position: absolute;
  top: 50%;
  border: 1px solid var(--docusaurus-tag-list-border);
  transition: inherit;
}

.tagWithCount_h2kH::before {
  right: 100%;
  transform: translate(50%, -50%) rotate(-45deg);
  width: 1.18rem;
  height: 1.18rem;
  border-right: 0;
  border-bottom: 0;
}

.tagWithCount_h2kH::after {
  left: 0;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.tagWithCount_h2kH span {
  background: var(--ifm-color-secondary);
  color: var(--ifm-color-black);
  font-size: 0.7rem;
  line-height: 1.2;
  border-radius: var(--ifm-global-radius);
  padding: 0.1rem 0.4rem;
  margin-left: 0.3rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tag_Nnez {
  display: inline-block;
  margin: 0.5rem 0.5rem 0 1rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.theme-code-block:hover .copyButtonCopied_obH4 {
  opacity: 1 !important;
}

.copyButtonIcons_eSgA {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
}

.copyButtonIcon_y97N,
.copyButtonSuccessIcon_LjdS {
  position: absolute;
  top: 0;
  left: 0;
  fill: currentColor;
  opacity: inherit;
  width: inherit;
  height: inherit;
  transition: all var(--ifm-transition-fast) ease;
}

.copyButtonSuccessIcon_LjdS {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.33);
  opacity: 0;
  color: #00d600;
}

.copyButtonCopied_obH4 .copyButtonIcon_y97N {
  transform: scale(0.33);
  opacity: 0;
}

.copyButtonCopied_obH4 .copyButtonSuccessIcon_LjdS {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition-delay: 0.075s;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tags_jXut {
  display: inline;
}

.tag_QGVx {
  margin: 0 0.4rem 0.5rem 0;
  display: inline-block;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.lastUpdated_vwxv {
  margin-top: 0.2rem;
  font-style: italic;
  font-size: smaller;
}

@media (min-width: 997px) {
  .lastUpdated_vwxv {
    text-align: right;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tocCollapsibleButton_TO0P {
  font-size: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.8rem;
  width: 100%;
}

.tocCollapsibleButton_TO0P::after {
  content: '';
  background: var(--ifm-menu-link-sublist-icon) 50% 50% / 2rem 2rem no-repeat;
  filter: var(--ifm-menu-link-sublist-icon-filter);
  height: 1.25rem;
  width: 1.25rem;
  transform: rotate(180deg);
  transition: transform var(--ifm-transition-fast);
}

.tocCollapsibleButtonExpanded_MG3E::after {
  transform: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tocCollapsible_ETCw {
  background-color: var(--ifm-menu-color-background-active);
  border-radius: var(--ifm-global-radius);
  margin: 1rem 0;
}

.tocCollapsibleContent_vkbj > ul {
  border-left: none;
  border-top: 1px solid var(--ifm-color-emphasis-300);
  padding: 0.2rem 0;
  font-size: 15px;
}

.tocCollapsibleContent_vkbj ul li {
  margin: 0.4rem 0.8rem;
}

.tocCollapsibleContent_vkbj a {
  display: block;
}

.tocCollapsibleExpanded_sAul {
  transform: none;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@media (min-width: 997px) {
  /* Prevent hydration FOUC, as the mobile TOC needs to be server-rendered */
  .tocMobile_ITEo {
    display: none;
  }
}

@media print {
  .tocMobile_ITEo {
    display: none;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.wordWrapButtonIcon_Bwma {
  width: 1.2rem;
  height: 1.2rem;
}

.wordWrapButtonEnabled_EoeP .wordWrapButtonIcon_Bwma {
  color: var(--ifm-color-primary);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/*
CSS variables, meant to be overridden by final theme
 */
.details_lb9f {
  --docusaurus-details-summary-arrow-size: 0.38rem;
  --docusaurus-details-transition: transform 200ms ease;
  --docusaurus-details-decoration-color: grey;
}

.details_lb9f > summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-left: 1rem;
}

/* TODO: deprecation, need to remove this after Safari will support `::marker` */
.details_lb9f > summary::-webkit-details-marker {
  display: none;
}

.details_lb9f > summary::before {
  position: absolute;
  top: 0.45rem;
  left: 0;

  /* CSS-only Arrow */
  content: '';
  border-width: var(--docusaurus-details-summary-arrow-size);
  border-style: solid;
  border-color: transparent transparent transparent
    var(--docusaurus-details-decoration-color);

  /* Arrow rotation anim */
  transform: rotate(0deg);
  transition: var(--docusaurus-details-transition);
  transform-origin: calc(var(--docusaurus-details-summary-arrow-size) / 2) 50%;
}

/* When JS disabled/failed to load: we use the open property for arrow animation: */
.details_lb9f[open]:not(.isBrowser_bmU9) > summary::before,

.details_lb9f[data-collapsed='false'].isBrowser_bmU9 > summary::before {
  transform: rotate(90deg);
}

.collapsibleContent_i85q {
  margin-top: 1rem;
  border-top: 1px solid var(--docusaurus-details-decoration-color);
  padding-top: 1rem;
}

.collapsibleContent_i85q > *:last-child {
  margin-bottom: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.details_b_Ee {
  --docusaurus-details-decoration-color: var(--ifm-alert-border-color);
  --docusaurus-details-transition: transform var(--ifm-transition-fast) ease;
  margin: 0 0 var(--ifm-spacing-vertical);
  border: 1px solid var(--ifm-alert-border-color);
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

/*
When the navbar is sticky, ensure that on anchor click,
the browser does not scroll that anchor behind the navbar
See https://twitter.com/JoshWComeau/status/1332015868725891076
 */
.anchorWithStickyNavbar_LWe7 {
  scroll-margin-top: calc(var(--ifm-navbar-height) + 0.5rem);
}

.anchorWithHideOnScrollNavbar_WYt5 {
  scroll-margin-top: 0.5rem;
}

.hash-link {
  opacity: 0;
  padding-left: 0.5rem;
  transition: opacity var(--ifm-transition-fast);
  -webkit-user-select: none;
          user-select: none;
}

.hash-link::before {
  content: '#';
}

.hash-link:focus,
*:hover > .hash-link {
  opacity: 1;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.containsTaskList_mC6p {
  list-style: none;
}

:not(.containsTaskList_mC6p > li) > .containsTaskList_mC6p {
  padding-left: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.img_ev3q {
  height: auto;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.admonition_LlT9 {
  margin-bottom: 1em;
}

.admonitionHeading_tbUL {
  font: var(--ifm-heading-font-weight) var(--ifm-h5-font-size) /
    var(--ifm-heading-line-height) var(--ifm-heading-font-family);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.admonitionHeading_tbUL code {
  text-transform: none;
}

.admonitionIcon_kALy {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}

.admonitionIcon_kALy svg {
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  fill: var(--ifm-alert-foreground-color);
}

.admonitionContent_S0QG > :last-child {
  margin-bottom: 0;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.blogPostFooterDetailsFull_mRVl {
  flex-direction: column;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.tableOfContents_bqdL {
  max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem));
  overflow-y: auto;
  position: sticky;
  top: calc(var(--ifm-navbar-height) + 1rem);
}

@media (max-width: 996px) {
  .tableOfContents_bqdL {
    display: none;
  }

  .docItemContainer_F8PC {
    padding: 0 0.3rem;
  }
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.breadcrumbHomeIcon_YNFT {
  position: relative;
  top: 1px;
  vertical-align: top;
  height: 1.1rem;
  width: 1.1rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.breadcrumbsContainer_Z_bl {
  --ifm-breadcrumb-size-multiplier: 0.8;
  margin-bottom: 0.8rem;
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.docItemContainer_Djhp header + *,
.docItemContainer_Djhp article > *:first-child {
  margin-top: 0;
}

@media (min-width: 997px) {
  .docItemCol_VOVn {
    max-width: 75% !important;
  }
}

