:root {
  --azure: #0085f4;
  --white: white;
  --black: #222929;
  --transparent: transparent;
  --border-radius-l: 1em;
  --border-radius: .5em;
  --gap-xl: 5em;
  --gap-r: 2em;
  --gap-xxs: .5em;
  --gap-xs: .75em;
  --gap-s: 1em;
  --gap-l: 3em;
  --border-radius-s: .25em;
  --border-circle: 50%;
}

body {
  background-color: var(--azure);
  color: var(--white);
  font-family: Roboto, sans-serif;
  line-height: 1.4;
  font-size: var(--size-font);
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
  font-size: 1.15em;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5em;
}

li {
  font-size: 1.15em;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25em;
  font-size: 1.15em;
  line-height: 1.4;
}

.container {
  z-index: 1;
  width: 100%;
  max-width: var(--size-container);
  margin-left: auto;
  margin-right: auto;
}

.page-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: clip;
}

.global {
  position: fixed;
  inset: 0% auto auto 0%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.styleguide_header {
  background-color: var(--black);
  background-image: radial-gradient(circle farthest-corner at 0% 100%, #8b8d884d, var(--transparent) 40%), radial-gradient(circle farthest-corner at 100% 100%, #8b8d884d, var(--transparent) 40%);
  color: var(--white);
  position: relative;
}

.styleguide_header-heading {
  font-size: 7em;
}

.padding-global {
  padding-left: 2em;
  padding-right: 2em;
}

.padding-global.padding-section {
  padding-top: 7em;
  padding-bottom: 7em;
}

.styleguide_header-wrapper {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.styleguide_header-label {
  background-color: var(--white);
  color: var(--black);
  text-transform: uppercase;
  border-radius: .25em;
  padding: .375em .5em;
  font-weight: 500;
  overflow: hidden;
}

.p-medium {
  font-size: 1.25em;
}

.styleguide_section {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.styleguide_section-header {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  border-bottom: 1px solid #eee;
  flex-flow: column;
  width: 100%;
  padding-bottom: 3em;
  display: flex;
}

.styleguide_heading-medium {
  font-size: 4.666em;
}

.styleguide_item-wrapper {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.styleguide_item-wrapper._2-col {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.styleguide_item-wrapper._3-col {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.styleguide_item {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  border-bottom: 1px solid #eee;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3em;
  display: grid;
  position: relative;
}

.styleguide_item.is--stretch {
  justify-items: stretch;
}

.styleguide_label {
  color: var(--white);
  background-color: #2d62ff;
  border-radius: .25em;
  padding: .375em .75em;
  font-weight: 500;
  overflow: hidden;
}

.styleguide_label.is--tag {
  background-color: #dd23bb;
}

.styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3em;
  height: 3em;
  position: relative;
}

.container-medium {
  z-index: 1;
  width: 100%;
  max-width: calc(var(--size-container) * .85);
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  z-index: 1;
  width: 100%;
  max-width: calc(var(--size-container) * .75);
  margin-left: auto;
  margin-right: auto;
}

.button-group {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-h1 {
  font-size: 4em;
  font-weight: 700;
  line-height: 1.2;
}

.heading-h2 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
}

.heading-h3 {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
}

.heading-h4 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
}

.heading-h5 {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.2;
}

.heading-h6 {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2;
}

.p-large {
  font-size: 1.5em;
}

.p-regular {
  font-size: 1.15em;
}

.p-small {
  font-size: 1em;
}

.p-tiny {
  font-size: .9em;
}

.txt-weight-xbold {
  font-weight: 800;
}

.txt-weight-bold {
  font-weight: 700;
}

.txt-weight-semibold {
  font-weight: 600;
}

.txt-weight-medium {
  font-weight: 500;
}

.txt-weight-normal {
  font-weight: 400;
}

.txt-weight-light {
  font-weight: 300;
}

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

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

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

.button {
  border-radius: var(--border-radius-l);
  background-color: var(--azure);
  min-width: 14em;
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding: .75em 2em;
  display: flex;
  position: relative;
}

.button.is--small {
  padding: .5em 1.25em;
}

.button.is--large {
  padding: 1em 2em;
}

.button.is--secondary {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
}

.button.is--icon {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-1x1-small {
  flex: none;
  width: 1em;
  height: 1em;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125em;
}

.styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25em;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5em;
}

.spacer-small {
  width: 100%;
  padding-top: 1em;
}

.spacer-medium {
  width: 100%;
  padding-top: 2em;
}

.spacer-large {
  width: 100%;
  padding-top: 3em;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4em;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5em;
}

.spacer-huge {
  width: 100%;
  padding-top: 6em;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8em;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 10em;
}

.icon-height-small {
  height: 1em;
}

.icon-height-medium {
  height: 2em;
}

.icon-height-large {
  height: 3em;
}

.icon-1x1-medium {
  flex: none;
  width: 2em;
  height: 2em;
}

.icon-1x1-large {
  flex: none;
  width: 2.5em;
  height: 2.5em;
}

.styleguide_logo-wrapper {
  opacity: .2;
  width: 10em;
}

.styleguide_logo {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 2em 2em auto auto;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

._2-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

._3-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.grid__guide {
  z-index: 2000;
  pointer-events: none;
  position: fixed;
  inset: 0% 0% auto;
  overflow: hidden;
}

.landing-main__w {
  grid-column-gap: var(--gap-xl);
  grid-row-gap: var(--gap-xl);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  padding: 4.5em 2em 2em;
  display: flex;
  position: relative;
}

.btn-animate-chars__bg {
  border-radius: var(--border-radius-l);
  pointer-events: none;
  background-color: #2266d3;
  position: absolute;
  inset: 0;
}

.button__text {
  white-space: nowrap;
  font-size: 1.5em;
}

.landing-logo__w {
  width: 100%;
  max-width: 13em;
  color: var(--black);
}

.landing-slogan__w {
  width: 100%;
  max-width: 18em;
}

.landing-header {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.main-vector__w {
  width: 100%;
  max-width: clamp(50em, 80vw, 72em);
}

.mobile {
  display: none;
}

.button-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.left-margin {
  color: var(--black);
  margin-left: auto;
}

@media screen and (max-width: 991px) {
  .padding-global {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  ._3-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .landing-main__w {
    justify-content: space-between;
    padding-top: 6em;
    padding-bottom: 6em;
    font-size: .75em;
  }
}

@media screen and (max-width: 767px) {
  .padding-global {
    padding-left: 1em;
    padding-right: 1em;
  }

  ._2-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr;
  }

  ._3-grid {
    grid-template-columns: 1fr;
  }

  .landing-main__w {
    justify-content: center;
    max-height: 100svh;
    padding-bottom: 2em;
    font-size: .5em;
  }

  .button__text {
    font-size: 1.5em;
  }

  .main-vector__w {
    max-width: clamp(30em, 80vw, 50em);
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: inline;
  }
}

@media screen and (max-width: 479px) {
  .button {
    border-radius: var(--border-radius);
    min-width: 12em;
    padding: .5em 2em;
  }

  .icon-1x1-large {
    width: 2em;
    height: 2em;
  }

  .landing-main__w {
    grid-column-gap: var(--gap-r);
    grid-row-gap: var(--gap-r);
    padding: 4em 1em;
    font-size: 1em;
  }

  .btn-animate-chars__bg {
    border-radius: var(--border-radius);
  }

  .button__text {
    font-size: 1.25em;
  }

  .landing-logo__w {
    max-width: 9.75em;
    position: absolute;
    inset: 1em auto auto 50%;
    transform: translate(-50%);
  }

  .landing-slogan__w {
    max-width: 20em;
    position: absolute;
    inset: auto 0% 2em 50%;
    transform: translate(-50%);
  }

  .landing-header {
    pointer-events: none;
    position: fixed;
    inset: 0%;
  }

  .button-row {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
  }

  .left-margin {
    order: 9999;
    margin-left: 0;
  }
}

#w-node-a5aa21a5-b70d-2242-4d0d-abe43485aee6-87750907, #w-node-d34d4891-3e0d-62ac-5122-1ac9721d7cd8-87750907, #w-node-_9dd94d5f-87a3-1755-164f-6624245340df-87750907 {
  justify-self: start;
}


