:root {
  --dark-blue: #242973;
  --hover-color: #e74c18;
  --text-dark-backgrounds: #18184b;
  --alternative-color-1: #47d4ff;
  --active-color: #fa541c;
  --light-backgrounds: #f3fbfe;
  --alternative-color-2: #ffc12d;
  --white: white;
  --all-links: #fa541c;
}

body {
  color: var(--dark-blue);
  font-family: Open Sans, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7rem;
}

h1 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Open Sans, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.5rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Open Sans, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.6rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Open Sans, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 2.8rem;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Open Sans, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.3rem;
}

h5 {
  margin-top: 0;
  margin-bottom: 8px;
  padding-top: 8px;
  font-family: Open Sans, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

h6 {
  margin-top: 0;
  margin-bottom: 8px;
  padding-top: 8px;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
}

p {
  margin-bottom: 18px;
}

a {
  color: var(--hover-color);
  text-decoration: none;
  transition: all .25s;
}

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

ul {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-left: 18px;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
}

li {
  margin-bottom: 12px;
  padding-left: 3px;
}

label {
  color: var(--text-dark-backgrounds);
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
  display: block;
}

strong {
  font-weight: 700;
}

blockquote {
  border-left: 4px solid var(--alternative-color-1);
  letter-spacing: .5px;
  margin-top: 36px;
  margin-bottom: 36px;
  padding: 0 0 0 24px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.3rem;
}

.p-large {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.p-small {
  flex: 0 auto;
  font-size: .9rem;
  line-height: 1.5rem;
}

.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;
  width: 400px;
  display: flex;
}

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

.style-guide-color {
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-right: 24px;
  display: flex;
}

.style-guide-color.active-color {
  background-color: var(--active-color);
}

.style-guide-color.text-dark-backgrounds {
  background-color: var(--text-dark-backgrounds);
}

.style-guide-color.hover-color {
  background-color: var(--hover-color);
}

.style-guide-color.alternative-color-1 {
  background-color: var(--alternative-color-1);
}

.style-guide-color.light-backgrounds {
  background-color: var(--light-backgrounds);
}

.style-guide-color.alternative-color-2 {
  background-color: var(--alternative-color-2);
}

.style-guide-color.dark-bg {
  background-color: var(--dark-blue);
}

.button {
  background-color: var(--active-color);
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  border-radius: 10px;
  flex: none;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 14px 40px;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
  transition-duration: .35s;
  display: inline-block;
  box-shadow: 0 12px 24px rgba(250, 84, 28, .25);
}

.button:hover {
  background-color: var(--hover-color);
  color: var(--white);
  text-decoration: none;
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(250, 84, 28, .35);
}

.button.super-dark {
  background-color: var(--text-dark-backgrounds);
}

.button.super-dark:hover {
  background-color: var(--dark-blue);
}

.section {
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: stretch;
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

.section._404 {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.section.tint {
  background-color: var(--light-backgrounds);
}

.section.dark {
  background-color: var(--dark-blue);
  color: var(--white);
}

.section.footer {
  background-color: var(--text-dark-backgrounds);
  color: var(--white);
}

.section.white-super-dark {
  background-image: linear-gradient(180deg, var(--white) 50%, var(--text-dark-backgrounds) 50%);
  color: var(--white);
}

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

.section.super-dark {
  background-color: var(--text-dark-backgrounds);
  color: var(--white);
}

.section.dark-super-dark {
  background-image: linear-gradient(180deg, var(--dark-blue) 50%, var(--text-dark-backgrounds) 50%);
  color: var(--white);
}

.fluid-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 24px 24px 12px;
}

.fluid-cell._67-p {
  flex: 0 auto;
  width: 66.7%;
}

.fluid-cell._50-p {
  flex: 0 auto;
  width: 50%;
}

.fluid-cell._100-p {
  flex: 0 auto;
  width: 100%;
}

.fluid-cell._33-p {
  flex: 0 auto;
  width: 33.3%;
}

.fluid-cell.center-intro {
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  display: flex;
}

.fluid-cell._40-p {
  flex: 0 auto;
  width: 40%;
}

.fluid-cell.case-study-wrap,
.fluid-cell.post-wrap {
  padding-left: 12px;
  padding-right: 12px;
}

.fluid-cell.in-slider {
  padding: 12px;
}

.fluid-cell.team-member {
  text-align: center;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  padding-top: 36px;
  padding-bottom: 36px;
  display: flex;
}

.fluid-cell._60-p {
  flex: 0 auto;
  width: 60%;
}

.fluid-cell._w-graphics {
  padding-left: 0;
  padding-right: 0;
}

.fluid-cell._w-graphics.right-gap {
  padding-right: 7%;
}

.fluid-cell._w-graphics.in-tab {
  padding-top: 60px;
  padding-left: 36px;
}

.fluid-cell.footer-text {
  flex: 0 auto;
  width: 37%;
  padding-right: 8%;
}

.fluid-cell.footer-links, .fluid-cell.footer-contact {
  flex: 0 auto;
  width: 21%;
}

.fluid-cell.in-bleeding-image-header {
  z-index: 1;
  flex: 0 auto;
  width: 50%;
  position: relative;
}

.fluid-cell.case-study-info {
  flex: 0 auto;
  width: 30%;
  margin-right: 3.3%;
}

.fluid-cell.cs-header-title {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  display: flex;
  position: relative;
}

.fluid-cell.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, .2);
  flex: 0 auto;
  width: 100%;
  margin-top: 36px;
  margin-left: 24px;
  padding-top: 48px;
  padding-left: 0;
}

