:root {
  --vc-neutral-0: #ffffff;
  --vc-neutral-50: #f7f8fa;
  --vc-neutral-100: #eef1f5;
  --vc-neutral-200: #d7dee7;
  --vc-neutral-400: #98a2b3;
  --vc-neutral-600: #475467;
  --vc-neutral-700: #344054;
  --vc-neutral-900: #101828;
  --vc-brand-100: #dce7f5;
  --vc-brand-300: #8fb0d4;
  --vc-brand-500: #4f81bd;
  --vc-brand-700: #244c78;
  --vc-brand-900: #17365d;
  --vc-color-bg-page: var(--vc-neutral-0);
  --vc-color-bg-soft: var(--vc-neutral-50);
  --vc-color-bg-muted: var(--vc-neutral-100);
  --vc-color-bg-inverse: var(--vc-brand-900);
  --vc-color-text-primary: var(--vc-neutral-900);
  --vc-color-text-secondary: var(--vc-neutral-600);
  --vc-color-text-inverse: var(--vc-neutral-0);
  --vc-color-text-brand: var(--vc-brand-700);
  --vc-color-border-default: var(--vc-neutral-200);
  --vc-color-border-strong: var(--vc-neutral-400);
  --vc-color-border-brand: var(--vc-brand-500);
  --vc-color-action-primary: var(--vc-brand-700);
  --vc-color-action-primary-hover: var(--vc-brand-900);
  --vc-color-action-secondary: var(--vc-neutral-0);
  --vc-color-focus: var(--vc-brand-500);
  --vc-color-status-success: #2f7d61;
  --vc-color-status-error: #b42318;
  --vc-space-1: 4px;
  --vc-space-2: 8px;
  --vc-space-3: 12px;
  --vc-space-4: 16px;
  --vc-space-6: 24px;
  --vc-space-8: 32px;
  --vc-space-12: 48px;
  --vc-space-16: 64px;
  --vc-space-20: 80px;
  --vc-space-24: 96px;
  --vc-radius-none: 0;
  --vc-radius-sm: 4px;
  --vc-radius-md: 8px;
  --vc-radius-lg: 12px;
  --vc-radius-pill: 999px;
  --vc-layout-content-max: 1280px;
  --vc-layout-section-x: 80px;
  --vc-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.has-open-menu,
html.has-open-menu body {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--vc-color-bg-page);
  color: var(--vc-color-text-primary);
  font-family: var(--vc-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-weight: 600;
  overflow-wrap: anywhere;
}

p,
li,
label {
  overflow-wrap: anywhere;
}

h1 {
  font-size: 48px;
  letter-spacing: -1.5px;
  line-height: 56px;
}

h2 {
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 44px;
}

h3 {
  font-size: 24px;
  letter-spacing: -.5px;
  line-height: 32px;
}

:focus-visible {
  outline: 3px solid var(--vc-color-focus);
  outline-offset: 3px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.vc-skip-link {
  background: var(--vc-color-bg-page);
  color: var(--vc-color-text-primary);
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: -100px;
  z-index: 1000;
}

.vc-skip-link:focus {
  top: 16px;
}

.vc-container {
  margin-inline: auto;
  max-width: calc(var(--vc-layout-content-max) + (var(--vc-layout-section-x) * 2));
  padding-inline: var(--vc-layout-section-x);
  width: 100%;
}

.vc-eyebrow {
  color: var(--vc-color-text-brand);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .96px;
  line-height: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.vc-eyebrow--inverse {
  color: var(--vc-color-text-inverse);
}

.vc-lead,
.vc-body-large {
  font-size: 18px;
  line-height: 30px;
}

.vc-button {
  align-items: center;
  background: var(--vc-color-action-primary);
  border: 1px solid var(--vc-color-action-primary);
  border-radius: var(--vc-radius-md);
  color: var(--vc-color-text-inverse);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  line-height: 20px;
  min-height: 48px;
  padding: 12px 24px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.vc-button:hover {
  background: var(--vc-color-action-primary-hover);
  border-color: var(--vc-color-action-primary-hover);
}

.vc-button--secondary {
  background: var(--vc-color-action-secondary);
  border-color: var(--vc-color-border-strong);
  color: var(--vc-color-text-primary);
  transform: none;
  transition: none;
}

.vc-button--secondary:hover,
.vc-button--secondary:focus-visible,
.vc-button--secondary:active {
  border-color: var(--vc-color-border-strong);
}

.vc-button--secondary:hover {
  background: var(--vc-color-bg-muted);
}

.vc-button--secondary img {
  transition: transform 180ms ease-out;
}

.vc-button--secondary:hover img,
.vc-button--secondary:focus-visible img {
  transform: translateX(4px);
}

.vc-button img {
  height: 16px;
  width: 16px;
}

.vc-header {
  background: var(--vc-color-bg-page);
  height: 80px;
  position: relative;
  z-index: 100;
}

.vc-header__inner {
  align-items: center;
  display: flex;
  gap: 32px;
  height: 100%;
  margin-inline: auto;
  max-width: 1440px;
  padding: 16px var(--vc-layout-section-x);
}

.vc-wordmark {
  display: block;
  flex: 0 0 auto;
}

.vc-wordmark img {
  height: 28px;
  width: auto;
}

.vc-nav {
  margin-left: auto;
}

.vc-nav__list,
.vc-nav .menu {
  align-items: center;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vc-nav a {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  line-height: 20px;
  min-height: 44px;
  min-width: 88px;
  padding-inline: 16px;
  position: relative;
}

.vc-nav a::after {
  background: var(--vc-color-text-brand);
  bottom: 4px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform .2s ease;
  width: 28px;
}

.vc-nav a:hover::after,
.vc-nav a[aria-current="page"]::after,
.vc-nav .current-menu-item > a::after {
  transform: translateX(-50%) scaleX(1);
}

.vc-header__controls {
  align-items: center;
  display: flex;
}

.vc-language {
  color: var(--vc-color-text-secondary);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}

.vc-language a:hover {
  color: var(--vc-color-text-brand);
}

.vc-menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 0;
  position: relative;
  width: 44px;
}

.vc-menu-button > span:not(.screen-reader-text) {
  background: var(--vc-color-text-primary);
  border-radius: var(--vc-radius-pill);
  height: 2px;
  left: 10px;
  position: absolute;
  transition: transform .2s ease, top .2s ease;
  width: 24px;
}

.vc-menu-button > span:nth-child(2) { top: 14px; }
.vc-menu-button > span:nth-child(3) { top: 28px; }

.vc-home-hero {
  color: var(--vc-color-text-inverse);
  height: 720px;
  overflow: hidden;
  position: relative;
}

.vc-home-hero__media,
.vc-home-hero__media img,
.vc-page-hero__media,
.vc-page-hero__media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.vc-home-hero__overlay,
.vc-page-hero__overlay {
  background: linear-gradient(90deg, rgba(7, 27, 50, .9) 0%, rgba(7, 27, 50, .62) 52%, rgba(7, 27, 50, .18) 100%);
  inset: 0;
  position: absolute;
}

.vc-home-hero__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-bottom: 48px;
  padding-top: 88px;
  position: relative;
  z-index: 1;
}

.vc-home-hero__copy {
  max-width: 760px;
}

.vc-home-hero__copy .vc-eyebrow {
  font-size: 14px;
  letter-spacing: .56px;
  line-height: 20px;
  margin-bottom: 24px;
}

.vc-home-hero h1 {
  font-size: 56px;
  letter-spacing: -1.28px;
  line-height: 60px;
  margin-bottom: 24px;
  max-width: 760px;
}

.vc-home-hero .vc-lead,
.vc-page-hero .vc-lead {
  text-wrap: pretty;
}

.vc-home-hero .vc-lead {
  margin-bottom: 24px;
  max-width: 700px;
}

.vc-home-hero__actions {
  display: flex;
  gap: 12px;
}

.vc-home-hero__proof {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .45);
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
}

.vc-home-hero__proof p {
  margin: 0;
}

.vc-home-hero__proof p:first-child {
  align-items: baseline;
  display: flex;
  gap: 12px;
}

.vc-home-hero__proof span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.vc-home-hero__proof strong {
  font-size: 48px;
  letter-spacing: -.72px;
  line-height: 56px;
}

.vc-home-hero__proof p:last-child {
  font-size: 14px;
  opacity: .84;
}

.vc-page-hero {
  color: var(--vc-color-text-inverse);
  height: 480px;
  overflow: hidden;
  position: relative;
}

.vc-page-hero__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.vc-page-hero .vc-eyebrow {
  margin-bottom: 48px;
}

.vc-page-hero h1 {
  margin-bottom: 24px;
  max-width: 760px;
}

.vc-page-hero .vc-lead {
  margin-bottom: 0;
  max-width: 700px;
}

.vc-services-section {
  background: var(--vc-color-bg-soft);
  padding-block: var(--vc-space-24);
}

.vc-section-intro {
  max-width: 840px;
}

.vc-section-intro h2 {
  margin-bottom: 16px;
}

.vc-section-intro .vc-body-large {
  color: var(--vc-color-text-secondary);
  margin-bottom: 0;
}

.vc-service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.vc-service-card {
  background: var(--vc-color-bg-page);
  border: 1px solid var(--vc-color-border-default);
  border-radius: var(--vc-radius-md);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
}

.vc-service-card__image {
  height: 156px;
  object-fit: cover;
  width: 100%;
}

.vc-service-card__content {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.vc-service-card h3 {
  margin-bottom: 16px;
}

.vc-service-card p {
  color: var(--vc-color-text-secondary);
  margin-bottom: 24px;
}

.vc-text-link {
  align-items: center;
  color: var(--vc-color-text-brand);
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  line-height: 20px;
  margin-top: auto;
}

.vc-text-link img {
  height: 16px;
  transition: transform .2s ease;
  width: 16px;
}

.vc-text-link:hover img {
  transform: translateX(3px);
}

.vc-service-card .vc-text-link img {
  transition: transform 180ms ease-out;
}

.vc-service-card .vc-text-link:focus-visible img {
  transform: translateX(4px);
}

.vc-split {
  padding-block: 64px;
}

.vc-split--soft {
  background: var(--vc-color-bg-soft);
}

.vc-split__inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  min-height: 472px;
}

.vc-split__media {
  height: 472px;
  min-width: 0;
}

.vc-split__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.vc-split--media-right .vc-split__media {
  order: 2;
}

.vc-split__copy {
  min-width: 0;
}

.vc-split__copy .vc-eyebrow {
  margin-bottom: 80px;
}

.vc-split__copy h2 {
  margin-bottom: 24px;
}

.vc-split__copy .vc-body-large {
  color: var(--vc-color-text-secondary);
  margin-bottom: 0;
}

.vc-experience {
  background: var(--vc-color-bg-page);
  padding-block: 96px;
}

.vc-experience--soft {
  background: var(--vc-color-bg-soft);
}

.vc-experience__inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 448px 1fr;
}

.vc-since-card {
  border-radius: var(--vc-radius-md);
  color: var(--vc-color-text-inverse);
  display: flex;
  flex-direction: column;
  height: 442px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.vc-since-card > *:not(img):not(.vc-since-card__overlay) {
  position: relative;
  z-index: 1;
}

.vc-since-card > img,
.vc-since-card__overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.vc-since-card > img {
  object-fit: cover;
}

.vc-since-card__overlay {
  background: var(--vc-color-bg-inverse);
  opacity: .48;
}

.vc-since-card .vc-eyebrow {
  margin-bottom: 4px;
  opacity: .78;
}

.vc-since-card strong {
  font-size: 96px;
  font-weight: 600;
  letter-spacing: -2.88px;
  line-height: 100px;
}

.vc-timeline {
  align-items: center;
  display: flex;
  gap: 12px;
}

.vc-timeline span {
  background: var(--vc-color-text-inverse);
  border: 2px solid var(--vc-color-text-inverse);
  border-radius: var(--vc-radius-pill);
  height: 8px;
  width: 8px;
}

.vc-timeline i {
  background: var(--vc-color-text-inverse);
  flex: 1;
  height: 1px;
  opacity: .35;
}

.vc-timeline em {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .96px;
  opacity: .78;
  text-transform: uppercase;
}

.vc-since-card > p:last-child {
  margin: auto 0 0;
  opacity: .76;
}

@media (hover: hover) and (pointer: fine) {
  .vc-service-card {
    position: relative;
  }

  .vc-service-card::before,
  .vc-split__media::after {
    background: #17365D;
    content: "";
    opacity: .24;
    pointer-events: none;
    position: absolute;
    transition: opacity 240ms ease-out;
    z-index: 1;
  }

  .vc-service-card::before {
    height: 156px;
    inset: 0 0 auto;
  }

  .vc-split__media {
    position: relative;
  }

  .vc-split__media::after {
    inset: 0;
  }

  .vc-service-card:hover::before,
  .vc-service-card:focus-within::before,
  .vc-split__inner:hover .vc-split__media::after,
  .vc-split__inner:focus-within .vc-split__media::after {
    opacity: 0;
  }

  .vc-service-card:hover .vc-text-link img {
    transform: translateX(4px);
  }
}

@media (min-width: 950px) and (hover: hover) and (pointer: fine) {
  .vc-since-card__overlay {
    transition: opacity 240ms ease-out;
  }

  .vc-since-card:hover .vc-since-card__overlay,
  .vc-since-card:focus-within .vc-since-card__overlay {
    opacity: 0;
  }

  .vc-timeline span {
    transition: transform 650ms cubic-bezier(.22, 1, .36, 1);
  }

  .vc-since-card:hover .vc-timeline span,
  .vc-since-card:focus-within .vc-timeline span {
    transform: translateX(323px);
  }
}

.vc-experience__copy h2 {
  margin-bottom: 20px;
}

.vc-experience__copy .vc-body-large {
  color: var(--vc-color-text-secondary);
  margin-bottom: 20px;
}

.vc-value-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vc-value-list li {
  align-items: center;
  background: var(--vc-color-bg-soft);
  border: 1px solid var(--vc-color-border-default);
  border-radius: var(--vc-radius-sm);
  display: flex;
  min-height: 64px;
  padding: 10px 16px 10px 56px;
  position: relative;
}

.vc-value-list li::before {
  background: var(--vc-color-action-primary) url("../icons/icon-check.svg") center / 28px no-repeat;
  border-radius: 50%;
  content: "";
  height: 28px;
  left: 16px;
  position: absolute;
  top: 17px;
  width: 28px;
}

.vc-process,
.vc-detail-steps {
  background: var(--vc-color-bg-soft);
  padding-block: 96px;
}

.vc-process--white,
.vc-detail-steps {
  background: var(--vc-color-bg-page);
}

.vc-process__steps {
  align-items: stretch;
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.vc-process-card {
  background: var(--vc-color-bg-page);
  border: 1px solid var(--vc-color-border-default);
  border-radius: var(--vc-radius-sm);
  flex: 1 1 0;
  min-height: 196px;
  min-width: 0;
  padding: 24px;
}

.vc-process-card__title {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.vc-process-card__title img {
  background: var(--vc-color-bg-inverse);
  border-radius: var(--vc-radius-pill);
  flex: 0 0 44px;
  height: 44px;
  object-fit: contain;
  padding: 12px;
  width: 44px;
}

.vc-process-card h3 {
  font-size: 24px;
  letter-spacing: -.12px;
  line-height: 32px;
  margin: 0;
}

.vc-process-card p {
  color: var(--vc-color-text-secondary);
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.vc-process__connector {
  align-self: center;
  flex: 0 0 32px;
}

.vc-process__connector img {
  height: 24px;
  width: 32px;
}

.vc-cta-section {
  background: var(--vc-color-bg-page);
  padding-block: 64px;
}

.vc-cta {
  align-items: center;
  background: var(--vc-color-bg-inverse);
  border-radius: var(--vc-radius-sm);
  color: var(--vc-color-text-inverse);
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) 328px;
  min-height: 288px;
  padding: 64px;
}

.vc-cta__copy h2 {
  margin-bottom: 12px;
}

.vc-cta__copy > p:last-child {
  margin: 0;
  opacity: .76;
}

.vc-cta__action {
  border-left: 1px solid rgba(255, 255, 255, .45);
  padding-left: 64px;
}

.vc-cta__action > p {
  font-size: 12px;
  margin-bottom: 12px;
  opacity: .68;
}

.vc-cta__action .vc-button {
  justify-content: space-between;
  width: 100%;
}

.vc-contact-section {
  background: var(--vc-color-bg-soft);
  padding-block: 64px;
}

.vc-contact-section__inner {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: 400px minmax(0, 1fr);
}

.vc-contact-intro > img {
  height: 72px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
  width: 131px;
}

.vc-contact-intro h2 {
  margin-bottom: 24px;
}

.vc-contact-intro .vc-body-large {
  color: var(--vc-color-text-secondary);
  margin-bottom: 24px;
}

.vc-contact-intro ul {
  color: var(--vc-color-text-secondary);
  list-style: none;
  margin: 0;
  padding: 0;
}

.vc-contact-intro li {
  margin-bottom: 12px;
  padding-left: 19px;
  position: relative;
}

.vc-contact-intro li::before {
  background: var(--vc-color-text-brand);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 7px;
}

.vc-contact-form {
  background: var(--vc-color-bg-page);
  border: 1px solid var(--vc-color-border-default);
  border-radius: var(--vc-radius-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
}

.vc-contact-form h2 {
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}

.vc-form-required {
  color: var(--vc-color-text-secondary);
  font-size: 14px;
  line-height: 22px;
  margin: -12px 0 0;
}

.vc-form-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.vc-contact-form label:not(.vc-checkbox) {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  line-height: 20px;
}

.vc-contact-form input,
.vc-contact-form select,
.vc-contact-form textarea {
  background: var(--vc-color-bg-page);
  border: 1px solid var(--vc-color-border-default);
  border-radius: var(--vc-radius-sm);
  color: var(--vc-color-text-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 12px 16px;
  width: 100%;
}

.vc-contact-form input,
.vc-contact-form select {
  height: 52px;
}

.vc-contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.vc-contact-form input::placeholder,
.vc-contact-form textarea::placeholder,
.vc-contact-form select:invalid {
  color: var(--vc-color-text-secondary);
  opacity: 1;
}

.vc-contact-form input:focus,
.vc-contact-form select:focus,
.vc-contact-form textarea:focus {
  border-color: var(--vc-color-focus);
  outline: 2px solid color-mix(in srgb, var(--vc-color-focus) 28%, transparent);
  outline-offset: 0;
}

.vc-contact-form [aria-invalid="true"] {
  border-color: var(--vc-color-status-error);
}

.vc-select-wrap {
  display: block;
  position: relative;
}

.vc-select-wrap::after {
  background: url("../icons/chevron-down.svg") center / 16px no-repeat;
  content: "";
  height: 16px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 18px;
  width: 16px;
}

.vc-select-wrap select {
  appearance: none;
  padding-right: 48px;
}

.vc-checkbox {
  align-items: flex-start;
  color: var(--vc-color-text-secondary);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  gap: 12px;
  line-height: 22px;
}

.vc-checkbox input {
  appearance: none;
  border: 1.5px solid var(--vc-color-border-brand);
  border-radius: var(--vc-radius-sm);
  flex: 0 0 20px;
  height: 20px;
  margin: 2px 0 0;
  padding: 0;
  width: 20px;
}

.vc-checkbox input:checked {
  background: var(--vc-color-action-primary) url("../icons/icon-check.svg") center / 18px no-repeat;
  border-color: var(--vc-color-action-primary);
}

.vc-checkbox a {
  color: var(--vc-color-text-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vc-contact-form > .vc-button {
  align-self: flex-start;
}

.vc-honeypot {
  left: -10000px;
  position: absolute;
}

.vc-form-feedback {
  background: color-mix(in srgb, var(--vc-color-status-success) 10%, white);
  border: 1px solid var(--vc-color-status-success);
  color: var(--vc-color-status-success);
  padding: 12px 16px;
}

.vc-form-feedback.is-error,
.vc-form-feedback:not(:empty):not([hidden]) {
  border-radius: var(--vc-radius-sm);
}

.vc-form-feedback.is-error {
  background: color-mix(in srgb, var(--vc-color-status-error) 8%, white);
  border-color: var(--vc-color-status-error);
  color: var(--vc-color-status-error);
}

.vc-legal-content {
  background: var(--vc-color-bg-page);
  padding-block: 64px;
}

.vc-legal-content__inner {
  max-width: 1440px;
}

.vc-legal-content h2 {
  margin-bottom: 32px;
}

.vc-legal-content__sections {
  max-width: 1120px;
}

.vc-legal-content__sections section + section {
  margin-top: 24px;
}

.vc-legal-content h3 {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}

.vc-legal-content p {
  color: var(--vc-color-text-secondary);
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
}

.vc-footer {
  background: var(--vc-neutral-900);
  color: var(--vc-color-text-inverse);
  min-height: 430px;
  padding: 64px var(--vc-layout-section-x) 48px;
}

.vc-footer__inner {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 1280px;
  min-height: 318px;
}

.vc-footer__grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 360px 300px 170px 1fr;
}

.vc-footer__brand img {
  height: 64px;
  margin-bottom: 12px;
  object-fit: contain;
  object-position: left center;
  width: 117px;
}

.vc-footer__brand p,
.vc-footer__group li,
.vc-footer__group p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  opacity: .68;
}

.vc-footer__group h2 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  line-height: 18px;
  margin-bottom: 10px;
  opacity: .55;
  text-transform: uppercase;
}

.vc-footer__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vc-footer__group li + li,
.vc-footer__contact p + p {
  margin-top: 10px;
}

.vc-footer a {
  transition: opacity .2s ease;
}

.vc-footer a:hover {
  opacity: 1;
}

.vc-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .18);
  margin-top: auto;
  padding-top: 12px;
}

.vc-footer__legal p {
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  opacity: .55;
}

.vc-editor-page,
.vc-error-page {
  min-height: 60vh;
  padding-block: 96px;
}

.vc-editor-page__inner,
.vc-error-page__inner {
  max-width: 1000px;
}

.vc-editor-content > * {
  max-width: 840px;
}

.vc-error-page .vc-button {
  margin-top: 24px;
}

@media (min-width: 1740px) {
  :root {
    --vc-layout-section-x: 0px;
  }

  .vc-header__inner {
    max-width: 1280px;
    padding-inline: 0;
  }

  .vc-page-hero__content,
  .vc-home-hero__content {
    max-width: 1280px;
  }
}

@media (min-width: 950px) and (max-width: 1199px) {
  :root {
    --vc-layout-section-x: 40px;
  }

  .vc-split__inner,
  .vc-experience__inner {
    gap: 48px;
  }

  .vc-contact-section__inner {
    gap: 48px;
    grid-template-columns: 34% 1fr;
  }

  .vc-footer__grid {
    gap: 32px;
    grid-template-columns: 1.2fr 1fr .75fr 1fr;
  }
}

@media (max-width: 949px) {
  :root {
    --vc-layout-section-x: 20px;
  }

  h1 {
    font-size: 40px;
    letter-spacing: -.5px;
    line-height: 46px;
  }

  h2 {
    font-size: 30px;
    letter-spacing: -.225px;
    line-height: 38px;
  }

  h3 {
    font-size: 24px;
    letter-spacing: -.5px;
    line-height: 32px;
  }

  .vc-lead,
  .vc-body-large {
    font-size: 16px;
    line-height: 26px;
  }

  .vc-header {
    height: 64px;
  }

  .vc-header__inner {
    gap: 16px;
    padding: 12px 20px;
  }

  .vc-wordmark img {
    height: 24px;
  }

  .vc-header__controls {
    gap: 0;
    margin-left: auto;
  }

  .vc-language {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 44px;
  }

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

  .vc-nav {
    background: var(--vc-color-bg-page);
    border-top: 1px solid var(--vc-color-border-default);
    display: none;
    height: calc(100vh - 64px);
    left: 0;
    margin: 0;
    overflow-y: auto;
    padding: 24px 20px;
    position: absolute;
    top: 64px;
    width: 100%;
  }

  .is-menu-open .vc-nav {
    display: block;
  }

  .vc-nav__list,
  .vc-nav .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .vc-nav a {
    border-bottom: 1px solid var(--vc-color-border-default);
    justify-content: flex-start;
    min-height: 52px;
    padding-inline: var(--vc-layout-section-x);
    width: 100%;
  }

  .vc-nav a::after {
    bottom: -1px;
    left: 0;
    transform-origin: left;
    width: 100%;
  }

  .vc-nav a:hover::after,
  .vc-nav a[aria-current="page"]::after,
  .vc-nav .current-menu-item > a::after {
    transform: scaleX(1);
  }

  .is-menu-open .vc-menu-button > span:nth-child(2) {
    top: 21px;
    transform: rotate(45deg);
  }

  .is-menu-open .vc-menu-button > span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .vc-home-hero {
    min-height: 820px;
    height: auto;
  }

  .vc-home-hero__media {
    object-position: center center;
  }

  .vc-home-hero__content {
    min-height: 820px;
    padding-bottom: 32px;
    padding-top: 64px;
  }

  .vc-home-hero__copy .vc-eyebrow {
    font-size: 12px;
    line-height: 18px;
  }

  .vc-home-hero h1 {
    font-size: 36px;
    letter-spacing: -.75px;
    line-height: 42px;
  }

  .vc-home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vc-home-hero__proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .vc-home-hero__proof p:last-child {
    font-size: 12px;
  }

  .vc-page-hero {
    height: auto;
    min-height: 520px;
  }

  .vc-page-hero__content {
    min-height: 520px;
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .vc-page-hero .vc-eyebrow {
    margin-bottom: 48px;
  }

  .vc-page-hero h1 {
    margin-bottom: 24px;
    max-width: 335px;
  }

  .vc-page-hero .vc-lead {
    max-width: 335px;
  }

  .vc-page-hero--service .vc-page-hero__media img {
    object-position: center center;
  }

  .vc-services-section,
  .vc-experience,
  .vc-process,
  .vc-detail-steps {
    padding-block: 64px;
  }

  .vc-service-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .vc-service-card {
    min-height: 0;
  }

  .vc-service-card__image {
    height: 156px;
  }

  .vc-service-card__content {
    min-height: 300px;
  }

  .vc-split {
    padding-block: 64px;
  }

  .vc-split__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .vc-split__media,
  .vc-split--media-right .vc-split__media {
    height: 240px;
    order: 0;
    width: 100%;
  }

  .vc-split__copy .vc-eyebrow {
    margin-bottom: 80px;
  }

  .vc-split__copy h2 {
    margin-bottom: 24px;
  }

  .vc-experience__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .vc-since-card {
    height: 442px;
    width: 100%;
  }

  .vc-since-card strong {
    font-size: 80px;
    line-height: 86px;
  }

  .vc-value-list li {
    min-height: 68px;
  }

  .vc-process__steps {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .vc-process-card {
    min-height: 184px;
  }

  .vc-process__connector {
    align-self: center;
    height: 32px;
    width: 24px;
  }

  .vc-process__connector img {
    height: 32px;
    width: 24px;
  }

  .vc-cta-section {
    padding-block: 48px;
  }

  .vc-cta {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: 443px;
    padding: 40px 24px;
  }

  .vc-cta__action {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .45);
    padding-left: 0;
    padding-top: 32px;
    width: 100%;
  }

  .vc-contact-section {
    padding-block: 64px;
  }

  .vc-contact-section__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .vc-contact-form {
    padding: 24px 20px;
    width: 100%;
  }

  .vc-form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vc-checkbox {
    min-height: 44px;
  }

  .vc-contact-form > .vc-button {
    align-self: stretch;
  }

  .vc-legal-content {
    padding-block: 64px;
  }

  .vc-footer {
    min-height: 745px;
    padding: 48px 20px;
  }

  .vc-footer__inner {
    min-height: 649px;
  }

  .vc-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .vc-footer__brand img {
    margin-bottom: 12px;
  }

  .vc-footer__group li + li,
  .vc-footer__contact p + p {
    margin-top: 6px;
  }

  .vc-footer__legal {
    margin-top: 32px;
  }

  .vc-editor-page,
  .vc-error-page {
    padding-block: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .vc-service-card::before,
  .vc-service-card .vc-text-link img,
  .vc-button--secondary img,
  .vc-split__media::after,
  .vc-since-card__overlay,
  .vc-timeline span {
    transition-duration: 0s !important;
  }

  .vc-since-card:hover .vc-timeline span,
  .vc-since-card:focus-within .vc-timeline span {
    transform: none;
  }
}
