@font-face {
  font-family: Sporting Grotesque;
  src: url('../fonts/Sporting_Grotesque-Bold_web.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sporting Grotesque;
  src: url('../fonts/Sporting_Grotesque-Regular_web.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: PlusJakarta Text;
  src: url('../fonts/PlusJakartaText-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: PlusJakarta Text;
  src: url('../fonts/PlusJakartaText-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --text: #053d87;
  --primary-2: #c30302;
  --primary-3: #f1f3f7;
  --primary-1: #c8daf3;
  --white: white;
  --dark: #041b3a;
  --border-dark: #0721251a;
  --success: #24da78;
  --warning: #ff9f1c;
  --danger: #bd3131;
  --border-white: #ffffff26;
}

.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-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 {
  color: var(--text);
  font-family: PlusJakarta Text, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

h1 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 21px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 60px;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 21px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
}

h4 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
}

h5 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 7px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

h6 {
  margin-top: 0;
  margin-bottom: 7px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

p {
  margin-bottom: 28px;
}

a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

blockquote {
  border-left: 7px solid var(--primary-2);
  color: var(--primary-2);
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 0 0 0 35px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  color: var(--primary-2);
  text-align: center;
  margin-top: 21px;
  font-family: Sporting Grotesque, sans-serif;
}

.loading-container {
  z-index: 9999;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.section {
  padding-top: 112px;
  padding-bottom: 112px;
  position: relative;
}

.section.bg-primary-3 {
  background-color: var(--primary-3);
  top: 0;
  left: 0;
}

.section.align-content-center {
  align-items: center;
  display: flex;
}

.section.horizontal-tabs-section {
  padding-bottom: 0;
}

.section.overlap-hero {
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
}

.section.image-overlap-grid-content {
  flex-direction: column;
  justify-content: center;
  display: flex;
  bottom: 112px;
}

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

.section.no-bottom-padding.bg-primary-2 {
  background-color: var(--primary-2);
}

.section.blog-section {
  padding-top: 56px;
}

.section.account-section {
  align-items: center;
  min-height: 800px;
  display: flex;
}

.section.reduced-bottom-padding {
  padding-bottom: 56px;
}

.section.reduced-top-padding {
  padding-top: 56px;
}

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

.section.section-hidden {
  display: none;
}

.section.custom-bottom-padding {
  padding-bottom: 12px;
}

.main-container {
  z-index: 1;
  width: 100%;
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
}

.main-container.narrow {
  max-width: 1106px;
}

.style-guide {
  grid-row-gap: 112px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.style-guide-section {
  grid-column-gap: 56px;
  grid-row-gap: 84px;
  grid-template-rows: auto;
  grid-template-columns: .33fr 1fr;
}

.style-guide-colors {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 36px;
}

.style-guide-color {
  border-radius: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  height: 112px;
  margin-bottom: 14px;
  overflow: hidden;
}

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

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

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

.bg-white {
  background-color: #fff;
}

.style-guide-typography {
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.large-text {
  font-size: 22px;
  line-height: 34px;
}

.small-text {
  font-size: 14px;
  line-height: 24px;
}

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

.small-text.disclaimer-text {
  margin-top: 14px;
}

.small-text.comparison-disclaimer {
  text-align: center;
  margin-top: 28px;
}

.no-bottom-margin {
  margin-bottom: 0;
}

.no-bottom-margin.text-center {
  text-align: center;
}

.style-guide-buttons {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
}

.button {
  background-color: var(--primary-1);
  color: var(--text);
  text-align: center;
  border-radius: 200px;
  padding: 14px 28px;
  font-weight: 700;
  transition: box-shadow .2s;
  box-shadow: inset 0 0 200px #0000;
}

.button:hover {
  box-shadow: inset 0 0 200px #00000012;
}

.button.large {
  padding-top: 21px;
  padding-bottom: 21px;
}

.button.small {
  background-color: var(--primary-1);
  padding: 7px 21px 8px;
}

.button.bg-dark {
  background-color: var(--text);
  color: var(--white);
  box-shadow: inset 0 0 200px #fff0;
}

.button.bg-dark:hover {
  box-shadow: inset 0 0 200px #ffffff1a;
}

.button.bg-white {
  border: 2px solid var(--text);
  background-color: var(--white);
  box-shadow: none;
  transition: color .2s, background-color .2s;
}

.button.bg-white:hover {
  background-color: var(--dark);
  color: var(--white);
}

.button.full-width {
  width: 100%;
  margin-bottom: 10px;
}

.button.bg-transparent {
  border: 1px solid var(--border-dark);
  background-color: #0000;
}

.button.bg-primary-2 {
  background-color: var(--primary-2);
  color: var(--white);
}

.button.adjacent-to-input {
  margin-left: 21px;
}

.button.pricing-plan-button {
  margin-top: 14px;
}

.button.red-button {
  background-color: #ffdada;
}

.navbar {
  background-color: #0000;
}

.form-block {
  margin-bottom: 0;
}

.style-guide-form-inputs {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-input {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--text);
  background-color: #0000;
  height: 57px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 28px;
}

.form-input:focus {
  border-bottom-color: var(--text);
}

.form-input::placeholder {
  color: var(--text);
  font-family: PlusJakarta Text, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.form-input.textarea {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--text);
  height: 168px;
  padding-top: 14px;
}

.form-input.textarea::placeholder {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.form-input.white {
  border-bottom-color: var(--white);
  color: var(--white);
}

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

.form-grid-vertical {
  grid-column-gap: 16px;
  grid-row-gap: 21px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-grid-vertical.increased-row-gaps {
  grid-row-gap: 56px;
}

.selectable-field {
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.selectable-label {
  margin-bottom: 0;
  margin-left: 14px;
  font-size: 14px;
  line-height: 24px;
}

.selectable-label.text-white {
  color: var(--white);
}

.footer {
  background-color: var(--primary-3);
  padding-top: 112px;
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.footer.bg-dark {
  background-color: var(--dark);
  color: var(--white);
}

.back-to-top-button {
  z-index: 10;
  background-color: var(--primary-1);
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  position: fixed;
  bottom: 14px;
  right: 14px;
}

.top-bar {
  color: #fff;
  background-color: #c30302;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.announcement-cross {
  cursor: pointer;
  position: absolute;
  right: 0;
}

.top-bar-contents {
  justify-content: space-between;
  align-items: center;
  margin-top: 21px;
  margin-bottom: 21px;
  display: flex;
}

.search-modal {
  z-index: 9999;
  justify-content: center;
  align-items: flex-start;
  display: none;
  position: fixed;
  inset: 0%;
}

.search-modal-screen {
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.utility-page-wrap {
  background-color: var(--primary-3);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

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

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

.search-modal-container {
  width: 100%;
  position: relative;
}

.small-caps {
  text-transform: uppercase;
  font-family: Sporting Grotesque, sans-serif;
  font-weight: 700;
}

.display-heading-1 {
  letter-spacing: -.03em;
  margin-bottom: 28px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 88px;
  font-weight: 400;
  line-height: 88px;
}

.display-heading-1.no-bottom-margin {
  margin-bottom: 0;
}

.display-heading-1.overlap-heading {
  text-align: center;
  margin-bottom: -28px;
}

.display-heading-2 {
  letter-spacing: -.03em;
  margin-bottom: 28px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 72px;
}

.display-heading-2.no-bottom-margin {
  margin-bottom: 0;
}

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

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

.bg-success {
  background-color: var(--success);
}

.bg-warning {
  background-color: var(--warning);
}

.bg-danger {
  background-color: var(--danger);
}

.bg-match-text {
  background-color: var(--text);
  color: var(--white);
}

.bg-border-dark {
  background-color: var(--border-dark);
}

.bg-border-white {
  background-color: var(--border-white);
}

.border-dark {
  border: 1px solid var(--border-dark);
}

.checkbox {
  float: none;
  background-color: var(--white);
  background-image: url('../images/icon-check.svg');
  background-position: -50px;
  background-repeat: no-repeat;
  background-size: auto;
  width: 21px;
  height: 21px;
  margin-top: 0;
  margin-left: 0;
  transition: background-position .2s, background-color .2s;
}

.checkbox.w--redirected-checked {
  border-color: var(--border-white);
  background-color: var(--text);
  background-image: url('../images/icon-check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 9px;
  width: 21px;
  height: 21px;
  margin-top: 0;
  margin-left: 0;
}

.checkbox.on-dark-background {
  background-color: #0000;
  border-color: #ffffff80;
}

.checkbox.on-dark-background.w--redirected-checked {
  background-color: var(--text);
}

.radio-button {
  width: 21px;
  height: 21px;
  margin-left: 0;
  transition: border-color .2s;
}

.radio-button.w--redirected-checked {
  border-width: 6.5px;
  border-color: var(--text);
  border-radius: 50%;
}

.radio-button.on-dark-background {
  border-color: #ffffff80;
}

.style-guide-checkbox-grid {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.select {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--text);
  color: var(--text);
  background-color: #0000;
  background-image: url('../images/icon-select-down-arrow.svg');
  background-position: 86%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 110%;
  height: 57px;
  padding-left: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  position: absolute;
  inset: 0%;
}

.select.dark-background {
  border-bottom-color: var(--white);
  color: var(--white);
  background-color: #0000;
  background-image: url('../images/icon-chevron-down-white.svg');
}

.style-guide-dark-background {
  background-color: var(--text);
  color: var(--white);
  padding: 21px;
}

.style-guide-grid-vertical {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  grid-template-columns: 1fr;
}

.style-guide-grid-horizontal {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  grid-template-rows: auto;
}

.select-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 57px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon {
  width: 21px;
  height: 21px;
}

.icon.style-guide-icon {
  margin-bottom: 21px;
  margin-right: 21px;
}

.style-guide-icons {
  max-width: 540px;
  padding-top: 7px;
}

.style-guide-icons-dark {
  background-color: var(--text);
  max-width: 519px;
  padding: 14px 0 0 14px;
}

.top-bar-item {
  align-items: center;
  display: flex;
}

.top-bar-item.adjacent-to-item {
  margin-left: 28px;
}

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

.top-bar-item-icon {
  margin-right: 7px;
}

.top-bar-items-wrapper {
  align-items: center;
  display: flex;
}

.navbar-row {
  justify-content: space-between;
  align-items: center;
  min-height: 84px;
  display: flex;
}

.navbar-left-contents, .navbar-functions {
  align-items: center;
  display: flex;
}

.navbar-functions-divider {
  background-color: var(--text);
  opacity: .5;
  flex: none;
  width: 1px;
  height: 18px;
  margin-left: 21px;
  margin-right: 21px;
}

.navbar-functions-link {
  margin-left: 21px;
  transition: opacity .2s;
}

.navbar-functions-link:hover {
  opacity: .65;
}

.search-trigger {
  cursor: pointer;
  flex: none;
  transition: transform .2s;
}

.search-trigger:hover {
  transform: scale(1.15);
}

.nav-link {
  color: var(--text);
  margin-left: 14px;
  margin-right: 14px;
  padding: 0;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: .65;
}

.nav-link.dropdown:hover {
  opacity: 1;
}

.dropdown-toggle {
  color: var(--text);
  align-items: center;
  padding: 0;
  font-weight: 700;
  transition: opacity .2s;
  display: flex;
}

.dropdown-toggle:hover {
  opacity: .65;
}

.dropdown-arrow {
  margin-left: 5px;
}

.brand {
  padding-left: 0;
  display: block;
}

.brand.adjacent-to-nav-menu {
  margin-right: 14px;
}

.brand.adjacent-to-nav-menu.w--current {
  flex: none;
}

.brand-image {
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
}

.menu-button {
  flex: none;
}

.nav-menu.left {
  margin-left: -14px;
}

.navbar-wrapper.sticky-top {
  z-index: 10;
  background-color: var(--white);
  position: sticky;
  top: 0;
}

.footer-top-contents {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.social-links {
  align-items: center;
  display: flex;
}

.footer-logo-link {
  margin-bottom: 28px;
}

.social-link-icon {
  display: block;
}

.social-link {
  margin-right: 28px;
}

.social-link.no-right-margin {
  margin-right: 0;
}

.container-small {
  direction: ltr;
  width: 100%;
  max-width: 386px;
}

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

.container-small.narrow {
  max-width: 276px;
}

.footer-menus-grid {
  grid-column-gap: 84px;
  grid-row-gap: 84px;
  grid-template-rows: auto;
  justify-items: end;
}

.vertical-link-grid {
  grid-column-gap: 16px;
  grid-row-gap: 7px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.vertical-link-grid.hidden-footer {
  display: none;
}

.hover-link {
  opacity: .5;
  transition: opacity .2s;
}

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

.hover-link.text-white {
  transition: color .2s, opacity .2s;
  display: flex;
}

.hover-link.text-white:hover {
  color: var(--primary-2);
}

.hover-link.text-white.footer-contact-custom-size {
  padding-bottom: 10px;
  font-size: 22px;
}

.footer-menu-heading {
  margin-bottom: 28px;
}

.footer-bottom-contents {
  border-top: 1px solid var(--text);
  justify-content: space-between;
  align-items: center;
  margin-top: 112px;
  padding-top: 28px;
  display: flex;
}

.footer-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
}

.footer-pattern.muted {
  opacity: .05;
}

.footer-large-link {
  font-family: Sporting Grotesque, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
}

.navbar-grid {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  min-height: 84px;
  display: grid;
}

.navbar-grid.logo-center {
  grid-template-columns: 1fr .5fr 1fr;
}

.grid-halves {
  z-index: 1;
  grid-column-gap: 56px;
  grid-row-gap: 84px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-areas: ". Area";
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: center;
  position: relative;
}

.grid-halves.reverse-direction {
  direction: rtl;
}

.grid-halves.align-content-center {
  grid-column-gap: 19px;
  place-items: center;
}

.grid-halves.align-content-top {
  place-items: start stretch;
}

.container {
  direction: ltr;
  width: 100%;
  max-width: 497px;
}

.container.metric-slide-text-container {
  max-width: 540px;
  padding-bottom: 70px;
}

.container-large {
  direction: ltr;
  width: 100%;
  max-width: 608px;
  position: relative;
}

.container-large.wide {
  max-width: 830px;
}

.full-width-image {
  width: 100%;
}

.large-heading {
  letter-spacing: -.03em;
  margin-bottom: 21px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 60px;
}

.large-heading.text-primary-2 {
  color: var(--primary-2);
  position: relative;
  left: -14px;
}

.large-heading.no-bottom-margin {
  margin-bottom: 0;
}

.large-heading.horizontal-tabs-section-title {
  margin-bottom: 67px;
}

.subheading {
  margin-bottom: 28px;
  font-family: PlusJakarta Text, sans-serif;
}

.subheading.no-bottom-margin {
  margin-bottom: 0;
}

.link-underline-container {
  width: 100%;
  height: 2px;
  overflow: hidden;
}

.link-underline {
  background-color: var(--text);
  height: 2px;
}

.link-underline.bg-primary-1 {
  background-color: var(--primary-1);
}

.underline-link {
  align-self: flex-start;
}

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

.underline-link.below-heading {
  margin-top: 28px;
}

.image-overlay-box {
  z-index: 1;
  background-color: var(--white);
  padding: 56px;
  position: relative;
  left: 84px;
}

.image-overlay-box.center-top {
  margin-left: auto;
  margin-right: auto;
  left: auto;
}

.sans-serif {
  text-align: left;
  font-family: PlusJakarta Text, sans-serif;
}

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

.icon-with-title {
  align-items: center;
  margin-bottom: 28px;
  display: flex;
}

.icon-with-title-image {
  margin-right: 21px;
}

.medium-heading {
  letter-spacing: -.02em;
  margin-bottom: 21px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

.medium-heading.no-bottom-margin, .medium-heading.process-section-heading {
  margin-bottom: 0;
}

.medium-heading.pricing-plan-minimal-heading {
  margin-bottom: 7px;
}

.medium-heading.reduced-bottom-margin {
  margin-bottom: 14px;
}

.image-overlay-wrapper {
  margin-bottom: -12vw;
}

.image-overlay-wrapper.center-top {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.centered-content-box {
  justify-content: center;
  align-items: center;
  min-height: 616px;
  padding: 56px;
  display: flex;
  position: relative;
}

.centered-content-box.bg-primary-2 {
  color: var(--text);
}

.centered-content-box.tall {
  min-height: 700px;
}

.centered-content-box.hug-content {
  min-height: auto;
}

.centered-content-box.align-right {
  justify-content: flex-end;
  padding-right: 0;
}

.centered-content-box-background-pattern {
  opacity: .1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.centered-content-box-background-pattern.muted {
  opacity: .05;
}

.centered-content-box-background-pattern.pronounced {
  opacity: .25;
}

.vertical-grid {
  grid-row-gap: 7px;
  grid-template-columns: 1fr;
  position: relative;
}

.vertical-grid.increased-gap {
  grid-row-gap: 56px;
}

.vertical-grid.centered-content-grid {
  grid-row-gap: 28px;
  grid-template-rows: auto;
}

.vertical-grid.large-features-grid {
  grid-row-gap: 70px;
}

.vertical-grid.no-gap {
  grid-row-gap: 0px;
}

.vertical-grid.medium-gap {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
}

.tick-list-item {
  background-color: var(--white);
  direction: ltr;
  color: var(--text);
  align-items: center;
  padding: 21px;
  display: flex;
}

.tick-list-item.compact {
  background-color: #0000;
  padding: 0;
}

.circled-tick {
  background-color: var(--text);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-right: 14px;
  display: flex;
}

.circled-tick-icon {
  width: 14px;
  height: 14px;
}

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

.section-title {
  margin-bottom: 84px;
}

.section-title.reduced-margin {
  margin-bottom: 56px;
}

.section-title.blog-section-title {
  margin-bottom: 40px;
}

.icon-list-features-grid {
  grid-row-gap: 56px;
  background-color: var(--primary-3);
  grid-template-columns: 1fr;
  padding: 70px 56px;
}

.icon-feature-list-item {
  align-items: flex-start;
  display: flex;
}

.icon-feature-list-icon {
  margin-right: 28px;
}

.horizontal-rule {
  border-top: 1px solid var(--text);
  width: 100%;
  margin-top: 28px;
  padding-bottom: 28px;
}

.horizontal-rule.no-space {
  margin-top: 0;
  padding-bottom: 0;
}

.horizontal-rule.thick {
  border-top-width: 2px;
}

.horizontal-rule.thick.half-margin-top {
  margin-top: 14px;
}

.horizontal-rule.reduced-top-space {
  margin-top: 21px;
}

.horizontal-rule.no-bottom-space, .horizontal-rule.less-margin-bottom {
  padding-bottom: 0;
}

.brand-logos-wrapper {
  align-items: center;
  margin-top: 21px;
  display: flex;
}

.brand-logo {
  margin-right: 56px;
}

.brand-logo.more-padding-top {
  padding-top: 38px;
}

.brand-logos-heading.more-padding-bottom {
  padding-bottom: 10px;
}

.grid-two-thirds {
  grid-column-gap: 56px;
  grid-row-gap: 84px;
  grid-template-rows: auto;
  grid-template-columns: 5fr 7fr;
  place-items: center;
}

.grid-two-thirds.reverse-direction {
  direction: rtl;
  grid-template-columns: 7fr 5fr;
}

.features-grid {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
}

.overlap-section-strip {
  z-index: 0;
  width: 100%;
  height: 112px;
  position: absolute;
}

.overlap-section-strip.bottom {
  position: absolute;
  bottom: 0;
}

.overlap-section {
  padding-bottom: 112px;
  position: relative;
}

.overlap-section.overlap-bottom {
  padding-top: 112px;
  padding-bottom: 0;
}

.grid-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 6fr 4fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.grid-section.halves {
  grid-template-columns: 1fr 1fr;
}

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

.grid-section-column.with-banner {
  grid-template-rows: 1fr .5fr;
}

.grid-section-image {
  object-fit: cover;
  width: 100%;
}

.grid-section-text-wrapper {
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
  justify-content: center;
  align-items: center;
  padding: 56px 21px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.small-quote-wrapper {
  display: flex;
}

.small-avatar {
  flex: none;
  max-width: 56px;
  max-height: 56px;
}

.small-avatar.display-none {
  display: none;
}

.small-quote-text {
  flex-direction: column;
  margin-left: 21px;
  display: flex;
}

.centered-content-wrapper {
  background-color: var(--white);
  padding: 32px;
  position: relative;
}

.centered-content-box-background-image {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.centered-content-box-background-image.fixed-svg {
  opacity: 1;
  transform: skew(0deg);
}

.centered-content-box-background-image.svg-hidden {
  opacity: 0;
  display: none;
}

.compact-tick-list {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.grid-halves-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  max-width: 1680px;
  min-height: 728px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.quote-box {
  background-color: var(--primary-2);
  color: var(--white);
  padding: 42px;
  position: relative;
}

.quote-box-main-text {
  border-top: 1px solid var(--white);
  margin-bottom: 0;
  padding-top: 27px;
}

.quote-box-subtext {
  margin-top: 35px;
  padding-bottom: 0;
}

.quote-box-subtext.longer-bottom-padding {
  padding-bottom: 35px;
}

.vertical-quote-grid {
  grid-row-gap: 16px;
  grid-template-columns: 1fr;
  justify-items: center;
  position: relative;
}

.quote-wrapper {
  background-color: var(--white);
  direction: ltr;
  color: var(--text);
  padding: 21px;
}

.quote-wrapper.inline-quote-wrapper {
  flex: none;
  margin-right: 21px;
}

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

.block-quote-text {
  color: var(--primary-2);
  margin-bottom: 36px;
  font-size: 22px;
}

.block-quote {
  display: flex;
  position: relative;
  left: -29px;
}

.article-excerpt-section {
  justify-content: flex-end;
  padding-top: 112px;
  padding-bottom: 112px;
  display: flex;
}

.grid-thirds {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-thirds.link-boxes-grid {
  grid-column-gap: 28px;
}

.grid-thirds.expanded-gap {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
}

.large-link-box {
  flex-direction: column;
  justify-content: space-between;
  height: 426px;
  padding: 42px;
  display: flex;
  position: relative;
}

.large-link-box-main-text {
  border-top: 1px solid var(--white);
  margin-bottom: 0;
  padding-top: 27px;
}

.large-link-box-main-text.dark-text {
  border-top-color: var(--text);
}

.large-link-box-subtext {
  margin-top: 35px;
}

.icon-list-grid {
  grid-row-gap: 21px;
  grid-template-columns: 1fr;
}

.icon-list-item {
  align-items: center;
  display: flex;
}

.icon-list-item.horizontal-icon-list-item {
  flex-direction: column;
  align-items: flex-start;
}

.icon-list-item.horizontal-icon-list-item.align-content-left {
  align-items: flex-start;
}

.icon-list-item-text {
  margin-left: 21px;
}

.icon-list-item-text.horizontal-icon-list-item-text {
  margin-top: 14px;
  margin-left: 0;
}

.icon-list-item-text.horizontal-icon-list-item-text.expanded-gap {
  margin-top: 28px;
}

.centered-icon-list-wrapper {
  background-color: var(--white);
  color: var(--text);
  padding: 32px;
  position: relative;
}

.centered-icon-list-wrapper.bg-text {
  background-color: var(--text);
  color: var(--white);
}

.image-overlap-bottom-wrapper {
  position: relative;
}

.horizontal-icon-grid {
  grid-row-gap: 21px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

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

.wide-quotes-slider-wrapper {
  background-color: var(--white);
  color: var(--text);
  max-width: 1161px;
  margin-left: auto;
  margin-right: auto;
  padding: 84px;
}

.wide-quotes-slider {
  background-color: #0000;
  height: auto;
}

.hide {
  display: none;
}

.slide-nav {
  width: auto;
  position: absolute;
}

.slide-nav.wide-quotes-slide-nav {
  text-align: right;
  height: 10px;
  margin-top: -10px;
  padding-top: 0;
  font-size: 10px;
  line-height: 10px;
  position: relative;
}

.horizontal-quote {
  align-items: flex-start;
  margin-bottom: 56px;
  display: flex;
}

.horizontal-quote.no-bottom-margin {
  margin-bottom: 0;
}

.horizontal-quote-icon {
  flex: none;
  margin-right: 56px;
}

.align-content-center {
  place-items: center stretch;
}

.background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.image-overlay-box-wrapper.center-top {
  position: absolute;
  top: 0;
}

.metric-grid {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
}

.horizontal-overflow-quote-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.horizontal-overflow-quote-wrapper.text-dark {
  color: var(--text);
}

.horizontal-overflow-quote-container {
  justify-content: center;
  width: 100%;
  height: 98px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.large-quote-author {
  margin-top: 28px;
}

.large-section {
  padding-top: 168px;
  padding-bottom: 168px;
}

.background-pattern {
  opacity: .1;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.background-pattern.align-left {
  inset: 0% auto 0% 0%;
}

.background-pattern.flip-horizontal {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.background-pattern-section {
  position: relative;
}

.video-thumbnail-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.video-play-button {
  background-color: #20484fe6;
  justify-content: center;
  align-items: center;
  width: 164px;
  height: 98px;
  display: flex;
}

.video-play-button-link {
  transition: transform .2s;
  position: absolute;
}

.video-play-button-link:hover {
  transform: scale(1.05);
}

.video-overlap-section {
  position: relative;
}

.grid-two-thirds-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 6fr 4fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  max-width: 1680px;
  min-height: 728px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.metrics-box {
  background-color: var(--primary-2);
  color: var(--white);
  width: 100%;
  max-width: 294px;
  padding: 42px;
  position: relative;
}

.metrics-box.bg-match-text {
  background-color: var(--text);
}

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

.horizontal-small-metrics-collection {
  justify-content: space-around;
  display: flex;
}

.small-metric {
  width: 100%;
  max-width: 200px;
}

.restricted-height-image {
  object-fit: cover;
  width: 100%;
  max-height: 430px;
}

.align-content-bottom-right {
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
}

.align-content-bottom-right.metric-slide-text-wrapper {
  padding: 56px 84px;
}

.metrics-slider {
  background-color: #0000;
  height: auto;
}

.metrics-slide-nav {
  opacity: 1;
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  height: 10px;
  padding-top: 0;
  padding-left: 84px;
  padding-right: 84px;
  font-size: 10px;
  line-height: 10px;
  display: block;
  position: absolute;
  bottom: 56px;
}

.medium-circle {
  border: 1px #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  display: flex;
}

.medium-circle.bg-match-text {
  align-items: center;
}

.medium-circle.bg-match-text.process-item-circle {
  margin-left: 28px;
  position: relative;
}

.medium-circle-text {
  margin-bottom: 0;
  padding-top: 7px;
  font-family: Sporting Grotesque, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
}

.medium-circle-text.medium-circle-icon {
  width: 32px;
  padding-top: 0;
  font-size: 30px;
}

.medium-circle-text.medium-circle-icon.custom-icon-size {
  width: 40px;
  font-size: 32px;
}

.process-item-image {
  object-fit: cover;
  width: 100%;
  max-height: 430px;
  margin-top: -42px;
}

.process-item-heading {
  margin-bottom: 14px;
}

.process-section-title {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 84px;
  display: flex;
}

.grid-two-thirds-reverse {
  grid-column-gap: 56px;
  grid-row-gap: 84px;
  grid-template-rows: auto;
  grid-template-columns: 6fr 4fr;
}

.vertical-tabs {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: flex;
}

.vertical-tabs-container {
  width: 100%;
  max-width: 721px;
  margin-left: 112px;
}

.vertical-tabs-menu {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 386px;
  display: grid;
}

.vertical-tabs-button {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  padding: 21px;
  display: flex;
}

.vertical-tabs-button.w--current {
  background-color: var(--white);
  color: var(--text);
}

.vertical-tabs-button-text-wrapper {
  align-items: center;
  display: flex;
}

.vertical-tabs-button-icon {
  margin-right: 21px;
}

.vertical-tabs-content-image {
  width: auto;
  max-height: 400px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.vertical-tabs-text-wrapper {
  background-color: var(--white);
  flex-direction: column;
  width: auto;
  max-width: 507px;
  margin-top: 144px;
  margin-left: 84px;
  padding: 56px;
  display: flex;
  position: relative;
}

.vertical-tabs-button-text {
  color: var(--text);
  margin-bottom: 0;
  font-family: PlusJakarta Text, sans-serif;
}

.horizontal-tabs-menu {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1344px;
  margin-bottom: 112px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  display: grid;
}

.horizontal-tab-button {
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--text);
  opacity: .5;
  background-color: #0000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 22px 0;
  display: block;
}

.horizontal-tab-button.w--current {
  opacity: 1;
  background-color: #0000;
}

.vertical-tabs-content-wrapper {
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.horizontal-tabs-button-text {
  color: var(--text);
  margin-bottom: 0;
  font-family: PlusJakarta Text, sans-serif;
  font-weight: 700;
}

.form-success {
  background-color: var(--success);
  padding: 28px;
}

.form-error {
  background-color: var(--danger);
  color: var(--white);
  margin-top: 14px;
  padding: 21px;
}

.horizontal-form {
  display: flex;
}

.horizontal-form.search-form {
  background-color: var(--white);
  margin-bottom: 0;
  padding: 35px;
}

.text-banner {
  z-index: 2;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Sporting Grotesque, sans-serif;
  font-weight: 700;
  position: absolute;
}

.section-large {
  padding-top: 168px;
  padding-bottom: 168px;
  position: relative;
}

.section-large.bg-match-text {
  overflow: hidden;
}

.bg-radial {
  opacity: .1;
  position: absolute;
  top: 0;
  transform: translate(-50%)translate(0, -25%);
}

.pricing-services {
  border-top: 7px solid var(--primary-1);
  background-color: var(--white);
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: 56px 56px 28px;
}

.pricing-services.border-primary-2 {
  border-top-color: var(--primary-2);
}

.pricing-services-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  display: flex;
}

.pricing-service-item {
  border-top: 1px solid var(--border-dark);
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
}

.pricing-service-price {
  text-align: right;
  margin-bottom: 0;
}

.pricing-plans-1 {
  grid-column-gap: 14px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  max-width: 1186px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-plan-body {
  background-color: var(--white);
  color: var(--text);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  padding: 56px 35px;
  display: block;
}

.pricing-plan-body.text-center {
  text-align: center;
}

.pricing-plan-body.border-top {
  border-top: 7px solid var(--primary-1);
}

.pricing-plan-body.border-top.border-primary-2 {
  border-top-color: var(--primary-2);
}

.pricing-plan-body.border-top.border-dark {
  border-top-color: var(--dark);
}

.price {
  margin-bottom: 14px;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.pricing-plan-ribbon {
  background-color: var(--primary-2);
  color: var(--white);
  text-align: center;
  padding: 14px 28px;
  font-weight: 700;
}

.pricing-plan-plans-2 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.pricing-plan {
  grid-column-gap: 16px;
  grid-row-gap: 2px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-plan-price-wrapper {
  margin-top: 28px;
  margin-bottom: 28px;
}

.pricing-plan-price-wrapper.no-bottom-margin {
  margin-bottom: 0;
}

.pricing-plan-details {
  grid-column-gap: 16px;
  grid-row-gap: 14px;
  background-color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: end;
  align-items: end;
  padding: 35px;
  display: grid;
}

.checklist-item {
  align-items: center;
  display: flex;
}

.checklist-icon {
  margin-right: 10px;
}

.feature-comparison-wrapper {
  flex-direction: column;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.feature-comparison-row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
}

.feature-comparison-row.header {
  text-align: left;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  align-items: center;
  margin-bottom: 21px;
}

.comparison-cell {
  text-align: center;
  width: 100%;
  padding: 21px;
}

.comparison-cell.text-left {
  text-align: left;
  overflow: visible;
}

.comparison-table-heading {
  text-align: center;
  margin-bottom: 56px;
}

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

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

.image-overlap-grid-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  place-items: center stretch;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 112px;
}

.image-overlap-grid-section.bg-dark {
  background-color: var(--dark);
  position: relative;
}

.image-overlap-grid-section-wrapper {
  position: relative;
}

.image-overlap-grid-section-image {
  z-index: 3;
  width: 100%;
  max-width: 692px;
  position: relative;
}

.image-overlap-grid-pattern {
  z-index: 1;
  opacity: .05;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.overlap-section-wrapper {
  position: relative;
}

.overlap-section-image {
  z-index: 3;
  position: relative;
}

.overlap-section-content {
  position: relative;
  top: 112px;
}

.overlap-section-content.bottom {
  top: auto;
  bottom: 112px;
}

.grid-hero-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  max-width: 1680px;
  margin-bottom: 112px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.grid-hero-section-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1.5fr));
  max-width: 1680px;
  min-height: 672px;
  margin-left: auto;
  margin-right: auto;
}

.grid-section-content {
  align-items: flex-end;
  padding: 56px 84px;
  display: flex;
}

.grid-hero-section-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.grid-hero-form-wrapper {
  background-color: var(--primary-3);
  color: var(--text);
  flex-direction: column;
  justify-content: space-between;
  min-height: 712px;
  margin-top: 112px;
  padding: 56px;
  display: flex;
}

.grid-hero-radial-pattern {
  opacity: .1;
  position: absolute;
  transform: translate(-50%);
}

.horizontal-page-title {
  border-bottom: 1px solid var(--text);
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 28px;
  display: flex;
}

.horizontal-page-title.align-content-center {
  align-items: center;
}

.horizontal-page-title-heading {
  margin-bottom: 0;
}

.accordion-item {
  border-top: 1px solid var(--primary-1);
  margin-top: 21px;
}

.accordion-item.muted-border {
  border-top-color: var(--border-white);
}

.accordion-title {
  cursor: pointer;
  margin-bottom: 21px;
  padding-top: 21px;
}

.accordion-title.with-arrow {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbars {
  flex-direction: column-reverse;
  display: flex;
}

.search-url {
  opacity: .5;
  font-size: 14px;
}

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

.blog-post-image {
  width: 100%;
  max-width: 1050px;
  margin-top: 84px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.article h3, .article h4 {
  margin-top: 56px;
  margin-bottom: 28px;
}

.article blockquote, .article figure {
  margin-top: 56px;
  margin-bottom: 56px;
}

.article ul {
  grid-column-gap: 16px;
  grid-row-gap: 7px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 28px;
  margin-bottom: 28px;
  padding-left: 28px;
  display: grid;
}

.blog-meta {
  align-items: center;
  display: flex;
}

.blog-meta.text-center {
  justify-content: center;
}

.meta-divider {
  margin-left: 7px;
  margin-right: 7px;
}

.blog-grid-halves {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-grid-image {
  width: 100%;
  margin-bottom: 28px;
}

.blog-grid-link {
  margin-bottom: 28px;
  font-weight: 400;
  transition: color .2s;
}

.blog-grid-link:hover {
  color: var(--primary-2);
}

.blog-grid-link.reduced-margin {
  margin-bottom: 0;
}

.blog-grid-link.reduced-margin.text-primary-1 {
  color: var(--primary-1);
}

.blog-grid-thirds {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-thirds-item {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.empty-state {
  background-color: var(--primary-3);
  color: var(--text);
  text-align: center;
  padding: 27px;
}

.career-meta {
  align-items: center;
  display: flex;
}

.career-heading {
  margin-bottom: 14px;
}

.form-grid-halves {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
}

.form-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.dropdown-list.w--open {
  border: 1px solid var(--border-dark);
  background-color: var(--white);
  border-radius: 5px;
  min-width: 200px;
  overflow: hidden;
}

.dropdown-link {
  color: var(--text);
  padding: 7px 21px;
  font-size: 16px;
  transition: background-color .2s;
}

.dropdown-link:hover {
  background-color: var(--primary-3);
}

.dropdown-link.w--current {
  background-color: var(--primary-3);
  color: var(--text);
}

.license-link {
  background-color: var(--dark);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.license-image {
  opacity: .5;
}

.license-link-text {
  color: var(--white);
  position: absolute;
}

.typography-grid {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.plus-jakarta-sans {
  font-size: 96px;
  font-weight: 700;
  line-height: 96px;
}

.sporting-grotesque {
  font-family: Sporting Grotesque, sans-serif;
  font-size: 96px;
  line-height: 96px;
}

.contact-section {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 497px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-methods {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  margin-top: 56px;
}

.map {
  max-height: 252px;
}

.section-background {
  opacity: .5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.career-list {
  grid-column-gap: 16px;
  grid-row-gap: 14px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.career-link {
  color: var(--white);
  background-color: #ffffff1a;
  justify-content: space-between;
  align-items: center;
  padding: 28px;
  font-weight: 400;
  transition: background-color .2s;
  display: flex;
}

.career-link:hover {
  background-color: #ffffff26;
}

.career-title {
  align-items: center;
  display: flex;
}

.centered-radial {
  opacity: .1;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -25%);
}

.screenshots-wrapper {
  background-color: var(--primary-2);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.screenshots-wrapper.bg-dark {
  background-color: var(--dark);
}

.screenshot-container {
  grid-column-gap: 16px;
  grid-row-gap: 28px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 387px;
  display: grid;
  position: absolute;
}

.demo-grid {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 56px;
}

.demo-link {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.demo-link-image {
  margin-bottom: 14px;
  transition: transform .2s;
  box-shadow: 0 7px 21px #0721251a;
}

.demo-link-image:hover {
  transform: scale(1.02);
}

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

.grid {
  grid-template-rows: auto;
}

.p-low-maring-bottom {
  margin-bottom: 10px;
}

.text-block-2 {
  letter-spacing: 1px;
}

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

.div-block-3 {
  padding-bottom: 100px;
}

.grid-2 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  place-items: center;
}

.div-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: visible;
}

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

.text-block-4 {
  white-space: nowrap;
  overflow: visible;
}

.text-block-5 {
  white-space: nowrap;
}

.bold-text-2 {
  font-weight: 400;
}

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

.heading-2.mg-top {
  margin-top: 60px;
  font-size: 24px;
}

.text-block-6 {
  text-align: center;
  max-width: 900px;
}

.container-2 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-3 {
  margin-top: 100px;
}

@media screen and (max-width: 991px) {
  .section.image-overlap-grid-content {
    bottom: 0;
  }

  .main-container.narrow {
    max-width: 658px;
  }

  .style-guide-section {
    grid-template-columns: 1fr;
  }

  .large-text.pricing-services-subheading {
    margin-bottom: 28px;
  }

  .display-heading-1, .display-heading-2 {
    font-size: 54px;
    line-height: 60px;
  }

  .nav-link {
    margin: 7px 0;
  }

  .menu-button {
    margin-left: 21px;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .menu-button-image {
    display: block;
  }

  .nav-menu {
    border: 1px solid var(--border-dark);
    background-color: var(--white);
    padding: 21px;
  }

  .nav-menu.left {
    margin-left: 0;
  }

  .footer-top-contents {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .social-links.footer-social-links {
    margin-top: 21px;
  }

  .container-small.footer-text {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .footer-menus-grid {
    justify-items: stretch;
  }

  .footer-bottom-contents {
    text-align: center;
    flex-direction: column;
    margin-top: 84px;
  }

  .footer-pattern {
    object-fit: cover;
    height: 100%;
  }

  .navbar-grid {
    justify-content: space-between;
    display: flex;
  }

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

  .container.metric-slide-text-container {
    padding-bottom: 0;
  }

  .image-overlay-box {
    left: 0;
  }

  .medium-heading.process-section-heading {
    margin-bottom: 21px;
  }

  .section-title.blog-section-title {
    max-width: 608px;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-logos-wrapper {
    display: flex;
  }

  .grid-two-thirds {
    grid-template-columns: 7fr;
  }

  .grid-two-thirds.reverse-direction {
    grid-template-columns: 5fr;
  }

  .overlap-section-strip {
    display: none;
  }

  .overlap-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .overlap-section.overlap-bottom {
    margin-bottom: 0;
    padding-bottom: 112px;
  }

  .grid-section, .grid-section.halves {
    grid-template-columns: 1fr;
  }

  .grid-section-text-wrapper {
    border-left-style: none;
    border-right-style: none;
  }

  .grid-halves-section {
    grid-template-columns: 1fr;
  }

  .article-excerpt-section {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .grid-thirds {
    grid-row-gap: 56px;
    grid-template-columns: 1fr;
    max-width: 497px;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-thirds.link-boxes-grid {
    grid-row-gap: 28px;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-thirds.expanded-gap {
    grid-template-columns: 1fr;
  }

  .large-link-box {
    height: 314px;
  }

  .link-boxes-wrapper {
    max-width: 497px;
    margin-left: auto;
    margin-right: auto;
  }

  .image-overlap-bottom-wrapper {
    bottom: 0;
  }

  .wide-quotes-slider-wrapper {
    padding: 56px;
  }

  .large-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .background-pattern {
    object-fit: cover;
    width: auto;
    height: 100%;
    inset: 0% 0% 0% auto;
  }

  .video-overlap-container {
    margin-bottom: 0;
  }

  .video-overlap-section {
    padding-top: 0;
    padding-bottom: 112px;
  }

  .grid-two-thirds-section {
    grid-template-columns: 1fr;
  }

  .horizontal-small-metrics-collection {
    grid-column-gap: 16px;
    grid-row-gap: 56px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start center;
    display: grid;
  }

  .align-content-bottom-right.metric-slide-text-wrapper {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .process-section-title {
    text-align: center;
    flex-direction: column;
    width: 100%;
    max-width: 608px;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-two-thirds-reverse {
    grid-template-columns: 7fr;
  }

  .vertical-tabs-container {
    margin-left: 21px;
  }

  .vertical-tabs-button-icon {
    flex: none;
  }

  .vertical-tabs-content-image {
    object-fit: cover;
    width: 100%;
    height: auto;
    position: relative;
  }

  .vertical-tabs-text-wrapper {
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    position: relative;
  }

  .horizontal-tabs-menu {
    z-index: 2;
    background-color: var(--white);
    margin-bottom: 84px;
    padding-top: 21px;
    padding-bottom: 21px;
    position: sticky;
    top: 84px;
  }

  .vertical-tabs-content-wrapper {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .section-large {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .pricing-services-top {
    text-align: center;
    flex-direction: column;
  }

  .pricing-service-item {
    flex-flow: row;
    align-items: stretch;
  }

  .pricing-service-price {
    margin-top: 14px;
  }

  .pricing-plans-1 {
    grid-template-columns: 1fr;
    max-width: 386px;
  }

  .pricing-plan-plans-2 {
    grid-template-columns: 1fr;
    max-width: 497px;
    margin-left: auto;
    margin-right: auto;
  }

  .image-overlap-grid-section {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 112px;
  }

  .image-overlap-grid-section-image {
    max-width: 497px;
  }

  .overlap-section-content {
    top: 0;
  }

  .overlap-section-content.bottom {
    bottom: 0;
  }

  .grid-hero-section {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .grid-hero-section-2, .grid-hero-section-3 {
    grid-template-columns: 1fr;
  }

  .grid-hero-form-wrapper {
    min-height: auto;
    margin-top: 0;
  }

  .grid-hero-radial-pattern {
    display: none;
  }

  .horizontal-page-title {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .horizontal-page-title-heading {
    margin-bottom: 21px;
  }

  .article blockquote {
    font-size: 24px;
    line-height: 36px;
  }

  .blog-grid-halves, .blog-grid-thirds {
    grid-template-columns: 1fr;
    max-width: 608px;
    margin-left: auto;
    margin-right: auto;
  }

  .career-heading-meta {
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
    display: flex;
  }

  .form-grid-halves {
    grid-template-columns: 1fr;
  }

  .dropdown-list.w--open {
    background-color: #0000;
    border-style: none;
    border-radius: 0;
    margin-top: 7px;
    margin-bottom: 7px;
    position: relative;
  }

  .map {
    margin-top: 56px;
  }

  .centered-radial {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .demo-grid {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }

  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 32px;
    line-height: 42px;
  }

  h3 {
    font-size: 28px;
    line-height: 38px;
  }

  h4 {
    font-size: 24px;
    line-height: 36px;
  }

  h6 {
    font-size: 16px;
    line-height: 24px;
  }

  .style-guide-section {
    max-width: 100%;
  }

  .style-guide-colors {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
  }

  .style-guide-typography {
    max-width: 100%;
  }

  .button.adjacent-to-checkbox {
    margin-top: 21px;
  }

  .style-guide-form-inputs {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid-vertical {
    max-width: 100%;
  }

  .top-bar-contents {
    flex-direction: column;
  }

  .display-heading-1, .display-heading-2 {
    font-size: 40px;
    line-height: 48px;
  }

  .style-guide-grid-vertical {
    max-width: 100%;
  }

  .style-guide-grid-horizontal {
    grid-template-columns: 1fr;
  }

  .style-guide-icons, .style-guide-icons-dark {
    max-width: 100%;
  }

  .top-bar-items-wrapper {
    margin-top: 14px;
  }

  .navbar-functions-link {
    display: none;
  }

  .heading, .div-block-2 {
    max-width: 100%;
  }

  .grid-halves {
    grid-row-gap: 63px;
  }

  .large-heading {
    font-size: 40px;
    line-height: 48px;
  }

  .large-heading.text-primary-2 {
    top: 8px;
    left: -7px;
  }

  .large-heading.horizontal-tabs-section-title {
    margin-bottom: 46px;
  }

  .medium-heading {
    font-size: 32px;
    line-height: 42px;
  }

  .image-overlay-wrapper {
    margin-bottom: 0;
  }

  .image-overlay-wrapper.center-top {
    align-items: stretch;
    display: flex;
  }

  .centered-content-box {
    min-height: auto;
    padding: 28px 21px;
  }

  .centered-content-box.tall {
    min-height: auto;
  }

  .icon-list-features-grid {
    padding: 56px 28px;
  }

  .brand-logos-wrapper {
    flex-flow: column wrap;
    margin-top: 35px;
  }

  .brand-logo {
    margin-bottom: 21px;
    margin-right: 0;
  }

  .brand-logos-heading {
    text-align: center;
  }

  .block-quote {
    left: 6px;
  }

  .large-link-box {
    height: 286px;
  }

  .wide-quotes-slider-wrapper {
    padding: 49px;
  }

  .horizontal-quote {
    margin-bottom: 35px;
  }

  .horizontal-quote-icon {
    margin-right: 35px;
  }

  .align-content-center {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .image-overlay-box-wrapper.center-top {
    margin-bottom: 70px;
    position: relative;
  }

  .align-content-bottom-right.metric-slide-text-wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
  }

  .process-section-title {
    margin-bottom: 56px;
  }

  .vertical-tabs {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .vertical-tabs-container {
    margin-left: 0;
  }

  .vertical-tabs-menu {
    max-width: none;
    margin-bottom: 28px;
  }

  .vertical-tabs-content-image {
    object-fit: cover;
    max-height: 420px;
  }

  .vertical-tabs-content {
    width: 100%;
  }

  .vertical-tabs-text-wrapper {
    align-items: flex-start;
    max-width: none;
  }

  .horizontal-tabs-menu {
    grid-column-gap: 14px;
    grid-row-gap: 7px;
    background-color: var(--white);
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 14px;
  }

  .horizontal-tab-button {
    border-top-style: none;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .vertical-tabs-content-wrapper {
    align-items: flex-start;
  }

  .grid-section-content {
    padding-left: 28px;
    padding-right: 28px;
  }

  .blog-post-image {
    margin-top: 56px;
  }

  .article h3, .article h4 {
    margin-top: 35px;
    margin-bottom: 21px;
  }

  .article blockquote, .article figure {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .form-row {
    flex-direction: column;
  }

  .demo-grid {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .text-block-4 {
    white-space: nowrap;
  }
}

@media screen and (max-width: 479px) {
  h1, h2 {
    letter-spacing: 0;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 38px;
  }

  h3 {
    font-size: 24px;
    line-height: 36px;
  }

  h5 {
    letter-spacing: 0;
    font-size: 18px;
    line-height: 28px;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .section.account-section {
    min-height: auto;
  }

  .main-container {
    padding-left: 21px;
    padding-right: 21px;
  }

  .style-guide-colors {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    grid-template-columns: 1fr;
  }

  .large-text {
    font-size: 18px;
    line-height: 28px;
  }

  .style-guide-buttons {
    grid-row-gap: 14px;
    grid-template-columns: 1fr;
  }

  .button.large {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .button.adjacent-to-input {
    margin-top: 21px;
    margin-left: 0;
  }

  .style-guide-form-inputs {
    grid-template-columns: 1fr;
  }

  .form-input, .form-input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }

  .footer {
    padding-top: 84px;
  }

  .top-bar-contents {
    align-items: stretch;
  }

  .display-heading-1 {
    letter-spacing: 0;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 38px;
  }

  .display-heading-1.overlap-heading {
    margin-bottom: 28px;
  }

  .display-heading-2 {
    letter-spacing: 0;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 38px;
  }

  .style-guide-checkbox-grid {
    grid-template-columns: .25fr;
  }

  .div-block {
    width: 100%;
  }

  .top-bar-item.adjacent-to-item {
    margin-top: 14px;
    margin-left: 0;
  }

  .top-bar-items-wrapper {
    flex-direction: column;
    align-self: stretch;
    align-items: flex-start;
  }

  .nav-link {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .hide-on-mobile {
    display: none;
  }

  .container-small.align-center {
    max-width: none;
  }

  .footer-menus-grid {
    grid-row-gap: 35px;
    grid-template-columns: 1fr;
  }

  .footer-menu-heading {
    margin-bottom: 14px;
  }

  .footer-bottom-contents {
    margin-top: 56px;
  }

  .grid-halves {
    grid-row-gap: 56px;
  }

  .large-heading {
    letter-spacing: 0;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 38px;
  }

  .large-heading.text-primary-2 {
    top: 3px;
    left: -7px;
  }

  .image-overlay-box {
    padding: 35px 0 0;
  }

  .image-overlay-box.center-top {
    padding: 21px;
    position: relative;
  }

  .medium-heading {
    letter-spacing: 0;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 38px;
  }

  .centered-content-box {
    flex-direction: column;
    align-items: stretch;
    max-width: 386px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .centered-content-box.bg-primary-2 {
    background-color: #0000;
  }

  .centered-content-box-background-pattern {
    display: none;
  }

  .section-title.reduced-margin {
    margin-bottom: 35px;
  }

  .icon-list-features-grid {
    background-color: #0000;
    padding: 0;
  }

  .icon-feature-list-item {
    flex-direction: column;
  }

  .icon-feature-list-icon {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .grid-two-thirds {
    grid-row-gap: 56px;
  }

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

  .overlap-section, .overlap-section.overlap-bottom {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .grid-section-column {
    display: block;
  }

  .small-quote-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .small-quote-text {
    margin-top: 14px;
    margin-left: 0;
  }

  .centered-content-wrapper {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .centered-content-box-background-image {
    position: relative;
  }

  .quote-box {
    padding: 28px;
  }

  .quote-box-subtext {
    margin-top: 21px;
  }

  .block-quote-text.large-text {
    margin-bottom: 0;
  }

  .block-quote {
    margin-bottom: 21px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 21px;
    left: 0;
  }

  .large-link-box {
    height: 202px;
    padding: 28px;
  }

  .large-link-box-subtext {
    margin-top: 21px;
  }

  .icon-list-item.horizontal-icon-list-item {
    align-items: center;
  }

  .centered-icon-list-wrapper {
    padding: 21px;
  }

  .horizontal-icon-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .wide-quotes-slider-wrapper {
    background-color: #0000;
    padding: 0;
  }

  .slide-nav.wide-quotes-slide-nav {
    text-align: center;
    margin-top: 21px;
  }

  .horizontal-quote {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .horizontal-quote-icon {
    margin-bottom: 21px;
    margin-right: 0;
  }

  .background-image.behind-list {
    display: none;
  }

  .image-overlay-box-wrapper.center-top {
    margin-bottom: 35px;
  }

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

  .horizontal-overflow-quote-container {
    height: 161px;
  }

  .large-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .video-play-button {
    width: 101px;
    height: 63px;
  }

  .video-overlap-section {
    padding-top: 0;
    padding-bottom: 84px;
  }

  .metrics-box {
    max-width: none;
    padding: 28px;
  }

  .horizontal-small-metrics-collection {
    grid-row-gap: 56px;
    grid-template-columns: 1fr;
  }

  .align-content-bottom-right.metric-slide-text-wrapper {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .metrics-slide-nav {
    text-align: right;
    padding-left: 21px;
    padding-right: 21px;
    top: 91px;
    bottom: auto;
  }

  .medium-circle.bg-match-text.process-item-circle {
    width: 56px;
    height: 56px;
    margin-left: 0;
    position: absolute;
    top: 28px;
    left: 28px;
  }

  .process-image-wrapper {
    position: relative;
  }

  .medium-circle-text {
    font-size: 18px;
    line-height: 28px;
  }

  .process-item-image {
    margin-top: 0;
  }

  .grid-two-thirds-reverse {
    grid-row-gap: 56px;
  }

  .vertical-tabs {
    width: 100%;
  }

  .vertical-tabs-container {
    margin-left: 0;
  }

  .vertical-tabs-menu {
    max-width: none;
  }

  .vertical-tabs-button.w--current {
    padding-right: 21px;
  }

  .vertical-tabs-button-text-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 7px;
  }

  .vertical-tabs-button-icon {
    margin-bottom: 14px;
  }

  .vertical-tabs-text-wrapper {
    width: 100%;
    padding: 21px;
  }

  .horizontal-form {
    flex-direction: column;
  }

  .section-large {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .pricing-services {
    padding: 29px;
  }

  .pricing-plans-1 {
    grid-row-gap: 28px;
  }

  .pricing-plan-body {
    padding: 35px 28px;
  }

  .feature-comparison-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .feature-comparison-row.header {
    text-align: center;
  }

  .comparison-cell.text-left {
    text-align: center;
    padding-bottom: 7px;
  }

  .image-overlap-grid-section {
    padding-bottom: 0;
  }

  .horizontal-page-title-heading, .article h4 {
    margin-bottom: 14px;
  }

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

  .plus-jakarta-sans, .sporting-grotesque {
    font-size: 72px;
    line-height: 72px;
  }

  .accordion-arrow {
    margin-left: 21px;
  }

  .contact-methods {
    grid-row-gap: 28px;
    grid-template-columns: 1fr;
  }

  .career-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-title-divider {
    display: none;
  }

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

  .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

#w-node-dba01bb3-4c83-5690-52e4-9bb1da4f1adc-40ef367b, #w-node-dba01bb3-4c83-5690-52e4-9bb1da4f1aca-40ef367b, #w-node-f1541ad5-cd41-ec3a-5d22-9594569ff402-40ef367b {
  align-self: stretch;
}

#w-node-_198c7ec0-44a2-4862-401d-008d83b2fb3c-40ef367b {
  justify-self: center;
}

#w-node-b7792918-5efa-ab62-a8d0-3040a01db312-a01db2f4 {
  justify-self: stretch;
}

#w-node-c571ac46-aae7-c009-f982-e261df1f7a19-df1f7a16 {
  justify-self: center;
}

#w-node-c571ac46-aae7-c009-f982-e261df1f7a1b-df1f7a16 {
  justify-self: end;
}

#w-node-_2328506f-4515-4b6a-7506-5187288521a6-28852186 {
  justify-self: stretch;
}

#w-node-fd066357-d889-801a-48c2-06257f70d0d3-50ef3686 {
  justify-self: center;
}

#w-node-_6c1fdc60-dfa8-afe9-daad-ddc26cef04de-e2ef368b {
  justify-self: start;
}

#w-node-_717b09c8-dab7-ed1d-cfda-d79ebfe7c394-f8ef368f {
  align-self: stretch;
}

#w-node-_3bfe550e-f6df-c949-12bd-4320eab8a040-eaef3691, #w-node-_23a98e30-4f54-5e1f-3837-21048c0fbed6-faef3693, #w-node-b1d54df6-729d-8771-ce75-fb94bd41432a-e8ef3695, #w-node-e96b3854-0486-653b-7b67-8c32488bfa36-e8ef3695, #w-node-e0b57577-bb64-cb04-99df-1d500e571f1b-e8ef3695 {
  justify-self: start;
}

#w-node-ba2c5f0b-b599-8ae6-0838-b9107a640fd2-e8ef3695, #w-node-ba2c5f0b-b599-8ae6-0838-b9107a640fd3-e8ef3695 {
  align-self: stretch;
}

#w-node-f8e1197e-b0ad-34b5-f82a-0c1749a14414-e8ef3695 {
  justify-self: start;
}

#w-node-_4b7c105c-7c74-9e39-ceeb-5592cc942f9d-50ef3697, #w-node-_4b7c105c-7c74-9e39-ceeb-5592cc942f93-50ef3697, #w-node-_1479d63e-16a7-1dd8-b074-cbc72c5dec3d-50ef3697 {
  align-self: stretch;
}

#w-node-c6a4ffaa-6ed7-b5e1-4fb9-86e6e1458ed4-50ef3697 {
  justify-self: end;
}

#w-node-_15b2ca2d-9bf3-d96c-c8a9-26dea2291495-50ef3697, #w-node-_35695575-3900-805b-b354-064741194f8d-37ef369a {
  justify-self: start;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f52-37ef369a {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f54-37ef369a {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f56-37ef369a {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f59-37ef369a {
  justify-self: stretch;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f5c-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f5f-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f61-37ef369a {
  justify-self: center;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f64-37ef369a {
  justify-self: stretch;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f67-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f6a-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f6c-37ef369a {
  justify-self: center;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f6f-37ef369a {
  justify-self: stretch;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f72-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f75-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f77-37ef369a {
  justify-self: center;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f7a-37ef369a {
  justify-self: stretch;
}

#w-node-_013024a2-52f3-2074-02fd-d38f4af54f7d-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f80-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f82-37ef369a {
  justify-self: center;
}

#w-node-_7b8b808f-94e5-4fca-0f97-83d9f61e65ac-37ef369a {
  justify-self: start;
}

#w-node-dc5ec3f0-63f5-c9fd-ae07-51187827cc73-37ef369a, #w-node-dc5ec3f0-63f5-c9fd-ae07-51187827cc74-37ef369a {
  align-self: stretch;
}

#w-node-_46ad3ad2-8da3-2881-b6bf-6cab9f86ccf9-dfef369b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e6bfdaf0-5382-f973-559b-d996e764da7e-72ef369c, #w-node-efd8804b-5eba-688e-d041-12345631504e-53ef369d {
  justify-self: start;
}

#w-node-_069c2f30-aef6-49a3-54c0-67aeb16e0c38-b16e0c34 {
  justify-self: center;
}

#w-node-_069c2f30-aef6-49a3-54c0-67aeb16e0c3a-b16e0c34 {
  justify-self: end;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede58-1fef369e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede5a-1fef369e {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede5c-1fef369e {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede5f-1fef369e {
  justify-self: stretch;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede62-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede65-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede67-1fef369e {
  justify-self: center;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede6a-1fef369e {
  justify-self: stretch;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede6d-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede70-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede72-1fef369e {
  justify-self: center;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede75-1fef369e {
  justify-self: stretch;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede78-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede7b-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede7d-1fef369e {
  justify-self: center;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede80-1fef369e {
  justify-self: stretch;
}

#w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede83-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede86-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede88-1fef369e {
  justify-self: center;
}

#w-node-_422606c0-a697-0354-1b8b-12102e9f54d1-1fef369e {
  justify-self: start;
}

#w-node-_90d9c19a-0a17-c491-77a4-9f4a9685ae40-e7ef369f {
  align-self: stretch;
}

#w-node-_90d9c19a-0a17-c491-77a4-9f4a9685ae4c-e7ef369f {
  justify-self: end;
}

#w-node-a1495b89-f9c9-2c75-a726-65efcfb1dc73-e7ef369f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057da-e7ef369f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057dc-e7ef369f {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057de-e7ef369f {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e1-e7ef369f {
  justify-self: stretch;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e4-e7ef369f, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e7-e7ef369f, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e9-e7ef369f {
  justify-self: center;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057ec-e7ef369f {
  justify-self: stretch;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057ef-e7ef369f, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057f2-e7ef369f, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057f4-e7ef369f {
  justify-self: center;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057f7-e7ef369f {
  justify-self: stretch;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057fa-e7ef369f, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057fd-e7ef369f, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057ff-e7ef369f {
  justify-self: center;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac05802-e7ef369f {
  justify-self: stretch;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac05805-e7ef369f {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: center;
}

#w-node-e0ba3207-f4c9-7a2f-ee68-ff03dd80fa30-e7ef369f {
  justify-self: stretch;
}

#w-node-e0ba3207-f4c9-7a2f-ee68-ff03dd80fa33-e7ef369f {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: center;
}

#w-node-_68f82bef-8eb7-26ae-f0f0-6cebb68a83c2-80ef36a6, #w-node-c1590ec4-8c3b-2fc1-e704-3a19a0e6f7fe-80ef36a6, #w-node-ac7bd4c7-874c-ff62-159e-43ddc84a8460-80ef36a6 {
  justify-self: stretch;
}

#w-node-heading-5-80ef36a6 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_637dcae6-4ee7-3929-25d6-b50d79adcacf-80ef36a6 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_6ddf8773-7ed1-a126-2ec4-46391d4f1c71-80ef36a6 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_9cd6f54b-49b2-4e7b-47ee-18dada164417-80ef36a6 {
  justify-self: stretch;
}

#w-node-_6fb62ed9-8840-d25b-921a-a02f75b8a5c2-80ef36a6, #w-node-_8a514f4b-e6df-64d6-7663-76528ade928d-80ef36a6, #w-node-a4ef9bc1-9f3e-d598-cdfd-c4ffe9309435-80ef36a6 {
  justify-self: center;
}

#w-node-_12b6a9be-3982-7bbf-b98d-89b230abb41e-80ef36a6 {
  justify-self: stretch;
}

#w-node-_12b6a9be-3982-7bbf-b98d-89b230abb421-80ef36a6, #w-node-_12b6a9be-3982-7bbf-b98d-89b230abb424-80ef36a6, #w-node-_12b6a9be-3982-7bbf-b98d-89b230abb426-80ef36a6 {
  justify-self: center;
}

#w-node-adc8598e-d312-c5d5-62d5-753aca98cb1c-80ef36a6 {
  justify-self: stretch;
}

#w-node-adc8598e-d312-c5d5-62d5-753aca98cb1f-80ef36a6, #w-node-adc8598e-d312-c5d5-62d5-753aca98cb22-80ef36a6, #w-node-adc8598e-d312-c5d5-62d5-753aca98cb24-80ef36a6 {
  justify-self: center;
}

#w-node-_5d8615e4-d58b-2f52-f4fb-3d8d5691fac7-80ef36a6 {
  justify-self: stretch;
}

#w-node-_5d8615e4-d58b-2f52-f4fb-3d8d5691faca-80ef36a6, #w-node-_5d8615e4-d58b-2f52-f4fb-3d8d5691facd-80ef36a6, #w-node-_5d8615e4-d58b-2f52-f4fb-3d8d5691facf-80ef36a6 {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c2f-a1ef36a7 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c31-a1ef36a7 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c33-a1ef36a7 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c36-a1ef36a7 {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c39-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c3c-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c3e-a1ef36a7 {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c41-a1ef36a7 {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c44-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c47-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c49-a1ef36a7 {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c4c-a1ef36a7 {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c4f-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c52-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c54-a1ef36a7 {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c57-a1ef36a7 {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c5a-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c5d-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c5f-a1ef36a7 {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c2f-c0ef36bf {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c31-c0ef36bf {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c33-c0ef36bf {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c36-c0ef36bf {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c39-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c3c-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c3e-c0ef36bf {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c41-c0ef36bf {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c44-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c47-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c49-c0ef36bf {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c4c-c0ef36bf {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c4f-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c52-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c54-c0ef36bf {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c57-c0ef36bf {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c5a-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c5d-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c5f-c0ef36bf {
  justify-self: center;
}

#w-node-_5f8cb909-812c-1add-684c-76337a48b940-faef36d4, #w-node-_5f8cb909-812c-1add-684c-76337a48b952-faef36d4, #w-node-_5f8cb909-812c-1add-684c-76337a48b960-faef36d4 {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c2f-faef36d4 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c31-faef36d4 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c33-faef36d4 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c36-faef36d4 {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c39-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c3c-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c3e-faef36d4 {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c41-faef36d4 {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c44-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c47-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c49-faef36d4 {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c4c-faef36d4 {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c4f-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c52-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c54-faef36d4 {
  justify-self: center;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c57-faef36d4 {
  justify-self: stretch;
}

#w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c5a-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c5d-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c5f-faef36d4, #w-node-a08c7f20-cfec-3535-ac02-674501df0e05-56ef36e8 {
  justify-self: center;
}

#w-node-d7fa3ed2-ff45-a273-0cca-7cf37da7c6e8-faef36f6, #w-node-_642ae22a-174d-db92-0f47-d6a79d3c570b-faef36f6 {
  align-self: stretch;
}

#w-node-heading-7-faef36f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_90d9c19a-0a17-c491-77a4-9f4a9685ae40-9dbcee88 {
  align-self: stretch;
}

#w-node-_90d9c19a-0a17-c491-77a4-9f4a9685ae4c-9dbcee88 {
  justify-self: end;
}

#w-node-a1495b89-f9c9-2c75-a726-65efcfb1dc73-9dbcee88 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057da-9dbcee88 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057de-9dbcee88 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: center;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057dc-9dbcee88 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e1-9dbcee88 {
  justify-self: stretch;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e4-9dbcee88, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e7-9dbcee88, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e9-9dbcee88 {
  justify-self: center;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057ec-9dbcee88 {
  justify-self: stretch;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057ef-9dbcee88, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057f2-9dbcee88, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057f4-9dbcee88 {
  justify-self: center;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057f7-9dbcee88 {
  justify-self: stretch;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057fa-9dbcee88, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057fd-9dbcee88, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057ff-9dbcee88 {
  justify-self: center;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac05802-9dbcee88 {
  justify-self: stretch;
}

#w-node-_4f2036c4-d94c-6888-7b18-13cb0ac05805-9dbcee88 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: center;
}

#w-node-e0ba3207-f4c9-7a2f-ee68-ff03dd80fa30-9dbcee88 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-e0ba3207-f4c9-7a2f-ee68-ff03dd80fa33-9dbcee88 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  place-self: center;
}

#w-node-fc0ef136-da8f-edc6-bf2f-0f2cea7f0b30-9dbcee88 {
  justify-self: stretch;
}

#w-node-fc0ef136-da8f-edc6-bf2f-0f2cea7f0b33-9dbcee88, #w-node-fc0ef136-da8f-edc6-bf2f-0f2cea7f0b36-9dbcee88, #w-node-fc0ef136-da8f-edc6-bf2f-0f2cea7f0b39-9dbcee88 {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-c6a4ffaa-6ed7-b5e1-4fb9-86e6e1458ed4-50ef3697, #w-node-_90d9c19a-0a17-c491-77a4-9f4a9685ae4c-e7ef369f, #w-node-_90d9c19a-0a17-c491-77a4-9f4a9685ae4c-9dbcee88 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_013024a2-52f3-2074-02fd-d38f4af54f52-37ef369a {
    grid-column: 1 / 2;
  }

  #w-node-_013024a2-52f3-2074-02fd-d38f4af54f54-37ef369a {
    grid-column: 3 / 4;
  }

  #w-node-_013024a2-52f3-2074-02fd-d38f4af54f56-37ef369a {
    grid-column: 2 / 3;
  }

  #w-node-_013024a2-52f3-2074-02fd-d38f4af54f59-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f64-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f6f-37ef369a, #w-node-_013024a2-52f3-2074-02fd-d38f4af54f7a-37ef369a {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede58-1fef369e {
    grid-column: 1 / 2;
  }

  #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede5a-1fef369e {
    grid-column: 3 / 4;
  }

  #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede5c-1fef369e {
    grid-column: 2 / 3;
  }

  #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede5f-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede6a-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede75-1fef369e, #w-node-ead3aa8a-86d0-af62-ff04-529e8b9ede80-1fef369e {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057da-e7ef369f {
    grid-column: 1 / 2;
  }

  #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057dc-e7ef369f {
    grid-column: 3 / 4;
  }

  #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057de-e7ef369f {
    grid-column: 2 / 3;
  }

  #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e1-e7ef369f, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057ec-e7ef369f, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057f7-e7ef369f, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac05802-e7ef369f, #w-node-e0ba3207-f4c9-7a2f-ee68-ff03dd80fa30-e7ef369f {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-heading-5-80ef36a6 {
    grid-column: 1 / 2;
  }

  #w-node-_637dcae6-4ee7-3929-25d6-b50d79adcacf-80ef36a6 {
    grid-column: 3 / 4;
  }

  #w-node-_6ddf8773-7ed1-a126-2ec4-46391d4f1c71-80ef36a6 {
    grid-column: 2 / 3;
  }

  #w-node-_9cd6f54b-49b2-4e7b-47ee-18dada164417-80ef36a6, #w-node-_12b6a9be-3982-7bbf-b98d-89b230abb41e-80ef36a6, #w-node-adc8598e-d312-c5d5-62d5-753aca98cb1c-80ef36a6, #w-node-_5d8615e4-d58b-2f52-f4fb-3d8d5691fac7-80ef36a6 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c2f-a1ef36a7 {
    grid-column: 1 / 2;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c31-a1ef36a7 {
    grid-column: 3 / 4;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c33-a1ef36a7 {
    grid-column: 2 / 3;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c36-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c41-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c4c-a1ef36a7, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c57-a1ef36a7 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c2f-c0ef36bf {
    grid-column: 1 / 2;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c31-c0ef36bf {
    grid-column: 3 / 4;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c33-c0ef36bf {
    grid-column: 2 / 3;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c36-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c41-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c4c-c0ef36bf, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c57-c0ef36bf {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c2f-faef36d4 {
    grid-column: 1 / 2;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c31-faef36d4 {
    grid-column: 3 / 4;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c33-faef36d4 {
    grid-column: 2 / 3;
  }

  #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c36-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c41-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c4c-faef36d4, #w-node-_6da7b7e5-1a08-a41d-f66d-9b31fa9e7c57-faef36d4 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057da-9dbcee88 {
    grid-column: 1 / 2;
  }

  #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057de-9dbcee88 {
    grid-column: 2 / 3;
  }

  #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057dc-9dbcee88 {
    grid-column: 3 / 4;
  }

  #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057e1-9dbcee88, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057ec-9dbcee88, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac057f7-9dbcee88, #w-node-_4f2036c4-d94c-6888-7b18-13cb0ac05802-9dbcee88, #w-node-e0ba3207-f4c9-7a2f-ee68-ff03dd80fa30-9dbcee88, #w-node-fc0ef136-da8f-edc6-bf2f-0f2cea7f0b30-9dbcee88 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}


@font-face {
  font-family: 'Sporting Grotesque';
  src: url('../fonts/Sporting_Grotesque-Bold_web.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sporting Grotesque';
  src: url('../fonts/Sporting_Grotesque-Regular_web.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PlusJakarta Text';
  src: url('../fonts/PlusJakartaText-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PlusJakarta Text';
  src: url('../fonts/PlusJakartaText-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'PlusJakarta Text';
  src: url('../fonts/PlusJakartaText-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'PlusJakarta Text';
  src: url('../fonts/PlusJakartaText-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}