@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archia;
  src: url('../fonts/Archia-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archia;
  src: url('../fonts/Archia-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archia;
  src: url('../fonts/Archia-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archia;
  src: url('../fonts/Archia-SemiBold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archia;
  src: url('../fonts/Archia-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-color--background-primary: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --link-color--link-primary: var(--base-color-neutral--black);
  --border-color--border-primary: var(--base-color-neutral--black);
  --blue-500: #10a8e7;
  --neon-accent: #d0ef03;
  --blue-950: #093048;
  --base-color-neutral--black: black;
  --base-color-neutral--white: white;
  --text-color--text-alternate: var(--base-color-neutral--white);
  --base-color-neutral--neutral-darker: #222;
  --blue-100: #e0f3fe;
  --blue-700: #046ca0;
  --blue-900: #0d4c6d;
  --base-color-brand--white: white;
  --black-archive: black;
  --background-color--background-secondary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-alternate: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --text-color--text-secondary: var(--base-color-neutral--black);
  --background-color--background-success: var(--base-color-system--success-green-light);
  --text-color--text-success: var(--base-color-system--success-green);
  --background-color--background-error: var(--base-color-system--error-red-light);
  --text-color--text-error: var(--base-color-system--error-red);
  --blue-50: #f0f9ff;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-brand--black: #16140c;
  --blue-300: #7ed6fb;
  --green-50: #f8fee8;
  --green-600: #d0dc00;
  --blue-800: #085c84;
  --blue-200: #bbe7fc;
  --button-text: #433705;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #027a48;
  --base-color-system--success-green-light: #ecfdf3;
  --base-color-system--error-red: #b42318;
  --base-color-system--error-red-light: #fef3f2;
  --border-color--border-secondary: var(--base-color-neutral--neutral-light);
  --border-color--border-alternate: var(--base-color-neutral--white);
  --link-color--link-secondary: var(--base-color-neutral--neutral-light);
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  font-family: Gilroy, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  letter-spacing: -2.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archia, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
}

h2 {
  letter-spacing: -.03rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archia, sans-serif;
  font-size: 2.113rem;
  font-weight: 500;
  line-height: 1.15;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archia, sans-serif;
  font-size: 1.563rem;
  font-weight: 500;
  line-height: 1.1;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archia, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archia, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archia, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

p {
  margin-bottom: 0;
  font-family: Gilroy, sans-serif;
  line-height: 1.4;
}

a {
  color: var(--link-color--link-primary);
  font-family: Gilroy, sans-serif;
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  font-family: Gilroy, sans-serif;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
  font-family: Gilroy, sans-serif;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-family: Gilroy, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.hide {
  display: none;
}

.text-style-link {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.container-large.relative-top {
  z-index: 1;
  position: relative;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.max-width-large.align-center {
  margin-left: auto;
  margin-right: auto;
}

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small.cta-q-ver {
  margin-bottom: 4rem;
}

.margin-tiny {
  margin: .25rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.margin-top, .margin-top.margin-custom1, .margin-top.margin-huge, .margin-top.margin-small, .margin-top.margin-tiny, .margin-top.margin-custom3, .margin-top.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium.hide-desktop {
  display: none;
}

.margin-top.margin-xxsmall, .margin-top.margin-xxhuge, .margin-top.margin-custom2, .margin-top.margin-xsmall, .margin-top.margin-large, .margin-top.margin-xxlarge, .margin-top.margin-xlarge, .margin-top.margin-0, .margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom, .margin-bottom.margin-xxlarge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-medium {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
}

.margin-bottom.margin-custom3, .margin-bottom.margin-custom1, .margin-bottom.margin-tiny, .margin-bottom.margin-small, .margin-bottom.margin-large, .margin-bottom.margin-0, .margin-bottom.margin-xlarge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-huge, .margin-bottom.margin-xxsmall, .margin-bottom.margin-custom2, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xsmall.is-relative {
  position: relative;
}

.margin-bottom.margin-xsmall.is-relative.overflow-hidden.radius-4px-img-cont {
  border-radius: 4px;
  height: 200px;
}

.margin-bottom.margin-medium {
  padding-bottom: 2rem;
}

.margin-left, .margin-left.margin-tiny, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-small, .margin-left.margin-xsmall, .margin-left.margin-large, .margin-left.margin-huge, .margin-left.margin-xlarge, .margin-left.margin-custom3, .margin-left.margin-xxsmall, .margin-left.margin-custom1, .margin-left.margin-custom2, .margin-left.margin-xhuge, .margin-left.margin-xxhuge, .margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right, .margin-right.margin-huge, .margin-right.margin-xsmall, .margin-right.margin-xxhuge, .margin-right.margin-small, .margin-right.margin-medium, .margin-right.margin-xlarge, .margin-right.margin-custom3, .margin-right.margin-custom2, .margin-right.margin-xxsmall, .margin-right.margin-xhuge, .margin-right.margin-custom1, .margin-right.margin-large, .margin-right.margin-0, .margin-right.margin-xxlarge, .margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical, .margin-vertical.margin-medium, .margin-vertical.margin-xlarge, .margin-vertical.margin-xxsmall, .margin-vertical.margin-xxlarge, .margin-vertical.margin-huge, .margin-vertical.margin-0, .margin-vertical.margin-xxhuge, .margin-vertical.margin-tiny, .margin-vertical.margin-xsmall, .margin-vertical.margin-custom1, .margin-vertical.margin-small, .margin-vertical.margin-large, .margin-vertical.margin-xhuge, .margin-vertical.margin-custom2, .margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal, .margin-horizontal.margin-medium, .margin-horizontal.margin-tiny, .margin-horizontal.margin-custom3, .margin-horizontal.margin-0, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-huge, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-custom1, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-large, .margin-horizontal.margin-custom2, .margin-horizontal.margin-small, .margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top, .padding-top.padding-xhuge, .padding-top.padding-xxhuge, .padding-top.padding-0, .padding-top.padding-large, .padding-top.padding-custom2, .padding-top.padding-xlarge, .padding-top.padding-huge, .padding-top.padding-xxsmall, .padding-top.padding-custom3, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-xxlarge, .padding-top.padding-small, .padding-top.padding-xsmall, .padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xxhuge, .padding-bottom.padding-large, .padding-bottom.padding-xhuge, .padding-bottom.padding-custom2, .padding-bottom.padding-xxsmall, .padding-bottom.padding-xxlarge, .padding-bottom.padding-custom3, .padding-bottom.padding-custom1, .padding-bottom.padding-xsmall, .padding-bottom.padding-huge, .padding-bottom.padding-tiny, .padding-bottom.padding-medium, .padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left, .padding-left.padding-xhuge, .padding-left.padding-xlarge, .padding-left.padding-0, .padding-left.padding-small, .padding-left.padding-xsmall, .padding-left.padding-medium, .padding-left.padding-xxhuge, .padding-left.padding-huge, .padding-left.padding-custom1, .padding-left.padding-tiny, .padding-left.padding-xxsmall, .padding-left.padding-custom3, .padding-left.padding-custom2, .padding-left.padding-xxlarge, .padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right, .padding-right.padding-xxhuge, .padding-right.padding-custom2, .padding-right.padding-large, .padding-right.padding-xlarge, .padding-right.padding-tiny, .padding-right.padding-custom3, .padding-right.padding-custom1, .padding-right.padding-xsmall, .padding-right.padding-xxlarge, .padding-right.padding-xxsmall, .padding-right.padding-medium, .padding-right.padding-xhuge, .padding-right.padding-huge, .padding-right.padding-0, .padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical, .padding-vertical.padding-0, .padding-vertical.padding-xxhuge, .padding-vertical.padding-large, .padding-vertical.padding-custom3, .padding-vertical.padding-medium, .padding-vertical.padding-tiny, .padding-vertical.padding-xxlarge {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xxlarge.is-relative {
  position: relative;
}

.padding-vertical.padding-custom1, .padding-vertical.padding-xsmall, .padding-vertical.padding-xhuge, .padding-vertical.padding-xlarge, .padding-vertical.padding-custom2, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-0, .padding-horizontal.padding-custom3, .padding-horizontal.padding-huge, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-medium, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-large, .padding-horizontal.padding-xhuge, .padding-horizontal.padding-custom1, .padding-horizontal.padding-tiny, .padding-horizontal.padding-custom2, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-small, .padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

.text-weight-medium.name-margin-left-headshot {
  margin-right: 6px;
}

.text-size-medium {
  font-size: 1.125rem;
}

.text-size-medium.text-color-p {
  color: #6e6e6e;
}

.margin-top-auto {
  margin-top: auto;
}

.text-style-quote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.heading-style-h2 {
  font-size: 3rem;
  line-height: 1.2;
}

.rl-styleguide_callout-link-wrapper-colors {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  border-radius: .6875rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.rl-styleguide_heading {
  z-index: 4;
  color: var(--text-color--text-primary);
  margin-bottom: 1.5rem;
  padding: .25rem .5rem;
  font-size: 3.5rem;
  font-weight: 700;
}

.heading-style-h6 {
  font-family: Archia, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.heading-style-h6.buyers-g-heading-margin {
  margin-bottom: 1.4rem;
}

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.rl-styleguide_item-row.is-button-row {
  grid-template-columns: 19rem 1fr;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.form_radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  font-family: Gilroy, sans-serif;
  display: flex;
}

.heading-style-h5 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.heading-style-h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

.form_checkbox-icon {
  border: 1px solid var(--border-color--border-primary);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form_checkbox-label {
  margin-bottom: 0;
}

.text-size-tiny {
  font-size: .75rem;
}

.text-size-tiny.opacity-50 {
  opacity: .5;
}

.text-size-tiny.text-style-allcaps.text-color-primary {
  color: var(--blue-500);
}

.form_field-label {
  margin-bottom: .5rem;
  font-family: Gilroy, sans-serif;
  font-weight: 400;
}

.button {
  background-color: var(--neon-accent);
  color: var(--blue-950);
  text-align: center;
  border-radius: 5px;
  padding: .75rem 1.5rem;
  font-family: Gilroy, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.button:hover {
  filter: brightness(105%);
}

.button.is-link {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-alternate {
  color: var(--base-color-neutral--white);
  background-color: #0000;
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

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

.button.is-icon.is-full-width {
  width: 100%;
}

.button.is-icon.bg-light-blue {
  color: var(--text-color--text-alternate);
  background-color: #3ac0f6;
}

.button.is-icon.bg-light-blue:hover {
  filter: brightness(110%);
}

.button.is-secondary {
  opacity: .75;
  color: var(--base-color-neutral--neutral-darker);
  background-color: #0000;
  transition: opacity .2s, background-color .2s;
}

.button.is-secondary:hover {
  background-color: var(--blue-100);
  opacity: 1;
  color: var(--blue-950);
}

.button.is-secondary.is-alternate {
  color: var(--base-color-neutral--white);
  background-color: #0000;
}

.button.is-secondary.is-icon.is-play-btn {
  padding-top: .55rem;
  padding-bottom: .55rem;
  padding-left: 1.2rem;
}

.button.is-secondary.is-icon.is-play-btn:hover {
  background-color: var(--blue-100);
}

.button.is-secondary.is-icon.download-buyer-ver {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  color: var(--base-color-neutral--white);
  padding: 0;
}

.button.is-secondary.is-icon.download-buyer-ver:hover {
  background-color: #e0f3fe00;
}

.button.is-secondary.is-icon.text-color-white {
  color: var(--base-color-neutral--white);
  font-weight: 400;
}

.button.is-secondary.is-icon.text-color-white:hover {
  background-color: var(--blue-700);
}

.button.is-small {
  padding: .5rem 1.25rem;
  font-size: .9rem;
}

.button.is-small.is-icon {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
}

.button.is-small.is-icon-only {
  padding-left: .5rem;
  padding-right: .5rem;
}

.button.is-alternate {
  border-color: var(--base-color-neutral--white);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
}

.button.is-tertiary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-color: #0000;
}

.button.is-icon-only {
  padding-left: .75rem;
  padding-right: .75rem;
}

.button.is-link-all-caps {
  color: var(--blue-500);
  letter-spacing: .75px;
  text-transform: uppercase;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.button.is-link-all-caps.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button.is-link-all-caps.is-icon.left-align {
  justify-content: flex-start;
  align-items: center;
}

.button.is-master {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--blue-900);
  background-color: #d0ef03cc;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  padding-left: .75rem;
  padding-right: 1.2rem;
  transition-property: all;
  transition-timing-function: ease-in-out;
  display: flex;
}

.button.is-master:hover {
  filter: brightness(107%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #d0ef03;
}

.button.is-xsmall {
  padding: .5rem 1.25rem;
  font-size: .9rem;
}

.button.is-xsmall.is-icon {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  padding: .3rem 1rem;
}

.button.is-nocap-learn-more-btn {
  color: var(--blue-500);
  letter-spacing: .75px;
  text-transform: none;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.button.is-nocap-learn-more-btn.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button.is-nocap-learn-more-btn.is-icon.left-align {
  justify-content: flex-start;
  align-items: center;
}

.button.is-outline-ver {
  border: 1px solid var(--blue-500);
  opacity: 1;
  color: var(--base-color-brand--white);
  background-color: #0000;
  font-weight: 400;
  transition: opacity .2s, background-color .2s;
}

.button.is-outline-ver:hover {
  background-color: var(--blue-100);
  opacity: 1;
  color: var(--blue-950);
}

.button.is-outline-ver.is-alternate {
  color: var(--base-color-neutral--white);
  background-color: #0000;
}

.button.is-outline-ver.is-icon.is-play-btn {
  padding-top: .55rem;
  padding-bottom: .55rem;
  padding-left: 1.2rem;
}

.button.is-outline-ver.is-icon.is-play-btn:hover {
  background-color: var(--blue-100);
}

.button.is-outline-ver.is-icon.download-buyer-ver {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  color: var(--base-color-neutral--white);
  padding: 0;
}

.button.is-outline-ver.is-icon.download-buyer-ver:hover {
  background-color: #e0f3fe00;
}

.button.is-outline-ver.is-icon.text-color-white {
  color: var(--base-color-neutral--white);
  font-weight: 400;
}

.button.is-outline-ver.is-icon.text-color-white:hover {
  background-color: var(--blue-700);
}

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

.heading-style-h4 {
  font-size: 1rem;
  line-height: 1.3;
}

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

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.form_radio-label {
  margin-bottom: 0;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e;
}

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

.rl-styleguide_label {
  color: #1e51f7;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #ebeffa;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_label.is-html-tag {
  color: #bb4198;
  background-color: #f9eff6;
}

.text-size-regular {
  font-size: 1rem;
  font-weight: 400;
}

.text-size-regular.text-color-p {
  color: #6e6e6e;
  font-family: Gilroy, sans-serif;
}

.text-size-regular.text-color-p.cards-p {
  margin-bottom: 8px;
}

.text-size-regular.text-color-faq {
  color: #6e6e6e;
}

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

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

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

.icon-height-xlarge {
  height: 6.5rem;
}

.heading-style-h3 {
  color: var(--blue-950);
  letter-spacing: -1.51px;
  font-size: 2.5rem;
  line-height: 1.1;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.form_input {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--white);
  height: auto;
  min-height: 2.75rem;
  color: var(--text-color--text-primary);
  border-radius: 0;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-family: Gilroy, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

.form_input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form_input.is-select-input {
  background-image: none;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  color: var(--text-color--text-primary);
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.icon-embed-custom1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.is-master-ver {
  justify-content: center;
  align-items: center;
  position: sticky;
  inset: auto 0% 40px;
}

.button-group.is-center {
  justify-content: center;
}

.button-group.align-center {
  justify-content: center;
  align-items: center;
}

.button-group.hide-desktop {
  display: none;
}

.button-group.align-center-tablet {
  justify-content: flex-start;
  align-items: center;
}

.button-group.align-right {
  justify-content: flex-end;
  align-items: center;
}

.text-color-white {
  color: var(--base-color-neutral--white);
}

.background-color-white {
  background-color: var(--base-color-neutral--white);
}

.text-style-muted {
  opacity: .6;
}

.text-style-nowrap {
  white-space: nowrap;
}

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

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d;
}

.text-color-black {
  color: var(--black-archive);
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
}

.icon-embed-xsmall.is-master-btn-arrow {
  margin-left: -6px;
}

.icon-height-xxsmall {
  height: 1rem;
}

.background-color-black {
  background-color: var(--base-color-neutral--black);
}

.shadow-xsmall {
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_subheading {
  z-index: 3;
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-primary);
  border-radius: .75rem;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.form_radio-icon {
  border: 1px solid var(--border-color--border-primary);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form_radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.form_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.rl-styleguide_callout-link_colors {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  border-radius: .75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.icon-height-custom1 {
  height: 1.25rem;
}

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

.text-align-center.text-color-blue900 {
  color: var(--blue-900);
}

.text-align-center.text-color-blue900.text-highlight.highlight-headings {
  text-transform: none;
}

.text-size-small {
  font-size: .875rem;
  line-height: 1.5;
}

.text-size-small.text-color-faq {
  color: #6e6e6e;
}

.text-size-small.opacity-50 {
  opacity: .5;
}

.text-size-small.text-style-allcaps.text-color-primary {
  color: var(--blue-500);
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form_field-wrapper {
  position: relative;
}

.icon-height-small {
  height: 2rem;
}

.icon-height-large {
  height: 5rem;
}

.shadow-large {
  box-shadow: 0 0 24px -4px #00000014, 0 0 8px -4px #00000008;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text figcaption {
  border-left: 2px solid var(--text-color--text-primary);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.icon-height-medium {
  height: 3rem;
}

.form_checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  font-family: Gilroy, sans-serif;
  display: flex;
}

.shadow-small {
  box-shadow: 0 4px 8px -2px #0000001a, 0 2px 4px -2px #0000000f;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

.text-size-large {
  font-size: 1.25rem;
}

.icon-height-xsmall {
  height: 1.5rem;
}

.pointer-events-auto {
  pointer-events: auto;
}

.rl-styleguide_spacing-all {
  display: none;
}

.pointer-events-none {
  pointer-events: none;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.padding-section-small.no-padding-bottom {
  padding-bottom: 0;
}

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: var(--background-color--background-secondary);
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed var(--border-color--border-primary);
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.padding-global.relative-top {
  z-index: 1;
  position: relative;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padding-section-medium.is-hero {
  padding-top: 8.1rem;
  padding-bottom: 5.8rem;
}

.padding-section-medium.is-hero.is-news-ver {
  padding-bottom: 2rem;
}

.padding-section-medium.no-padding-bottom {
  padding-bottom: 0;
}

.padding-section-medium.no-padding-bottom.bg-graph-deco {
  background-image: url('../images/bg-lines.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.padding-section-medium.is-hero-cs {
  padding-top: 7rem;
}

.padding-section-medium.is-cs-version {
  padding-bottom: 7rem;
}

.padding-section-medium.no-padding-top {
  padding-top: 0;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.padding-section-large.is-hero-w-overlap {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.padding-section-large.no-padding-bottom {
  padding-bottom: 0;
}

.padding-section-large.is-hero-thankyou {
  padding-top: 11rem;
  padding-bottom: 9rem;
}

.padding-section-large.is-hero-landingpage {
  padding-top: 8rem;
  padding-bottom: 12rem;
}

.spacer-tiny {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1.5rem;
}

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

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

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

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

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

.spacer-xhuge {
  width: 100%;
  padding-top: 7rem;
}

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

.rl-styleguide_nav {
  z-index: 1000;
  background-color: var(--background-color--background-alternate);
  border-radius: .75rem;
  margin-top: 1rem;
  padding: .5rem;
  position: sticky;
  top: 1rem;
}

.rl-styleguide_nav-link {
  color: var(--link-color--link-alternate);
  border-radius: .25rem;
  padding: .5rem 1rem;
  text-decoration: none;
}

.rl-styleguide_nav-link.w--current {
  background-color: var(--background-color--background-primary);
  color: var(--link-color--link-primary);
}

.rl-styleguide_subheading-small {
  font-size: 1rem;
  font-weight: 400;
}

.rl-styleguide_callout-heading-wrapper {
  font-size: 1.25rem;
  font-weight: 600;
}

.rl-styleguide_background-color-list {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

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

.rl-styleguide_color-spacer {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  display: flex;
}

.background-color-secondary {
  background-color: var(--background-color--background-secondary);
}

.background-color-tertiary {
  background-color: var(--background-color--background-tertiary);
}

.background-color-alternative {
  background-color: var(--background-color--background-alternate);
}

.text-color-alternate {
  color: var(--text-color--text-alternate);
}

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

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

.aspect-ratio-square {
  aspect-ratio: 1;
}

.rl-styleguide_ratio-bg {
  z-index: -1;
  background-color: var(--background-color--background-secondary);
  min-width: 3rem;
  height: 100%;
  position: relative;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
}

.form_message-success-wrapper {
  padding: 0;
}

.form_message-success {
  background-color: var(--background-color--background-success);
  color: var(--text-color--text-success);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.section {
  position: relative;
}

.section.hero-bg {
  background-image: linear-gradient(#0006, #0006), url('../images/Hero-Section_1.webp');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  overflow: hidden;
}

.section.hero-bg.corner-rounded {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.section.hero-bg.location-hidden {
  display: none;
}

.section.is-overlap-top {
  margin-top: -70px;
}

.section.background-color-white.is-overlap-top.corner-rounded {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.section.background-color-white.is-overlap-top.corner-rounded-6px {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.section.background-color-white.corner-rounded {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.section.background-color-lb-grad {
  background-image: linear-gradient(180deg, var(--blue-50), white);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.section.background-color-lb-grad.is-overlap-top-small {
  margin-top: -40px;
}

.section.background-color-gradblue-white {
  background-image: linear-gradient(#e9f7fe, #f7fcff 30%, #fff 59%);
}

.section.background-color-grey {
  background-color: #fafafa;
}

.section.not-relative {
  position: static;
}

.navbar9_dropdown-link {
  grid-column-gap: .6rem;
  grid-row-gap: 0px;
  color: var(--blue-950);
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 0;
  text-decoration: none;
  transition: all .2s;
  display: grid;
}

.navbar9_dropdown-link:hover {
  color: var(--blue-500);
  padding-left: 10px;
  font-weight: 500;
}

.navbar9_dropdown-link.w--current {
  color: var(--blue-500);
}

.navbar9_dropdown-link.disabled {
  color: var(--base-color-neutral--neutral-light);
}

.navbar9_menu-button {
  padding: 0;
}

.navbar9_link {
  color: var(--base-color-brand--black);
  cursor: pointer;
  padding: .6rem 1rem .5rem;
  font-weight: 500;
  transition: all .2s;
}

.navbar9_link:hover, .navbar9_link.w--current {
  color: var(--blue-500);
}

.navbar9_menu {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
  position: static;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.navbar9_menu-left {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar9_dropdown-list.w--open {
  background-color: #fff0;
  width: 100vw;
  max-width: 100%;
  margin-top: -10px;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.navbar9_dropdown-content-layout {
  background-color: #fff;
  border-radius: 14px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .65fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
  box-shadow: 0 2px 54px 32px #0000001a;
}

.navbar9_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.navbar9_dropdown-content {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar9_dropdown-toggle {
  grid-column-gap: .5rem;
  height: 100%;
  color: var(--link-color--link-primary);
  flex-wrap: nowrap;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.navbar9_menu-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.navbar9_icon-wrapper {
  flex: none;
}

.navbar9_item-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.navbar9_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar9_menu-dropdown {
  cursor: pointer;
  position: static;
}

.navbar9_component {
  z-index: 100;
  background-color: var(--background-color--background-primary);
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: sticky;
  top: 0;
}

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

.heading-tag {
  letter-spacing: .75px;
  text-transform: uppercase;
  font-family: Gilroy, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.heading-tag.text-color-blue500 {
  color: #10a8e7;
}

.heading-tag.text-color-blue300 {
  color: #7ed6fb;
}

.btn-m-text-container {
  text-align: left;
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: -2px;
  display: flex;
}

.btn-m-heading {
  font-size: 1.662rem;
  line-height: 1;
}

.btn-m-p-text {
  font-family: Archia, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.btn-m-icon-wrapper {
  aspect-ratio: 1;
  background-color: var(--green-50);
  color: var(--blue-500);
  border-radius: 100%;
  padding: 1rem;
}

.gradient-blue {
  background-image: linear-gradient(125deg, #34b6ec, #056da0);
}

.gradient-yellow {
  background-image: linear-gradient(125deg, #c8d102, #877c0d);
}

.hero-fixed-wrapper {
  border-radius: 40px 0 0 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 43%;
  display: flex;
  position: absolute;
  inset: 72px 0% 0% auto;
  overflow: hidden;
}

.hero-img {
  object-fit: cover;
  object-position: 90% 0%;
  width: 100%;
  height: 100%;
}

.hero-img.cms-placeholder {
  object-position: 50% 50%;
}

.text-wrapper {
  flex-flow: column;
  justify-content: center;
  display: flex;
}

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

.text-wrapper.cs-slider-heading {
  width: 50em;
}

.hero-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.hero-grid.v2 {
  place-items: center start;
}

.faq-q-wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.4;
  display: flex;
}

.captera-structure-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.form-input {
  height: 100%;
  min-height: 48px;
  color: var(--text-color--text-alternate);
  background-color: #23668e;
  border: 1px solid #fff3;
  border-radius: 8px;
  margin-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: Gilroy, sans-serif;
  font-weight: 400;
}

.form-input::placeholder {
  color: var(--text-color--text-alternate);
}

.form-input.is-on-white-bg {
  color: var(--text-color--text-primary);
  background-color: #fff;
  border-color: #0003;
}

.form-input.is-on-white-bg::placeholder {
  color: var(--text-color--text-primary);
}

.form-input.is-select {
  background-color: #21658d;
  padding-left: .9rem;
}

.form-input.is-multi-line {
  min-height: 100px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.hero-email-form-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  align-items: flex-start;
  display: flex;
}

.graph-cards {
  background-color: #fff;
  border-radius: 5.6px;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}

.graph-cards.shadow-large {
  background-color: #fff;
}

.graph-cards.shadow-large.is-fixed.is-hero-2, .graph-cards.shadow-large.is-fixed.is-industries-2 {
  z-index: 1;
  inset: 59% auto auto 55%;
}

.graph-cards.is-fixed {
  position: absolute;
}

.graph-cards.is-fixed.is-1 {
  top: -10%;
  left: 0%;
}

.graph-cards.is-fixed.is-2 {
  inset: 5% -7% auto auto;
}

.graph-cards.is-fixed.is-3 {
  inset: auto 0% 5% auto;
}

.graph-cards.is-fixed.shadow-large.is-2 {
  box-shadow: none;
  background-color: #fff0;
}

.graph-card-header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.graph-card-header.background-color-blue50 {
  background-color: var(--blue-50);
}

.code-animation {
  display: none;
}

.content-cards {
  background-color: #fff;
  border: 1px solid #edefef;
  border-radius: 10px;
  width: 100%;
  padding: 1rem;
}

.content-cards.shadow-large {
  flex-flow: column;
  align-items: stretch;
}

.content-cards.shadow-large.is-2-img-ver-blue-grad {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  transition: all .2s;
  display: flex;
}

.content-cards.shadow-large.is-2-img-ver-blue-grad:hover {
  border-color: var(--blue-300);
}

.content-cards.shadow-large.is-1-img-ver-hover.max-width-xsmall {
  text-decoration: none;
}

.content-cards.shadow-large.is-1-img-ver-hover {
  background-color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  transition: all .2s;
  display: grid;
}

.content-cards.shadow-large.is-1-img-ver-hover.is-green-ver {
  background-color: #fff;
}

.content-cards.shadow-large.is-1-img-ver-hover.is-green-ver:hover {
  border-color: #d0dc00;
}

.content-cards.shadow-large.is-1-img-ver-hover {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  transition: all .2s;
  display: grid;
}

.content-cards.shadow-large.is-1-img-ver-hover:hover {
  border-color: #7ed6fb;
}

.content-cards.is-vertical-layout {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: none;
  font-family: Gilroy, sans-serif;
  display: grid;
}

.content-cards.is-vertical-layout.is-1-img-ver-hover.shadow-large {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

._3grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

._3grid.is-bento-layout {
  grid-template-rows: auto auto;
  place-items: stretch stretch;
}

._3grid.is-location-ver {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
}

.card-header {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  padding: .4rem 1rem;
  display: flex;
}

.card-body {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-top: .5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.card-footer-img-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: 6.7px;
  flex-flow: column;
  align-items: center;
  height: 200px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-footer-img-wrapper.background-color-blue-grad {
  background-color: #7ed6fb00;
  background-image: linear-gradient(205deg, #edf8ff, #7fd6fb);
}

.card-footer-img-wrapper.background-color-blue-grad.is-single-img-version, .card-footer-img-wrapper.background-color-blue-grad.is-image-grid {
  height: auto;
  max-height: none;
  padding: 2rem 1rem;
}

.card-footer-img-wrapper.background-color-blue-grad.is-image-grid.align-right {
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 400px;
  padding-left: 2rem;
  padding-right: 0;
}

.card-footer-img-wrapper.background-color-greed-grad {
  background-color: #7ed6fb00;
  background-image: linear-gradient(125deg, #f8fee8, #efffc8);
}

.card-footer-img-wrapper.background-color-greed-grad.is-single-img-version {
  justify-content: center;
  align-items: center;
  height: auto;
  max-height: none;
  padding: 2rem 1rem;
}

.card-footer-img-wrapper.is-2-img-ver {
  grid-column-gap: 2.3rem;
  grid-row-gap: 2.3rem;
  justify-content: center;
  align-items: center;
  padding-top: 2.3rem;
}

.card-footer-img-wrapper.is-larger-1x1-ratio {
  height: auto;
}

.card-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.card-img.is-dashboard-v1 {
  max-width: none;
}

.card-img.is-dashboard-v1.is-left {
  width: 130%;
  margin-left: 200px;
}

.card-img.is-dashboard-v1.is-right {
  width: 130%;
  margin-right: 200px;
}

.vertical-layout {
  flex-flow: column;
  display: flex;
}

.sign-cards {
  background-color: #fff;
  border-radius: 5.6px;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}

.sign-cards.shadow-large {
  flex-flow: column;
  display: flex;
}

.sign-cards.shadow-large.is-fixed {
  z-index: 1;
  position: absolute;
}

.sign-cards.shadow-large.is-fixed.is-4 {
  inset: auto auto 13% -6%;
}

.sign-cards.shadow-large.is-fixed.is-hero-1, .sign-cards.shadow-large.is-fixed.is-industries-1 {
  top: 19%;
  left: 49%;
}

.footer5_social-link {
  color: var(--link-color--link-alternate);
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer5_top-wrapper {
  grid-column-gap: 7%;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
}

.footer5_link {
  color: var(--link-color--link-alternate);
  cursor: pointer;
  padding-top: .1rem;
  padding-bottom: .1rem;
  font-size: .875rem;
  text-decoration: none;
  transition: all .2s;
}

.footer5_link:hover {
  color: var(--blue-300);
}

.footer5_link.not-active {
  opacity: .5;
  cursor: not-allowed;
  display: none;
}

.footer5_link-list {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--text-color--text-alternate);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  font-family: Gilroy, sans-serif;
  display: flex;
}

.footer5_social-icons {
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  margin-left: 24%;
  display: grid;
}

.footer5_legal-link {
  color: var(--link-color--link-alternate);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.footer5_legal-link:hover {
  color: var(--blue-300);
}

.footer5_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.footer5_logo-link {
  padding-left: 0;
}

.footer5_logo-link.w--current {
  width: 100%;
  max-width: 240px;
}

.footer5_bottom-wrapper {
  color: var(--text-color--text-alternate);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.line-divider {
  background-color: var(--blue-800);
  width: 100%;
  height: 1px;
}

.footer-bg-eagle {
  z-index: 0;
  width: 100%;
  max-width: 700px;
  position: absolute;
  top: 30%;
  left: 50%;
}

.footer5_link-heading {
  color: var(--link-color--link-alternate);
  padding-top: .1rem;
  padding-bottom: .1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.footer5_link-heading:hover {
  color: var(--blue-300);
}

.footer5_link-heading.text-size-medium {
  cursor: pointer;
}

.logo-social-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.signature-embed {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.button-text-padding {
  margin-top: 2px;
  line-height: 1.3;
}

.signature-card-footer {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

.signature-card-body {
  padding-left: 1rem;
  padding-right: 1rem;
}

.is-action-section {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.action-main-img {
  width: 100%;
  max-width: 800px;
}

.action-content-wrapper {
  flex-flow: column;
  align-items: center;
  display: flex;
  position: relative;
}

.section_faq8 {
  position: relative;
}

.faq8_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.faq8_component.v2 {
  grid-template-columns: 1fr 1fr;
}

.faq8_content {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.layout397_row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.layout397_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.layout397_column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  grid-template-columns: 1fr;
  align-items: start;
  display: flex;
}

.text-color-blue900 {
  color: var(--blue-900);
}

.text-color-blue900.text-highlight.highlight-headings {
  text-transform: none;
}

.faq3_question {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-top: 1px solid var(--blue-100);
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.faq3_question.full-width-ver {
  border-top-style: none;
  border-top-width: 0;
  justify-content: space-between;
}

.faq3_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
}

.faq3_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq3_answer {
  padding-left: 50px;
  overflow: hidden;
}

.faq3_answer.full-width-ver {
  padding-left: 0;
}

.cta-container {
  border-radius: 14px;
}

.cta-container.bg-blue-grad {
  background-image: linear-gradient(205deg, #f1faff, #bce8fd);
  padding-bottom: 3rem;
}

.cta-container.bg-darkerblue-grad {
  background-image: linear-gradient(#0006, #0006), url('../images/Hero-Section_1.webp');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.cta-header {
  grid-column-gap: 6.7rem;
  grid-row-gap: 6.7rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 262px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 3rem;
  display: flex;
}

.cta-header.v2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
}

.flex-horizontal-right-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  width: 40%;
  display: flex;
}

.header19_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.header19_image-wrapper {
  min-width: 300px;
}

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

.footer-cta-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-cta-wrapper-item {
  border-radius: 14px;
  flex-flow: column;
  justify-content: space-between;
  padding: 3rem 2rem 3rem 3rem;
  display: flex;
}

.footer-cta-wrapper-item.background-color-blue50 {
  background-color: var(--blue-50);
}

.footer-cta-wrapper-item.hero-bg {
  background-image: linear-gradient(#0006, #0006), url('../images/Hero-Section_1.webp');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.footer-cta-wrapper-item.hero-bg.is-nav-ver {
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/ce-resource_1.webp');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 50%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: absolute;
  inset: 20px 20px 20px auto;
}

.pill-small-quote {
  background-color: #fff;
  border-radius: 6px;
  padding: .6rem 1rem;
}

.text-is-single-line {
  white-space: pre;
}

.pit-icon-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
  display: flex;
  overflow: hidden;
}

.pill-small-icon {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--blue-50);
  border-radius: 6px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: .6rem 1rem .6rem .6rem;
  display: flex;
}

.pill-small-icon.v2 {
  background-color: var(--base-color-brand--white);
  border: 1px solid #bde9ff;
  padding-left: 1rem;
}

.faq-txt-link {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--blue-500);
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.icon-embed-xxxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
}

.faq-icon-fixed {
  width: 2rem;
  height: 2rem;
  color: var(--blue-200);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.faq-heading {
  color: var(--blue-950);
}

.faq-heading.v2 {
  font-size: 30px;
  font-weight: 400;
}

.partner-logo-link {
  opacity: .5;
  filter: saturate(0%);
  justify-content: center;
  width: 100%;
  min-width: 160px;
  max-height: 80px;
  padding: 1rem 2rem;
  transition: opacity .2s;
  display: flex;
}

.partner-logo-link:hover {
  opacity: 1;
}

.partner-logo-link.smaller {
  min-width: 0;
  max-width: 148px;
}

.partner-logo-link.v2-ver {
  opacity: .8;
  min-width: 0;
  max-width: 80px;
  max-height: 60px;
  padding: .5rem .3rem;
}

.partner-logo-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.headshot-img-wrapper {
  aspect-ratio: 1;
  border: 1px solid var(--base-color-neutral--white);
  border-radius: 100%;
  width: 100%;
  min-width: 60px;
  max-width: 60px;
  height: 100%;
  min-height: 60px;
  max-height: 60px;
  overflow: hidden;
}

.headshot-img-wrapper.is-center {
  width: 100%;
  margin-left: -16px;
  margin-right: -16px;
}

.headshot-img-wrapper.larger-ver {
  min-width: 100px;
  max-width: 100px;
  min-height: 100px;
  max-height: 100px;
}

.headshot-img-wrapper.is-small {
  min-width: 32px;
  min-height: 32px;
}

.multi-headshot-grid {
  justify-content: center;
  align-items: center;
  display: flex;
}

.multi-headshot-grid.is-small {
  height: 34px;
}

.header1_content {
  text-align: center;
  max-width: 30rem;
}

.header1_image-wrapper.is-overlap-bottom {
  margin-bottom: -150px;
}

.header1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 3rem;
  display: grid;
}

.cta-testimonial-txt-wrapper {
  color: var(--text-color--text-alternate);
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.star-wrapper {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  display: flex;
}

.cta-testimonial {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 3rem;
  display: grid;
}

.cta-testimonial-img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.header-contact_component {
  grid-column-gap: 6rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.contact-form {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.contact-form-heading {
  color: var(--text-color--text-alternate);
  text-align: center;
  margin-bottom: 1rem;
}

.form-dark {
  border: 1px solid #edefef;
  border-radius: 20px;
  width: 100%;
  padding: 3rem 2rem;
}

.form-dark.shadow-large {
  flex-flow: column;
  align-items: stretch;
  font-family: Gilroy, sans-serif;
}

.form-dark.shadow-large.hero-bg {
  z-index: 1;
  background-image: linear-gradient(#0006, #0006), url('../images/Hero-Section_1.webp');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
}

.line-left-wrapper {
  border-left: 2px solid var(--blue-300);
  height: 100%;
  padding-left: 1.5rem;
}

.location-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  height: 100%;
  color: var(--text-color--text-alternate);
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.icon-content-cards {
  border: 1px solid #edefef;
  border-radius: 10px;
  width: 100%;
  padding: 1rem;
  font-family: Gilroy, sans-serif;
}

.icon-content-cards.shadow-large {
  flex-flow: column;
  align-items: stretch;
}

.icon-content-cards.default-b-outline {
  background-color: #fff;
  border-color: #bde9ff;
  transition: border-color .2s;
}

.icon-content-cards.hover-b-outline {
  background-color: #fff;
  transition: border-color .2s;
}

.icon-content-cards.hover-b-outline:hover {
  border-color: #10a8e7;
}

.icon-bg-w-b {
  color: var(--blue-500);
  background-color: #f6f7f7;
  border-radius: 5.71px;
}

.select-input {
  min-height: 45px;
  color: var(--text-color--text-alternate);
  background-color: #21658d;
  border: 0 #000;
  margin-bottom: 0;
  padding-left: 0;
}

.pricing20_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fff;
  border-radius: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding: 3rem 3rem 1rem;
  grid-template-rows: auto !important;
}

.pricing20_plan {
  color: var(--blue-900);
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 2rem;
  transition: border-color .2s;
}

.pricing20_plan:hover {
  border: 1px solid var(--blue-300);
}

.pricing20_content {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-template-rows: subgrid;
  grid-row: span 8;
  display: grid;
}

.pricing20_divider {
  background-color: var(--blue-200);
  width: 100%;
  height: 1px;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.pricing20_divider.darker-ver {
  background-color: #046ca0;
}

.heading-style-h1-4 {
  font-family: Archia, sans-serif;
  font-size: 3.5rem;
  line-height: 1.2;
}

.pricing20_feature-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.pricing20_feature {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing20_icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 12px;
}

.pricing22_component {
  width: 100%;
  color: var(--blue-900);
}

.pricing22_component.animation_slide-up-once {
  color: var(--blue-950);
}

.pricing22_top-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  background-color: var(--base-color-neutral--white);
  color: var(--blue-900);
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  margin-bottom: 1rem;
}

.pricing22_top-row-content {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.pricing22_top-row-button {
  margin-top: 6px;
}

.pricing22_heading-row {
  margin-top: 2rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.pricing22_row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  align-items: stretch;
}

.pricing22_row.background-color-secondary {
  background-color: var(--blue-100);
}

.pricing22_feature {
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 400;
}

.pricing22_row-content {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
}

.pricing-info-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 50px 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.pricing20_plan-accent {
  color: var(--text-color--text-alternate);
  background-image: linear-gradient(#0006, #0006), url('../images/Hero-Section_1.webp');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 2rem;
  transition: border-color .2s;
}

.pricing20_plan-accent:hover {
  border: 1px solid var(--blue-300);
}

.cta-simple {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 3.4rem 5rem 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-bg-eagle {
  z-index: 0;
  width: 100%;
  max-width: 500px;
  position: absolute;
  top: 1rem;
  left: 15%;
}

.banner11_component {
  width: 100vw;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.banner11_wrapper {
  width: 200vw;
  display: flex;
}

.banner11_marquee {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-around;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
}

.banner11_marquee.no-gap {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.banner11_text-wrapper {
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  display: flex;
}

.banner12_component {
  justify-content: flex-end;
  width: 100vw;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.banner12_inner-wrapper {
  justify-content: flex-end;
  width: 200vw;
  display: flex;
}

.banner12_marquee {
  justify-content: space-around;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 6px;
  display: flex;
}

.banner12_marquee.is-pf-ver {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  padding-top: 0;
  padding-left: 64px;
}

.banner12_text-wrapper {
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  display: flex;
}

.faq3_accordion_full {
  color: var(--blue-950);
  background-color: #fff;
  border: 1px solid #edefef;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: .5rem 2rem;
}

.faq3_accordion_full.is-footer-ver {
  color: var(--text-color--text-alternate);
  background-color: #fff0;
  border-style: none;
  padding: 0;
  display: none;
}

.faq-pg-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.quick-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
  position: sticky;
  top: 100px;
  bottom: 100px;
}

.faq-content-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--blue-950);
  flex-flow: column;
  display: flex;
  position: relative;
}

.faq-list-container {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
}

.quick-links {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.quick-links:hover {
  color: var(--blue-500);
}

.bg-deco-left {
  z-index: 0;
  aspect-ratio: 1;
  background-color: var(--blue-50);
  filter: blur(180px);
  border-radius: 100%;
  width: 80vw;
  max-width: 600px;
  position: absolute;
  inset: 18% auto auto -10%;
}

.nav-dropdown-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 4rem 2rem 4rem 4rem;
  display: grid;
}

.nav-dropdown-list.is-resources-ver {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding-right: 4rem;
  display: grid;
  position: relative;
}

.nav-dropdown-list.grid-align-left {
  flex-flow: column;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  place-items: start;
  display: flex;
}

.graph-card-static {
  margin-bottom: -14px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.graph-static-img {
  object-fit: contain;
  width: 100%;
  min-height: 100px;
}

.graph-static-img.shadow-large {
  box-shadow: 0 0 24px -4px #0000001a, 0 0 8px -4px #0000001a;
}

.signature {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 10px;
  display: flex;
  overflow: hidden;
}

.cms-images {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.faq-full-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.container-xsmall {
  width: 100%;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.container-xsmall.left-align {
  margin-left: 0;
}

.multiple-pill-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 3rem;
  display: flex;
}

.multiple-pill-wrapper.is-pf-cta-ver {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: flex-start;
}

.bg-deco-right {
  z-index: 0;
  aspect-ratio: 1;
  background-color: var(--blue-50);
  filter: blur(180px);
  border-radius: 100%;
  width: 80vw;
  max-width: 600px;
  position: absolute;
  inset: 30% -10% auto auto;
}

.container-medium-v2 {
  width: 100%;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.swiper {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.swiper-wrapper {
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  transform: translate(0%);
}

.swiper-slide {
  cursor: grab;
  flex: none;
  width: 44em;
  height: 100%;
  padding-right: 1em;
}

.swiper-slide.is-smaller-cards {
  width: 26em;
}

.cms-link-card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fff;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  padding: 12px 2rem 12px 12px;
  text-decoration: none;
  display: grid;
}

.cms-card-testimonial {
  padding-top: .5rem;
  padding-bottom: 1rem;
}

.cms-card-body {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-top: 1px solid var(--blue-200);
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 1rem;
  padding-bottom: .5rem;
  display: flex;
}

.cms-card-contents {
  flex-flow: column;
  grid-template-rows: .75fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.card-txt-link {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--blue-500);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.product-feature-flex-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch center;
  display: grid;
}

.product-feature-flex-wrapper.is-2nd-row {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch center;
  margin-top: 1rem;
  display: grid;
}

.static-pill-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hr-services_component {
  color: var(--blue-900);
  background-image: linear-gradient(214deg, #f1faff, #c6ebfd);
  border-radius: 14px;
  padding: 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hr-services_images {
  grid-column-gap: 1rem;
  justify-content: space-between;
  width: 40%;
  max-width: 28.75rem;
  display: flex;
  position: absolute;
  inset: 0% 5.625rem 0% auto;
}

.hr-services_images-col {
  grid-row-gap: 1rem;
  background-color: #ffffff1a;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.hr-services_images-img {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  filter: saturate(0%);
  object-fit: cover;
  background-color: #ffffff40;
  border: 1px solid #fff9;
  border-radius: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch stretch;
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
}

.hr-services_info {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  max-width: 50rem;
  display: flex;
}

.cms-card-thumbnail {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cms-cards {
  border: 1px solid #edefef;
  border-radius: 10px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding: 1rem;
  font-family: Gilroy, sans-serif;
  display: flex;
}

.cms-cards.shadow-large {
  flex-flow: column;
  align-items: stretch;
}

.cms-cards.hover-b-outline {
  background-color: #fff;
  transition: border-color .2s;
}

.cms-cards.hover-b-outline:hover {
  border-color: #10a8e7;
}

.cms-cards.hover-b-outline.shadow-large {
  text-decoration: none;
}

.cms-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  display: grid;
}

.slider-heading-wrapper {
  color: var(--blue-900);
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.next-prev-button-container {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.cms-content-grid {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
  position: relative;
}

.cms-fixed-element {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
  position: sticky;
  top: 100px;
}

.swiper_card {
  height: 100%;
}

.slider-see-all-link {
  color: var(--blue-900);
  white-space: pre;
  margin-right: 10px;
  padding-top: 4px;
}

.cms-card-logo {
  z-index: 2;
  opacity: .8;
  filter: brightness(2000%);
  object-fit: contain;
  width: 100%;
  max-width: 125px;
  max-height: 55px;
  position: absolute;
  inset: 16px 16px auto auto;
}

.cms-large-card-img {
  aspect-ratio: 1;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.overlay-gradient {
  z-index: 1;
  background-image: linear-gradient(220deg, #0d4c6dcc, #fff0 86%);
  position: absolute;
  inset: 0%;
}

.client-logo {
  width: 100%;
  max-width: 150px;
}

.client-logo.opacity-low {
  opacity: .5;
}

.cms-rich-text {
  color: var(--blue-900);
}

.cms-rich-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.cms-rich-text h2 {
  margin-bottom: 1rem;
  font-size: 22px;
}

.cms-rich-text h4, .cms-rich-text p {
  margin-bottom: 1rem;
}

.cms-rich-text blockquote {
  border-left-color: var(--blue-300);
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 1rem;
  font-weight: 500;
}

.cms-rich-text figure {
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  margin: 2rem 0;
}

.cms-rich-text img {
  width: 100%;
}

.cms-rich-text a {
  color: var(--blue-500);
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}

.cms-rich-text a:hover {
  color: var(--blue-500);
}

.badge-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-bottom: 2rem;
  display: flex;
}

.badge-item {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--blue-950);
  background-color: #fff;
  border-radius: 6px;
  padding: 5px 10px 4px;
  display: flex;
}

.nav-left {
  padding: 4rem 3rem 4rem 4rem;
}

.nav-left.hero-bg {
  background-image: linear-gradient(#0006, #0006), url('../images/Hero-Section_1.webp');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.faq-p-list {
  color: #6e6e6e;
}

.logo-img {
  mix-blend-mode: multiply;
  object-fit: contain;
  width: 100%;
}

.text-color-blue950 {
  color: var(--blue-950);
}

.p-txt-cont-small {
  max-width: 32rem;
}

.breadcrumb_link {
  text-decoration: none;
}

.breadcrumb-block {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cms-card-img-cont {
  border-radius: 6px;
  height: 100%;
  min-height: 200px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.pf-img-layout {
  width: 100%;
}

.cta-logo-mobile-ver.hide-desktop {
  display: none;
}

.cta-logo-img-cont {
  object-fit: cover;
  background-color: #ffffff40;
  border: 1px solid #fff9;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 107px;
  padding: 1rem;
  display: flex;
}

.hero-industries-img-wrapper {
  border-radius: 14px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  max-height: 650px;
  display: flex;
  position: static;
  overflow: hidden;
}

.nav-tag {
  letter-spacing: .75px;
  text-transform: none;
  margin-top: 1px;
  font-family: Gilroy, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.pricing-sub-h {
  font-family: Archia, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.is-smaller {
  font-size: 10px;
}

.div-block-3 {
  text-align: right;
}

.pricing-list-p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.pricing-btn-txt {
  margin-top: 6px;
  line-height: 1.3;
}

.pricing-btn-txt.text-wrap {
  font-weight: 400;
}

.cs-card-heading {
  font-family: Gilroy, sans-serif;
  font-size: 1.2rem;
}

.cs-card-quote {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.25;
}

.nav-dropdow-heading {
  color: var(--text-color--text-alternate);
  font-size: 3rem;
}

.tag-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.tag-rich-txt {
  color: var(--blue-950);
  padding-top: 2px;
}

.tag-rich-txt strong {
  color: var(--blue-500);
}

.div-block-4 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-left: .5rem;
  display: flex;
}

.pill-category {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: var(--blue-50);
  color: var(--blue-950);
  border-radius: 6px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: .4rem .5rem .3rem;
  display: flex;
}

.form-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.container-medium-l {
  width: 100%;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
}

.check-list-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.grid-whats-included {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 7rem;
  display: grid;
}

.whats-included-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 22em;
  display: flex;
}

.div-block-5 {
  width: 100%;
  height: 100%;
  position: relative;
}

.landing-pdf-img {
  width: 100%;
  max-width: 360px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.landing-pdf-img.is-1 {
  z-index: 1;
  border-radius: 4px;
  inset: auto -52px -10px auto;
  transform: rotate(6.4deg);
  box-shadow: 0 2px 16px #0003;
}

.landing-pdf-img.is-2 {
  z-index: 2;
  border-radius: 4px;
  inset: 0 auto auto 0;
  transform: rotate(-3.7deg);
  box-shadow: 0 2px 16px #0003;
}

.landing-pdf-img.is-3 {
  z-index: 0;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  inset: -40px 0% 0% 34%;
  box-shadow: 0 2px 16px #0003;
}

.div-block-6 {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.faq-answer-links {
  color: var(--blue-500);
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}

.faq-answer-links:hover {
  color: var(--blue-300);
}

.anchor-point {
  width: 0;
  height: 0;
  position: absolute;
  top: -120px;
}

.separator {
  background-color: var(--blue-200);
  width: 100%;
  height: 1px;
}

.heading-in-this-article {
  color: var(--blue-500);
}

.contact-links {
  color: var(--link-color--link-alternate);
  text-decoration: none;
  transition: all .2s;
}

.contact-links:hover {
  color: var(--blue-300);
}

.fs-radio_column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fs-radio_field-1 {
  border: 1px none var(--blue-900);
  background-color: var(--blue-50);
  color: var(--blue-950);
  cursor: pointer;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: .5rem 1rem .4rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
  position: relative;
}

.fs-radio_field-1:hover {
  border-color: var(--blue-500);
  opacity: 1;
  color: var(--blue-500);
}

.fs-radio_field-1.is-active {
  border-color: var(--blue-500);
  background-color: var(--blue-500);
  color: #fff;
}

.fs-radio_icon-1 {
  z-index: 1;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .5rem;
  position: relative;
}

.fs-radio_button-1 {
  border-style: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  display: block;
  position: absolute;
  inset: 0%;
  box-shadow: 1px 1px 3px #0000;
}

.fs-radio_button-1.w--redirected-focus {
  box-shadow: none;
}

.fs-radio_button-1.w--redirected-focus-visible {
  box-shadow: none;
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs-radio_label-1 {
  margin-bottom: 0;
  font-weight: 500;
  position: relative;
}

.collection-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.fs-radio_column-new {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  margin-top: 2rem;
  display: flex;
}

.category-all-txt {
  display: none;
}

.graph-img-alt {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.bento-mobile-dropdown {
  display: none;
}

.nav-resources-llist {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.sign-cards-static {
  background-color: #fff;
  border-radius: 5.6px;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
}

.sign-cards-static.shadow-large {
  flex-flow: column;
  display: flex;
}

.captera-element-wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  line-height: 1.4;
  display: flex;
}

.captera-element-wrapper.text-color-black-ver {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.footer-nav-dropdown-cont {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.logo-carousel-cont {
  padding-top: 2rem;
}

.headshot-img {
  width: 100%;
  height: 100%;
}

.icon-star {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.next-prev-cont {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.div-block-7 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.max-width-large--v2 {
  width: 100%;
  max-width: 44rem;
}

.icon-captera {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
}

.captera-rating-txt {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.captera-rating-txt.text-color-blue-500 {
  color: var(--blue-500);
}

.icon-captera-star {
  width: 1.2rem;
  height: 1.2rem;
}

.captera-info-txt {
  color: var(--text-color--text-alternate);
  font-size: .875rem;
  line-height: 1.4;
}

.captera-info-txt.is-bg-white {
  color: var(--blue-950);
}

.modal1_component {
  z-index: 1000;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal1_content-wrapper {
  background-color: var(--base-color-neutral--white);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80rem;
  height: auto;
  max-height: 80vh;
  margin-left: 5%;
  margin-right: 5%;
  overflow: scroll;
}

.modal1_close-button {
  opacity: .8;
  cursor: pointer;
  transition: all .2s;
  position: absolute;
  top: 1.2rem;
  right: 5%;
}

.modal1_close-button:hover {
  opacity: 1;
  transform: scale(1.1);
}

.modal1_background-overlay {
  z-index: -1;
  background-color: #00000080;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.captera-rating-no-wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  line-height: 1.4;
  display: flex;
}

.captera-rating-no-wrapper.v2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}

.footer-cta-content {
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.nav-buyer-g-card-heading {
  width: 100%;
  max-width: 12em;
  color: var(--base-color-neutral--white);
}

.home-hero-img {
  object-fit: cover;
  object-position: 90% 0%;
  width: 100%;
  height: 100%;
}

.industries-hero-img {
  object-fit: cover;
  object-position: 90% 0%;
  width: 100%;
  height: 100%;
  min-height: 550px;
}

.tc-text-cont {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--blue-950);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2rem;
  display: flex;
}

.tc-list {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.tc-list-item {
  margin-top: 0;
  margin-bottom: 0;
}

.tc-sub-headings {
  color: var(--blue-800);
  margin-top: .3rem;
  margin-bottom: .5rem;
}

.form-book-demo {
  z-index: 0;
  background-color: #fff;
  border: 1px solid #edefef;
  border-radius: 20px;
  width: 100%;
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.c-embed {
  text-align: center;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.success-ty {
  margin-bottom: 1rem;
}

.success-message-2 {
  border: 1px solid var(--blue-300);
  background-color: var(--blue-950);
  color: var(--text-color--text-alternate);
  border-radius: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.tc-aligned-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--blue-950);
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tc-aligned-left.is-divider {
  border-left: 1px solid var(--blue-500);
  justify-content: space-between;
  padding-left: 4rem;
}

.tc-sidebyside-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.list-in-list-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 18px 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 2rem;
  display: grid;
}

.list-in-list-item.in-list-again {
  display: flex;
}

.tc-list-items {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  margin-top: .4rem;
  margin-bottom: .4rem;
  display: flex;
}

.tc-list-items.is-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 18px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.video-wrapper {
  background-color: var(--base-color-neutral--white);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80rem;
  height: auto;
  max-height: 80vh;
  margin-left: auto;
  margin-right: auto;
  overflow: scroll;
}

.cta-customer-support {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--text-color--text-alternate);
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.cs_detail-infor-wrapper {
  border-left: 1px solid var(--blue-500);
  flex-flow: column;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  display: flex;
}

.cs-links {
  color: var(--blue-500);
  text-decoration: none;
  transition: all .2s;
}

.cs-links:hover {
  color: var(--blue-300);
}

.cs-p-text {
  width: 100%;
  max-width: 35rem;
}

.is-relative-top {
  z-index: 1;
  position: relative;
}

.buyers-guide-cta {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 3.5rem 5.5rem 3rem 4rem;
  display: grid;
  position: relative;
}

.buyers-guide-cta.exit-intent-ver {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  padding: 2rem;
  display: flex;
}

.footer-cta-container-v2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 14px;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-cta-wrapper-item-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 14px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 0;
  display: grid;
}

.footer-cta-wrapper-item-grid.hero-bg {
  background-image: linear-gradient(#0006, #0006), url('../images/Hero-Section_1.webp');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.header19_content-v3 {
  flex-flow: column;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-right: 2rem;
  display: flex;
}

.footer-cta-image-wrapper {
  position: relative;
}

.footer-cta-tablet-img {
  z-index: 2;
  object-fit: cover;
  object-position: 50% 0%;
  width: 90%;
  height: 65%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-cta-tablet-img.v2 {
  object-fit: contain;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
  left: 10px;
}

.navbar-logo-center {
  padding-bottom: 60px;
}

.navbar-logo-center-container {
  z-index: 5;
  border-bottom: 1px solid var(--blue-50);
  background-color: #0000;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.buyers-g-cta-padding-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.form-p-m {
  color: var(--text-color--text-alternate);
}

.buyers-guide-footer-cta-heading {
  color: var(--base-color-neutral--white);
}

.buyers-guide-footer-cta-heading.text-color-blue900 {
  color: var(--blue-900);
}

.close {
  z-index: 999;
  color: #10a8e7;
  cursor: pointer;
  background-color: #f6f6f6;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 40px;
  display: flex;
  position: absolute;
  inset: -20px -20px auto auto;
  box-shadow: 0 0 14px #0003;
}

.popup_content-wrapper {
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  height: auto;
  max-height: 85vh;
  position: relative;
  overflow: visible;
}

.exit-intent-popup {
  z-index: 99999;
  opacity: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: none;
  position: fixed;
  inset: 0;
}

.container-small-l {
  width: 100%;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.icon-captera-m {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  display: flex;
}

.icon-captera-m.v2 {
  width: 50px;
  height: 50px;
}

.captera-info-txt-m {
  color: var(--text-color--text-alternate);
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.4;
}

.captera-info-txt-m.v2 {
  font-size: 15px;
}

.captera-info-txt-m.v2-black {
  color: var(--text-color--text-primary);
  font-size: 15px;
}

.captera-rating-txt-m {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  display: flex;
}

.captera-rating-txt-m.v2 {
  width: 30px;
}

.captera-rating-txt-m.v2-black-bigger {
  width: 70px;
  color: var(--black-archive);
}

.icon-captera-star-m {
  width: 14px;
  height: 14px;
}

.icon-captera-star-m.v2 {
  width: 20px;
  height: 20px;
}

.icon-captera-star-m.v2--bigger {
  width: 50px;
  height: 50px;
}

.icon-arrow-m {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.logo-selection-wrap {
  grid-column-gap: 4vw;
  grid-row-gap: 10px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.logo-selection-wrap.animation_slide-up-once {
  grid-column-gap: 3vw;
}

.logo-carousel-cont-m {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.logo-carousel-cont-m.v2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.logo-carousel-cont-m.background-is-light-grey {
  background-color: #fafafa;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.ce-intro-cont {
  background-color: #e0f3feb3;
  border-radius: 30px;
}

.tag-margin-bottom {
  margin: 0 0 2rem;
}

.ce-intro-header {
  padding-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.ce-intro-body {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  padding-left: 3rem;
  display: flex;
}

.ce-intro-right-cont {
  width: 60%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  position: relative;
}

.ce-intro-left-cont {
  text-align: center;
  flex-flow: column;
  align-items: center;
  width: 45%;
  display: flex;
}

.divider-heading-wrap {
  color: var(--blue-900);
  margin-bottom: 2rem;
  font-family: Archia, sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.parallex-1 {
  width: 100%;
  max-width: 280px;
  height: 195px;
  position: absolute;
  inset: 40% auto auto -30px;
}

.parallex-2 {
  width: 100%;
  max-width: 280px;
  position: absolute;
  inset: auto 15% 0% auto;
}

.parallex-3 {
  width: 100%;
  max-width: 240px;
  position: absolute;
  inset: 3% 35% auto auto;
}

.buyers-g-btn-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.captera-hero-fixed {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #00000026;
  border-radius: 99px;
  padding: .9rem 1.3rem .7rem 1rem;
  display: inline-flex;
}

.logo-heading {
  color: var(--blue-900);
  text-align: center;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.logo-heading.is-small {
  font-size: 14px;
}

.card-heading {
  color: var(--blue-900);
  margin-top: 2px;
  font-size: 20px;
  font-weight: 500;
}

.layout502_component {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.layout502_tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-bottom: 6rem;
  display: flex;
  overflow: auto;
}

.layout502_tab-link {
  min-width: 150px;
  color: var(--blue-500);
  background-color: #eef4f8;
  border-radius: 4px;
  flex-flow: row;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem .85rem;
  display: flex;
}

.layout502_tab-link.w--current {
  color: var(--link-color--link-alternate);
  background-color: #3ac0f6;
  flex: none;
}

.layout502_tab-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout502_image-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff9;
  border: 1px solid #bde9ff;
  border-radius: 4px;
  flex-flow: column;
  justify-content: center;
  padding: 1.5rem 2rem 2rem;
  display: flex;
}

.heading-text-h2 {
  color: var(--blue-950);
  font-size: 37px;
}

.tabs-item-content-heading {
  font-size: 32px;
}

.tabs-testimonial-bold-text {
  color: var(--blue-700);
  font-weight: 700;
}

.tabs-testimonial-logo-img {
  width: 200px;
}

.in-action-form-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.product-price-guide {
  width: 57.5%;
  margin-left: -93px;
}

.product-price-guide.v2 {
  object-fit: contain;
}

.product-price-cta {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 4rem;
  display: flex;
  position: relative;
}

.background-color-light-blue {
  background-color: #e9f7fe;
}

.container-medium-xl {
  width: 100%;
  max-width: 74rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large-custom {
  margin-top: -140px;
  padding-top: 14rem;
  padding-bottom: 7rem;
}

.in-action-list {
  margin-top: 1rem;
  margin-bottom: 4rem;
  padding-left: 0;
}

.in-action-list-item {
  background-image: url('../images/Checkmark-CE.svg');
  background-position: 0 1px;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: 1.3rem;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
}

.testi-author-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-side-by-side {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #0d4c6d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  display: grid;
}

.capterra-testi-badge-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.testimonial-3-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.card-footer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.reason-ce-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.reason-ce-2grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.faq-testimonial-card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 5rem;
  margin-bottom: 3rem;
  display: flex;
}

.faq-testi-text-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.learn-more-text {
  letter-spacing: 0;
  text-transform: none;
  font-family: Gilroy, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.icon-captera-bigger-ver {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 4px;
  display: flex;
}

.not-ready-wrapper.mobile-only {
  display: none;
}

.not-ready-arrow-image {
  margin-top: 1rem;
  margin-left: 60%;
}

.ms-input {
  border: 1px solid var(--blue-100);
  background-color: #fff;
  border-radius: 5px;
  min-height: 40px;
  margin-bottom: 0;
  padding: 8px 12px;
  transition: box-shadow .2s, border-color .2s;
  position: relative;
  box-shadow: 0 5px 10px -5px #0000001a;
}

.ms-input:hover {
  z-index: 2;
  border-color: var(--blue-500);
  box-shadow: none;
}

.ms-input::placeholder {
  color: #909090;
}

.flex-col-input-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.schedule-demo-form {
  background-color: #f8fafb;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 2.4rem 3rem;
}

.ms-checkbox-wrap {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.ms-checkbox {
  border: 1.5px solid var(--blue-100);
  background-color: #fff;
  border-radius: 33%;
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  margin-right: 10px;
  transition: all .2s;
}

.ms-checkbox:hover {
  border-color: var(--blue-500);
  background-image: linear-gradient(#ffffffe6, #ffffffe6);
}

.ms-checkbox.w--redirected-checked {
  border-color: var(--blue-500);
  background-color: var(--blue-500);
  background-image: url('../images/smallcheck.svg');
  background-size: 70%;
  border-radius: 33%;
}

.submit-button-arrow {
  background-color: var(--neon-accent);
  color: var(--text-color--text-primary);
  background-image: url('../images/CE-arrow-black.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 10px 3rem 10px 1.5rem;
  transition: all .2s;
  display: inline-flex;
}

.submit-button-arrow:hover {
  filter: brightness(110%);
}

.submit-button-arrow.green-ver {
  background-color: var(--neon-accent);
  color: var(--text-color--text-primary);
  background-image: url('../images/CE-arrow-black.svg');
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.schedule-demo-checkbox-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.schedule-demo-checkbox-headings {
  margin-top: 2px;
  font-size: 20px;
  font-weight: 600;
}

.schedule-demo-checkbox-headings:hover {
  filter: brightness(110%);
}

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

.form-heading-product-pricing {
  color: var(--text-color--text-alternate);
  text-align: left;
  margin-bottom: 1rem;
  font-size: 39px;
}

.test-size-regular.text-no-wrap {
  white-space: nowrap;
}

.code-embed, .code-embed-2, .code-embed-3, .code-embed-4, .code-embed-5 {
  display: none;
}

.form-outline {
  border: 1px solid #cdedfd;
  border-radius: 10px;
}

.ty-form-heading {
  margin-bottom: 10px;
}

.header-centered_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.padding-section-large-3 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-global-2 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.header-centered-component {
  position: relative;
}

.header-centered-component.text-color-alternate {
  color: var(--\<unknown\|variable-2688eaeb-df93-32fe-efb9-d54fbd7bd424\>);
}

.header-centered_component {
  z-index: 1;
  position: relative;
}

.header-centered_background-image-wrapper {
  z-index: 0;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.logo-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 1rem;
  display: flex;
}

.logo-heading-capterra-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.logo-heading-capterra-image-wrapper {
  position: relative;
}

.trust-indicator-heading-image {
  width: 123px;
  max-width: none;
  height: 123px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.benefit-grid_card {
  border: 1px none var(--\<unknown\|variable-d4c54ba4-ee41-67ce-58a5-5216ca039f83\>);
  background-color: var(--blue-500);
  border-radius: 1.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.benefit-grid_card.background-dark {
  background-color: var(--blue-950);
}

.benefit-grid_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 24px 24px 0 0;
  width: 100%;
  height: 100%;
  position: relative;
  top: 1rem;
}

.benefit-grid_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.benefit-grid_row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.benefit-grid_image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section_benefit-grid {
  background-color: var(--\<unknown\|variable-9f6b6bb4-0795-c8ab-f302-bbebab6f2554\>);
  color: var(--\<unknown\|variable-7cd2a57e-6f21-74f7-6ce6-096306cecf3e\>);
}

.benefit-grid_card-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 3rem 3rem 1rem;
  display: flex;
}

.benefit-row_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: 24px 0 0 24px;
  width: 100%;
  height: 100%;
  position: relative;
  left: 1.5rem;
}

.benefit-row_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--blue-200);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  overflow: hidden;
}

.benefit-row_card-content {
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  display: flex;
}

.benefit-row_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.benefit-row_image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.benefit-row_grid-lists {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.background-light-grey {
  background-color: #f9f9f9;
}

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

.text-size-medium-2 {
  font-size: 1.25rem;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.feature_tabs_image-wrapper {
  border-radius: 0;
  width: 100%;
  overflow: hidden;
}

.feature_tabs-link {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border-top: 2px solid var(--blue-200);
  border-bottom: 2px none var(--blue-200);
  text-align: center;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0 1.5rem .5rem;
  display: flex;
}

.feature_tabs-link.w--current {
  border-top-color: var(--blue-900);
  border-bottom-color: var(--blue-700);
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
}

.feature_tabs-link.is-first {
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding-left: 0;
}

.feature_tabs-link.is-first.w--current {
  border-top-color: var(--blue-900);
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  position: relative;
}

.feature_tabs-link.is-last {
  justify-content: flex-start;
  align-items: flex-end;
  width: 50%;
  padding-right: 0;
}

.feature_tabs-menu {
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.feature_tabs-component.background-color-gradblue-white {
  background-image: linear-gradient(#fff, #e0f3fe);
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.heading-style-h6-2 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.feature_tabs-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
}

.feature_tabs_image {
  aspect-ratio: 2;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
}

.feature_tabs_image.is-second {
  object-position: 0% 0%;
}

.tab-number-wrapper {
  background-color: var(--blue-200);
  width: 34px;
  height: 34px;
  color: var(--link-color--link-alternate);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  font-family: Archia, sans-serif;
  font-weight: 500;
  line-height: 90%;
  display: flex;
}

.tab-link-text-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: -16px;
  display: flex;
}

.tab-link-text-wrapper.is-first {
  position: relative;
  left: -2.9rem;
}

.tab-link-text-wrapper.is-last {
  position: relative;
  right: -41.5%;
}

.tab-image-wrapper {
  border: 1px solid var(--blue-500);
  background-color: var(--blue-200);
  border-radius: 20px;
  padding-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.feature_tabs_image_content-wrapper {
  position: relative;
}

.feature-tabs-content-wrapper {
  background-color: var(--blue-950);
  max-width: 350px;
  transform-style: preserve-3d;
  border-radius: 16px;
  padding: 1.5rem;
  position: absolute;
  inset: -1.5rem -1.5rem auto auto;
}

.feature-tabs-mobile_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.button-2 {
  background-color: var(--\<unknown\|variable-9f6b6bb4-0795-c8ab-f302-bbebab6f2554\>);
  color: var(--\<unknown\|variable-2688eaeb-df93-32fe-efb9-d54fbd7bd424\>);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button-2.is-link {
  color: var(--\<unknown\|variable-419fddc9-288d-5141-33c5-0873c4ce2f53\>);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-2.is-link.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

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

.feature-tabs-mobile-list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: none;
}

.feature-tabs-mobile_item {
  background-color: var(--blue-900);
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 2rem 2rem 0;
}

.feature-tabs-mobile_component {
  background-color: var(--\<unknown\|variable-9f6b6bb4-0795-c8ab-f302-bbebab6f2554\>);
  color: var(--\<unknown\|variable-7cd2a57e-6f21-74f7-6ce6-096306cecf3e\>);
}

.feature-tabs-mobile_image-wrapper {
  border-top: 1px solid var(--blue-500);
  border-right: 1px solid var(--blue-500);
  border-left: 1px solid var(--blue-500);
  background-color: var(--blue-200);
  border-radius: 8px 8px 0 0;
  width: 100%;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  overflow: hidden;
}

.heading-style-h5-2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.anchor-nav-wrapper {
  z-index: 5;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #edffc2;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 5% 7px;
  display: flex;
}

.anchor_link {
  color: var(--base-color-brand--black);
  text-align: center;
  cursor: pointer;
  padding: .6rem 1rem .5rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: all .2s;
}

.anchor_link:hover, .anchor_link.w--current {
  color: var(--blue-500);
}

.anchor-nav-scroll {
  z-index: 5;
  background-color: #edffc2;
  width: 100%;
  position: sticky;
  top: 72px;
}

.h1-cro-opt {
  color: var(--link-color--link-alternate);
  font-size: 72px;
  line-height: 1;
}

.ce-multi-form {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 200px;
  display: grid;
}

.ce-m-card {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  cursor: pointer;
  background-color: #e0f3fe;
  border: 2px solid #e1f3fe00;
  border-radius: 8px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 32px;
  transition: all .3s;
  display: flex;
}

.ce-m-card:hover {
  border: 2px solid #10a8e7;
}

.ce-m-card.ce-m-card-2 {
  background-color: #bbe7fc;
  flex-flow: column;
  justify-content: space-between;
  text-decoration: none;
}

.ce-m-card.ce-m-card-3 {
  text-decoration: none;
}

.ce-m-card.ce-m-card-3:hover {
  border-color: var(--blue-950);
  background-color: var(--blue-950);
}

.ce-m-card.ce-m-card-4 {
  text-decoration: none;
}

.ce-m-card.ce-m-card-4:hover {
  border-color: var(--blue-300);
  background-color: var(--blue-500);
}

.ce-m-card-2 {
  background-color: #e0f3fe;
  border-radius: 8px;
  padding: 24px;
}

.ce-m-card-3 {
  background-color: #085c84;
  border-radius: 8px;
  padding: 24px;
}

.ce-m-card-4 {
  background-color: #10a8e7;
  border-radius: 8px;
  padding: 24px;
}

.back-button {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  max-width: 70px;
  color: var(--blue-300);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.back-button:hover {
  color: var(--blue-50);
}

.back-button.white-ver {
  color: var(--link-color--link-alternate);
}

.back-button.white-ver:hover {
  color: var(--blue-300);
}

.ce-m-card-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.back-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  transform: rotate(180deg);
}

.ce-m-card-fake-link {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #0495d9;
  align-items: center;
  display: flex;
}

.shown-on-reveal {
  width: 100%;
  margin-top: 2rem;
}

.placeholder-cont {
  background-color: var(--blue-950);
  width: 300px;
  height: 50px;
}

.empty {
  width: 0;
  height: 0;
}

.workflow-strategy-form {
  width: 100%;
}

.input-sidebyside {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.anchor-link-position {
  position: absolute;
  inset: -100px auto auto 0%;
}

.text-underline {
  text-decoration: underline;
}

.layout238_item-icon-wrapper {
  display: inline-block;
}

.section_layout238 {
  background-color: var(--\<unknown\|variable-9f6b6bb4-0795-c8ab-f302-bbebab6f2554\>);
  color: var(--\<unknown\|variable-7cd2a57e-6f21-74f7-6ce6-096306cecf3e\>);
}

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

.button-group-3.is-center {
  justify-content: center;
}

.layout238_list {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: end center;
  display: grid;
}

.icon-1x1-medium-2 {
  width: 2rem;
  height: 2rem;
}

.layout238_item {
  text-align: left;
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  padding: 2rem;
  display: flex;
}

.benefit-checklist {
  background-image: url('../images/Checkmark.svg');
  background-position: 0 -1px;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: 1.3rem;
  margin-bottom: 0;
  padding-left: 1.75rem;
  font-size: .75rem;
}

.bg-grey {
  background-image: url('../images/bg.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.benefit-checklist-wrapper {
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 0;
}

.head-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.secure-hosting-badge {
  width: 123px;
  position: absolute;
  top: 0%;
  right: 3%;
}

.multi-headshot-tiny {
  height: 34px;
}

.heading-no-transition {
  transition: all;
}

.input-recaptcha-duo-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.side-by-side-recaptcha-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-end start;
  margin-top: 1rem;
  display: grid;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top.margin-medium.hide-desktop {
    display: block;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small.align-center-tablet {
    text-align: center;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .button.is-secondary.is-icon.download-buyer-ver {
    margin-left: auto;
    margin-right: auto;
  }

  .button.is-small.is-icon.is-pricing-mini {
    padding-left: .5rem;
    padding-right: .4rem;
  }

  .button.is-outline-ver.is-icon.download-buyer-ver {
    margin-left: auto;
    margin-right: auto;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .button-group.align-center {
    justify-content: center;
    align-items: center;
  }

  .button-group.hide-desktop {
    display: flex;
  }

  .button-group.align-center-tablet {
    justify-content: center;
    align-items: center;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-section-medium.is-hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .padding-section-medium.no-padding-bottom.bg-graph-deco {
    z-index: 1;
    background-image: url('../images/bg-lines.svg');
    background-position: 35% 0;
    background-repeat: no-repeat;
    background-size: 130%;
    position: relative;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .padding-section-large.is-hero-w-overlap {
    padding-top: 3rem;
  }

  .padding-section-large.is-hero-w-overlap.is-revert, .padding-section-large.is-hero-w-overlap.is-industries-hero {
    padding-top: 10rem;
    padding-bottom: 3rem;
  }

  .padding-section-large.is-hero-thankyou {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xlarge {
    padding-top: 3.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 7.5rem;
  }

  .section.hero-bg.is-homepage-hero-ver {
    flex-flow: column-reverse;
    display: flex;
  }

  .section.background-color-lb-grad.is-overlap-top-small {
    margin-top: 0;
  }

  .navbar9_menu-button.w--open {
    background-color: #0000;
  }

  .navbar9_link {
    width: 100%;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .navbar9_menu {
    border-bottom: 1px solid var(--border-color--border-primary);
    background-color: var(--background-color--background-primary);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    align-items: flex-start;
    height: 100dvh;
    margin-left: 0;
    padding: 1rem 5% 6.5rem;
    transition: height .5s;
    position: absolute;
    overflow: auto;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-middle {
    background-color: var(--base-color-neutral--black);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-bottom {
    background-color: var(--base-color-neutral--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar9_menu-left {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .navbar9_dropdown-list {
    position: relative;
    overflow: hidden;
  }

  .navbar9_dropdown-list.w--open {
    border-style: none;
    align-items: flex-start;
    margin-top: 0;
    padding: 0 0 0;
    position: relative;
    top: 0;
  }

  .navbar9_dropdown-content-layout {
    grid-row-gap: 1.5rem;
    border-radius: 0;
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar9_dropdown-content {
    flex-direction: column;
  }

  .navbar9_dropdown-toggle {
    justify-content: flex-start;
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar9_menu-right {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
  }

  .navbar9_menu-dropdown {
    width: 100%;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-top {
    background-color: var(--base-color-neutral--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hero-fixed-wrapper {
    width: 100%;
    margin-top: 0;
    margin-bottom: 90px;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
    position: static;
    inset: 0;
  }

  .hero-fixed-wrapper.is-cms-ver {
    margin-bottom: 0;
    padding-bottom: 4rem;
  }

  .hero-img {
    border-radius: 15px;
  }

  .text-wrapper.is-industries-ver {
    text-align: center;
  }

  .text-wrapper.cs-slider-heading {
    width: 100%;
  }

  .text-wrapper.animation_slide-up-once.hero-align-center-tablet {
    text-align: center;
  }

  .hero-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .faq-q-wrapper {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .captera-structure-wrapper {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .captera-structure-wrapper.v2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .graph-cards.shadow-large.is-fixed.is-hero-2 {
    top: 72%;
    left: auto;
    right: -40px;
  }

  .graph-cards.shadow-large.is-fixed.is-industries-2 {
    inset: auto -7% 3% auto;
  }

  .graph-cards.is-fixed.is-1.shadow-large {
    top: -14%;
    left: -6%;
  }

  .graph-cards.is-fixed.is-2.shadow-large {
    top: 2%;
    right: -12%;
  }

  .graph-cards.is-fixed.is-3.shadow-large {
    bottom: 1%;
    right: -8%;
  }

  .graph-cards.is-fixed.shadow-large.is-3 {
    bottom: 11px;
    right: -33px;
  }

  .graph-cards.is-fixed.shadow-large.is-2 {
    right: -63px;
  }

  .graph-cards.is-fixed.shadow-large.is-1 {
    left: -54px;
  }

  .content-cards {
    background-color: #fff;
  }

  .content-cards.shadow-large.is-1-img-ver-hover.max-width-xsmall {
    max-width: none;
  }

  .content-cards.shadow-large.is-1-img-ver-hover {
    grid-template-rows: 1fr 1fr;
    display: flex;
  }

  .content-cards.is-vertical-layout {
    flex-flow: column;
    display: flex;
  }

  .content-cards.is-vertical-layout.shadow-large.is-1-img-ver-hover {
    display: flex;
  }

  ._3grid.is-bento-layout {
    flex-flow: column;
    display: flex;
  }

  ._3grid.is-location-ver {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    display: flex;
  }

  .card-body {
    max-height: 160px;
    padding-bottom: .5rem;
  }

  .card-footer-img-wrapper {
    width: 100%;
  }

  .card-footer-img-wrapper.background-color-blue-grad.is-image-grid.align-right {
    min-height: 0;
  }

  .card-footer-img-wrapper.background-color-greed-grad.is-single-img-version {
    width: 100%;
  }

  .card-footer-img-wrapper.is-2-img-ver {
    flex-flow: row;
  }

  .card-img.is-dashboard-v1.is-left {
    margin-left: 60px;
  }

  .card-img.is-dashboard-v1.is-right {
    margin-right: 0;
  }

  .sign-cards.shadow-large.is-fixed.is-4 {
    bottom: 33px;
    left: -65px;
  }

  .sign-cards.shadow-large.is-fixed.is-hero-1 {
    top: 61%;
    left: -44px;
  }

  .sign-cards.shadow-large.is-fixed.is-industries-1 {
    inset: 4% auto auto -7%;
  }

  .sign-cards.shadow-large.og-size {
    transform: none;
  }

  .footer5_top-wrapper {
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .footer5_link-list {
    padding-top: 1.125rem;
  }

  .footer5_social-icons {
    margin-bottom: 2rem;
    margin-left: 0%;
  }

  .footer5_legal-link {
    font-size: .9rem;
  }

  .footer5_legal-list {
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: flex-start;
    display: flex;
  }

  .footer5_logo-link {
    width: 100%;
    max-width: 250px;
  }

  .footer5_bottom-wrapper {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-bg-eagle {
    left: auto;
  }

  .logo-social-wrapper {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .action-main-img {
    max-width: 600px;
  }

  .action-content-wrapper {
    margin-top: 4.1rem;
  }

  .faq8_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .faq8_component.v2 {
    flex-flow: column;
    display: flex;
  }

  .faq8_content {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

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

  .faq3_question.full-width-ver.is-footer-ver {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq3_icon-wrapper {
    width: 1.5rem;
    height: 1.5rem;
  }

  .faq3_icon-wrapper.is-smaller {
    align-self: center;
    width: 1rem;
    height: 1rem;
  }

  .cta-container.bg-darkerblue-grad {
    background-image: linear-gradient(#0006, #0006), url('../images/Hero-Section_1.webp');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .cta-header {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    padding: 2rem;
  }

  .flex-horizontal-right-container {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .header19_component {
    grid-row-gap: 4rem;
    flex-flow: column-reverse wrap;
    grid-template-columns: 1fr;
    grid-auto-flow: row dense;
    align-items: stretch;
    min-height: auto;
    display: flex;
  }

  .header19_component.is-reverted {
    flex-flow: column wrap;
  }

  .header19_content.hero-align-center-tablet {
    text-align: center;
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .footer-cta-container {
    flex-flow: column;
    display: flex;
  }

  .footer-cta-wrapper-item {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .faq-icon-fixed {
    width: 1.5rem;
    height: 1.5rem;
  }

  .faq-icon-fixed.is-hori.is-smaller, .faq-icon-fixed.is-vert.is-smaller {
    width: 1rem;
    height: 1rem;
  }

  .faq-heading {
    font-size: 1.6rem;
  }

  .partner-logo-link {
    min-width: 140px;
  }

  .headshot-img-wrapper {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
  }

  .header1_content {
    max-width: none;
  }

  .header1_image-wrapper {
    width: 100%;
  }

  .header1_image-wrapper.is-overlap-bottom {
    margin-bottom: 0;
  }

  .header1_component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    margin-bottom: 5rem;
  }

  .header1_component.is-v1 {
    flex-flow: column-reverse;
    display: flex;
  }

  .cta-testimonial-txt-wrapper {
    text-align: left;
  }

  .cta-testimonial {
    flex-flow: column;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    display: flex;
  }

  .header-contact_component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .pricing20_component {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .pricing20_plan {
    border-color: var(--blue-300);
  }

  .heading-style-h1-4 {
    font-size: 3.25rem;
  }

  .pricing22_top-row {
    grid-column-gap: 1rem;
  }

  .pricing22_top-row-content {
    width: 100%;
    max-width: 200px;
  }

  .pricing22_top-row-wrapper {
    max-width: 150px;
  }

  .cta-simple {
    flex-flow: column;
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
  }

  .banner11_marquee {
    align-items: stretch;
  }

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

  .banner12_inner-wrapper.v2 {
    width: 200%;
  }

  .banner12_marquee {
    align-items: stretch;
  }

  .banner12_marquee.is-pf-ver {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding-left: 44px;
  }

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

  .faq3_accordion_full {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .faq3_accordion_full.is-footer-ver {
    display: block;
  }

  .faq-pg-grid {
    flex-flow: column;
    display: flex;
  }

  .quick-links-wrapper {
    position: static;
  }

  .quick-links-wrapper.animation_slide-up-once {
    margin-bottom: 1rem;
  }

  .bg-deco-left {
    filter: blur(100px);
  }

  .nav-dropdown-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    padding: 0 0 0 .7rem;
    display: flex;
  }

  .compare-headings {
    font-size: 1.4rem;
  }

  .multiple-pill-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .multiple-pill-wrapper.is-pf-cta-ver {
    justify-content: center;
    align-items: center;
  }

  .bg-deco-right {
    filter: blur(100px);
  }

  .swiper-slide {
    width: 40em;
  }

  .swiper-slide.is-smaller-cards {
    width: 26em;
  }

  .swiper-slide.is-highlight {
    width: 100%;
    max-width: 26em;
  }

  .cms-link-card {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    flex-flow: column;
    grid-template-columns: 1.25fr 1fr;
    padding-right: 12px;
    display: flex;
  }

  .cms-link-card.is-highlights {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1.25fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
  }

  .cms-card-testimonial {
    padding-top: .5rem;
    padding-bottom: 1rem;
  }

  .cms-card-body {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .cms-card-contents {
    height: 100%;
  }

  .product-feature-flex-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .product-feature-flex-wrapper.is-2nd-row {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 2rem;
    display: flex;
  }

  .static-pill-wrapper {
    text-align: center;
  }

  .hr-services_component {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
  }

  .hr-services_images {
    grid-row-gap: 1rem;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: auto;
    inset: 0% 0% auto;
  }

  .hr-services_images-col {
    grid-column-gap: 3rem;
    flex-direction: row;
    align-items: center;
  }

  .hr-services_images-img {
    object-fit: cover;
    min-height: 0;
  }

  .hr-services_info {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-bottom: 200px;
  }

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

  .slider-heading-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .next-prev-button-container {
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-left: 0;
  }

  .cms-content-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column-reverse;
    display: flex;
  }

  .cms-fixed-element {
    width: 100%;
    position: static;
  }

  .nav-left {
    padding: 0 0 0 1rem;
  }

  .pf-img-layout {
    object-fit: cover;
    object-position: 50% 10%;
    width: 100%;
    max-height: 60vw;
  }

  .pf-img-layout.is-center {
    object-position: 50% 50%;
  }

  .pf-cta-content {
    text-align: center;
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .cta-logo-mobile-ver {
    margin-bottom: 2rem;
    position: absolute;
    inset: auto 0% 0%;
  }

  .cta-logo-mobile-ver.hide-desktop {
    display: block;
  }

  .cta-logo {
    object-fit: contain;
    width: 100%;
    min-width: 100px;
    max-width: 120px;
    height: 100%;
  }

  .cta-logo-img-cont {
    filter: saturate(0%);
    object-fit: cover;
    min-height: 0;
    max-height: 80px;
    margin-left: .5rem;
  }

  .hero-industries-img-wrapper {
    width: 100%;
    margin-top: 0;
    margin-bottom: 80px;
    padding-bottom: 0%;
    padding-left: 0%;
    padding-right: 0%;
    position: relative;
    overflow: visible;
  }

  .pricing-sub-h {
    font-size: 1.6rem;
  }

  .pricing-btn-txt {
    font-size: .75rem;
  }

  .grid-whats-included {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column-reverse;
    grid-template-columns: auto;
    padding-top: 4rem;
    padding-bottom: 0;
    display: flex;
  }

  .whats-included-content {
    z-index: 1;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-top: 2rem;
    position: relative;
  }

  .div-block-5 {
    min-height: 400px;
    margin-bottom: 60px;
  }

  .landing-pdf-img.is-1 {
    max-width: 300px;
    bottom: -55px;
    right: 5%;
  }

  .landing-pdf-img.is-2 {
    max-width: 300px;
    left: 5%;
  }

  .landing-pdf-img.is-3 {
    max-width: 300px;
    left: 0%;
  }

  .check-list {
    flex-flow: column;
    display: flex;
  }

  .div-block-6 {
    text-align: center;
  }

  .anchor-point {
    top: -100px;
  }

  .header19_content-v2 {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .graph-img-alt {
    width: 100%;
  }

  .bento-mobile-dropdown {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
  }

  .captera-element-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .icon-star {
    width: 2rem;
    height: 2rem;
  }

  .next-prev-cont {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
  }

  .max-width-large--v2.text-align-center-tablet {
    text-align: center;
  }

  .icon-captera, .captera-rating-txt {
    width: 1.8rem;
    height: 1.8rem;
  }

  .icon-captera-star {
    width: 1rem;
    height: 1rem;
  }

  .captera-info-txt {
    margin-top: 3px;
    font-size: 1.1rem;
  }

  .modal1_content-wrapper {
    width: 90%;
    max-width: none;
  }

  .captera-rating-no-wrapper {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .home-hero-img {
    border-radius: 15px;
  }

  .industries-hero-img {
    border-radius: 15px;
    min-height: 0;
  }

  .tc-headings {
    font-size: 2rem;
  }

  .form-book-demo {
    padding: 0;
  }

  .tc-aligned-left.is-divider {
    border-left-style: none;
    padding-left: 0;
  }

  .tc-sidebyside-content {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    display: flex;
  }

  .video-wrapper {
    width: 90%;
    max-width: none;
  }

  .cta-customer-support {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    text-align: left;
    width: 100%;
    display: flex;
  }

  .cs_detail-infor-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    border-left-width: 0;
    padding-top: 0;
    padding-left: 0;
  }

  .cs-p-text {
    max-width: none;
  }

  .buyers-guide-cta {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: row-reverse;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    height: 100%;
    max-height: 800px;
    padding: 2rem 2rem 2rem 1rem;
    display: grid;
    overflow: visible;
  }

  .buyers-guide-cta.exit-intent-ver {
    flex-flow: row;
  }

  .footer-cta-container-v2 {
    flex-flow: column;
    display: flex;
  }

  .footer-cta-wrapper-item-grid {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .header19_content-v3 {
    z-index: 1;
    width: 52%;
    position: relative;
  }

  .footer-cta-image-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 7% 0% auto auto;
  }

  .footer-cta-tablet-img {
    width: 80%;
    max-width: 300px;
    height: auto;
    margin-top: -68px;
    position: static;
  }

  .navbar-logo-center {
    padding-bottom: 60px;
  }

  .navbar-logo-center-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar-wrapper-three {
    justify-content: center;
  }

  .navbar-brand-three {
    position: relative;
  }

  .buyers-g-cta-padding-section {
    padding-top: 4rem;
  }

  .form-p-m {
    text-align: left;
  }

  .form-block-2 {
    margin-bottom: 0;
  }

  .buyers-guide-footer-cta-heading {
    font-size: 26px;
  }

  .buyers-guide-footer-cta-heading.text-color-blue900 {
    color: var(--blue-900);
  }

  .close {
    top: -20px;
    right: -20px;
  }

  .popup_content-wrapper {
    width: 90%;
    max-width: none;
  }

  .icon-captera-m {
    width: 1.8rem;
    height: 1.8rem;
  }

  .captera-info-txt-m {
    margin-top: 3px;
    font-size: 1.1rem;
  }

  .captera-rating-txt-m {
    width: 1.8rem;
    height: 1.8rem;
  }

  .captera-rating-txt-m.v2-black-bigger {
    width: 100%;
  }

  .icon-captera-star-m {
    width: 1rem;
    height: 1rem;
  }

  .logo-selection-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: center;
  }

  .ce-intro-cont {
    border-radius: 1rem;
  }

  .tag-margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .ce-intro-body {
    flex-flow: column;
    align-items: stretch;
  }

  .ce-intro-right-cont {
    width: 100%;
    margin-right: 0;
  }

  .ce-intro-left-cont {
    width: 100%;
    padding-right: 3rem;
  }

  .divider-heading-wrap {
    font-size: 20px;
  }

  .buyers-g-btn-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1.25fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .captera-hero-fixed {
    margin-left: auto;
    margin-right: auto;
  }

  .layout502_tabs-menu {
    margin-bottom: 4rem;
  }

  .layout502_tab-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    display: flex;
  }

  .layout502_tab-content {
    text-align: center;
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .tabs-item-content-heading {
    font-size: 26px;
  }

  .in-action-form-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .product-price-guide {
    width: 100%;
    margin: -100px auto -24px;
    position: relative;
  }

  .product-price-guide.v2 {
    max-height: 400px;
    margin-top: -1rem;
    margin-bottom: -1rem;
    margin-left: -41px;
  }

  .product-price-cta {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr .75fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    height: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 2rem;
    display: grid;
    overflow: visible;
  }

  .padding-section-large-custom {
    margin-top: -160px;
    padding-top: 14rem;
    padding-bottom: 6rem;
  }

  .in-action-list {
    width: 100%;
    max-width: 25em;
    margin-bottom: 2rem;
  }

  .in-action-list-item {
    text-align: left;
  }

  .header-side-by-side {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }

  .capterra-testi-badge-wrapper {
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-left: 0;
  }

  .testimonial-3-grid {
    flex-flow: column;
    display: flex;
  }

  .card-footer {
    max-height: 160px;
    padding-bottom: .5rem;
  }

  .reason-ce-wrapper {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .reason-ce-2grid {
    grid-template-columns: 1fr;
  }

  .faq-testimonial-card {
    margin-top: 3rem;
    margin-bottom: 0;
    padding-left: 2rem;
  }

  .faq-testi-text-wrap {
    align-items: flex-start;
  }

  .not-ready-wrapper {
    text-align: left;
    flex-flow: column;
    display: flex;
  }

  .not-ready-arrow-image {
    margin-left: 10.1rem;
  }

  .schedule-demo-form {
    width: 100%;
  }

  .ms-checkbox-wrap {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .ms-checkbox {
    margin-top: 2px;
  }

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

  .form-heading-product-pricing {
    text-align: left;
    font-size: 2rem;
  }

  .test-size-regular.text-no-wrap {
    white-space: normal;
  }

  .padding-section-large-3 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .logo-heading-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 15%;
    margin-right: 15%;
    padding-bottom: 0;
  }

  .trust-indicator-heading-image {
    width: 42px;
    height: 42px;
    position: relative;
  }

  .benefit-grid_card-content {
    padding: 2rem;
  }

  .benefit-row_image {
    object-position: 50% 50%;
  }

  .benefit-row_card-content {
    padding: 2rem;
  }

  .feature_tabs-link.is-first {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-left: 1.5rem;
  }

  .feature_tabs-link.is-last {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-right: 1.5rem;
  }

  .feature_tabs-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .feature_tabs_image {
    object-fit: contain;
    object-position: 50% 0%;
  }

  .tab-link-text-wrapper.is-first {
    left: auto;
  }

  .tab-link-text-wrapper.is-last {
    right: 0;
  }

  .feature-tabs-content-wrapper {
    transform: scale3d(1none, 1none, 1none);
  }

  .feature-tabs-mobile-list {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .anchor-nav-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: space-between;
  }

  .anchor_link {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }

  .h1-cro-opt {
    font-size: 3.25rem;
  }

  .ce-multi-form {
    flex-flow: column;
    display: flex;
  }

  .ce-m-card {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .layout238_list {
    grid-column-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

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

  .benefit-checklist-wrapper {
    width: 100%;
    max-width: 25em;
    margin-bottom: 2rem;
  }

  .side-by-side-recaptcha-wrapper {
    flex-flow: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-xsmall.is-relative.overflow-hidden.radius-4px-img-cont {
    height: 220px;
    min-height: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .padding-section-medium.no-padding-bottom.bg-graph-deco {
    background-image: linear-gradient(260deg, #fff, #fff0), url('../images/bg-lines.svg');
    background-position: 0 0, 50% 3%;
    background-repeat: repeat, no-repeat;
    background-size: auto, 120%;
  }

  .padding-section-medium.is-hero-cs {
    padding-top: 6rem;
    padding-bottom: 1rem;
  }

  .padding-section-medium.is-cs-version {
    padding-bottom: 8rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .padding-section-large.is-hero-w-overlap.is-revert {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .padding-section-large.is-hero-w-overlap.is-industries-hero {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  .padding-section-large.is-hero-landingpage {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }

  .spacer-xsmall {
    padding-top: .75rem;
  }

  .spacer-small {
    padding-top: 1.25rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-large {
    padding-top: 2rem;
  }

  .spacer-xlarge {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 5rem;
  }

  .navbar9_menu {
    padding-bottom: 6rem;
  }

  .navbar9_dropdown-content-layout {
    grid-row-gap: .5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar9_dropdown-link-list {
    grid-row-gap: .5rem;
    max-width: none;
  }

  .navbar9_component {
    min-height: 4rem;
  }

  .hero-fixed-wrapper.is-cms-ver {
    padding-bottom: 3rem;
  }

  .text-wrapper.cs-slider-heading, .text-wrapper.align-center-mobile {
    text-align: center;
  }

  .graph-cards.shadow-large.is-fixed.is-hero-2 {
    top: 68%;
    right: -60px;
    transform: scale(.65);
  }

  .graph-cards.shadow-large.is-fixed.is-industries-2 {
    bottom: 6%;
    left: auto;
    right: -15%;
    transform: scale(.65);
  }

  .graph-cards.is-fixed.shadow-large.is-3 {
    bottom: -30px;
    right: -106px;
    transform: scale(.4);
  }

  .graph-cards.is-fixed.shadow-large.is-2 {
    top: -36px;
    right: -79px;
    transform: scale(.4);
  }

  .graph-cards.is-fixed.shadow-large.is-1 {
    top: -75px;
    left: -92px;
    transform: scale(.4);
  }

  .content-cards {
    padding: 12px;
  }

  .card-footer-img-wrapper {
    height: 220px;
  }

  .card-img {
    object-fit: cover;
    max-height: 300px;
  }

  .sign-cards.shadow-large.is-fixed.is-4 {
    bottom: -33px;
    left: -107px;
    transform: scale(.4);
  }

  .sign-cards.shadow-large.is-fixed.is-hero-1 {
    left: -60px;
    transform: scale(.65);
  }

  .sign-cards.shadow-large.is-fixed.is-industries-1 {
    left: -14%;
    transform: scale(.65);
  }

  .footer5_top-wrapper {
    grid-row-gap: 2.5rem;
  }

  .footer5_legal-list {
    grid-auto-flow: row;
  }

  .footer5_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer-bg-eagle {
    width: 80%;
    top: 50%;
    right: 34px;
  }

  .action-main-img {
    max-width: 380px;
  }

  .action-content-wrapper {
    margin-top: 3.5rem;
  }

  .faq8_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout397_row, .layout397_column {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .faq3_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq3_icon-wrapper {
    width: 1.75rem;
  }

  .header19_component {
    grid-row-gap: 3rem;
  }

  .footer-cta-wrapper-item {
    padding: 2.5rem 2rem;
  }

  .partner-logo-link.smaller {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header1_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    margin-bottom: 4rem;
  }

  .cta-testimonial {
    padding: 2rem;
  }

  .header-contact_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .form-dark {
    padding: 2rem 1rem;
  }

  .icon-content-cards {
    padding: .6rem;
  }

  .pricing20_component {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pricing20_plan {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .heading-style-h1-4 {
    font-size: 2.5rem;
  }

  .pricing22_top-row {
    grid-column-gap: 10px;
    border-radius: 12px;
    grid-template-columns: 1fr 1fr 1fr;
    padding: .8rem .5rem .5rem;
    position: sticky;
    top: 70px;
    box-shadow: 0 2px 16px #0003;
  }

  .pricing22_empty-space {
    display: none;
  }

  .pricing22_top-row-content {
    max-width: none;
  }

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

  .pricing22_feature, .pricing22_row-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pricing20_plan-accent {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .banner12_marquee.is-pf-ver {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-left: 24px;
  }

  .faq3_accordion_full {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cms-images {
    aspect-ratio: auto;
  }

  .compare-headings {
    font-size: 1rem;
  }

  .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .swiper-slide {
    width: 30em;
  }

  .swiper-slide.is-smaller-cards {
    width: 24em;
  }

  .swiper-slide.is-highlight {
    width: 28em;
  }

  .cms-link-card {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    padding-right: 12px;
    display: flex;
  }

  .cms-card-testimonial {
    padding: 0 10px 1rem;
  }

  .cms-card-body {
    padding: 1rem 10px;
  }

  .hr-services_component {
    padding-top: 2rem;
  }

  .hr-services_images {
    display: none;
  }

  .cms-cards {
    padding-bottom: .6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .cms-large-card-img {
    width: 100%;
    max-height: 250px;
  }

  .pf-img-layout {
    max-height: 300px;
  }

  .pricing-sub-h {
    font-size: 1.2rem;
  }

  .div-block-5 {
    margin-bottom: 40px;
  }

  .landing-pdf-img.is-1 {
    max-width: 250px;
    bottom: 0;
  }

  .landing-pdf-img.is-2, .landing-pdf-img.is-3 {
    max-width: 250px;
  }

  .fs-radio_column, .fs-radio_column-new {
    grid-auto-flow: row;
  }

  .modal1_component {
    align-items: flex-start;
  }

  .modal1_content-wrapper {
    align-self: center;
  }

  .form-book-demo {
    overflow: hidden;
  }

  .card-txt-cont {
    height: auto;
  }

  .video-wrapper {
    align-self: center;
  }

  .buyers-guide-cta {
    flex-flow: column;
    padding-left: 2rem;
    display: flex;
  }

  .buyers-guide-cta.exit-intent-ver {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .header19_content-v3 {
    z-index: 2;
    width: 62%;
    padding-bottom: 2.5rem;
  }

  .footer-cta-image-wrapper {
    justify-content: flex-start;
    align-items: center;
    min-width: 300px;
    top: auto;
    right: -15%;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .buyers-g-cta-padding-section {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .popup_content-wrapper {
    width: 100%;
    height: 100vh;
    max-height: none;
    padding-bottom: 7rem;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
  }

  .logo-carousel-cont-m.background-is-light-grey {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .tag-margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .ce-intro-body {
    padding-left: 2rem;
  }

  .ce-intro-dashbrd-img {
    width: 100%;
  }

  .ce-intro-right-cont {
    padding-left: 2rem;
  }

  .ce-intro-left-cont {
    padding-right: 2rem;
  }

  .parallex-1 {
    left: -60px;
  }

  .layout502_tabs-menu {
    width: 100vw;
    margin-bottom: 3rem;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .layout502_tabs-menu.no-scrollbar {
    flex-flow: wrap;
    justify-content: center;
    margin-bottom: 3rem;
  }

  .layout502_tab-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-text-h2 {
    font-size: 30px;
  }

  .product-price-guide {
    align-self: flex-start;
    width: 60%;
    margin: -60% auto -10px -10px;
    position: static;
    inset: auto auto 287px 0%;
  }

  .product-price-guide.v2 {
    width: 100%;
    margin-top: -5.6rem;
    margin-bottom: 1rem;
    margin-left: -16px;
  }

  .product-price-cta {
    flex-flow: column;
    padding-left: 2rem;
    display: flex;
  }

  .padding-section-large-custom {
    margin-top: -101px;
    padding-top: 9.3rem;
    padding-bottom: 4rem;
  }

  .reason-ce-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .reason-ce-2grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .flex-col-input-wrap {
    flex-flow: column;
    display: flex;
  }

  .schedule-demo-form {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .padding-section-large-3 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-global-2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .benefit-grid_card {
    grid-template-columns: 1fr;
  }

  .benefit-grid_image {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .benefit-grid_grid-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .benefit-grid_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .benefit-grid_card-content {
    padding: 1.5rem;
  }

  .benefit-row_image {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    top: 1rem;
    left: 0;
  }

  .benefit-row_card {
    grid-template-columns: 1fr;
  }

  .benefit-row_card-content {
    padding: 1.5rem;
  }

  .benefit-row_grid-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .benefit-row_image-wrapper {
    padding: 0 1.5rem;
  }

  .heading-style-h2-2 {
    font-size: 2rem;
  }

  .feature_tabs-menu {
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .heading-style-h6-2 {
    font-size: .75rem;
  }

  .heading-style-h3-2 {
    font-size: 1.5rem;
  }

  .feature-tabs-mobile-list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .feature-tabs-mobile_image-wrapper {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-style-h5-2 {
    font-size: .875rem;
  }

  .anchor-nav-wrapper {
    top: 64px;
  }

  .anchor_link {
    white-space: nowrap;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .anchor_link.is-last {
    padding-right: 1rem;
  }

  .anchor-nav-scroll {
    top: 63px;
    overflow: scroll;
  }

  .h1-cro-opt {
    font-size: 2.5rem;
  }

  .ce-multi-form {
    flex-flow: column;
    display: flex;
  }

  .layout238_list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .recaptcha {
    align-self: flex-end;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  h3 {
    font-size: 1.8rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom.padding-xxlarge {
    padding-bottom: 2rem;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .text-size-medium.text-color-white.buyers-guide-cta-p-max-width {
    width: 60%;
  }

  .heading-style-h6 {
    font-size: .9rem;
  }

  .icon-embed-medium.is-master-btn-logo {
    width: 2rem;
    height: 2rem;
  }

  .button.is-icon {
    width: 100%;
  }

  .button.is-small.is-icon.is-pricing-mini {
    grid-column-gap: .3rem;
    grid-row-gap: .3rem;
  }

  .button.is-link-all-caps.is-icon.left-align, .button.is-nocap-learn-more-btn.is-icon.left-align {
    justify-content: flex-start;
    align-items: center;
  }

  .button-group {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .padding-section-medium.no-padding-bottom.bg-graph-deco {
    background-image: linear-gradient(63deg, #fff0 34%, #fff), url('../images/bg-lines.svg');
    background-position: 0 0, 50% 3%;
    background-repeat: repeat, no-repeat;
    background-size: auto, 120%;
  }

  .padding-section-medium.is-hero-cs {
    padding-bottom: 0;
  }

  .padding-section-large.is-hero-w-overlap.is-revert {
    padding-top: 7rem;
    padding-bottom: 0;
  }

  .padding-section-large.is-hero-w-overlap.is-industries-hero {
    padding-top: 7rem;
    padding-bottom: 2rem;
  }

  .padding-section-large.is-hero-landingpage {
    padding-top: 7rem;
    padding-bottom: 9rem;
  }

  .navbar9_dropdown-link {
    padding-left: 0;
  }

  .navbar9_dropdown-content-layout {
    grid-template-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar9_dropdown-toggle {
    color: var(--blue-950);
    transition: all .2s;
  }

  .navbar9_dropdown-toggle:hover {
    color: var(--blue-500);
  }

  .btn-m-text-container {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .btn-m-heading {
    text-align: left;
    font-size: 1.3rem;
  }

  .btn-m-p-text {
    text-align: left;
  }

  .hero-fixed-wrapper {
    margin-top: 32px;
  }

  .text-wrapper.align-center {
    align-items: stretch;
  }

  .hero-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .faq-q-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .hero-email-form-block {
    align-items: center;
  }

  .graph-cards.shadow-large.is-fixed.is-hero-2 {
    top: 70%;
    right: -76px;
    transform: scale(.55);
  }

  .graph-cards.shadow-large.is-fixed.is-industries-2 {
    bottom: 4%;
    right: -91px;
    transform: scale(.45);
  }

  .graph-cards.is-fixed.shadow-large.is-3 {
    bottom: -63px;
    right: -95px;
    transform: scale(.3);
  }

  .graph-cards.is-fixed.shadow-large.is-2 {
    top: -44px;
    right: -108px;
    transform: scale(.3);
  }

  .graph-cards.is-fixed.shadow-large.is-1 {
    top: -90px;
    left: -96px;
    transform: scale(.3);
  }

  .content-cards {
    padding: 8px;
  }

  .card-body {
    max-height: none;
  }

  .card-body.v2 {
    height: auto;
  }

  .card-footer-img-wrapper {
    max-height: 350px;
  }

  .sign-cards.shadow-large.is-fixed.is-4 {
    bottom: -52px;
    left: -110px;
    transform: scale(.3);
  }

  .sign-cards.shadow-large.is-fixed.is-hero-1 {
    top: 62%;
    left: -75px;
    transform: scale(.55);
  }

  .sign-cards.shadow-large.is-fixed.is-industries-1 {
    left: -90px;
    transform: scale(.45);
  }

  .footer5_top-wrapper {
    grid-row-gap: 10px;
    flex-flow: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .footer5_link-list {
    padding-top: 1rem;
  }

  .footer5_social-icons {
    margin-bottom: 0;
    margin-left: 0%;
  }

  .footer5_legal-link {
    font-size: .8rem;
  }

  .footer-bg-eagle {
    width: 100%;
    top: 73%;
    right: 10px;
  }

  .logo-social-wrapper {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .action-main-img {
    max-width: 60vw;
  }

  .action-content-wrapper {
    margin-top: 3rem;
  }

  .faq3_question.full-width-ver {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .faq3_question.full-width-ver.is-footer-ver {
    padding-top: .4rem;
    padding-bottom: .4rem;
  }

  .faq3_icon-wrapper {
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .cta-header {
    flex-flow: column;
  }

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

  .footer-cta-wrapper-item {
    padding: 2rem 1.4rem;
  }

  .partner-logo-link {
    min-width: 100px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .partner-logo-link.smaller {
    padding: 8px;
  }

  .header1_image-wrapper.is-overlap-bottom.animation_slide-up-once {
    overflow: hidden;
  }

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

  .cta-testimonial {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .header-contact_component {
    grid-template-columns: 1fr;
  }

  .icon-content-cards {
    padding: .5rem;
  }

  .pricing20_component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: 1rem;
  }

  .pricing22_top-row {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: 14px;
    padding: .7rem .5rem .5rem;
  }

  .banner12_marquee.is-pf-ver {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-left: 4px;
  }

  .faq3_accordion_full.is-footer-ver {
    width: 100%;
  }

  .bg-deco-left {
    display: none;
    top: 6%;
  }

  .nav-dropdown-list.is-resources-ver {
    grid-template-columns: 1fr;
  }

  .cms-images {
    width: 100%;
  }

  .compare-headings {
    font-size: .9rem;
  }

  .swiper-slide, .swiper-slide.is-smaller-cards {
    width: 85vw;
  }

  .swiper-slide.is-highlight {
    width: 80vw;
  }

  .cms-cards {
    padding: 12px 12px .5rem;
  }

  .cms-large-card-img {
    aspect-ratio: auto;
  }

  .breadcrumb-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .pf-img-layout {
    max-height: 60vw;
  }

  .hero-industries-img-wrapper {
    margin-top: 32px;
  }

  .pricing-sub-h {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    display: flex;
  }

  .grid-whats-included {
    padding-top: 2rem;
  }

  .div-block-5 {
    min-height: 340px;
    margin-bottom: 20px;
  }

  .landing-pdf-img.is-1 {
    max-width: 200px;
    bottom: 0;
    right: 2%;
  }

  .landing-pdf-img.is-2 {
    max-width: 200px;
    top: auto;
    bottom: 20px;
    left: 5%;
  }

  .landing-pdf-img.is-3 {
    max-width: 200px;
    top: auto;
    bottom: 15%;
    left: 0%;
  }

  .cta-testimonial-heading {
    font-size: 1.8rem;
  }

  .modal1_component {
    display: none;
  }

  .tc-headings {
    font-size: 1.6rem;
  }

  .form-book-demo {
    width: 100%;
  }

  .video-wrapper {
    border-radius: 10px;
  }

  .buyers-guide-cta {
    padding-top: 3rem;
  }

  .footer-cta-wrapper-item-grid {
    padding: 2rem 1.4rem;
  }

  .header19_content-v3 {
    width: 100%;
    padding-bottom: 0;
  }

  .footer-cta-image-wrapper {
    justify-content: center;
    align-items: center;
    width: 65%;
    min-width: 0;
    height: auto;
    inset: 30% -15% -11% auto;
  }

  .footer-cta-tablet-img {
    width: 70%;
  }

  .close {
    right: 10px;
  }

  .popup_content-wrapper {
    height: auto;
  }

  .tag-margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .ce-intro-header {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .ce-intro-body {
    padding-bottom: 2rem;
    padding-left: 2rem;
  }

  .ce-intro-right-cont {
    padding-left: 1rem;
  }

  .ce-intro-left-cont {
    padding-right: 2rem;
  }

  .parallex-1 {
    left: -90px;
  }

  .parallex-2 {
    max-width: 150px;
  }

  .parallex-3 {
    max-width: 150px;
    top: 7%;
  }

  .buyers-g-btn-wrap {
    display: flex;
  }

  .layout502_tab-wrapper {
    grid-row-gap: 3rem;
  }

  .product-price-guide {
    width: 70%;
    margin-top: -70%;
  }

  .product-price-guide.v2 {
    object-fit: contain;
    max-height: 500px;
    margin-left: 0;
  }

  .product-price-cta {
    padding-top: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .card-footer {
    max-height: none;
  }

  .faq-testimonial-card {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
  }

  .faq-testi-text-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .not-ready-wrapper {
    display: none;
  }

  .not-ready-wrapper.mobile-only {
    display: block;
  }

  .not-ready-arrow-image {
    width: 100%;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
  }

  .flex-col-input-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    display: flex;
  }

  .schedule-demo-form {
    padding-top: 2rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .ms-checkbox-wrap {
    display: flex;
  }

  .submit-button-arrow.green-ver {
    white-space: normal;
  }

  .schedule-demo-checkbox-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    display: flex;
  }

  .logo-heading-wrapper {
    margin-left: 5%;
    margin-right: 5%;
  }

  .logo-heading-capterra-image-wrapper {
    order: -1;
  }

  .benefit-grid_card, .benefit-grid_card.background-dark {
    border-radius: 10px;
  }

  .benefit-grid_row {
    grid-template-columns: 1fr;
  }

  .benefit-row_card {
    border-radius: 10px;
  }

  .feature-tabs-mobile-list {
    grid-template-columns: 1fr;
  }

  .anchor-nav-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

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

  .layout238_item {
    padding: 1.5rem;
  }

  .benefit-checklist-wrapper {
    margin-bottom: 1rem;
  }

  .head-wrapper {
    text-align: center;
    flex-flow: column;
  }
}

#w-node-e6098b09-7ff1-528e-3b8f-66cd5800f27a-81eb9e9b {
  grid-area: span 2 / span 1 / span 2 / span 1;
  place-self: stretch stretch;
}

#w-node-_176e60a1-d608-e45a-299e-e210a0849a2f-81eb9e9b, #w-node-_63560573-931f-4651-e211-43184a4d63a1-81eb9e9b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1edcb9fe-b514-a41f-e11a-626b254061d1-81eb9e9b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1edcb9fe-b514-a41f-e11a-626b254061d9-81eb9e9b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_27b41a4e-4b53-88b6-2a89-6c6c3542c36d-3542c339 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_58b6eacd-16fb-cfe8-6db3-6e563ba69818-9f413f73 {
  align-self: start;
}

#w-node-c4bb04d1-f7ba-a6cb-728a-8017760013cf-9f413f73, #w-node-_73cc565d-a266-cd73-7b15-8e9c805ad23c-9f413f73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_33516b28-c2bd-2709-da45-a0e314ad2536-9f413f73 {
  align-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-81eb9eb8 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-81eb9eb8 {
  justify-self: start;
}

#w-node-c855d5c6-d62b-4682-49cd-834f889bae34-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c855d5c6-d62b-4682-49cd-834f889bae35-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86263-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86264-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86268-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86269-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626d-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626e-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86272-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86273-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627c-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627d-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86286-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86287-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b9-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862be-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cd-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d2-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862de-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e2-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e3-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e8-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ec-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ed-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f2-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f7-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fb-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fc-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86300-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86301-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86305-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86306-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86310-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86311-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86315-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86316-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631b-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86323-81eb9eb8 {
  justify-self: start;
}

#w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd5fd-81eb9eb8, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd600-81eb9eb8, #w-node-_5260568a-938d-ea68-0c74-308a8209edce-81eb9eb8, #w-node-_5260568a-938d-ea68-0c74-308a8209edd1-81eb9eb8, #w-node-_06b32c98-aea3-8ba0-a51d-a7fca0302b82-81eb9eb8, #w-node-_06b32c98-aea3-8ba0-a51d-a7fca0302b85-81eb9eb8, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd604-81eb9eb8, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd605-81eb9eb8, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd608-81eb9eb8, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd609-81eb9eb8, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd60c-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86393-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86394-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638e-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638f-81eb9eb8 {
  justify-self: start;
}

#w-node-_7304dac8-f593-d71d-1de4-011e92740d9b-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7304dac8-f593-d71d-1de4-011e92740d9c-81eb9eb8 {
  justify-self: start;
}

#w-node-c97d2f4c-a980-bb5b-78e5-2721ac744da4-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c97d2f4c-a980-bb5b-78e5-2721ac744da5-81eb9eb8 {
  justify-self: start;
}

#w-node-_06aa1bf4-9138-5698-358d-7b7066841d42-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_06aa1bf4-9138-5698-358d-7b7066841d43-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ba-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863bd-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863be-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c1-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c2-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c5-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c6-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ca-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863cd-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ce-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d1-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d2-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d5-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863de-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e5-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e6-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f7-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f8-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-81eb9eb8, #w-node-e9f171cc-11b4-0905-714d-593dc5e729cd-81eb9eb8, #w-node-e9f171cc-11b4-0905-714d-593dc5e729ce-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729cf-81eb9eb8 {
  justify-self: start;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729d3-81eb9eb8, #w-node-_803d93b2-f316-78e7-4b37-d40ff102217f-81eb9eb8, #w-node-_803d93b2-f316-78e7-4b37-d40ff1022180-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022181-81eb9eb8 {
  justify-self: start;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022187-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86402-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-81eb9eb8, #w-node-bf73027d-ae38-e18a-2056-8dfe2a46a612-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf73027d-ae38-e18a-2056-8dfe2a46a613-81eb9eb8 {
  justify-self: start;
}

#w-node-bf73027d-ae38-e18a-2056-8dfe2a46a617-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86410-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86411-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86415-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86419-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8641a-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86420-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86424-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86425-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86430-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86438-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643c-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8643d-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86449-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8644a-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644b-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644f-81eb9eb8, #w-node-_77e2393a-98ec-cc3d-7f9b-4a2c8b97d7b3-81eb9eb8, #w-node-_77e2393a-98ec-cc3d-7f9b-4a2c8b97d7b4-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77e2393a-98ec-cc3d-7f9b-4a2c8b97d7b5-81eb9eb8 {
  justify-self: start;
}

#w-node-_77e2393a-98ec-cc3d-7f9b-4a2c8b97d7b9-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86454-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86455-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86456-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8645c-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86461-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86462-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86463-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86469-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646e-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86470-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86478-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8647e-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8647f-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86485-81eb9eb8, #w-node-_342662cd-3bde-b545-2f64-5473a30e4b9f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_342662cd-3bde-b545-2f64-5473a30e4ba0-81eb9eb8 {
  justify-self: start;
}

#w-node-_342662cd-3bde-b545-2f64-5473a30e4ba4-81eb9eb8, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701c-81eb9eb8, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701d-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c32701e-81eb9eb8 {
  justify-self: start;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c327022-81eb9eb8, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1608-81eb9eb8, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1609-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e160a-81eb9eb8 {
  justify-self: start;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1610-81eb9eb8, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece1-81eb9eb8, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece2-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece3-81eb9eb8 {
  justify-self: start;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece9-81eb9eb8, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7e-81eb9eb8, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b80-81eb9eb8 {
  justify-self: start;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b88-81eb9eb8, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253d-81eb9eb8, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253e-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a95253f-81eb9eb8 {
  justify-self: start;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a952545-81eb9eb8, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7c-81eb9eb8, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7d-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7e-81eb9eb8 {
  justify-self: start;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab86-81eb9eb8, #w-node-_40872103-aff7-c010-da67-704a8f3f1108-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f1109-81eb9eb8 {
  justify-self: start;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f110f-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8648f-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86490-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86491-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86492-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86494-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc86497-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649b-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649c-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649d-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a6-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a7-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a8-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b1-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b2-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b3-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864b4-81eb9eb8 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864ba-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bb-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bc-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864bd-81eb9eb8 {
  justify-self: start;
}

#w-node-da163454-3d7f-a6d2-8037-3b46b9c50abd-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c3-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c4-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c5-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864c6-81eb9eb8, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c8-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-81eb9eb8, #w-node-_8ec19c33-ae2e-90c5-80bf-3c4e7d639cd4-81eb9eb8, #w-node-_450fae6e-ea6c-c71d-c007-cbe7f109d617-81eb9eb8, #w-node-dcc5fc80-562f-447f-055c-339db14678d8-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d6-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d7-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d9-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692db-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692dc-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692de-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e0-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e1-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e3-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e5-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e6-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e8-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fe-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ff-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369301-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369303-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369304-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369306-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369371-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369372-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369374-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369375-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369377-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369378-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937a-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937b-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937d-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937e-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369380-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369381-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369383-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369384-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369386-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369387-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-81eb9eb8, #w-node-aba73718-5f03-827e-9e0b-61449dc1d37c-81eb9eb8, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f8-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f9-81eb9eb8 {
  justify-self: start;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fb-81eb9eb8, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fc-81eb9eb8, #w-node-_16994295-7a31-57da-1001-8ec0ea846a1e-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a1f-81eb9eb8 {
  justify-self: start;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a21-81eb9eb8, #w-node-_16994295-7a31-57da-1001-8ec0ea846a22-81eb9eb8, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f2-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f3-81eb9eb8 {
  justify-self: start;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f5-81eb9eb8, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f6-81eb9eb8, #w-node-f28919c2-e180-d075-d1c2-81b601b8a964-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a965-81eb9eb8 {
  justify-self: start;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a967-81eb9eb8, #w-node-f28919c2-e180-d075-d1c2-81b601b8a968-81eb9eb8, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b3-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b4-81eb9eb8 {
  justify-self: start;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b6-81eb9eb8, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b7-81eb9eb8, #w-node-ee961e8d-845a-edc3-3307-509470022457-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee961e8d-845a-edc3-3307-509470022458-81eb9eb8 {
  justify-self: start;
}

#w-node-ee961e8d-845a-edc3-3307-50947002245a-81eb9eb8, #w-node-ee961e8d-845a-edc3-3307-50947002245b-81eb9eb8, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e1-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e2-81eb9eb8 {
  justify-self: start;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e4-81eb9eb8, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e5-81eb9eb8, #w-node-_626bd165-37fe-b21e-713f-accb16c57414-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57415-81eb9eb8 {
  justify-self: start;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57417-81eb9eb8, #w-node-_626bd165-37fe-b21e-713f-accb16c57418-81eb9eb8, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f40-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f41-81eb9eb8 {
  justify-self: start;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f43-81eb9eb8, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f44-81eb9eb8, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee5-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee6-81eb9eb8 {
  justify-self: start;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee8-81eb9eb8, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee9-81eb9eb8, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe33-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe34-81eb9eb8 {
  justify-self: start;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe36-81eb9eb8, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe37-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-81eb9eb8, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-81eb9eb8 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-81eb9eb8 {
  justify-self: start;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e54-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e55-81eb9eb8 {
  justify-self: start;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a792-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a793-81eb9eb8 {
  justify-self: start;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b297-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b298-81eb9eb8 {
  justify-self: start;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db57-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db58-81eb9eb8 {
  justify-self: start;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92c-81eb9eb8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92d-81eb9eb8 {
  justify-self: start;
}

#w-node-e6098b09-7ff1-528e-3b8f-66cd5800f27a-cfb17a80 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  place-self: stretch stretch;
}

#w-node-_176e60a1-d608-e45a-299e-e210a0849a2f-cfb17a80, #w-node-_63560573-931f-4651-e211-43184a4d63a1-cfb17a80 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1edcb9fe-b514-a41f-e11a-626b254061d1-cfb17a80 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1edcb9fe-b514-a41f-e11a-626b254061d9-cfb17a80 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_7f3a1dde-6017-ff16-b714-2d0089826b80-cfb17a80 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e22a9d37-81d8-f317-d32b-cfd3527a3976-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a397c-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3981-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3986-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a398b-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3990-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3995-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a399a-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a399f-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a39a4-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a39a9-82626f8f, #w-node-_1005bddf-cba2-dbf9-f435-82a1e78ae588-82626f8f, #w-node-fd45a5dd-9e01-6f57-ac5d-b3b42213b8bc-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a39d0-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a39d6-82626f8f, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3a0d-82626f8f {
  align-self: start;
}

#w-node-e22a9d37-81d8-f317-d32b-cfd3527a3a1b-82626f8f, #w-node-fa3346ea-52c9-c434-1229-3e79736b080a-82626f8f, #w-node-_61d24cd1-0f84-6a1a-f0cc-7a885926cd94-82626f8f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-e22a9d37-81d8-f317-d32b-cfd3527a3a13-82626f8f {
  align-self: start;
}

#w-node-_722bd680-b959-0e6b-ab77-e47803460a1d-82626f8f {
  align-self: center;
}

#w-node-ca2a10a3-3cc2-e93d-ede1-27e3d1f50c2e-18917ee2 {
  align-self: end;
}

#w-node-eacd6b3a-fb9d-9333-04c4-570d900c597d-dd20720c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8b2236c0-d50d-84ac-8172-88981840b99b-6db1e09d {
  justify-self: end;
}

#w-node-_8b2236c0-d50d-84ac-8172-88981840b990-6db1e09d {
  justify-self: start;
}

#w-node-bd19d2f8-5b56-653f-677b-e6869c413cb4-6db1e09d {
  justify-self: end;
}

#w-node-b1c82b3c-4e77-8a4d-a3e8-b2193b87e7e7-6db1e09d, #w-node-_02a1ea9d-c85c-f69d-2403-0a2e233389b5-6db1e09d {
  justify-self: start;
}

#w-node-_72cb2dcb-e46e-eb55-9cb7-88eb783c1356-d288432d, #w-node-_213a86f7-ecf1-4ce8-3309-55545d388ac1-d288432d, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-cc81e529, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb62-cc81e529, #w-node-_64c07b81-13dd-e722-fa75-c99b00a9d3c0-cc81e529, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-6949b30a, #w-node-_72cb2dcb-e46e-eb55-9cb7-88eb783c1356-628b660c, #w-node-_213a86f7-ecf1-4ce8-3309-55545d388ac1-628b660c, #w-node-_72cb2dcb-e46e-eb55-9cb7-88eb783c1356-870fc4d0, #w-node-_213a86f7-ecf1-4ce8-3309-55545d388ac1-870fc4d0 {
  justify-self: center;
}

#w-node-c7b114fa-cde0-7463-3285-7903cf480de4-cb5e38ea, #w-node-_945c9201-e6db-7913-74a9-18c1f3464c82-cb5e38ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-c87f4743, #w-node-b19323e3-3de1-5065-ae8b-9bf7549f2bcb-c87f4743, #w-node-b0d29c7c-2572-0de1-352c-bb6122f80e67-c87f4743, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-c2661962, #w-node-b19323e3-3de1-5065-ae8b-9bf7549f2bcb-c2661962, #w-node-b0d29c7c-2572-0de1-352c-bb6122f80e67-c2661962, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-0d5aa563, #w-node-b19323e3-3de1-5065-ae8b-9bf7549f2bcb-0d5aa563, #w-node-b0d29c7c-2572-0de1-352c-bb6122f80e67-0d5aa563, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-edac2f43, #w-node-b19323e3-3de1-5065-ae8b-9bf7549f2bcb-edac2f43, #w-node-b0d29c7c-2572-0de1-352c-bb6122f80e67-edac2f43, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-8eb94404, #w-node-b19323e3-3de1-5065-ae8b-9bf7549f2bcb-8eb94404, #w-node-b0d29c7c-2572-0de1-352c-bb6122f80e67-8eb94404, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-876ad7df, #w-node-b19323e3-3de1-5065-ae8b-9bf7549f2bcb-876ad7df, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-c89bece3, #w-node-b19323e3-3de1-5065-ae8b-9bf7549f2bcb-c89bece3, #w-node-_0771c640-a7a0-8ceb-fe72-8db5bf816aa4-c89bece3, #w-node-_846b123f-d777-e512-4d12-0983a6b8bb58-82ab44ca, #w-node-b19323e3-3de1-5065-ae8b-9bf7549f2bcb-82ab44ca, #w-node-_0771c640-a7a0-8ceb-fe72-8db5bf816aa4-82ab44ca {
  justify-self: center;
}

#w-node-_176e60a1-d608-e45a-299e-e210a0849a2f-a5155166, #w-node-_469a9c28-711c-c71d-9a0b-ab2aaabb3a0d-a5155166, #w-node-_7f7dbfed-41bd-0fcb-4de1-8cc20b86ba2e-a5155166, #w-node-_9aaa191e-f64e-10a1-409a-87528a169a56-a5155166 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_03c7805a-4bc4-0f20-5292-c98a8eb56894-99cb1617 {
  align-self: start;
}

#w-node-f382a9f3-fa45-d1cd-0e1e-26c6297d5ccf-1fcbb5dd {
  align-self: end;
}

#w-node-_176e60a1-d608-e45a-299e-e210a0849a2f-1fcbb5dd, #w-node-_469a9c28-711c-c71d-9a0b-ab2aaabb3a0d-1fcbb5dd, #w-node-_7f7dbfed-41bd-0fcb-4de1-8cc20b86ba2e-1fcbb5dd, #w-node-_9aaa191e-f64e-10a1-409a-87528a169a56-1fcbb5dd, #w-node-b9baf180-caba-0f47-187f-cf8085d82a00-1368dbc2, #w-node-b9baf180-caba-0f47-187f-cf8085d82a0c-1368dbc2, #w-node-b9baf180-caba-0f47-187f-cf8085d82a18-1368dbc2, #w-node-_5683b80e-17aa-b2d6-370d-c4968b21ace8-1368dbc2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4247b60f-eff6-0d82-fa33-e9c9c01dc012-e41aad1d, #w-node-e592611e-5217-a410-19a2-7c25d0f5d962-e41aad1d {
  align-self: start;
}

#w-node-_2c4ed54a-39bb-ed7d-c291-4b0c1f2c75f9-1f2c75f7 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#Detail-2.w-node-_2c4ed54a-39bb-ed7d-c291-4b0c1f2c760a-1f2c75f7 {
  grid-area: 1 / 2 / 5 / 3;
}

#w-node-_2c4ed54a-39bb-ed7d-c291-4b0c1f2c760e-1f2c75f7 {
  place-self: end;
}

#w-node-_2c4ed54a-39bb-ed7d-c291-4b0c1f2c761b-1f2c75f7 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-e22a9d37-81d8-f317-d32b-cfd3527a3976-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a397c-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3981-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3986-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a398b-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3990-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3995-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a399a-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a399f-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a39a4-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a39a9-6ef8f1e4, #w-node-_1005bddf-cba2-dbf9-f435-82a1e78ae588-6ef8f1e4, #w-node-fd45a5dd-9e01-6f57-ac5d-b3b42213b8bc-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a39d0-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a39d6-6ef8f1e4, #w-node-e22a9d37-81d8-f317-d32b-cfd3527a3a0d-6ef8f1e4 {
  align-self: start;
}

#w-node-e22a9d37-81d8-f317-d32b-cfd3527a3a1b-6ef8f1e4, #w-node-fa3346ea-52c9-c434-1229-3e79736b080a-6ef8f1e4, #w-node-_61d24cd1-0f84-6a1a-f0cc-7a885926cd94-6ef8f1e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-e22a9d37-81d8-f317-d32b-cfd3527a3a13-6ef8f1e4 {
  align-self: start;
}

#w-node-_722bd680-b959-0e6b-ab77-e47803460a1d-6ef8f1e4 {
  align-self: center;
}

#w-node-_4247b60f-eff6-0d82-fa33-e9c9c01dc012-b15b8148, #w-node-e592611e-5217-a410-19a2-7c25d0f5d962-b15b8148 {
  align-self: start;
}

#w-node-f382a9f3-fa45-d1cd-0e1e-26c6297d5ccf-286d33fb {
  align-self: end;
}

#w-node-_176e60a1-d608-e45a-299e-e210a0849a2f-286d33fb, #w-node-_469a9c28-711c-c71d-9a0b-ab2aaabb3a0d-286d33fb, #w-node-_7f7dbfed-41bd-0fcb-4de1-8cc20b86ba2e-286d33fb, #w-node-_9aaa191e-f64e-10a1-409a-87528a169a56-286d33fb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_02a1ea9d-c85c-f69d-2403-0a2e233389b5-81eb9e9b {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-f4cbf08c-f9db-b3b6-d3f1-4f98d8ff9f4e-d8ff9f49 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_02a1ea9d-c85c-f69d-2403-0a2e233389b5-cfb17a80 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-ca2a10a3-3cc2-e93d-ede1-27e3d1f50c2e-18917ee2 {
    align-self: center;
  }

  #w-node-_02a1ea9d-c85c-f69d-2403-0a2e233389b5-6db1e09d, #w-node-_02a1ea9d-c85c-f69d-2403-0a2e233389b5-a5155166 {
    grid-area: 1 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-dc861b79-adc9-561e-3b0c-8b9d11209c72-82626f8f {
    justify-self: stretch;
  }

  #w-node-dc861b79-adc9-561e-3b0c-8b9d11209c94-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209ca1-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cab-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cb5-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cbe-82626f8f, #w-node-df6f66a8-81d4-856b-86ff-9693b24e0928-82626f8f, #w-node-_258edfed-4956-8a7e-ca05-1631637ac687-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cc9-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cd6-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209ce0-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cea-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cfe-82626f8f, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209d0b-82626f8f, #w-node-_7ab5486a-4167-4d07-e3c4-5f06255daccf-82626f8f, #w-node-_27154ef6-1767-bcbf-87c5-779cfb4b98e1-82626f8f {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_722bd680-b959-0e6b-ab77-e47803460a07-82626f8f {
    justify-self: stretch;
  }

  #w-node-_722bd680-b959-0e6b-ab77-e47803460a27-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460a1d-82626f8f, #w-node-a32f02aa-f2fe-b1a6-f393-dd024536a06b-82626f8f, #w-node-_52c95fc6-71b3-e59d-be3a-83243c13c3da-82626f8f, #w-node-bdba122c-3553-9035-0623-fe83554d41ae-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460a31-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460a3b-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460a45-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460a4f-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460a59-82626f8f, #w-node-b4db0397-7341-fdb4-bcf1-18cc2068e745-82626f8f, #w-node-_147611cc-2b15-9755-e067-b55b321cf479-82626f8f, #w-node-e427a7e5-e943-e51b-59a0-fc3f089fe6be-82626f8f, #w-node-c4f2c8be-b04b-3872-f769-c2ed78c4a1c1-82626f8f, #w-node-_5057dca9-6f5b-ee71-8894-d150a65ff973-82626f8f, #w-node-_2734cd52-c2df-5dc3-207e-37f6d7e42d4c-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460a65-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460a6e-82626f8f, #w-node-a28a9f59-8142-1795-271a-820609171fc4-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460aa4-82626f8f, #w-node-_722bd680-b959-0e6b-ab77-e47803460ab1-82626f8f, #w-node-_8d8d7ba5-567b-0211-a882-fb9dc09e6c90-82626f8f {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_0aa94c3a-008c-a623-ab99-84b08c02f2c3-6db1e09d {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-dc861b79-adc9-561e-3b0c-8b9d11209c72-6ef8f1e4 {
    justify-self: stretch;
  }

  #w-node-dc861b79-adc9-561e-3b0c-8b9d11209c94-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209ca1-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cab-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cb5-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cbe-6ef8f1e4, #w-node-df6f66a8-81d4-856b-86ff-9693b24e0928-6ef8f1e4, #w-node-_258edfed-4956-8a7e-ca05-1631637ac687-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cc9-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cd6-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209ce0-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cea-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209cfe-6ef8f1e4, #w-node-dc861b79-adc9-561e-3b0c-8b9d11209d0b-6ef8f1e4, #w-node-_7ab5486a-4167-4d07-e3c4-5f06255daccf-6ef8f1e4, #w-node-_27154ef6-1767-bcbf-87c5-779cfb4b98e1-6ef8f1e4 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_722bd680-b959-0e6b-ab77-e47803460a07-6ef8f1e4 {
    justify-self: stretch;
  }

  #w-node-_722bd680-b959-0e6b-ab77-e47803460a27-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460a1d-6ef8f1e4, #w-node-a32f02aa-f2fe-b1a6-f393-dd024536a06b-6ef8f1e4, #w-node-_52c95fc6-71b3-e59d-be3a-83243c13c3da-6ef8f1e4, #w-node-bdba122c-3553-9035-0623-fe83554d41ae-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460a31-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460a3b-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460a45-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460a4f-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460a59-6ef8f1e4, #w-node-b4db0397-7341-fdb4-bcf1-18cc2068e745-6ef8f1e4, #w-node-_147611cc-2b15-9755-e067-b55b321cf479-6ef8f1e4, #w-node-e427a7e5-e943-e51b-59a0-fc3f089fe6be-6ef8f1e4, #w-node-c4f2c8be-b04b-3872-f769-c2ed78c4a1c1-6ef8f1e4, #w-node-_5057dca9-6f5b-ee71-8894-d150a65ff973-6ef8f1e4, #w-node-_2734cd52-c2df-5dc3-207e-37f6d7e42d4c-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460a65-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460a6e-6ef8f1e4, #w-node-a28a9f59-8142-1795-271a-820609171fc4-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460aa4-6ef8f1e4, #w-node-_722bd680-b959-0e6b-ab77-e47803460ab1-6ef8f1e4, #w-node-_8d8d7ba5-567b-0211-a882-fb9dc09e6c90-6ef8f1e4 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_73cc565d-a266-cd73-7b15-8e9c805ad241-9f413f73 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_03c7805a-4bc4-0f20-5292-c98a8eb56894-99cb1617 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archia';
  src: url('../fonts/Archia-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archia';
  src: url('../fonts/Archia-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archia';
  src: url('../fonts/Archia-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archia';
  src: url('../fonts/Archia-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archia';
  src: url('../fonts/Archia-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}