:root {
  --blue-900: #0f163e;
  --white: white;
  --primary: #a8856b;
  --grey-300: #dcdde0;
  --grey-500: #878a94;
  --grey-600: #535766;
  --grey-100: whitesmoke;
  --grey-400: #afb1b8;
  --blue-800: #272d43;
  --blue-700: #30395d;
  --teal: #007e87;
  --grey-200: #f2f2f2;
  --blue-600: #59617d;
}

.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-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(--blue-900);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

h1 {
  color: var(--blue-900);
  letter-spacing: -.075rem;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 1;
}

h2 {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 110%;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--blue-900);
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: underline;
}

.nav-menu {
  align-items: center;
  margin-right: 0;
  display: flex;
}

.logo {
  max-width: 100%;
  max-height: 32px;
  margin-top: 2px;
  margin-right: 0;
}

.nav-logo {
  margin-right: 8px;
  padding-left: 0;
}

.navbar {
  background-color: var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 160px;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: fixed;
  top: 0;
  box-shadow: 0 2px 5px #53576642;
}

.nav-link {
  padding: 16px 0 16px 16px;
  transition: all .2s;
}

.nav-link:hover {
  opacity: .6;
  color: var(--primary);
}

.nav-link.w--current {
  color: var(--primary);
}

.nav-link.primary {
  border: 1px solid var(--grey-300);
  margin-left: 16px;
  padding: 14px 32px;
  font-size: 1rem;
  line-height: 1.3;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 0;
  padding-left: 9.5vw;
  padding-right: 9.5vw;
  display: flex;
}

.navbar-text {
  color: var(--grey-500);
  max-width: 30%;
  margin-bottom: 0;
  padding-top: 0;
}

.left-nav-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 55%;
  padding-top: 0;
  display: flex;
}

.text-5xl {
  letter-spacing: -.4rem;
  font-size: 6.4rem;
  font-weight: 300;
  line-height: 1.1;
}

.text-large {
  letter-spacing: -.025rem;
  margin-bottom: 0;
  font-size: 1.75rem;
  line-height: 1.2;
}

.text-large.grey-500-text {
  text-align: left;
  font-size: 1.6rem;
}

.text-base {
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.5;
}

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