.fluid-cell.footer-address {
  flex: 0 auto;
  width: 21%;
}

.invert {
  color: #fff;
}

.subheading {
  color: var(--active-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 12px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.subheading.large {
  padding-bottom: 12px;
  font-size: 1.2rem;
}

.container {
  z-index: 3;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
  position: relative;
}

.container.center {
  justify-content: center;
}

.container.in-slider {
  padding-left: 60px;
  padding-right: 60px;
}

.container._w-graphics-media {
  justify-content: center;
  align-items: center;
}

.container._w-graphics-media.right {
  padding-right: 0;
}

.container._w-graphics-media.left {
  padding-left: 0;
}

.container.in-tab {
  padding-left: 0;
  padding-right: 0;
}

.container.team-members {
  justify-content: center;
}

.container.in-bleeding-image {
  justify-content: flex-start;
  align-items: flex-end;
}

.container.in-image-slider {
  justify-content: flex-start;
  align-items: stretch;
}

.container.slimfit {
  justify-content: center;
  padding-left: 10%;
  padding-right: 10%;
}

.container.stretch {
  justify-content: flex-start;
  align-items: stretch;
}

.container.in-bleeding-image-center {
  justify-content: flex-start;
  align-items: center;
}

.faux-h1 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Open Sans, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.5rem;
}

.faux-h2 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Open Sans, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.6rem;
}

.faux-h3 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Open Sans, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 2.8rem;
}

.faux-h4 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Open Sans, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.3rem;
}

