:root {
  --cream-primary: #fff7ec;
  --navy-primary: #002538;
  --teal-primary: #00a7b5;
  --teal-accessible: #00636f;
  --body: #4a5155;
  --peach-primary: #e86952;
  --white: white;
  --light-blue: #94d2e8;
  --mustard-complimentary: #d4ae2a;
  --mustard-accessible: #af9023;
  --grey-secondary: #7f7f7e;
  --silver-complimentary: #b2c2cb;
  --pink-complimentary: #fdddd5;
  --darker-teal: #004951;
}

.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;
}

body {
  color: #4a5155;
  font-family: calibri;
  font-size: 20px;
  line-height: 140%;
}

h1 {
  color: var(--cream-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: degular, sans-serif;
  font-size: 4em;
  font-weight: 600;
  line-height: 110%;
}

h2 {
  color: var(--navy-primary);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 110%;
}

h3 {
  color: var(--teal-primary);
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: 2.2em;
  font-weight: 600;
  line-height: 110%;
}

h4 {
  color: var(--teal-primary);
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 130%;
}

h5 {
  color: var(--teal-primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.05em;
  font-weight: 600;
  line-height: 130%;
}

p {
  margin-bottom: 20px;
  font-size: 1em;
}

a {
  color: var(--teal-accessible);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

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

li {
  padding-bottom: 6px;
}

strong {
  font-weight: 600;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.hero {
  background-color: var(--navy-primary);
  color: var(--body);
  width: 100%;
  height: 100%;
  min-height: 85vh;
  overflow: hidden;
}

.header {
  z-index: 99;
  background-color: var(--navy-primary);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 32px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.actions-col {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo {
  width: 176px;
}

.btn {
  border: 1px solid var(--cream-primary);
  color: var(--cream-primary);
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s;
  display: inline-block;
}

.btn:hover {
  background-color: var(--cream-primary);
  color: var(--teal-primary);
}

.btn.btn-secondary {
  border-color: var(--teal-accessible);
  color: var(--teal-accessible);
  text-align: center;
  background-color: #0000;
  font-size: 1em;
}

.btn.btn-secondary:hover {
  background-color: var(--teal-accessible);
  color: var(--cream-primary);
}

.btn-label {
  letter-spacing: .01em;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 1em;
  line-height: 100%;
  text-decoration: none;
}

.navbar {
  background-color: #0000;
  align-items: center;
  display: flex;
}

.nav-menu {
  background-color: var(--cream-primary);
  justify-content: flex-start;
  align-items: flex-start;
  width: 474px;
  height: 90%;
  min-height: 100vh;
  padding-top: 88px;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  overflow: auto;
}

.menu-label {
  float: left;
  color: var(--cream-primary);
  padding-top: 6px;
  padding-right: 16px;
  font-size: 1em;
  font-weight: 600;
  line-height: 140%;
  display: block;
}

.body {
  color: var(--body);
  padding-top: 114px;
  font-family: degular, sans-serif;
  font-weight: 400;
}

.menu-btn {
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  margin-left: 30px;
  padding: 8px 0;
  font-size: 1em;
  display: flex;
}

.menu-btn.w--open {
  z-index: 2;
  background-color: #0000;
}

.menu-line-icon {
  background-color: var(--cream-primary);
  width: 32px;
  height: 2px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.menu-icon {
  float: right;
}

.scroll-to-label {
  color: var(--peach-primary);
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 8px;
  padding-left: 32px;
  font-size: .65em;
  font-weight: 600;
  line-height: 100%;
}

.nav-link {
  color: var(--teal-accessible);
  padding: 6px 32px;
  font-size: .95em;
  font-weight: 600;
}

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

.btn-wrapper {
  padding: 16px 32px 24px;
  display: flex;
}

.hero-img-wrapper {
  z-index: 1;
  width: 56%;
  position: relative;
}

.container {
  z-index: 1;
  max-width: 1364px;
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
}

.hero-title-wrapper {
  z-index: 2;
  max-width: 64%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.hero-wrapper {
  justify-content: flex-end;
  margin-bottom: 72px;
  padding-top: 24px;
  display: flex;
  position: relative;
}

.hero-overlay {
  z-index: 2;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

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

.scroll {
  padding-top: 48px;
}

.scroll-line {
  background-color: var(--peach-primary);
  width: 1px;
  height: 128px;
}

.scroll-label {
  color: var(--cream-primary);
  text-transform: uppercase;
  margin-left: -52px;
  padding-right: 54px;
  font-size: .85em;
  line-height: 100%;
  display: inline-block;
  transform: rotate(-90deg);
}

.heading-3 {
  color: var(--cream-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.2em;
  font-weight: 600;
  line-height: 110%;
}

.intro {
  background-image: url('../images/ribbon_bl_teal.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 350px;
  padding-top: 96px;
  padding-bottom: 52px;
  position: relative;
}

.strip {
  background-color: var(--navy-primary);
  width: 72px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.section-heading {
  margin-bottom: 56px;
  padding-bottom: 20px;
}

.underline {
  background-color: var(--peach-primary);
  width: 38px;
  height: 2px;
}

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

.image-text-right {
  margin-left: -16px;
  margin-right: -16px;
  padding-top: 57px;
  padding-left: 57px;
}

.component {
  padding-top: 44px;
  padding-bottom: 44px;
}

.component.pt-0 {
  padding-top: 0;
}

.component.pb-0 {
  padding-bottom: 0;
}

.component.border-bottom {
  border-bottom: 1px solid var(--light-blue);
}

.contained {
  padding-left: 109px;
  padding-right: 109px;
}

.image-left-col {
  z-index: 2;
  padding-left: 16px;
  padding-right: 48px;
  position: relative;
}

.text-col {
  padding-left: 16px;
  padding-right: 16px;
}

.image-left-wave {
  z-index: 1;
  width: 85%;
  position: absolute;
  top: -57px;
  left: -47px;
}

.image-front {
  z-index: 2;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  position: relative;
}

.image-front.image-right.landscape {
  object-position: 100% 50%;
}

.image-front.image-right.square {
  border-top-left-radius: 0%;
  border-bottom-left-radius: 0%;
}

.image-front.image-right.square.mt-sm {
  margin-top: 20px;
}

.image-front.image-left {
  border-radius: 0% 50% 50% 0%;
}

.image-front.image-left.square {
  border-radius: 0;
}

.image-text-left {
  grid-column-gap: 67px;
  grid-row-gap: 67px;
  grid-template-rows: auto;
  margin-left: -16px;
  margin-right: -16px;
  padding-top: 57px;
}

.image-text-left.pb-sm {
  padding-bottom: 24px;
}

.image-text-left.pb-md {
  padding-bottom: 40px;
}

.image-right-col {
  padding-left: 67px;
  padding-right: 16px;
}

.image-right-wave {
  width: 85%;
  position: absolute;
  top: -57px;
  right: -47px;
}

.grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  padding-top: 24px;
}

.box {
  border: 1px solid #000;
  border-radius: 3px;
  padding: 32px 24px;
}

.box.rust {
  border-color: var(--peach-primary);
}

.box.teal {
  border-color: var(--teal-primary);
}

.box.navy {
  border-color: var(--navy-primary);
}

.box.mustard {
  border-color: var(--mustard-complimentary);
}

.h4-rust {
  color: var(--peach-primary);
}

.h4-navy {
  color: var(--navy-primary);
}

.h4-mustard {
  color: var(--mustard-accessible);
}

.section {
  padding-top: 96px;
  padding-bottom: 52px;
}

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

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

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

.section.journey {
  display: block;
}

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

.heading-6.white {
  color: var(--white);
}

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

.stats-grid._2 {
  grid-template-columns: 1fr 1fr;
}

.stats-grid.pt-sm {
  padding-top: 24px;
}

.stat {
  background-color: var(--cream-primary);
  color: var(--body);
  flex-direction: column;
  padding: 16px;
  display: flex;
}

.stat.light {
  background-color: var(--white);
}

.stat.dark {
  background-color: var(--navy-primary);
  color: var(--white);
}

.stat.flip {
  justify-content: space-between;
}

.stat-number {
  color: var(--teal-primary);
  font-size: 2.35em;
  font-weight: 800;
  line-height: 100%;
}

.stat-number.val {
  font-size: 2.35em;
}

.stat-head {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  display: flex;
}

.smaller {
  font-size: .9em;
  line-height: 130%;
}

.quote {
  z-index: 2;
  opacity: 1;
  color: var(--teal-primary);
  border-left-style: none;
  width: 80%;
  margin: 32px auto 0;
  padding: 0;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 125%;
  position: relative;
}

.quote.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.quote.mx-0.pb-sm {
  padding-bottom: 12px;
}

.quote.mx-0.pb-sm.text-white {
  z-index: 4;
}

.quote.mx-0.pb-sm.text-white.quote__sm, .quote.mx-0.quote__sm {
  font-size: 1.3em;
}

.quote.mx-0.quote__sm.text-white.mt-0 {
  margin-top: 0;
}

.text-component {
  width: 75%;
}

.text-component.pt-sm, .rich-text-block.pt-24 {
  padding-top: 24px;
}

.list {
  padding-top: 24px;
  padding-bottom: 24px;
}

.list.teal.pt-0 {
  padding-top: 0;
}

.list-item {
  border: 1px solid #000;
  border-radius: 3px;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 24px 24px 4px;
  display: flex;
}

.item-number {
  color: var(--teal-primary);
  width: 5%;
  font-size: 1.5em;
  font-weight: 600;
}

.item-desc {
  color: var(--teal-primary);
  width: 90%;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 110%;
}

.item-desc.long {
  font-size: 1.1em;
}

.list-items {
  padding-top: 24px;
}

.text-chart-right {
  flex-direction: column;
  padding-top: 0;
  display: flex;
}

.table-col-half {
  width: 50%;
  padding-left: 16px;
  padding-right: 16px;
}

.table-header-col {
  width: 25%;
  padding-left: 16px;
  padding-right: 16px;
}

.table-note.small {
  color: var(--white);
  margin-top: 16px;
  font-size: .8em;
}

.table-row {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--cream-primary);
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 0;
  display: flex;
}

.table-row.highlighted {
  border-top-style: none;
  border-bottom-style: none;
  border-bottom-color: var(--cream-primary);
  background-color: var(--teal-primary);
}

.table-data {
  color: var(--white);
  text-align: left;
}

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

.table-header-col-half {
  color: #4b316e;
  width: 50%;
  padding-left: 16px;
  padding-right: 16px;
}

.table-header-row {
  border-bottom: 2px solid var(--peach-primary);
  padding-bottom: 16px;
  display: flex;
}

.table-col {
  text-align: right;
  width: 25%;
  padding-left: 16px;
  padding-right: 16px;
}

.column-heading {
  color: var(--white);
  padding-bottom: 0;
  font-size: 1em;
  font-weight: 700;
}

.column-heading.align-right {
  text-align: right;
  padding-bottom: 0;
}

.h2-alt {
  color: var(--white);
}

.cta {
  background-color: var(--navy-primary);
  border-radius: 24px;
  padding: 75px;
}

.cta-text-col {
  padding-left: 0;
  padding-right: 0;
}

.cta-btn-col {
  justify-content: flex-end;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.cta-cols {
  margin-left: 0;
  margin-right: 0;
}

.footer.dark-teal {
  background-color: var(--navy-primary);
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-col {
  justify-content: flex-start;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.footer-cols {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .6fr .75fr .75fr 1fr;
  margin-left: 0;
  margin-right: 0;
}

.footer-contact-col-1 {
  justify-content: flex-start;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.small {
  margin-bottom: 0;
  font-size: .85em;
  line-height: 120%;
}

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

.small.text-underline {
  text-decoration: underline;
}

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

.external-site {
  align-items: center;
  display: flex;
}

.footer-external-link {
  color: var(--white);
  align-items: center;
  text-decoration: none;
  display: flex;
}

.icon-external-site {
  margin-left: 8px;
}

.footer-col-copyright {
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.footer-contact-col-2 {
  padding-left: 16px;
  padding-right: 16px;
}

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

.block-quote {
  color: var(--teal-primary);
  border-left-style: none;
  margin-bottom: 0;
  padding: 0;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 125%;
}

.right-arrow-2 {
  width: 40px;
  height: 40px;
  inset: auto 43% 5% auto;
  transform: translate(-43%);
}

.mask-2 {
  height: auto;
  padding-bottom: 15px;
}

.icon-3 {
  color: var(--peach-primary);
  font-size: 27px;
}

.left-arrow-2 {
  object-fit: fill;
  width: 40px;
  height: 40px;
  display: block;
  inset: auto auto 5% 47%;
  transform: translate(-47%);
}

.quote-slider {
  background-color: var(--cream-primary);
  height: auto;
}

.slide-nav-2 {
  display: none;
}

.slide-inner {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.slide {
  height: auto;
}

.quote-slide {
  color: var(--teal-primary);
  border-left-style: none;
  width: 80%;
  margin-bottom: 0;
  padding: 32px 0 64px;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 125%;
}

.val {
  font-weight: 800;
}

.accordion-item.list-item {
  flex-direction: column;
}

.accordion-item-trigger {
  cursor: pointer;
  border-top: 1px solid #474e5133;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.accordion-item-trigger.basic {
  color: var(--teal-primary);
  border: 0 solid #000;
  justify-content: flex-start;
  padding-top: 0;
  text-decoration: underline;
  display: flex;
}

.accordion-item-trigger.basic.text-white {
  color: var(--white);
}

.accordion-item-trigger.list-item-inner {
  border-top-style: none;
  align-items: flex-start;
}

.accordion-item-content {
  overflow: hidden;
}

.accordion-item-content.list-item-content {
  padding-left: 0;
  padding-right: 48px;
}

.plus-icon {
  color: var(--teal-primary);
  font-family: calibri;
  font-size: 2em;
  font-weight: 700;
}

.plus-icon.pr-24 {
  color: var(--peach-primary);
  text-align: right;
  width: 5%;
}

.touchpoint-copy {
  background-color: var(--white);
  width: 100%;
  padding-bottom: 24px;
  font-size: 1em;
}

.mask {
  z-index: 2;
  background-color: #f8f8f8;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin-top: 80px;
  position: absolute;
  inset: auto auto 0 0%;
}

.mask.new {
  background-color: var(--white);
  bottom: 0;
}

.touchpoint-text {
  background-color: #0000;
  width: 50%;
  padding-left: 80px;
}

.touchpoint-text.text-right {
  padding-left: 0;
  padding-right: 80px;
}

.journey-inner {
  z-index: 5;
  width: 100%;
  max-width: 1254px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.client-journey-background {
  z-index: 1;
  text-align: center;
  object-fit: cover;
  background-image: url('../images/journey-line-2.svg');
  background-position: 50% 0;
  background-repeat: repeat-y;
  background-size: contain;
  background-attachment: scroll;
  width: 400px;
  height: 100%;
  min-height: 100vh;
  padding-top: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}

.clientjourney {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding-bottom: 56px;
  display: block;
  position: relative;
  overflow: hidden;
}

.touchpoint.touchpoint-image-left {
  justify-content: center;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  position: relative;
}

.touchpoint-image {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  width: 50%;
  padding-right: 80px;
  position: relative;
}

.touchpoint-image.image-right {
  order: 1;
  justify-content: flex-end;
  margin-left: 80px;
  padding-right: 0;
  display: flex;
}

.start {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.dot {
  z-index: 2;
  background-color: var(--teal-primary);
  border-radius: 10px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translate(-50%);
}

.dot.transparent {
  z-index: 1;
  background-color: #008a9a63;
  border-radius: 13px;
  width: 26px;
  height: 26px;
  top: 0;
}

.text-image {
  align-items: flex-end;
  display: flex;
}

.heading-8 {
  color: var(--teal-primary);
}

.note {
  max-width: 50%;
  margin-top: 60px;
}

.note.pb-0 {
  margin-bottom: 0;
}

.mask-left {
  z-index: 9;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.mask-left.cream {
  left: 10px;
}

.mask-right {
  z-index: 9;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotate(180deg);
}

.h5 {
  font-size: 1.05em;
  font-weight: 600;
}

.column {
  order: -1;
}

.grid__report {
  grid-column-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  align-items: end;
}

.grid__report.image-left {
  grid-template-columns: .75fr 1fr;
}

.grid__column {
  position: relative;
}

.ratio {
  width: 100%;
  position: relative;
}

.ratio.square {
  padding-bottom: 100%;
}

.ratio.square.rounded-tb-l {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  overflow: hidden;
}

.ratio.square.rounded-tb-r {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  overflow: hidden;
}

.ratio._2-3 {
  padding-bottom: 66.6667%;
}

.ratio._2-3.rounded-tb-l {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  overflow: hidden;
}

.ratio._2-3.rounded-tb-r {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  overflow: hidden;
}

.ratio._3-2 {
  padding-bottom: 66%;
}

.ratio-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.ratio-image.flip-x {
  transform-style: preserve-3d;
}

.icon {
  color: var(--teal-primary);
}

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

.icon-stat {
  color: var(--light-blue);
  flex: none;
  width: 64px;
  height: 64px;
}

.icon-stat.icon-sm {
  width: 56px;
  height: 56px;
}

.icon-embed {
  width: 100%;
  height: 100%;
}

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

.blockquote.pt-sm, .blockquote.pt-md {
  padding-top: 24px;
}

.blockquote.pt-xs {
  padding-top: 8px;
}

.partner-logo {
  width: 180px;
}

.partner-logo.mt-sm {
  margin-top: 32px;
}

.story {
  background-color: var(--cream-primary);
  color: var(--body);
  background-image: url('../images/ribbon_bl_navy.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 200px;
  margin-bottom: 24px;
  padding: 20px;
}

.story.mb-0 {
  margin-bottom: 0;
}

.grid__2 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
}

.col.text-col {
  padding-left: 0;
  padding-right: 0;
}

.grid__8-4 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .65fr;
}

.pb-sm {
  margin-bottom: 40px;
}

.py-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.rte blockquote {
  border-left-color: var(--navy-primary);
  font-size: 1em;
  font-weight: 600;
  line-height: 140%;
}

.ratio-image-2 {
  object-fit: cover;
  object-position: 0% 0%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: clip;
}

.ratio-2 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ratio-2._3-2 {
  padding-bottom: 66.6667%;
}

.hamburger-lottie {
  float: right;
  background-color: var(--peach-primary);
  border-radius: 100%;
  justify-content: flex-start;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  display: flex;
}

.tiny {
  font-size: .6em;
  font-style: normal;
}

@media screen and (min-width: 1440px) {
  .nav-menu {
    padding-top: 112px;
  }

  .scroll-to-label {
    padding-bottom: 12px;
    font-size: .8em;
  }

  .nav-link {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .btn-wrapper {
    padding-top: 24px;
  }

  .hero-wrapper {
    padding-top: 48px;
  }

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

  .text-chart-right {
    flex-direction: row;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.5em;
  }

  .hero {
    min-height: auto;
  }

  .logo {
    width: 140px;
  }

  .btn.btn-secondary, .btn-label {
    font-size: 1em;
  }

  .nav-menu {
    padding-top: 96px;
  }

  .menu-label {
    padding-top: 4px;
    padding-right: 8px;
    font-size: .9em;
    line-height: 150%;
  }

  .menu-btn {
    z-index: 9999;
    color: #83c8d1;
  }

  .menu-btn.w--open {
    z-index: 2;
    background-color: #0000;
    flex-direction: column;
    display: flex;
  }

  .scroll-to-label {
    font-size: .75em;
  }

  .btn-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-img-wrapper {
    width: 55%;
  }

  .container {
    overflow: hidden;
  }

  .container.hero {
    padding-right: 0;
  }

  .hero-title-wrapper {
    max-width: 62%;
  }

  .hero-wrapper {
    margin-bottom: 56px;
    padding-top: 20px;
  }

  .hero-overlay {
    background-size: 50%;
  }

  .scroll {
    padding-top: 20px;
  }

  .scroll-line {
    height: 80px;
  }

  .scroll-label {
    font-size: .75em;
  }

  .intro {
    background-size: 240px;
    padding-bottom: 112px;
  }

  .strip {
    display: none;
  }

  .image-text-right {
    padding-top: 37px;
    padding-left: 37px;
  }

  .image-text-right.story {
    padding-top: 24px;
    padding-left: 24px;
  }

  .contained {
    padding-left: 0;
    padding-right: 0;
  }

  .image-left-col {
    padding-bottom: 24px;
  }

  .text-col.text-col-right.quote-col {
    padding-top: 8px;
    padding-bottom: 0;
  }

  .image-left-wave {
    width: 65%;
    top: -37px;
    left: -27px;
  }

  .image-front.image-right.portrait, .image-front.image-right.square._w-tablet-70, .image-front.image-left {
    width: 70%;
  }

  .image-front.image-left.landscape {
    width: auto;
  }

  .image-text-left {
    padding-top: 37px;
    padding-right: 37px;
  }

  .image-right-col {
    padding-left: 48px;
  }

  .image-right-wave {
    top: -37px;
    right: -27px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .text-component {
    width: 100%;
  }

  .text-component.text-component__story {
    width: 85%;
  }

  .item-number {
    width: 7%;
  }

  .item-desc {
    width: 93%;
  }

  .text-chart-right {
    flex-direction: column;
  }

  .table-row {
    align-items: flex-start;
  }

  .table {
    padding-top: 0;
  }

  .cta {
    padding: 48px 56px 48px 48px;
  }

  .cta-text-col {
    padding-bottom: 32px;
  }

  .cta-btn-col {
    justify-content: flex-start;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .right-arrow-2 {
    bottom: 7%;
    right: 41%;
    transform: translate(-41%);
  }

  .left-arrow-2 {
    bottom: 7%;
    left: 45%;
    transform: translate(-45%);
  }

  .accordion-item-trigger {
    cursor: pointer;
    border-top: 1px solid #43545333;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    display: flex;
  }

  .touchpoint-copy {
    width: 100%;
    padding-bottom: 0;
  }

  .mask {
    display: none;
  }

  .touchpoint-text {
    width: 100%;
    padding-left: 0;
  }

  .touchpoint-text.text-right {
    width: 100%;
    padding-right: 0;
  }

  .journey-inner {
    padding-left: 24px;
    padding-right: 24px;
    display: block;
  }

  .client-journey-background {
    width: 240px;
  }

  .clientjourney {
    padding-top: 56px;
  }

  .touchpoint.touchpoint-image-left {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .touchpoint-image {
    width: 100%;
    padding-right: 0;
  }

  .touchpoint-image.image-right {
    order: -1;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .mask-right {
    right: 0%;
  }

  .grid__report.image-right, .grid__report.image-left {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .grid__column.image {
    width: 70%;
  }

  .story {
    background-size: 120px;
  }

  .grid__2 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .col {
    flex-flow: column;
    display: flex;
  }

  .grid__8-4 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .menu-button {
    background-color: #0000;
    padding: 12px;
  }

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

  .hamburger-lottie {
    width: 40px;
    height: 40px;
  }
}

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

  h3 {
    font-size: 1.55em;
  }

  h4 {
    font-size: 1.2em;
  }

  h5 {
    font-size: .95em;
  }

  ul {
    padding-left: 20px;
  }

  li {
    margin-left: 2px;
  }

  .hero {
    height: auto;
    min-height: auto;
  }

  .header {
    padding: 16px 24px;
  }

  .logo {
    width: 125px;
  }

  .btn.header-btn {
    display: none;
  }

  .nav-menu {
    width: 100%;
    padding-top: 88px;
  }

  .menu-label {
    display: none;
  }

  .body {
    padding-top: 78px;
  }

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

  .scroll-to-label {
    padding-left: 24px;
    font-size: .7em;
  }

  .nav-link {
    padding-left: 24px;
    padding-right: 24px;
    font-size: .9em;
  }

  .btn-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-img-wrapper {
    align-self: flex-end;
    width: 80%;
  }

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

  .hero-title-wrapper {
    flex-direction: column;
    order: 1;
    max-width: 100%;
    margin-top: -40px;
    padding-bottom: 40px;
    position: static;
    top: auto;
    bottom: -93px;
    transform: none;
  }

  .hero-wrapper {
    flex-direction: column;
    margin-bottom: 0;
    padding-top: 16px;
  }

  .scroll {
    display: none;
  }

  .heading-3 {
    font-size: 1.55em;
  }

  .intro {
    background-size: 180px;
    padding-top: 64px;
  }

  .image-text-right {
    margin-left: 0;
    margin-right: 0;
    padding-top: 32px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-text-right.story {
    padding-left: 20px;
  }

  .component {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .image-left-col {
    padding-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .text-col {
    order: 1;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .image-left-wave {
    top: -32px;
    left: -16px;
  }

  .image-front.image-right.portrait, .image-front.image-right.square._w-tablet-70 {
    width: 100%;
  }

  .image-text-left {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .image-right-col {
    order: -1;
    margin-top: 48px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-right-wave {
    top: -32px;
    right: -16px;
  }

  .grid {
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .box {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .section {
    padding-top: 72px;
  }

  .heading-6 {
    font-size: .95em;
  }

  .stats-grid, .stats-grid._2 {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .quote {
    width: 90%;
    font-size: 1.4em;
  }

  .text-component, .text-component.text-component__story {
    width: 100%;
  }

  .item-number {
    width: 10%;
    font-size: 1.2em;
  }

  .item-desc {
    width: 83%;
    font-size: 1.15em;
    line-height: 130%;
  }

  .cta {
    padding: 40px 32px;
  }

  .footer-cols {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .footer-contact-col-1 {
    padding-top: 16px;
  }

  .footer-col-copyright {
    justify-content: flex-start;
    padding-top: 12px;
  }

  .footer-contact-col-2 {
    padding-top: 12px;
  }

  .block-quote {
    font-size: 1.38em;
  }

  .right-arrow-2 {
    bottom: 7%;
    right: 38%;
    transform: translate(-41%);
  }

  .left-arrow-2 {
    bottom: 7%;
    left: 42%;
    transform: translate(-45%);
  }

  .quote-slide {
    width: 90%;
    padding-top: 16px;
    font-size: 1.15em;
  }

  .accordion-item-content.list-item-content {
    padding-left: 0;
    padding-right: 0;
  }

  .plus-icon.pr-24 {
    width: 7%;
    font-size: 1.7em;
  }

  .journey-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .touchpoint.touchpoint-image-left {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .text-image {
    flex-direction: column;
  }

  .mask-right {
    right: 0%;
  }

  .h5 {
    font-size: .95em;
  }

  .grid__report.image-right {
    grid-column-gap: 32px;
  }

  .grid__column.image {
    width: 100%;
  }

  .ratio.square.rounded-tb-r {
    border-radius: 50% 0% 0% 50%;
  }

  .ratio-image.flip-x {
    transform: rotateX(0)rotateY(-180deg)rotateZ(0);
  }

  .blockquote {
    padding-left: 12px;
  }

  .story {
    background-size: 80px;
    padding-bottom: 56px;
  }

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

  .grid__8-4 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

@media screen and (max-width: 479px) {
  .btn-label {
    padding-left: 16px;
    padding-right: 16px;
    font-size: .85em;
    line-height: 110%;
  }

  .nav-menu {
    padding-top: 72px;
  }

  .menu-label {
    font-size: .9em;
    line-height: 159%;
  }

  .menu-btn {
    padding-left: 8px;
    padding-right: 0;
  }

  .scroll-to-label {
    font-size: .7em;
  }

  .nav-link {
    font-size: .9em;
  }

  .hero-img-wrapper {
    width: 90%;
  }

  .container.hero {
    padding-right: 0;
  }

  .hero-title-wrapper {
    padding-bottom: 40px;
    padding-right: 20px;
  }

  .hero-wrapper {
    padding-top: 16px;
  }

  .intro {
    background-size: auto 200px;
    padding-bottom: 80px;
  }

  .image-text-right {
    padding-top: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-left-col {
    padding-bottom: 16px;
  }

  .image-left-wave {
    top: -16px;
    left: -16px;
  }

  .image-front, .image-front.image-left {
    width: 100%;
  }

  .image-text-left {
    padding-left: 0;
    padding-right: 0;
  }

  .image-right-col {
    margin-top: 32px;
  }

  .image-right-wave {
    top: -16px;
    right: -16px;
  }

  .grid {
    grid-auto-flow: column;
    padding-top: 16px;
  }

  .section {
    padding-top: 64px;
  }

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

  .list {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .item-number {
    width: 15%;
    padding-bottom: 16px;
  }

  .item-desc {
    width: 75%;
  }

  .table-col-half {
    width: 40%;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 16px;
  }

  .table-header-col {
    width: 30%;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 16px;
  }

  .table-row {
    flex-direction: row;
  }

  .table-header-col-half {
    width: 40%;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 16px;
  }

  .table-col {
    width: 30%;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 16px;
  }

  .cta {
    padding: 32px 24px;
  }

  .block-quote {
    font-size: 1.38em;
  }

  .right-arrow-2 {
    bottom: 6%;
    right: 26%;
    transform: translate(-26%);
  }

  .left-arrow-2 {
    bottom: 6%;
    left: 34%;
    transform: translate(-34%);
  }

  .quote-slide {
    width: 100%;
    font-size: 1.25em;
  }

  .accordion-item.list-item {
    justify-content: space-between;
  }

  .plus-icon.pr-24 {
    width: 15%;
  }

  .journey-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .client-journey-background {
    width: 200px;
  }

  .note {
    max-width: 100%;
  }

  .grid__report.image-right, .grid__report.image-left {
    grid-template-columns: 1fr;
  }
}

#w-node-fb44727d-7474-be41-fb3c-dae51dc56be5-c0aa439d, #w-node-f65fb0a3-ddfe-e716-26b2-7d321d51c9b4-c0aa439d, #w-node-f15e2cd5-358a-407b-f4e4-cd70e5931577-c0aa439d, #w-node-f15e2cd5-358a-407b-f4e4-cd70e5931573-c0aa439d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_949926db-d25c-3f61-cce2-486f91184e5b-c0aa439d {
  justify-self: end;
}

#w-node-a3846f66-1fbc-2e1f-bbba-b07fa715a36e-a715a36a, #w-node-a3846f66-1fbc-2e1f-bbba-b07fa715a374-a715a36a, #w-node-a3846f66-1fbc-2e1f-bbba-b07fa715a37a-a715a36a, #w-node-a3846f66-1fbc-2e1f-bbba-b07fa715a380-a715a36a {
  place-self: stretch stretch;
}

@media screen and (max-width: 991px) {
  #w-node-_4c31e6f1-3900-57f1-bac4-2b957fc03b7d-c0aa439d {
    order: -9999;
  }

  #w-node-f65fb0a3-ddfe-e716-26b2-7d321d51c9b4-c0aa439d {
    order: -9999;
    justify-self: end;
  }

  #w-node-a469602e-d4bc-43dd-2aca-b9fe0a492249-c0aa439d, #w-node-_1804903d-50e3-b676-6f7b-57e915533f64-c0aa439d, #w-node-e38c376a-d819-3168-4070-c353409acf2e-c0aa439d, #w-node-fcdb84c0-e8f3-7f4d-c9b0-63efa552230c-c0aa439d, #w-node-_6a7fb07d-bfd3-87f8-e3a4-7e97fe2f6337-c0aa439d, #w-node-f15354f2-af86-3b76-54b6-3c714badbedf-c0aa439d, #w-node-b1b68212-37a6-ef8f-eb86-a5bb24daae12-c0aa439d, #w-node-d87c8a27-fe87-9d58-e1ef-a08f34c6b59c-c0aa439d, #w-node-_5253cb92-7baf-6a84-a10d-29ed52f601ee-c0aa439d, #w-node-_1e1a7918-12ca-8577-1784-97e2e375b47e-c0aa439d, #w-node-_8fc321a0-90a2-6ceb-e615-d293bad7eaf7-c0aa439d, #w-node-_9b9cd7b0-b5eb-8693-96ea-eba3a0582ad4-c0aa439d, #w-node-_66569215-2ebb-78a3-7f12-5630de5f20f7-c0aa439d, #w-node-_32ff6590-3da6-b7f3-a4a3-a654077af5d7-c0aa439d, #w-node-_2a882530-5244-2d96-7b71-95281baf6aae-c0aa439d, #w-node-_1e279930-c4b6-8183-6e09-1930c3aeae49-c0aa439d, #w-node-_09ffffae-b8e0-09d6-68a7-8b6e9804ec51-c0aa439d {
    order: -9999;
  }

  #w-node-_1d1c3469-1eac-562b-2eaa-8f840493e3f5-c0aa439d {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1d1c3469-1eac-562b-2eaa-8f840493e3f5-c0aa439d {
    grid-column: span 1 / span 1;
  }

  #w-node-_949926db-d25c-3f61-cce2-486f91184e5b-c0aa439d {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f65fb0a3-ddfe-e716-26b2-7d321d51c9b4-c0aa439d {
    order: -9999;
  }
}