.text-base.footer-link {
  color: var(--grey-600);
  cursor: pointer;
  margin-bottom: 4px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.text-base.footer-link:hover {
  color: var(--primary);
}

.section {
  min-height: 40px;
  margin-bottom: 200px;
}

.section.hero-section {
  align-items: flex-end;
  height: 85vh;
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.section.grey-background {
  background-color: var(--grey-100);
  padding-top: 200px;
  padding-bottom: 200px;
}

.section.grey-background.padding-bt-160 {
  padding-top: 160px;
  padding-bottom: 160px;
}

.section.gray-bg-section {
  background-color: var(--grey-100);
}

.text-3xl {
  letter-spacing: -.125rem;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.text-4xl {
  letter-spacing: -.075rem;
  font-size: 4.5rem;
  line-height: 1;
}

.text-2xl {
  letter-spacing: -.05rem;
  font-size: 3rem;
  line-height: 1.1;
}

.text-2xl.margin-top-8 {
  margin-top: 8px;
}

.text-s {
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.1;
}

.text-s.navbar-text {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.text-s.navbar-text.margin-right-16 {
  max-width: none;
  margin-right: 32px;
}

.text-medium {
  letter-spacing: -.025rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.6;
}

.text-medium.hero-subheading {
  color: var(--grey-300);
  letter-spacing: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.text-medium.text-grey-600 {
  color: var(--blue-800);
}

.text-medium.text-grey-600.callout-body {
  color: var(--blue-900);
  font-size: 1.1rem;
  line-height: 1.3;
}

.text-medium.text-grey-600.bullets {
  font-size: 1.1rem;
}

.text-medium.margin-bottom-24.testimonial-body {
  font-size: 1.1rem;
  line-height: 1.4;
}

.text-medium.margin-bottom-16 {
  margin-bottom: 16px;
  font-style: normal;
}

.text-medium.services {
  padding-right: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 9.5vw;
  padding-right: 9.5vw;
  font-style: normal;
}

.container.hero-content-container {
  position: static;
  bottom: 0;
}

.container.testimonials-container {
  color: var(--white);
  text-align: center;
}

.text-field {
  background-color: var(--blue-700);
  object-fit: fill;
  border: 1px solid #fff3;
  flex: 0 auto;
  height: auto;
  margin-bottom: 0;
  padding: 16px;
  font-size: 16px;
}

.text-field:focus {
  border-color: var(--primary);
  color: var(--white);
}

.text-field::placeholder {
  color: #fff9;
}

.text-field.light-textfield {
  background-color: var(--grey-100);
  margin-bottom: 40px;
}

.text-field.light-textfield:focus {
  color: var(--blue-900);
}

.text-field.light-textfield::placeholder {
  color: var(--grey-600);
}

.text-xl {
  font-size: 2rem;
  line-height: 1.2;
}

.text-xl.margin-bottom-24.callouts {
  color: var(--teal);
  font-size: 1.6rem;
  font-weight: 500;
}

.text-xl.margin-bottom-56.max-width-80 {
  max-width: 90%;
  font-size: 1.5rem;
  font-style: normal;
}

.text-xl.trace {
  line-height: 1.4;
}

.text-xl.trace.fade-in-100ms {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  font-size: 2rem;
}

._12-column-grid {
  grid-column-gap: 40px;
  grid-row-gap: 80px;
  grid-template-rows: 1fr;
  grid-template-columns: minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr);
  grid-auto-columns: 1fr;
  width: auto;
}

._12-column-grid.margin-top-112 {
  margin-top: 112px;
}

._12-column-grid.footer-grid {
  grid-column-gap: 40px;
  grid-row-gap: 112px;
  grid-template-columns: minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(23px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr) minmax(32px, 1fr);
}

.white-text {
  color: var(--white);
  letter-spacing: -1px;
  font-size: 2.7rem;
  font-weight: 300;
  line-height: 1.2;
}

.hero-text-container {
  z-index: 3;
  background-color: var(--blue-900);
  padding-top: 15vh;
  padding-bottom: 10vh;
  position: relative;
}

.graphic-element {
  z-index: 0;
  position: absolute;
  top: -3.5vh;
  right: 25.4vw;
}

.graphic-element.left-aligned {
  left: 11.8vw;
  right: auto;
}

.hero-image {
  z-index: -1;
  width: 90.5vw;
  max-width: none;
  margin-top: 0;
  margin-left: auto;
  display: block;
  position: static;
}

.scroll-down {
  background-color: var(--grey-100);
  object-fit: fill;
  justify-content: center;
  align-items: center;
  width: 9.5vw;
  height: 15vh;
  display: flex;
  position: relative;
  top: 0;
  bottom: 0;
}

.hero-image-container {
  background-color: var(--grey-100);
  padding-bottom: 0;
  display: block;
}

.grey-500-text {
  color: var(--grey-500);
  font-size: 14px;
}

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

.primary-text.margin-left-8 {
  margin-left: 8px;
  font-size: 4.4rem;
}

.navbar-text-container {
  max-width: 60%;
  display: flex;
}

.margin-bottom-104 {
  margin-bottom: 104px;
}

.usp-container {
  border: 1px solid var(--grey-200);
  margin-top: 0;
  padding: 64px 40px 40px;
}

.usp-container.fade-in {
  background-color: var(--grey-100);
  border-style: none;
  border-width: 0;
}

.usp-container.fade-in-100ms {
  border: 0px none var(--grey-100);
  background-color: var(--grey-100);
}

.usp-container.fade-in-200ms {
  background-color: var(--grey-100);
}

.icon {
  margin-bottom: 40px;
}

.margin-bottom-24 {
  margin-bottom: 24px;
}

.section-heading-container {
  align-items: center;
  margin-bottom: 48px;
  display: block;
}

.dot {
  background-color: var(--teal);
  border-radius: 100vw;
  width: 8px;
  height: 8px;
  margin-right: 8px;
}

.accordion-wrapper {
  border-top: 1px solid var(--grey-300);
  padding-top: 0;
}

.accordion-item {
  border-bottom: 1px solid var(--grey-300);
  cursor: pointer;
  border-radius: 1px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.accordion-item-trigger {
  cursor: pointer;
}

.accordion-item-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.accordion-item-content {
  width: 37%;
  margin-top: 0;
  margin-left: auto;
  padding-top: 10px;
  overflow: hidden;
}

.deliverables-container {
  margin-top: 32px;
}

.deliverable-container {
  border-bottom: 1px solid var(--grey-300);
  padding-top: 10px;
  padding-bottom: 10px;
}

.margin-top-48 {
  margin-top: 48px;
}

.accordion-item-icon-container {
  justify-content: space-between;
  align-items: center;
  width: 37%;
  margin-top: 8px;
  display: flex;
}

.testimonial-container-background {
  background-color: var(--blue-900);
  color: var(--white);
  background-image: url('../images/TVSGlobal_Trace_DK.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.testimonial-container-background.no-margin-bottom {
  -webkit-text-fill-color: inherit;
  object-fit: none;
  background-image: url('../images/TVSGlobal_Trace_DK.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
  margin-bottom: 0;
}

.testimonial-container-background.no-margin-bottom.section {
  background-position: 50%;
}

.testimonial-container-background.fullscreen-image-section {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

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

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

.grey-400-text {
  color: var(--grey-400);
}

.margin-top-24 {
  margin-top: 24px;
}

.margin-bottom-32 {
  margin-bottom: 32px;
  margin-left: -5px;
}

.approach-item-container {
  max-width: 80%;
}

.margin-top-12 {
  margin-top: 12px;
}

.large-image-container {
  width: 90.5vw;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.white-background {
  background-color: var(--white);
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.testimonials-content-container {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--white);
  text-align: center;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 112px;
  display: flex;
  position: relative;
}

.testimonials-container-background {
  z-index: -1;
  background-color: var(--blue-900);
  background-image: linear-gradient(to bottom, var(--blue-900), var(--blue-900) 31%, var(--blue-900) 62%, var(--grey-200) 85%, white);
  height: 80%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.testimonial-container {
  border-bottom: 4px solid var(--primary);
  background-color: var(--white);
  color: var(--blue-900);
  text-align: left;
  padding: 64px 48px 56px 40px;
  position: relative;
  box-shadow: 0 10px 60px #0000000a;
}

.testimonial-item-graphic {
  max-width: 20%;
  position: absolute;
  top: -2.5vh;
  left: auto;
  right: auto;
}

.client-container {
  align-items: center;
  display: flex;
}

.client-avatar {
  background-color: var(--grey-300);
  object-fit: cover;
  border-radius: 100vw;
  width: 48px;
  height: 48px;
  margin-right: 16px;
  padding-top: 0;
}

.grey-600-text {
  color: var(--grey-600);
}

.grey-600-text.footer-text {
  font-size: 15px;
  line-height: 168%;
}

.grey-600-text.footer-text.text-base {
  font-style: normal;
}

.testimonials-heading-container {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.split-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.split-container.reverse {
  flex-direction: row-reverse;
}

.image-container {
  width: 45%;
  position: relative;
  overflow: visible;
}

.split-section-content-container {
  width: 38%;
}

.button {
  border: 1px solid var(--grey-300);
  color: var(--blue-900);
  cursor: pointer;
  background-color: #0000;
  margin-top: 48px;
  padding: 16px 40px;
  transition: all .2s;
}

.button:hover {
  background-color: var(--blue-900);
  color: var(--white);
}

.split-section-graphic-element {
  position: absolute;
  top: -3vh;
  right: 6vw;
}

.team-member-image-container {
  background-color: var(--grey-100);
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 32px;
  padding-top: 0;
  display: flex;
}

.team-member-image {
  width: 100%;
}

.email-link {
  color: var(--primary);
  cursor: pointer;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.email-link-icon {
  margin-left: 8px;
}

.email-link-icon.margin-left-16 {
  margin-left: 16px;
}

.email-link-icon.large-icon {
  height: 20px;
}

.newsletter-container {
  z-index: auto;
  background-color: var(--blue-900);
  color: var(--white);
  background-image: url('../images/background-graphic.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 112px;
  padding-bottom: 112px;
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.newsletter-container.fade-in {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.form {
  align-items: flex-start;
  display: flex;
}

.form-block {
  width: 58%;
  margin-top: 64px;
  margin-bottom: 0;
}

.submit-button {
  background-color: var(--primary);
  cursor: pointer;
  margin-left: 8px;
  padding: 16px 40px;
  transition: all .2s;
}

.submit-button:hover {
  background-color: var(--white);
  color: var(--blue-900);
}

.submit-button.no-margin-left {
  margin-left: 0;
}

.submit-button.margin-top-24 {
  text-align: center;
  max-width: 80%;
  margin-left: 20px;
  margin-right: 20px;
}

.margin-bottom-56 {
  margin-bottom: 56px;
}

.subfooter {
  border-top: 1px solid var(--grey-300);
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0;
  display: flex;
}

.subfooter-links {
  justify-content: flex-start;
  align-items: center;
  padding-top: 32px;
  display: flex;
}

.subfooter-link {
  color: var(--grey-500);
  margin-right: 24px;
  text-decoration: none;
  transition: all .2s;
}

.subfooter-link:hover {
  color: var(--primary);
}

.footer {
  padding-bottom: 48px;
}

.error-message {
  text-align: center;
  background-color: #ff4a4a;
}

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

.client-logo-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.scroll-progress-bar {
  z-index: 999999;
  background-color: var(--primary);
  transform-origin: 0%;
  width: 100%;
  height: 4px;
  position: fixed;
  inset: 0% auto auto 0%;
}

.preloader {
  z-index: 99999;
  background-color: var(--blue-900);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0;
}

.hero-image-wrapper {
  z-index: 1;
  width: 90.5vw;
  margin-top: -40vh;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.styleguide-hero {
  background-color: var(--blue-900);
  color: var(--white);
  padding-top: 200px;
  padding-bottom: 104px;
}

.swatch {
  background-color: #fbfaf8;
  border: 0 solid #e6e6e6;
  width: 100%;
  height: 200px;
}

.swatch.blue-900 {
  background-color: var(--blue-900);
}

.swatch.blue-800 {
  background-color: var(--blue-800);
  color: var(--blue-800);
}

.swatch.blue-700 {
  background-color: var(--blue-700);
  color: var(--blue-700);
}

.swatch.blue-600 {
  background-color: var(--blue-600);
  color: var(--blue-700);
}

.swatch.grey-600 {
  background-color: var(--grey-600);
  color: var(--blue-700);
}

.swatch.grey-500 {
  background-color: var(--grey-500);
  color: var(--blue-700);
}

.swatch.grey-400 {
  background-color: var(--grey-400);
  color: var(--blue-700);
}

.swatch.grey-300 {
  background-color: var(--grey-300);
  color: var(--blue-700);
}

.swatch.grey-200 {
  background-color: var(--grey-200);
  color: var(--blue-700);
}

.swatch.grey-100 {
  background-color: var(--grey-100);
  color: var(--blue-700);
}

.swatch.white {
  background-color: var(--white);
  color: var(--blue-700);
  border-width: 1px;
}

.typography-container {
  margin-bottom: 48px;
}

.rich-text h2 {
  margin-bottom: 24px;
}

.rich-text h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}

.rich-text h4 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 400;
}

.rich-text p {
  color: var(--grey-600);
}

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

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

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

.field-label-2 {
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
}

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

.bold-text {
  letter-spacing: 0;
  font-size: 1rem;
}

.text-main-body {
  letter-spacing: -.05rem;
  font-size: 3rem;
  line-height: 1.1;
}

.text-main-body.margin-bottom-104.fade-in {
  letter-spacing: -.03rem;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.3;
}

.text-main-body.margin-top-8 {
  margin-top: 8px;
}

.text-span-2, .text-span-3, .text-span-4 {
  color: var(--teal);
  font-weight: 700;
}

.bold-text-2 {
  color: var(--teal);
}

.text-span-5, .text-span-6, .text-span-7, .bullet-color, .text-span-8 {
  color: var(--teal);
  font-weight: 700;
}

.image-2 {
  mix-blend-mode: normal;
  transition: opacity .2s;
}

.text-span-9 {
  color: var(--teal);
}

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

.bold-text-3 {
  margin-left: 1px;
  padding-left: 0;
  font-size: 1.2rem;
}

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

.image-3 {
  position: relative;
  top: -50px;
  left: 600px;
}

@media screen and (max-width: 991px) {
  .nav-menu {
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 28px;
    display: flex;
  }

  .navbar {
    height: 160px;
    margin-top: 0;
    top: 0;
  }

  .nav-link {
    text-align: center;
    display: block;
  }

  .nav-link.primary {
    text-align: center;
    object-fit: fill;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    max-width: 160px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
    left: auto;
    overflow: visible;
  }

  .nav-container {
    justify-content: space-between;
    padding: 14px 32px;
  }

  .top-line {
    background-color: var(--blue-900);
    width: 32px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .bottom-line {
    background-color: var(--blue-900);
    width: 32px;
    height: 2px;
    margin-top: 8px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar-text {
    max-width: 60%;
  }

  .menu-button-2 {
    background-color: #0000;
    margin-top: 0;
  }

  .menu-button-2:active, .menu-button-2:focus {
    background-color: #0000;
  }

  .menu-button-2.w--open {
    background-color: #0000;
    margin-top: -12px;
  }

  .left-nav-container {
    width: 68%;
    padding-top: 0;
  }

  .section {
    margin-bottom: 120px;
  }

  .section.hero-section {
    height: auto;
    margin-top: 200px;
  }

  .text-3xl {
    font-size: 3.5rem;
  }

  .text-medium.hero-subheading {
    color: var(--grey-400);
    max-width: 90%;
  }

  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  ._12-column-grid {
    grid-template-columns: minmax(32px, 1fr);
  }

  ._12-column-grid.numbers-grid {
    grid-template-columns: minmax(32px, 1fr) minmax(32px, 1fr);
  }

  ._12-column-grid.footer-grid {
    grid-template-columns: minmax(32px, 1fr) 1fr 1fr;
  }

  .hero-text-container {
    padding-left: 48px;
    padding-right: 48px;
  }

  .graphic-element {
    z-index: 7;
  }

  .hero-image {
    width: 100%;
    margin-top: 0;
  }

  .scroll-down {
    display: none;
    overflow: visible;
  }

  .accordion-item-content {
    width: auto;
  }

  .testimonials-container-background {
    height: 95%;
  }

  .testimonial-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .split-container, .split-container.reverse {
    flex-direction: column;
  }

  .image-container {
    width: 75%;
  }

  .split-section-content-container {
    width: 75%;
    margin-top: 64px;
  }

  .newsletter-container {
    height: 95%;
  }

  .form-block {
    width: 80%;
  }

  .hero-image-wrapper {
    width: 100vw;
    margin-top: -10vh;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3.1rem;
  }

  .nav-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar {
    height: 160px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-container {
    align-items: center;
  }

  .navbar-text {
    max-width: 70%;
    display: none;
  }

  .menu-button-2, .menu-button-2.w--open {
    margin-top: 0;
  }

  .left-nav-container {
    width: 70%;
  }

  .text-base.accordion-text-link {
    display: none;
  }

  .section.hero-section {
    margin-top: 200px;
  }

  .text-3xl {
    font-size: 3rem;
  }

  .container {
    padding-right: 32px;
  }

  ._12-column-grid.numbers-grid {
    grid-template-columns: minmax(32px, 1fr) 1fr;
  }

  .hero-image {
    width: 100vw;
    margin-top: 0;
  }

  .accordion-item-icon-container {
    width: auto;
  }

  .testimonials-heading-container {
    width: 80%;
  }

  .split-container {
    flex-direction: column;
  }

  .form-block {
    width: 90%;
  }

  .hero-image-wrapper {
    margin-top: -7vh;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    letter-spacing: -.05rem;
    font-size: 2rem;
  }

  .nav-menu {
    padding-left: 24px;
    padding-right: 24px;
  }

  .logo {
    max-height: 24px;
  }

  .navbar {
    height: 160px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .text-5xl {
    letter-spacing: -.075rem;
    font-size: 4rem;
  }

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

  .section {
    margin-bottom: 96px;
  }

  .text-3xl {
    letter-spacing: -.025rem;
    font-size: 2rem;
  }

  .text-2xl {
    font-size: 1.75rem;
  }

  .text-2xl.margin-bottom-104 {
    letter-spacing: -.05rem;
  }

  .text-medium.hero-subheading {
    max-width: none;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container.hero-content-container, .container.testimonials-container {
    padding-left: 0;
    padding-right: 0;
  }

  .text-field {
    border-radius: 0;
    margin-bottom: 16px;
  }

  ._12-column-grid.footer-grid {
    grid-column-gap: 40px;
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .hero-text-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-image {
    margin-top: 0;
  }

  .accordion-item-icon-container {
    margin-top: 4px;
  }

  .testimonial-container-background.no-margin-bottom {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .approach-item-container {
    max-width: none;
  }

  .testimonials-content-container {
    text-align: center;
  }

  .testimonials-container-background {
    height: 93%;
  }

  .testimonial-container {
    width: 90%;
    padding: 40px 16px 24px;
    box-shadow: 0 10px 60px #0000001a;
  }

  .client-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-avatar {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    margin-right: 0;
  }

  .testimonials-heading-container {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 90%;
    display: flex;
  }

  .image-container, .split-section-content-container {
    width: 100%;
  }

  .newsletter-container {
    height: 93%;
  }

  .form {
    flex-direction: column;
    align-items: center;
  }

  .submit-button {
    align-self: stretch;
    margin-left: 0;
  }

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

  .subfooter-links {
    margin-bottom: 24px;
  }

  .text-main-body {
    font-size: 1.75rem;
  }

  .text-main-body.margin-bottom-104 {
    letter-spacing: -.05rem;
  }
}

#w-node-_572008b5-6a52-9e29-4eeb-6a940869a220-b72b31a4 {
  grid-area: 1 / 2 / 2 / 8;
  align-self: auto;
}

#w-node-ba2c9554-e4d0-f61d-4b8f-37032c11386b-b72b31a4 {
  grid-area: 1 / 9 / 2 / 12;
  align-self: auto;
}

#w-node-_7bd2929c-a2f7-23cb-115d-d4cc8a3ad889-b72b31a4, #w-node-_08690aa7-b29e-b598-94e3-fe24083c638e-b72b31a4, #w-node-_034291c8-5b3e-6c4b-ddf8-7acd5dcc4de1-b72b31a4, #w-node-c701f1b8-5d71-99e4-386b-91654a91ea78-b72b31a4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_2bcbaff2-4282-8174-67ed-71508fd029f5-b72b31a4 {
  grid-area: 1 / 2 / 2 / 12;
}

#w-node-_5e7c9c55-e21f-f355-dd78-4ec6af402d53-b72b31a4, #w-node-_43779d23-d05d-de5d-219f-d55267cad966-b72b31a4, #w-node-_7c91e8e0-7baf-afff-a726-a390dfb7cfc1-b72b31a4 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-e7cc651f-d774-8cca-a42e-87b4bf0a073b-b72b31a4 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_87298b52-3e72-d89a-d563-23a46255731f-b72b31a4 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-d4216d4d-058d-5ba1-08d0-c20abf6572df-b72b31a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center end;
}

#w-node-c0305735-62d5-f6d4-083c-8abb263e626e-b72b31a4 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_1ca82818-0857-6c41-e162-20e98b1afe5a-b72b31a4 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_1ca82818-0857-6c41-e162-20e98b1afe5d-b72b31a4 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-_1ca82818-0857-6c41-e162-20e98b1afe5f-b72b31a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center end;
}

#w-node-_1ca82818-0857-6c41-e162-20e98b1afe61-b72b31a4 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-f42a3233-affa-b1aa-f0c2-28a5dbf3792f-b72b31a4 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-f42a3233-affa-b1aa-f0c2-28a5dbf37932-b72b31a4 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-f42a3233-affa-b1aa-f0c2-28a5dbf37934-b72b31a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center end;
}

#w-node-f42a3233-affa-b1aa-f0c2-28a5dbf37936-b72b31a4 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_47d720f7-f516-e785-3c1a-853930f11fde-b72b31a4 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_47d720f7-f516-e785-3c1a-853930f11fe1-b72b31a4 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-_47d720f7-f516-e785-3c1a-853930f11fe3-b72b31a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center end;
}

#w-node-_47d720f7-f516-e785-3c1a-853930f11fe5-b72b31a4 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_3e669080-6b9e-4823-a01e-7459afd7aded-b72b31a4 {
  grid-area: 1 / 1 / 2 / 9;
  align-self: center;
}

#w-node-f06c8e7f-a821-9e22-59d3-8bdb55f8f17d-b72b31a4, #w-node-_7c6e8f16-1bea-c60b-c449-412187c113bb-b72b31a4, #w-node-_3be23ece-4135-1733-1e07-56274e20060f-b72b31a4 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_83915a5a-2231-ce0f-52c2-a0afb3b8f38c-b72b31a4 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_7a44fcc0-2248-1f41-3d17-00c12e692884-b72b31a4 {
  grid-area: 1 / 6 / 2 / 10;
}

#w-node-e181c8ae-e82f-233b-299d-a69b819827af-b72b31a4 {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-b4ab2a26-712d-3709-5533-1c74c996a32a-b72b31a4 {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-_9aa9054d-d25a-1e03-3d50-a7352697c1f0-b72b31a4, #w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af465-b72b31a9 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_86ef8a65-2cdd-c12e-2455-99360350c73a-b72b31aa, #w-node-_1dfae30e-f714-b154-3986-cd87b609ad4a-b72b31aa, #w-node-c51aef2a-89a7-8ba8-79d6-e7fc1fbd18bc-b72b31aa, #w-node-_4aa2fcd7-0c1f-4eaa-8bfd-0842524234af-b72b31aa, #w-node-_01b6033f-6f89-41b7-ba4f-f9e479107d18-b72b31aa, #w-node-f46cf22a-c09b-cb25-5b65-2d20b783fc63-b72b31aa, #w-node-_17050365-5cc4-f236-8d85-c21bad7c4213-b72b31aa, #w-node-ccba1c45-4997-8e62-ec3d-53d1e3486b11-b72b31aa, #w-node-_27c4deff-e387-5923-afaf-17ddaf702973-b72b31aa, #w-node-_3f53e304-4dc5-f0a9-ae7e-dcd8eaabeb71-b72b31aa, #w-node-_44afd88b-bdd3-18b2-fa3c-72d764a30bfa-b72b31aa {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af444-b72b31aa {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af44c-b72b31aa {
  grid-area: 1 / 7 / 2 / 9;
}

#w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af465-b72b31aa {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

@media screen and (max-width: 991px) {
  #w-node-_572008b5-6a52-9e29-4eeb-6a940869a220-b72b31a4, #w-node-ba2c9554-e4d0-f61d-4b8f-37032c11386b-b72b31a4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7bd2929c-a2f7-23cb-115d-d4cc8a3ad889-b72b31a4, #w-node-_08690aa7-b29e-b598-94e3-fe24083c638e-b72b31a4, #w-node-_034291c8-5b3e-6c4b-ddf8-7acd5dcc4de1-b72b31a4, #w-node-c701f1b8-5d71-99e4-386b-91654a91ea78-b72b31a4 {
    grid-column: span 1 / span 1;
    justify-self: center;
  }

  #w-node-_2bcbaff2-4282-8174-67ed-71508fd029f5-b72b31a4, #w-node-_5e7c9c55-e21f-f355-dd78-4ec6af402d53-b72b31a4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_43779d23-d05d-de5d-219f-d55267cad966-b72b31a4, #w-node-_7c91e8e0-7baf-afff-a726-a390dfb7cfc1-b72b31a4 {
    grid-column: span 1 / span 1;
  }

  #w-node-_83915a5a-2231-ce0f-52c2-a0afb3b8f38c-b72b31a4 {
    grid-column: span 3 / span 3;
  }

  #w-node-_7a44fcc0-2248-1f41-3d17-00c12e692884-b72b31a4, #w-node-e181c8ae-e82f-233b-299d-a69b819827af-b72b31a4, #w-node-b4ab2a26-712d-3709-5533-1c74c996a32a-b72b31a4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9aa9054d-d25a-1e03-3d50-a7352697c1f0-b72b31a4, #w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af465-b72b31a9 {
    grid-column: span 3 / span 3;
  }

  #w-node-_86ef8a65-2cdd-c12e-2455-99360350c73a-b72b31aa, #w-node-_1dfae30e-f714-b154-3986-cd87b609ad4a-b72b31aa, #w-node-c51aef2a-89a7-8ba8-79d6-e7fc1fbd18bc-b72b31aa, #w-node-_4aa2fcd7-0c1f-4eaa-8bfd-0842524234af-b72b31aa, #w-node-_01b6033f-6f89-41b7-ba4f-f9e479107d18-b72b31aa, #w-node-f46cf22a-c09b-cb25-5b65-2d20b783fc63-b72b31aa, #w-node-_17050365-5cc4-f236-8d85-c21bad7c4213-b72b31aa, #w-node-ccba1c45-4997-8e62-ec3d-53d1e3486b11-b72b31aa, #w-node-_27c4deff-e387-5923-afaf-17ddaf702973-b72b31aa, #w-node-_3f53e304-4dc5-f0a9-ae7e-dcd8eaabeb71-b72b31aa, #w-node-_44afd88b-bdd3-18b2-fa3c-72d764a30bfa-b72b31aa {
    grid-column: span 1 / span 1;
  }

  #w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af444-b72b31aa {
    grid-column: span 3 / span 3;
  }

  #w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af44c-b72b31aa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af465-b72b31aa {
    grid-column: span 3 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3e669080-6b9e-4823-a01e-7459afd7aded-b72b31a4, #w-node-_83915a5a-2231-ce0f-52c2-a0afb3b8f38c-b72b31a4, #w-node-_9aa9054d-d25a-1e03-3d50-a7352697c1f0-b72b31a4, #w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af465-b72b31a9, #w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af444-b72b31aa, #w-node-d4e6e971-481a-2ca6-2e77-07bb7e8af465-b72b31aa {
    grid-column: span 1 / span 1;
  }
}