.faux-h5 {
  margin-bottom: 8px;
  padding-top: 8px;
  font-family: Open Sans, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

.faux-h5:hover {
  text-decoration: none;
}

.style-guide-color-block {
  border-bottom: 1px solid var(--light-backgrounds);
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  display: flex;
}

.center {
  text-align: center;
}

.faux-h6 {
  margin-bottom: 8px;
  padding-top: 8px;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.faux-h6:hover {
  text-decoration: none;
}

.heading-link {
  color: var(--text-dark-backgrounds);
  border-bottom: 1px solid rgba(0, 0, 0, .11);
  transition: all .2s;
}

.heading-link:hover {
  border-bottom: 1px solid var(--hover-color);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
}

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

.cta-link {
  z-index: 3;
  color: var(--active-color);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 30px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.6rem;
  display: inline-block;
  position: relative;
}

.cta-link:hover {
  border-bottom-color: var(--text-dark-backgrounds);
  color: var(--active-color);
  text-decoration: none;
  transform: scale(1.03);
}

.footer-link {
  border-bottom: 1px solid var(--active-color);
  color: var(--white);
  text-decoration: none;
  display: inline;
}

.footer-link:hover {
  border-bottom-color: var(--white);
  color: var(--active-color);
  text-decoration: none;
}

.thumb-img {
  min-width: 100%;
}

.thumb-img.case-study,
.thumb-img.post {
  object-fit: cover;
  height: 250px;
}

.thumb-img.member {
  object-fit: cover;
  width: 250px;
  height: 250px;
}

.button-hover {
  background-color: var(--hover-color);
  width: 100%;
  height: 200%;
  display: none;
  position: absolute;
  top: 101%;
  bottom: 0%;
  left: 0;
  right: auto;
}

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

.icon {
  color: var(--active-color);
  width: 5rem;
  height: 5rem;
  margin-top: 12px;
  margin-bottom: 18px;
}

.icon-no-anim {
  width: 5rem;
  height: 5rem;
  margin-top: 12px;
  margin-bottom: 18px;
}

.logo-img {
  height: 48px;
}

.child-link {
  color: var(--dark-blue);
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.5rem;
  transition: all .2s;
  display: inline-block;
}

.child-link:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.child-link.w--current {
  color: #01c6e4;
}

.child-link.last,
.child-link:last-child {
  border-bottom-style: none;
}

.nav-link {
  color: var(--dark-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
  height: 100%;
  padding: 6px 12px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.5rem;
  transition: all .25s;
  display: flex;
}

.nav-link:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.nav-link.w--current {
  color: var(--hover-color);
  border-top-color: #98b839;
}

.nav-link.w--current:hover {
  color: var(--text-dark-backgrounds);
}

.nav-link.as-button-on-desktop {
  background-color: var(--active-color);
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  border-radius: 10px;
  height: auto;
  margin-left: 24px;
  margin-right: 12px;
  padding: 12px 24px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
}

.nav-link.as-button-on-desktop:hover {
  background-color: var(--hover-color);
  color: var(--white);
  transform: scale(1.03);
}

.nav-link.in-dropdown {
  border-bottom-style: none;
  margin-left: 12px;
  padding-left: 0;
  padding-right: 3px;
}

.nav {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.highlighted-text {
  background-color: var(--alternative-color-1);
  box-shadow: -6px 0 0 0 var(--alternative-color-1), 6px 0 0 0 var(--alternative-color-1);
  color: var(--text-dark-backgrounds);
  margin-left: 6px;
  margin-right: 6px;
}

.nav-bar {
  z-index: 1111;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
}

.nav-dropdown-content {
  background-color: var(--white);
  color: var(--dark-blue);
  border-radius: 15px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 30px;
  font-weight: 700;
  display: none;
  position: absolute;
  top: 95%;
  bottom: auto;
  left: auto;
  right: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
}

.thumb-link {
  z-index: 1;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.thumb-link.member {
  border-radius: 250px;
  flex: 0 auto;
}

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

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

.link-arrow {
  color: var(--white);
  background-image: url('../images/Link-Arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 19px;
  height: 19px;
  position: absolute;
  top: 3px;
  bottom: 0%;
  left: 0%;
  right: auto;
}

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

.block {
  background-color: var(--dark-blue);
  color: var(--white);
  border-radius: 20px;
  height: 100%;
  margin-bottom: 18px;
  padding: 36px 36px 24px;
  transition: all .25s;
  display: block;
  position: relative;
}

.block:hover {
  color: var(--white);
  text-decoration: none;
}

.block.orange {
  background-color: var(--active-color);
}

.delete-7 {
  z-index: 20;
  color: #005689;
  cursor: pointer;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 60px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  display: inline-block;
  position: relative;
}

.nav-wrap {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav-dropdown-trigger {
  z-index: 20;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.nav-dropdown-trigger:hover {
  text-decoration: none;
}

.menu-open {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-icon-button {
  cursor: pointer;
  width: 30px;
  height: 42px;
  position: relative;
}

.nav-icon-button._w-mobile-menu {
  display: none;
}

.nav-icon-button._w-dropdown {
  height: auto;
  padding-top: 48px;
  padding-bottom: 48px;
}

.nav-icon-buttons {
  align-items: center;
  padding-left: 12px;
  padding-right: 0;
  font-size: .9rem;
  line-height: 1.6rem;
  display: flex;
}

.header {
  padding-top: 192px;
  padding-bottom: 96px;
  overflow: hidden;
}

.header.tint {
  background-color: var(--light-backgrounds);
}

.header._w-bleeding-image {
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
}

.header._w-bleeding-image.large {
  padding-top: 180px;
}

.header.simple {
  padding-top: 140px;
  padding-bottom: 72px;
}

.sticky-bg-mobile {
  display: none;
}

.hamburger-row {
  background-color: var(--active-color);
  border-radius: 2px;
  width: 30px;
  height: 2px;
}

.hamburger {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 15px;
  display: flex;
}

.ppm-intro-page-link {
  color: var(--dark-blue);
  background-color: #fff;
  border: 1px solid #e8eae9;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 36px;
  font-weight: 700;
  display: block;
}

.ppm-intro-page-link:hover {
  border-color: var(--hover-color);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
}

.nav-dropdown-link {
  color: var(--text-dark-backgrounds);
  align-items: center;
  padding-right: 9px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.6rem;
  transition: all .25s;
  display: flex;
  position: relative;
}

.nav-dropdown-link:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.nav-dropdown-link.w--current {
  border-top-color: #98b839;
}

.nav-dropdown-link.w--current:hover {
  color: var(--text-dark-backgrounds);
}

.navtainer {
  z-index: 3;
  border-radius: 20px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 12px 36px;
  padding: 24px 42px;
  display: flex;
  position: relative;
}

.deco-line {
  background-color: var(--active-color);
  width: 60px;
  height: 6px;
  margin-top: 6px;
  margin-bottom: 12px;
}

.deco-line.small {
  width: 40px;
  height: 4px;
  margin-top: 12px;
}

.deco-line.small.in-ms-grid {
  background-color: var(--white);
  margin-top: 36px;
}

.action-wrap {
  flex-wrap: wrap;
  display: flex;
}

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

.tabs {
  flex: 1;
}

.tabs-content {
  overflow: visible;
}

.tab-link {
  color: var(--text-dark-backgrounds);
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  margin-left: 12px;
  margin-right: 12px;
  padding: 12px;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.4rem;
  text-transform: uppercase;
}

.tab-link:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.tab-link.w--current {
  border-bottom-color: var(--text-dark-backgrounds);
  color: var(--hover-color);
  background-color: rgba(255, 255, 255, 0);
}

.tabs-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  padding: 12px;
  display: flex;
}

.logo-link {
  flex: 0 auto;
}

.nav-dropdown-arrow {
  cursor: pointer;
  background-image: url('../images/Arrow-down.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  width: 24px;
  height: 24px;
}

.back-to-top {
  z-index: 2222;
  background-color: var(--active-color);
  background-image: url('../images/Arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  border-radius: 48px;
  width: 48px;
  height: 48px;
  position: fixed;
  top: auto;
  bottom: 36px;
  left: auto;
  right: 36px;
  transform: rotate(-90deg);
}

.back-to-top-trigger {
  width: 1px;
  height: 100%;
}

.offsetfix {
  z-index: -1;
  width: 0%;
  height: 0;
  margin-top: -120px;
  position: absolute;
}

.p-medium {
  font-size: 1.4rem;
  line-height: 2.2rem;
}

.section-graphics-wrap {
  z-index: 2;
  width: 100%;
  height: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}

.section-graphics-img {
  z-index: 2;
  object-fit: cover;
  min-width: 100%;
  position: relative;
}

.case-study-block,
.post-block {
  z-index: -1;
  border-radius: 20px;
  padding: 36px 36px 24px;
  transition: all .25s;
}

.case-study-block:hover,
.post-block:hover {
  box-shadow: 0 40px 40px rgba(0, 0, 0, .1);
}

.case-study-block.dark:hover,
.post-block.dark:hover {
  background-color: var(--dark-blue);
  box-shadow: 0 40px 40px rgba(0, 0, 0, .2);
}

.slider {
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  height: auto;
}

.slider.mobile {
  display: none;
}

.mask {
  padding-bottom: 84px;
}

.avatar-testimonial {
  object-fit: cover;
  border-radius: 200px;
  width: 84px;
  height: 84px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.testimonial-block {
  text-align: center;
  background-color: var(--white);
  background-image: url('../images/Testimonial-icon.svg');
  background-position: 50% 24px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 72px 36px 36px;
  display: flex;
  box-shadow: 0 30px 40px rgba(0, 0, 0, .07);
}

.team-member-line {
  background-color: var(--active-color);
  width: 40px;
  height: 4px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.slide-nav {
  font-size: .7rem;
}

.bg-circles {
  height: 80%;
  max-height: 500px;
}

.side-deco {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.side-deco.rb {
  justify-content: flex-end;
  align-items: flex-end;
}

.side-deco.l {
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.side-deco.rt {
  justify-content: flex-end;
  align-items: flex-start;
}

.side-deco.on-dark {
  opacity: .36;
}

.section-graphics-elements-l {
  z-index: -1;
  width: 100%;
  height: 120%;
  position: absolute;
  top: -10%;
  bottom: 0%;
  left: -5%;
  right: 0%;
}

.section-graphics-elements-r {
  z-index: -1;
  width: 100%;
  height: 110%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 5%;
  right: 0%;
}

.aside-wrapper {
  flex-flow: wrap;
  flex: 1;
  padding-left: 6.7%;
  display: flex;
}

.member-icon {
  z-index: 2;
  background-color: var(--active-color);
  background-image: url('../images/IN.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: auto;
  bottom: 12px;
  left: auto;
  right: 12px;
}

.member-img-wrap {
  position: relative;
}

.inner-arrow-wrap {
  z-index: 10;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 60px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -120px;
  left: 0%;
  right: auto;
}

.inner-arrow-wrap.tint {
  background-color: var(--light-backgrounds);
}

.orange-text {
  color: var(--active-color);
}

.cta-bg-1 {
  background-image: url('../images/CTA-BG-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 5%;
  right: 5%;
}

.cta-bg-2 {
  background-image: url('../images/CTA-BG-2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 5%;
  right: 5%;
}

.cta-center {
  z-index: 1;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 24px 20%;
  display: flex;
  position: relative;
}

.footer-spacer {
  width: 100%;
  height: 12px;
}

div.category {
  color: var(--active-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 12px;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.sticky-bg {
  z-index: -1;
  background-color: var(--white);
  border-radius: 20px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 30px 30px rgba(0, 0, 0, .06);
}

.sticky-nav-trigger {
  height: 1px;
}

.plus-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: 250px;
  height: 250px;
  display: grid;
  position: absolute;
  top: 60px;
  bottom: auto;
  left: auto;
  right: 24px;
}

.plus-grid.lb {
  top: auto;
  bottom: -60px;
  left: 24px;
  right: auto;
}

.plus-grid.lt {
  top: 60px;
  bottom: auto;
  left: 24px;
  right: auto;
}

.plus-sign {
  opacity: .5;
  color: var(--alternative-color-1);
}

.plus-sign.hidden {
  opacity: 0;
}

.mobiler-nav-cta {
  display: none;
}

.cs-img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 500px;
  display: block;
}

.cs-img-wrap {
  background-image: linear-gradient(180deg, var(--light-backgrounds) 50%, var(--white) 50%);
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.vertical-spacer._24 {
  height: 24px;
}

.cs-header-bg-1 {
  background-image: url('../images/CS-Header-BG-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 90%;
  position: absolute;
  top: 140px;
  bottom: 0%;
  left: 5%;
  right: 5%;
}

.cs-header {
  background-color: var(--light-backgrounds);
  padding-top: 192px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.cs-header-bg-2 {
  background-image: url('../images/CS-Header-BG-2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 90%;
  position: absolute;
  top: 140px;
  bottom: 0%;
  left: 5%;
  right: 5%;
}

.slider-arrow {
  border: 2px solid var(--active-color);
  background-image: url('../images/Orange-arrow-R.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 60px;
  width: 54px;
  height: 54px;
  transition: all .25s;
  top: auto;
  bottom: 24px;
  left: auto;
  right: 72px;
  box-shadow: 0 11px 24px rgba(0, 0, 0, .1);
}

.slider-arrow:hover {
  background-color: var(--active-color);
  background-image: url('../images/White-arrow-R.svg');
}

.slider-arrow.left {
  background-image: url('../images/Orange-arrow-L.svg');
  right: 152px;
}

.slider-arrow.left:hover {
  background-image: url('../images/White-arrow-L.svg');
}

.image-slider {
  z-index: 3;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
}

.hide {
  display: none;
}

.slider-image {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 20px;
  width: 100%;
  height: 500px;
  position: relative;
}

.image-slider-text-block {
  background-color: var(--dark-blue);
  border-radius: 20px;
  width: 130%;
  margin-top: 96px;
  margin-left: -30%;
  padding: 48px 48px 36px;
  font-size: 1.4rem;
  line-height: 2.2rem;
  box-shadow: 0 30px 30px rgba(0, 0, 0, .1);
}

.image-slider-text-wrap {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.masonry-grid {
  column-count: 4;
  width: 100%;
}

.ms-grid-item {
  width: 100%;
  margin-bottom: 20px;
  display: inline-block;
}

.ms-grid-image {
  border-radius: 16px;
  min-width: 100%;
}

.masonry-caption {
  border-radius: 16px;
  margin-bottom: 0;
  padding: 36px;
  box-shadow: 0 30px 30px rgba(0, 0, 0, .2);
}

.masonry-caption.orange {
  background-color: var(--hover-color);
}

.masonry-caption.blue {
  background-color: var(--alternative-color-1);
}

.masonry-caption.super-dark {
  background-color: var(--text-dark-backgrounds);
}

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

.slider-image-wrap {
  border-radius: 20px;
  width: 66.7%;
  height: 500px;
  position: relative;
}

.mask-2 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.bleeding-image {
  max-width: none;
  max-height: 500px;
}

.bleeding-image.in-header {
  max-height: 500px;
}

.bleeding-image-wrap {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-end;
  width: 50%;
  margin-bottom: -120px;
  margin-left: -72px;
  padding-top: 24px;
  display: flex;
  position: relative;
}

.bleeding-elements {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: -60px;
  right: 0%;
}

.member-cta {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 250px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  margin-bottom: 24px;
  padding: 36px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.3rem;
  display: flex;
}

.map {
  background-color: var(--light-backgrounds);
  background-image: url('../images/VITG-SYMBOL.svg'), url('../images/VITG-Map.jpg');
  background-position: 50%, 50%;
  background-repeat: no-repeat, repeat;
  background-size: auto, cover;
  width: 100%;
  height: 100%;
}

.text-link {
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  font-weight: 700;
}

.text-link:hover {
  border-bottom-color: var(--text-dark-backgrounds);
  text-decoration: none;
}

.t-margin-6 {
  margin-top: 6px;
}

.bleeding-image-wrap-center {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-end;
  width: 50%;
  margin-left: -72px;
  padding-top: 24px;
  display: flex;
  position: relative;
}

.side-elements-1, .side-elements-2, .side-elements-3, .side-elements-4 {
  max-height: 300px;
  position: absolute;
}

.bg-w-side-elements {
  background-color: var(--light-backgrounds);
}

.side-elements-wrap-l {
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding-left: 60px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.side-elements-wrap-r {
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  padding-right: 60px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

@media screen and (min-width: 1280px) {
  .fluid-cell.footer-text {
    width: 40%;
  }

  .fluid-cell.footer-links, .fluid-cell.footer-contact, .fluid-cell.footer-address {
    width: 20%;
  }

  .nav-link {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-link.as-button-on-desktop {
    margin-left: 48px;
  }

  .cta-center {
    padding-left: 22%;
    padding-right: 22%;
  }
}

@media screen and (min-width: 1440px) {
  .fluid-cell {
    padding: 30px 30px 18px;
  }

  .fluid-cell.case-study-info {
    width: 25%;
    margin-right: 8.3%;
  }

  .container {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .container.case-studies-wrap,
  .container.posts-wrap {
    padding-left: 36px;
    padding-right: 36px;
  }

  .container._w-graphics-media.right {
    padding-right: 48px;
  }

  .container._w-graphics-media.left {
    padding-left: 48px;
  }

  .container.slimfit {
    padding-left: 180px;
    padding-right: 180px;
  }

  .thumb-img.member {
    width: 270px;
    height: 270px;
  }

  .navtainer {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 72px;
    padding-right: 72px;
  }

  .tab-link {
    font-size: .9rem;
    line-height: 1.5rem;
  }

  .avatar-testimonial {
    border-radius: 220px;
  }

  .testimonial-block {
    padding-left: 48px;
    padding-right: 48px;
  }

  .cta-center {
    padding-left: 24%;
    padding-right: 24%;
  }

  .image-slider {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .slider-image {
    height: 600px;
  }

  .image-slider-text-block {
    padding: 60px 60px 48px;
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .image-slider-text-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .masonry-grid {
    column-count: 4;
  }

  .slider-image-wrap {
    height: 600px;
  }
}

@media screen and (max-width: 991px) {
  body {
    background-image: none;
  }

  h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  h2 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  h3 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

  a:hover {
    color: var(--hover-color);
  }

  blockquote {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

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

  .fluid-cell {
    flex: 1;
  }

  .fluid-cell.center-intro {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .fluid-cell.team-member {
    width: 50%;
    padding-bottom: 24px;
  }

  .fluid-cell._60-p {
    width: 100%;
  }

  .fluid-cell._w-graphics.in-tab {
    padding: 36px 20% 60px;
  }

  .fluid-cell.footer-text {
    width: 100%;
    padding-right: 24px;
  }

  .fluid-cell.footer-links {
    display: none;
  }

  .fluid-cell.footer-contact {
    width: 100%;
    padding-bottom: 0;
  }

  .fluid-cell.in-bleeding-image-header {
    width: 100%;
  }

  .fluid-cell.case-study-info {
    width: 33.3%;
    margin-right: 0%;
  }

  .fluid-cell.cs-header-title {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .fluid-cell.footer-copyright {
    width: 100%;
    margin-top: 24px;
  }

  .fluid-cell.footer-address {
    width: 100%;
    padding-top: 0;
  }

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

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

  .container.in-image-slider {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .container.slimfit {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faux-h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  .faux-h2 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  .faux-h2._w-bg {
    background-color: var(--light-backgrounds);
  }

  .faux-h3 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }

  .faux-h4 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

  .thumb-img.case-study,
  .thumb-img.post {
    height: 250px;
  }

  .logo-img {
    z-index: 3;
    height: 36px;
    position: relative;
  }

  .child-link {
    color: var(--white);
    text-transform: capitalize;
    white-space: pre-wrap;
    word-break: keep-all;
    background-color: rgba(0, 0, 0, 0);
    border-bottom-style: none;
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .child-link:hover {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-link {
    color: var(--white);
    letter-spacing: 0;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    height: auto;
    padding: 12px 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.9rem;
    display: inline-block;
  }

  .nav-link:hover {
    color: var(--white);
    border-bottom-color: rgba(0, 0, 0, .1);
  }

  .nav-link.w--current {
    color: var(--active-color);
    background-color: rgba(0, 0, 0, 0);
  }

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

  .nav-link.as-button-on-desktop {
    background-color: rgba(250, 84, 28, 0);
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link.as-button-on-desktop:hover {
    box-shadow: none;
    background-color: rgba(231, 76, 24, 0);
    transform: none;
  }

  .nav-link.in-dropdown {
    border-bottom-style: none;
    margin-left: 0;
  }

  .nav {
    z-index: 1;
    background-color: var(--text-dark-backgrounds);
    color: var(--white);
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    height: 100vh;
    padding: 36px 42px 120px;
    display: none;
    position: absolute;
    top: 72px;
    bottom: auto;
    left: 0%;
    right: 0%;
    overflow: scroll;
  }

  .nav-dropdown-content {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    padding: 0;
    display: none;
    position: static;
  }

  .thumb-link {
    flex: 1;
  }

  .block {
    padding: 36px 36px 24px;
  }

  .delete-7 {
    padding-right: 36px;
  }

  .nav-dropdown-trigger {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-icon-button {
    width: 30px;
    height: 48px;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-icon-button._w-mobile-menu {
    display: block;
  }

  .nav-icon-button._w-dropdown {
    display: none;
  }

  .nav-icon-buttons {
    z-index: 3;
    margin-left: 0;
    position: relative;
  }

  .header._w-bleeding-image {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .header._w-bleeding-image.large, .header.simple {
    padding-top: 120px;
  }

  .sticky-bg-mobile {
    z-index: 2;
    background-color: var(--light-backgrounds);
    display: block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .hamburger-row {
    width: 30px;
    height: 2px;
  }

  .hamburger-row._3 {
    width: 15px;
  }

  .hamburger {
    justify-content: space-between;
    align-items: flex-end;
  }

  .nav-dropdown-link {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    flex-direction: column;
    align-items: stretch;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .nav-dropdown-link:hover {
    color: var(--text-dark-backgrounds);
  }

  .nav-dropdown-link.w--current {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-dropdown-link.w--current:hover {
    color: var(--white);
  }

  .navtainer {
    align-items: center;
    height: 72px;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-dropdown-arrow {
    z-index: 100;
    width: 60px;
    height: 54px;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: -18px;
  }

  .offsetfix {
    height: 145px;
    margin-top: -70px;
  }

  .case-study-block,
  .post-block {
    box-shadow: 0 40px 40px rgba(0, 0, 0, .1);
  }

  .case-study-block.dark,
  .post-block.dark {
    background-color: var(--dark-blue);
    box-shadow: 0 40px 40px rgba(0, 0, 0, .2);
  }

  .aside-wrapper {
    padding-left: 0%;
  }

  .inner-arrow-wrap {
    width: 96px;
    bottom: 0;
  }

  .sticky-bg, .sticky-nav-trigger {
    display: none;
  }

  .plus-grid {
    width: 200px;
    height: 200px;
    right: 12px;
  }

  .plus-grid.lb {
    left: 12px;
  }

  .mobiler-nav-cta {
    border-top: 1px solid rgba(255, 255, 255, .2);
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    display: block;
  }

  .cs-img {
    height: 300px;
  }

  .slider-arrow {
    right: 42px;
  }

  .slider-arrow.left {
    right: 116px;
  }

  .slider-image {
    object-fit: fill;
    width: 100%;
    height: auto;
  }

  .image-slider-text-block {
    width: 70%;
    margin-top: -48px;
    margin-left: 0%;
    position: static;
  }

  .image-slider-text-wrap {
    width: 100%;
  }

  .masonry-grid {
    column-count: 3;
  }

  .slider-image-wrap {
    object-fit: fill;
    width: 100%;
    height: auto;
  }

  .bleeding-image {
    max-width: 100%;
    max-height: none;
  }

  .bleeding-image-wrap {
    width: 100%;
    margin-top: 36px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .member-cta {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

  .bleeding-image-wrap-center {
    width: 100%;
    margin-top: 36px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .side-elements-wrap-l {
    padding-left: 0;
  }

  .side-elements-wrap-r {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  body {
    background-image: none;
    font-size: 1rem;
    line-height: 1.7rem;
  }

  h1 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.1rem;
    line-height: 2.75rem;
  }

  h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.6rem;
    line-height: 2.25rem;
  }

  h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.3rem;
    line-height: 2rem;
  }

  h5 {
    font-size: 1.1rem;
    line-height: 1.7rem;
  }

  blockquote {
    margin-left: 0;
    font-size: 1.75rem;
    line-height: 2.6rem;
  }

  .p-large {
    margin-bottom: 18px;
    font-size: 1.5rem;
    line-height: 2.3rem;
  }

  .section {
    padding-top: 36px;
    padding-bottom: 36px;
    overflow: hidden;
  }

  .fluid-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .fluid-cell._67-p, .fluid-cell._50-p, .fluid-cell._33-p {
    width: 100%;
  }

  .fluid-cell.center-intro {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .fluid-cell._40-p {
    width: 100%;
  }

  .fluid-cell._w-graphics {
    flex: 0 auto;
    width: 100%;
  }

  .fluid-cell._w-graphics.right-gap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fluid-cell._w-graphics.in-tab {
    padding-bottom: 36px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .fluid-cell.footer-text {
    width: 100%;
    padding-bottom: 0;
    padding-right: 12px;
  }

  .fluid-cell.footer-links, .fluid-cell.footer-contact, .fluid-cell.in-bleeding-image-header, .fluid-cell.case-study-info {
    width: 100%;
  }

  .fluid-cell.cs-header-title {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .fluid-cell.footer-copyright {
    border-top-style: none;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
    padding-left: 12px;
  }

  .fluid-cell.footer-address {
    width: 100%;
    padding-bottom: 0;
  }

  .subheading {
    background-image: none;
    font-size: .9rem;
    line-height: 1.6rem;
  }

  .container {
    flex-direction: column;
  }

  .container.in-slider {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container._w-graphics-media {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .container._w-graphics-media.right {
    padding-right: 18px;
  }

  .container._w-graphics-media.left {
    padding-left: 18px;
  }

  .container.team-members {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .container.reverse-mobile {
    flex-flow: wrap-reverse;
  }

  .faux-h1 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  .faux-h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.1rem;
    line-height: 2.75rem;
  }

  .faux-h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.6rem;
    line-height: 2.25rem;
  }

  .faux-h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.3rem;
    line-height: 2rem;
  }

  .faux-h5 {
    font-size: 1.1rem;
    line-height: 1.7rem;
  }

  .thumb-img {
    min-width: 100%;
  }

  .thumb-img.case-study,
  .thumb-img.post {
    height: auto;
  }

  .thumb-img.member {
    width: 35vw;
    height: 35vw;
  }

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

  .thumb-link {
    flex-direction: column;
    justify-content: flex-start;
  }

  .thumb-link.member {
    border-radius: 35vw;
  }

  .menu-open {
    width: 100%;
    height: 100%;
  }

  .header {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .header._w-bleeding-image, .header._w-bleeding-image.large, .header.simple {
    padding-top: 84px;
  }

  .header.simple.tint {
    padding-bottom: 36px;
  }

  .ppm-intro-page-link {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ppm-intro-page-link:hover {
    box-shadow: none;
    transform: none;
  }

  .navtainer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .tabs-content {
    width: 100%;
  }

  .tab-link {
    margin-left: 0;
    margin-right: 0;
    padding: 18px 0;
    font-size: 1rem;
    line-height: 1.6rem;
    display: flex;
  }

  .tab-link.w--current {
    bottom: 0;
  }

  .tabs-menu {
    border-bottom-style: none;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 24px;
  }

  .back-to-top {
    bottom: 24px;
    right: 24px;
  }

  .offsetfix {
    height: 152px;
  }

  .p-medium {
    margin-bottom: 18px;
    font-size: 1.3rem;
    line-height: 2.1rem;
  }

  .section-graphics-wrap {
    min-width: 100%;
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px;
  }

  .slider.desktop {
    display: none;
  }

  .slider.mobile {
    display: block;
  }

  .mask {
    padding-bottom: 60px;
  }

  .side-deco {
    display: none;
  }

  .section-graphics-elements-l {
    height: 110%;
    top: -5%;
  }

  .section-graphics-elements-r {
    height: 100%;
  }

  .inner-arrow-wrap {
    width: 84px;
  }

  .cta-bg-1 {
    background-image: url('../images/CTA-BG-1-mobile.svg');
  }

  .cta-bg-2 {
    background-image: url('../images/CTA-BG-2-mobile.svg');
    background-size: contain;
  }

  .cta-center {
    padding-left: 0%;
    padding-right: 0%;
  }

  div.category {
    background-image: none;
    font-size: .9rem;
    line-height: 1.6rem;
  }

  .plus-grid {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    opacity: .7;
    width: 170px;
    height: 170px;
    right: -36px;
  }

  .plus-grid.lb {
    left: -36px;
  }

  .plus-grid.lt {
    left: 18px;
  }

  .cs-img-wrap {
    overflow: hidden;
  }

  .cs-header-bg-1 {
    background-image: url('../images/CTA-BG-1-mobile.svg');
  }

  .cs-header {
    padding-top: 84px;
    padding-bottom: 36px;
  }

  .cs-header-bg-2 {
    background-image: url('../images/CTA-BG-2-mobile.svg');
    background-size: contain;
  }

  .slider-arrow {
    top: auto;
    bottom: 0%;
    left: 0%;
    right: -72px;
  }

  .slider-arrow.left {
    right: 72px;
  }

  .image-slider {
    margin-bottom: 36px;
    padding-bottom: 96px;
  }

  .image-slider-text-block {
    width: 80%;
    margin-left: 10%;
    padding: 36px 36px 24px;
    font-size: 1.3rem;
    line-height: 2.1rem;
  }

  .image-slider-text-wrap {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .masonry-grid {
    column-count: 2;
  }

  .bleeding-image {
    max-width: 100%;
  }

  .bleeding-image.in-header {
    margin-top: 12px;
  }

  .bleeding-image-wrap {
    flex-direction: column;
    justify-content: flex-start;
  }

  .bleeding-elements {
    height: 100%;
  }

  .member-cta {
    border-radius: 35vw;
    width: 35vw;
    height: 35vw;
    font-size: 1.3rem;
    line-height: 2rem;
  }

  .map {
    background-size: 60px, cover;
    height: 300px;
  }

  .bleeding-image-wrap-center {
    flex-direction: column;
    justify-content: flex-start;
  }

  .side-elements-wrap-l, .side-elements-wrap-r {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  body {
    background-position: -330px -20px;
  }

  h1 {
    margin-bottom: 10px;
    line-height: 3.1rem;
  }

  p {
    margin-bottom: 12px;
  }

  blockquote {
    padding-left: 24px;
    font-size: 1.4rem;
    line-height: 2.1rem;
  }

  .p-large {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  .utility-page-content {
    width: 260px;
  }

  .button {
    letter-spacing: 0;
    min-width: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 12px 24px;
  }

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

  .fluid-cell {
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .fluid-cell._33-p.center {
    text-align: left;
  }

  .fluid-cell.center-intro {
    text-align: left;
    align-items: flex-start;
  }

  .fluid-cell.case-study-wrap, .fluid-cell.in-slider,
  .fluid-cell.post-wrap, .fluid-cell.in-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .fluid-cell.team-member {
    width: 50%;
    padding-top: 18px;
    padding-bottom: 12px;
  }

  .fluid-cell._w-graphics.right-gap {
    padding-left: 0;
    padding-right: 0;
  }

  .fluid-cell._w-graphics.in-tab {
    padding: 24px 0;
  }

  .fluid-cell.footer-text {
    padding-right: 0;
  }

  .fluid-cell.in-bleeding-image-header {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .fluid-cell.cs-header-title {
    text-align: left;
    align-items: flex-start;
  }

  .fluid-cell.footer-copyright {
    padding-left: 0;
  }

  .container {
    align-items: stretch;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container.in-slider {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container._w-graphics-media.right {
    padding-right: 8vw;
  }

  .container._w-graphics-media.left {
    padding-left: 8vw;
  }

  .container.team-members {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .container.in-bleeding-image {
    padding-left: 0;
    padding-right: 0;
  }

  .container.slimfit {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container.in-bleeding-image-center {
    padding-left: 0;
    padding-right: 0;
  }

  .faux-h1 {
    margin-bottom: 10px;
  }

  .cta-link {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .logo-img {
    height: 30px;
  }

  .child-link {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .nav {
    padding-left: 8vw;
    padding-right: 8vw;
    top: 60px;
  }

  .thumb-link {
    margin-bottom: 12px;
  }

  .block {
    padding: 24px 24px 12px;
  }

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

  .nav-dropdown-link {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .navtainer {
    height: 60px;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .deco-line.small {
    width: 30px;
    height: 2px;
  }

  .action-wrap {
    margin-top: 6px;
  }

  .tabs-menu {
    margin-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  .back-to-top {
    bottom: 12px;
    right: 12px;
  }

  .offsetfix {
    height: 124px;
    margin-top: -60px;
  }

  .p-medium {
    font-size: 1.3rem;
    line-height: 1.9rem;
  }

  .section-graphics-wrap {
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 0;
  }

  .section-graphics-img {
    border-radius: 16px;
  }

  .case-study-block,
  .post-block {
    padding: 24px 24px 18px;
  }

  .testimonial-block {
    padding-left: 24px;
    padding-right: 24px;
  }

  .team-member-line {
    width: 30px;
    height: 2px;
  }

  .member-icon {
    background-size: 14px;
    width: 36px;
    height: 36px;
    bottom: 6px;
    right: 6px;
  }

  .inner-arrow-wrap {
    width: 72px;
  }

  .plus-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 150px;
    height: 150px;
    right: -60px;
  }

  .plus-grid.lb {
    left: -60px;
  }

  .cs-img {
    height: 150px;
  }

  .cs-header {
    padding-bottom: 24px;
  }

  .image-slider {
    margin-bottom: 24px;
    padding-bottom: 84px;
  }

  .image-slider-text-block {
    width: 100%;
    margin-top: 0;
    margin-left: 0%;
    padding: 24px 24px 12px;
    font-size: 1rem;
    line-height: 1.7rem;
  }

  .image-slider-text-wrap {
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .masonry-grid {
    column-count: 1;
  }

  .masonry-caption {
    padding: 24px;
  }

  .bleeding-image.in-header {
    margin-bottom: 6px;
  }

  .bleeding-image-wrap {
    margin-top: 24px;
  }

  .member-cta {
    padding: 12px;
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .map {
    background-size: 48px, cover;
    height: 200px;
  }

  .bleeding-image-wrap-center {
    margin-top: 24px;
  }
}


