:root {
  --black: #1d1d1d;
  --light-gray: #f6f6f6;
  --white: white;
  --gray: #cacaca;
}

.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: var(--black);
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 4.6vw;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

a {
  border-color: var(--black);
  color: var(--black);
  text-decoration: none;
}

a.w--current {
  border-radius: .4375rem;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

img {
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.hide {
  display: none;
}

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

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.container-large {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.form-message-error {
  border-radius: .4375rem;
  margin-top: .75rem;
  padding: .75rem;
}

.utility-component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-form-block {
  background-color: var(--light-gray);
  text-align: center;
  border-radius: .625rem;
  flex-direction: column;
  max-width: 50rem;
  padding: 5rem;
  display: flex;
}

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

.container-medium {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-tiny {
  margin: .25rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom, .margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

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

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

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

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.weight-medium {
  font-size: 2rem;
  font-weight: 500;
}

.weight-medium.text-allcaps {
  font-size: 3rem;
  line-height: 1.1;
}

.weight-medium.text-allcaps.text-white {
  text-transform: none;
}

.text-size-medium {
  font-size: 16px;
}

.text-quote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.styleguide-heading {
  z-index: 4;
  background-color: var(--black);
  color: #fff;
  border-radius: 5px;
  padding: .25rem .5rem;
  position: sticky;
  top: 0;
}

.styleguide_grid-colours {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.styleguide-item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
  display: flex;
}

.icon-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.styleguide-empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.styleguide-icon-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-style-h5.weight-medium {
  font-weight: 500;
}

.heading-style-h1 {
  font-size: 4.6vw;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h1.text-allcaps.weight-medium {
  font-weight: 500;
}

.text-size-tiny {
  font-size: .75rem;
}

.button {
  grid-column-gap: .5rem;
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 10rem;
  align-items: center;
  padding: .75rem 1.5rem;
  display: flex;
}

.button.is-alternate {
  border-style: solid;
  border-color: var(--light-gray);
  background-color: var(--light-gray);
  color: #000;
}

.weight-normal {
  font-weight: 400;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.heading-style-h4.weight-medium {
  font-weight: 500;
}

.text-italic {
  font-style: italic;
}

.icon-xxsmall {
  width: 1rem;
  height: 1rem;
}

.styleguide-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.styleguide-item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.weight-light {
  font-weight: 300;
}

.styleguide-label {
  color: var(--black);
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0000;
  padding: .25rem .5rem .25rem 0;
  font-size: .75rem;
  display: inline-block;
}

.text-size-regular {
  font-size: 1rem;
}

.weight-xbold {
  font-weight: 800;
}

.text-right {
  text-align: right;
  width: 100%;
}

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

.heading-style-h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h3.weight-medium {
  font-weight: 500;
}

.icon-large {
  width: 5rem;
  height: 5rem;
}

.form-input {
  border-style: none none solid;
  border-width: 1px;
  border-color: var(--black) var(--black) var(--gray);
  color: var(--black);
  background-color: #0000;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem .5rem .25rem;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color .3s;
}

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

.form-input:focus {
  border-color: #000 #000 var(--black);
  border-bottom-style: solid;
}

.form-input::placeholder {
  color: #0009;
}

.form-input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.styleguide-button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  display: grid;
}

.styleguide-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.styleguide-color {
  padding-bottom: 8rem;
}

.styleguide-color.is-black {
  background-color: var(--black);
  color: var(--black);
}

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

.styleguide-color.is-gray {
  background-color: var(--gray);
}

.styleguide-color.is-light-gray {
  background-color: var(--light-gray);
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  display: flex;
}

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

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

.weight-semibold {
  font-weight: 600;
}

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

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

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

.styleguide-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.styleguide-subheading {
  z-index: 3;
  background-color: var(--gray);
  color: #000;
  padding: .25rem .5rem;
  position: sticky;
  top: 2rem;
}

.text-allcaps {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
  width: 100%;
}

.text-size-small {
  font-size: .875rem;
}

.icon-small {
  width: 2rem;
  height: 2rem;
}

.rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.rich-text h2, .rich-text h3, .rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.rich-text h5, .rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.rich-text p {
  margin-bottom: 1rem;
}

.rich-text a {
  text-decoration: underline;
}

.rich-text figcaption {
  border-left: 2px solid var(--black);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.icon-medium {
  width: 3rem;
  height: 3rem;
}

.icon-medium.icon-white {
  color: var(--white);
}

.text-size-large {
  font-size: 1.25rem;
  font-weight: 500;
}

.section-padding-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.empty-box {
  z-index: -1;
  background-color: var(--light-gray);
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.styleguide-spacing {
  border: 1px dashed #d3d3d3;
}

.padding-global {
  margin-top: 104px;
  padding-left: 3%;
  padding-right: 3%;
}

.section-padding-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-padding-large {
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.text-span {
  text-transform: none;
}

.button-secondary-small {
  grid-column-gap: .5rem;
  border: 1px solid var(--gray);
  color: var(--black);
  text-align: center;
  background-color: #0000;
  border-radius: 10rem;
  align-items: center;
  padding: .5rem 1.25rem;
  display: flex;
}

.button-secondary-small.is-alternate {
  border-color: var(--light-gray);
  color: var(--light-gray);
}

.button-secondary {
  grid-column-gap: .5rem;
  border: 1px solid var(--gray);
  color: var(--black);
  text-align: center;
  background-color: #0000;
  border-radius: 10rem;
  align-items: center;
  padding: .75rem 1.5rem;
  display: flex;
}

.button-secondary.is-alternate {
  border-color: var(--light-gray);
  color: var(--light-gray);
}

.button-small {
  grid-column-gap: .5rem;
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 10rem;
  align-items: center;
  padding: .5rem 1.25rem;
  display: flex;
}

.button-small.is-alternate {
  border-color: var(--light-gray);
  background-color: var(--light-gray);
  color: var(--black);
}

.button-small.button-center.w--current {
  border-radius: 10rem;
}

.button-link {
  border: 1px none var(--black);
  color: var(--black);
  text-align: center;
  background-color: #0000;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
  transition: transform .35s;
}

.button-link:hover {
  transform: translate(7px);
}

.button-link.is-alternate {
  color: #fff5e9;
}

.navbar {
  background-color: var(--white);
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 5rem;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar-logo-link {
  padding-left: 0;
}

.navbar-logo-link.w--current {
  background-color: #0000;
}

.navbar-logo {
  width: 100px;
  height: 80%;
  transition: transform .35s;
}

.navbar-logo:hover {
  transform: scale(1.04);
}

.navbar-menu {
  align-items: center;
  display: flex;
  position: static;
}

.navbar-menu.page-height-tablet {
  grid-column-gap: .75rem;
}

.navbar-link {
  text-transform: uppercase;
  padding: .5rem 1rem;
  font-size: .875rem;
  transition: border-radius .3s, background-color .3s;
}

.navbar-link:hover {
  background-color: var(--light-gray);
  border-radius: 10rem;
}

.navbar-link.w--current {
  background-color: var(--light-gray);
  color: var(--black);
  border-radius: 10rem;
}

.navbar-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  font-size: .875rem;
  display: flex;
}

.navbar-menu-button {
  padding: 0;
}

.styleguide-logo {
  width: 200px;
}

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

.header-component {
  padding-top: 15%;
}

.header-component-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.header-content-left {
  overflow: hidden;
}

.header-image-wrapper {
  border-radius: .625rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-height: 40vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-image {
  object-fit: cover;
  width: 100%;
  min-width: 100%;
  height: 100%;
}

.image-reveal-overlay {
  background-color: var(--white);
  align-items: flex-start;
  width: 100%;
  height: 0%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.image-reveal-overlay.is-light-gray {
  background-color: var(--light-gray);
}

.section-about {
  border-radius: .625rem;
  margin-left: 3%;
  margin-right: 3%;
}

.about-component {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.about-top-component {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.arrow-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.section-label {
  border: 1px solid var(--gray);
  border-radius: 10rem;
  padding: .25rem 1rem;
}

.section-projects {
  border-radius: .625rem;
}

.projects-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.projects-row {
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.projects-card {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.projects-card-image-wrapper {
  border-radius: .625rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.projects-card-image {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  min-height: 25rem;
}

.projects-card-content {
  grid-column-gap: .5rem;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1rem;
  padding-left: .5rem;
  display: flex;
}

.projects-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.project-card-top-content {
  justify-content: space-between;
  padding-left: .5rem;
  padding-right: .5rem;
  display: flex;
}

.project-year-wrapper {
  border: 1px none var(--gray);
  background-color: var(--light-gray);
  border-radius: 10rem;
  padding: .25rem 1rem;
}

.project-year-wrapper.is-white {
  background-color: var(--white);
}

.project-category-wrapper {
  border: 1px none var(--gray);
  background-color: var(--light-gray);
  border-radius: 10rem;
  padding: .25rem 1rem;
}

.project-category-wrapper.is-white {
  background-color: var(--white);
}

.projects-card-wrapper {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.empty-state {
  background-color: var(--black);
  color: var(--white);
  border-radius: .4375rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-image-wrapper {
  border-radius: .625rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-image {
  object-fit: cover;
  width: 100%;
  min-height: 100%;
}

.section-services {
  margin-top: 7rem;
}

.services-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.content-left {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  overflow: visible;
}

.content-left.align-top {
  overflow: hidden;
}

.services-list {
  grid-column-gap: 2rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-item {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  background-color: var(--light-gray);
  border-radius: .625rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.service-item:last-child {
  padding-bottom: 0;
}

.service-title-wrapper {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.service-content-top {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 2rem;
  display: flex;
}

.service-icon-wrapper {
  background-color: var(--black);
  border-radius: .625rem;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-arrow {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.logo-component {
  grid-column-gap: 3.5rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
  overflow: hidden;
}

.partner-logo {
  max-height: 4rem;
}

.section-cta {
  border-radius: .625rem;
  margin-top: 8rem;
  margin-left: 3%;
  margin-right: 3%;
  position: relative;
  overflow: hidden;
}

.cta-component {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.cta-content {
  flex: 1;
}

.cta-button-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.cta-background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.cta-image-overlay {
  z-index: 1;
  background-color: #000000b3;
  position: absolute;
  inset: 0%;
}

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

.section-get-in-touch-banner {
  overflow: hidden;
}

.banner-component {
  white-space: nowrap;
  flex-direction: column;
  display: none;
}

.banner-heading-top {
  text-transform: uppercase;
  font-size: 8rem;
  font-weight: 500;
}

.banner-heading-bottom {
  color: var(--gray);
  text-transform: uppercase;
  align-self: flex-end;
  font-size: 8rem;
  font-weight: 500;
}

.asterisk {
  color: var(--gray);
}

.asterisk-2 {
  color: var(--black);
}

.footer-top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: start;
}

.footer-logo-link {
  padding-left: 0;
}

.footer-link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: .25rem;
  white-space: normal;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  place-items: flex-start start;
  display: flex;
}

.footer-link {
  color: var(--gray);
  text-align: left;
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 400;
  text-decoration: none;
  transition: color .35s, transform .35s;
}

.footer-link:hover {
  color: var(--white);
  transform: translate(5px);
}

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

.footer-social-list {
  grid-column-gap: .75rem;
  grid-row-gap: .25rem;
  white-space: normal;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: flex;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: color .35s;
}

.social-icon:hover {
  color: #2374d9;
}

.line-divider {
  background-color: #4e4e4e;
  width: 100%;
  height: 1px;
}

.footer-bottom-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: space-between;
  display: flex;
}

.footer-credit-text {
  font-size: .875rem;
}

.footer-logo {
  width: 160px;
  transition: transform .35s;
}

.footer-logo:hover {
  transform: scale(1.04);
}

.footer-links {
  grid-column-gap: 4rem;
  justify-content: flex-start;
  display: flex;
}

.back-to-top-wrapper {
  border: 1px solid var(--gray);
  color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  transition: transform .35s;
  display: flex;
}

.back-to-top-wrapper:hover {
  transform: translate(0, -5px);
}

.back-to-top-wrapper.w--current {
  border-radius: 100%;
}

.about-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.subpage-header-component {
  padding-top: 5%;
}

.about-hero-image-wrapper {
  background-image: linear-gradient(to right, #1d1d1d0f, #1d1d1d00);
  border-radius: .625rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 80dvh;
  padding: 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-hero-content-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  display: flex;
}

.about-hero-content-wrapper.max-width-small {
  align-self: flex-start;
}

.section-team {
  display: none;
}

.member-component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
  position: relative;
}

.member-content-left {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: sticky;
  top: 7rem;
}

.team-list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  display: grid;
}

.team-item {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.team-image-wrapper {
  border-radius: .625rem;
  width: 100%;
  padding-top: 100%;
  display: none;
  position: relative;
  overflow: hidden;
}

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

.team-info-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section-how-we-work {
  border-radius: .625rem;
}

.section-testimonials {
  border-radius: .625rem;
  margin-bottom: 7rem;
  margin-left: 3%;
  margin-right: 3%;
}

.testimonials-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  align-items: start;
  display: grid;
}

.testimonials-content {
  background-color: var(--white);
  border-radius: .625rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2rem;
  display: flex;
}

.testimonial-client-logo-wrapper {
  margin-bottom: 2rem;
  display: flex;
}

.testimonial-client {
  text-align: left;
  align-items: center;
  margin-bottom: 1.5rem;
  display: block;
}

.client-image-wrapper {
  margin-right: 1rem;
}

.client-image {
  object-fit: cover;
  border-radius: 0%;
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  min-height: 5rem;
  margin-bottom: 1rem;
  padding-bottom: 0;
}

.testimonials-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.client-logo {
  max-height: 3.5rem;
}

.about-hero-image {
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  mix-blend-mode: normal;
  object-fit: cover;
  width: 100%;
  min-height: 100%;
  position: absolute;
  inset: 0%;
}

.how-we-work-component {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.how-we-work-top-component {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.how-we-work-image-wrapper {
  border-radius: .625rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.how-we-work-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tabs-menu {
  z-index: 100;
  grid-column-gap: 1rem;
  background-color: var(--white);
  border-radius: 10rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 6rem;
  padding: .5rem;
  display: inline-block;
  position: sticky;
  top: 5rem;
}

.our-projects-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.tab-link-tab-1 {
  border: 1px none var(--gray);
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 10rem;
  padding: .5rem 1.25rem;
  transition: background-color .35s;
}

.tab-link-tab-1:hover {
  background-color: var(--light-gray);
}

.tab-link-tab-1.w--current {
  background-color: var(--black);
  color: var(--white);
  border-radius: 10rem;
  margin-right: 1rem;
  padding: .5rem 1.25rem;
}

.tab-link-tab-2 {
  border: 1px none var(--gray);
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 10rem;
  padding: .5rem 1.25rem;
  transition: background-color .35s;
}

.tab-link-tab-2:hover {
  background-color: var(--light-gray);
}

.tab-link-tab-2.w--current {
  background-color: var(--black);
  color: var(--white);
  border-radius: 10rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.tab-link-tab-3 {
  border: 1px none var(--gray);
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 10rem;
  padding: .5rem 1.25rem;
  transition: background-color .35s;
}

.tab-link-tab-3:hover {
  background-color: var(--light-gray);
}

.tab-link-tab-3.w--current {
  background-color: var(--black);
  color: var(--white);
  border-radius: 10rem;
  margin-left: 1rem;
}

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

.other-projects-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.content-center {
  flex-direction: column;
  align-items: center;
  display: flex;
  overflow: visible;
}

.project-header-component {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.project-header-content {
  background-color: var(--light-gray);
  border-radius: .625rem;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70dvh;
  padding: 3rem;
  display: flex;
}

.project-header-detail-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  overflow: hidden;
}

.project-header-image-wrapper {
  border-radius: .625rem;
  min-height: 70dvh;
  position: relative;
  overflow: hidden;
}

.project-header-image {
  object-fit: cover;
  width: 100%;
  height: 70dvh;
}

.image-grid-component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.wide-image-wrapper {
  border-radius: .625rem;
  position: relative;
  overflow: hidden;
}

.wide-project-image {
  object-fit: cover;
  width: 100%;
  height: 80dvh;
}

.small-image-wrapper-left {
  border-radius: .625rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.project-content-wrapper-right {
  grid-row-gap: 3rem;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-testimonial-wrapper {
  grid-row-gap: 1rem;
  background-color: var(--light-gray);
  border-radius: .625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 3rem;
  display: flex;
  overflow: hidden;
}

.small-project-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.small-image-wrapper-right {
  border-radius: .625rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.button-wrapper {
  display: flex;
}

.button-arrow {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
}

.section-contact {
  overflow: hidden;
}

.contact-component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.contact-list {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-item {
  grid-column-gap: 4rem;
  border-top: 1px solid var(--gray);
  text-align: right;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 3% 5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.contact-form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-field-2-col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-field-wrapper {
  position: relative;
}

.field-label {
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-weight: 400;
}

.success-message {
  background-color: var(--black);
  color: var(--white);
  border-radius: .4375rem;
  padding: 1.5rem;
}

.success-text {
  font-weight: 600;
}

.error-message {
  border-radius: .4375rem;
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.error-text {
  color: #e23939;
}

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

.contact-image-wrapper {
  border-radius: .625rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-image {
  object-fit: cover;
  width: 100%;
  min-height: 100%;
}

.contact-item-background {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% -100%;
}

.contact-details-wrapper {
  z-index: 4;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.utility-button {
  grid-column-gap: .5rem;
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  padding: .75rem 1.5rem;
  transition: transform .35s;
  display: flex;
}

.utility-button:hover {
  transform: scale(1.03);
}

.section-projects-grid {
  border-radius: .625rem;
  margin-left: 3%;
  margin-right: 3%;
}

.contact-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.dv, .webflow, .license-page-link {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
}

.license-wrapper {
  grid-row-gap: 4rem;
  background-color: var(--light-gray);
  border-radius: .625rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 80dvh;
  padding: 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.licenses-list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  display: grid;
}

.list-item {
  flex-direction: column;
  align-items: stretch;
  transition: transform .35s;
  display: flex;
}

.list-item:hover {
  transform: translate(0, -1rem);
}

.license-image-wrapper {
  border-radius: .625rem;
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

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

.license-link-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-span-2 {
  text-decoration: underline;
}

.changelog-wrapper {
  grid-row-gap: 4rem;
  background-color: var(--light-gray);
  border-radius: .625rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.changelog-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.license-heading-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.section-testimonial {
  border-radius: .625rem;
  margin-top: 7rem;
  margin-left: 3%;
  margin-right: 3%;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.testimonial-component {
  grid-column-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.testimonial-image-wrapper {
  border-radius: .625rem;
  overflow: hidden;
}

.testimonial-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.testimonial-content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.testimonial13_rating-wrapper {
  display: flex;
}

.testimonial13_rating-icon {
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .25rem;
  display: flex;
}

.client-details {
  text-align: left;
  align-items: center;
  display: flex;
}

.text-weight-semibold {
  font-weight: 600;
}

.testimonial-divider {
  background-color: var(--black);
  align-self: stretch;
  width: 1px;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.testimonial-logo {
  max-height: 3rem;
}

.section-team-member {
  border-radius: .625rem;
  margin: 7rem 3%;
}

.member-content-right {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 7rem;
}

.team-member-description-wrapper {
  padding-top: 10.5rem;
}

.team-member-description {
  font-size: 1.5rem;
}

.heading {
  margin-top: 2.6rem;
  margin-bottom: .2rem;
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .styleguide-icon-list {
    grid-auto-flow: row;
  }

  .heading-style-h1 {
    font-size: 6.5vw;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .section-padding-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-padding-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .button-small.button-center {
    justify-content: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
  }

  .button-small.button-center.w--current {
    border-radius: 10rem;
  }

  .navbar-menu {
    background-color: var(--white);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar-menu.page-height-tablet {
    border: 1px solid var(--gray);
    border-radius: 20px;
    height: auto;
    margin-top: 1rem;
    margin-left: 3%;
    margin-right: 3%;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    transition: height .5s;
    overflow: visible;
  }

  .navbar-link {
    text-align: center;
    width: auto;
    padding: .75rem 0;
    font-size: 1rem;
  }

  .navbar-button {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: .5rem;
    margin-left: 0;
  }

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

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

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

  .line-middle {
    background-color: var(--black);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .line-bottom {
    background-color: var(--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .header-component-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .header-image {
    border-radius: 1rem;
  }

  .about-component {
    grid-column-gap: 0rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: flex-end end;
    display: grid;
  }

  .projects-row {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .projects-card-image {
    height: 50dvh;
    min-height: auto;
  }

  .projects-heading-wrapper, .services-heading-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .service-item {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: 2rem;
    display: flex;
  }

  .service-content-top {
    padding-bottom: 2rem;
  }

  .logo-component {
    grid-row-gap: 2rem;
  }

  .cta-component {
    grid-column-gap: 3rem;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .cta-content {
    margin-right: 0;
  }

  .cta-button-row {
    flex: none;
  }

  .banner-component {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .banner-heading-top, .banner-heading-bottom {
    font-size: 4rem;
  }

  .footer-top-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: .75fr 1fr .5fr;
    justify-content: center;
    justify-items: center;
  }

  .about-heading-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .about-hero-image-wrapper {
    background-image: linear-gradient(to right, #1d1d1d66, #1d1d1d40);
    padding-bottom: 10%;
    padding-left: 5%;
  }

  .member-component {
    grid-column-gap: 3rem;
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr;
  }

  .member-content-left {
    text-align: left;
    align-items: flex-start;
    position: static;
  }

  .team-list {
    grid-column-gap: 2rem;
  }

  .section-testimonials {
    margin-bottom: 6rem;
  }

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

  .testimonials-heading-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .how-we-work-component {
    grid-column-gap: 0rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: flex-end end;
    display: grid;
  }

  .our-projects-heading-wrapper, .other-projects-heading-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .project-header-component {
    grid-column-gap: 3rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .project-header-content, .project-header-image-wrapper {
    min-height: 50dvh;
  }

  .project-header-image {
    height: 50dvh;
  }

  .image-grid-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .wide-project-image {
    height: 50dvh;
  }

  .project-content-wrapper-right {
    grid-row-gap: 2.5rem;
  }

  .project-testimonial-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .contact-component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .contact-details-wrapper {
    align-items: flex-start;
  }

  .contact-heading-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .license-wrapper {
    padding-bottom: 10%;
    padding-left: 5%;
  }

  .licenses-list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .changelog-wrapper {
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 5%;
  }

  .changelog-heading-wrapper, .license-heading-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .section-testimonial {
    margin-top: 5rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .testimonial-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .testimonial-image-wrapper {
    width: 100%;
    height: 100%;
  }

  .client-details {
    margin-bottom: 2rem;
  }

  .section-team-member {
    margin-top: 5rem;
    margin-bottom: 6rem;
  }

  .member-content-right {
    text-align: center;
    align-items: center;
    position: static;
  }

  .team-member-description-wrapper {
    padding-top: 0;
  }

  .team-member-description {
    text-align: left;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

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

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

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

  .utility-form-block {
    padding: 3rem;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical.margin-medium.margin-0-mobile {
    margin-top: 0;
  }

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

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .text-quote {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h1 {
    font-size: 6.5vw;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

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

  .section-padding-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section-padding-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-padding-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .navbar {
    height: auto;
    min-height: 4rem;
  }

  .navbar-logo-link {
    padding-left: 0;
  }

  .navbar-logo {
    width: 100px;
    height:80%;
  }

  .navbar-menu.page-height-tablet {
    padding-top: 3%;
    padding-bottom: 3%;
  }

  .header-component-wrapper {
    grid-template-columns: 1fr;
  }

  .about-component {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: flex-start;
    display: flex;
  }

  .projects-component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .projects-row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .projects-card-content {
    padding-top: 1rem;
    padding-left: .5rem;
  }

  .projects-heading-wrapper, .services-heading-wrapper, .services-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem 0;
  }

  .service-title-wrapper {
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .service-content-top {
    padding-bottom: 1.5rem;
  }

  .logo-component {
    grid-column-gap: 5.75rem;
    padding-top: 1rem;
  }

  .partner-logo {
    max-height: 3rem;
  }

  .cta-component {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }

  .cta-content {
    margin-right: 0;
  }

  .cta-button-row {
    justify-content: center;
    width: 100%;
  }

  .banner-component {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .banner-heading-top, .banner-heading-bottom {
    font-size: 3rem;
  }

  .footer-top-wrapper {
    grid-template-columns: 1fr 1.5fr .75fr;
  }

  .footer-link-list {
    grid-column-gap: 0px;
    grid-row-gap: .5rem;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer-social-list {
    grid-row-gap: .5rem;
  }

  .footer-bottom-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    justify-items: center;
    padding-bottom: 1rem;
  }

  .footer-credit-text {
    margin-top: 1rem;
  }

  .footer-logo {
    width: 140px;
  }

  .about-heading-wrapper {
    grid-template-columns: 1fr;
  }

  .about-hero-image-wrapper {
    background-image: linear-gradient(to right, #1d1d1d66, #1d1d1d40);
    min-height: 70dvh;
  }

  .member-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .team-list {
    grid-row-gap: 3rem;
  }

  .team-image-wrapper {
    height: 100%;
  }

  .section-testimonials {
    margin-bottom: 4rem;
  }

  .testimonials-component {
    grid-template-columns: 1fr;
  }

  .testimonials-content {
    padding: 1.5rem;
  }

  .testimonial-client {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }

  .client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 1rem;
  }

  .testimonials-heading-wrapper {
    grid-template-columns: 1fr;
  }

  .client-logo {
    max-height: 3rem;
  }

  .how-we-work-component {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: flex-start;
    display: flex;
  }

  .tabs-menu {
    align-self: center;
  }

  .our-projects-heading-wrapper {
    grid-template-columns: 1fr;
  }

  .tabs {
    align-items: flex-start;
  }

  .other-projects-heading-wrapper {
    grid-template-columns: 1fr;
  }

  .project-header-component {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .image-grid-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .project-content-wrapper-right {
    grid-row-gap: 2rem;
  }

  .contact-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .contact-details-wrapper {
    align-items: flex-start;
  }

  .contact-heading-wrapper {
    grid-template-columns: 1fr;
  }

  .license-wrapper {
    min-height: 70dvh;
  }

  .licenses-list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .license-image-wrapper {
    height: 100%;
  }

  .changelog-heading-wrapper, .license-heading-wrapper {
    grid-template-columns: 1fr;
  }

  .section-testimonial {
    margin-top: 5rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .testimonial-component {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .client-details {
    align-items: center;
    width: 100%;
  }

  .section-team-member {
    margin-bottom: 4rem;
  }
}

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

  h2 {
    text-transform: none;
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

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

  .utility-form-block {
    padding: 1.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical.margin-medium.margin-0-mobile {
    margin-top: 0;
  }

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

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .weight-medium.text-allcaps {
    font-size: 2rem;
  }

  .heading-style-h2 {
    font-size: 1.75rem;
  }

  .styleguide_grid-colours {
    grid-template-columns: 1fr;
  }

  .heading-style-h6 {
    font-size: .875rem;
  }

  .heading-style-h5 {
    font-size: 1rem;
  }

  .heading-style-h1 {
    font-size: 2rem;
  }

  .heading-style-h4 {
    font-size: 1.25rem;
  }

  .heading-style-h3 {
    font-size: 1.3rem;
  }

  .padding-global, .navbar {
    padding-left: 5%;
    padding-right: 5%;
  }

  .navbar-logo {
    width: 70px;
  }

  .navbar-menu.page-height-tablet {
    height: auto;
    margin-top: .5rem;
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .header-component-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .header-image {
    object-fit: cover;
    border-radius: .5rem;
    height: auto;
    min-height: 50vh;
  }

  .section-about {
    margin-left: 5%;
    margin-right: 5%;
  }

  .section-about.background-light-gray {
    border-radius: .5rem;
  }

  .about-component {
    grid-template-columns: 1fr;
  }

  .projects-row {
    grid-row-gap: 3rem;
  }

  .projects-card-image-wrapper {
    border-radius: .5rem;
  }

  .projects-heading-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .about-image-wrapper {
    border-radius: .5rem;
  }

  .about-image {
    min-height: 50vh;
  }

  .section-services {
    margin-top: 4rem;
  }

  .services-component-wrapper {
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .services-heading-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .services-list {
    grid-row-gap: 1.5rem;
  }

  .logo-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: grid;
  }

  .cta-content {
    text-align: center;
    align-self: center;
  }

  .cta-button-row {
    justify-content: center;
  }

  .banner-component {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .banner-heading-top, .banner-heading-bottom {
    font-size: 2.5rem;
  }

  .footer-top-wrapper {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .footer-link-list, .footer-social-list {
    grid-row-gap: 1rem;
    align-items: flex-start;
  }

  .footer-bottom-wrapper {
    grid-row-gap: .5rem;
    flex-direction: column;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-links {
    grid-row-gap: 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 85%;
  }

  .about-heading-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .subpage-header-component {
    padding-top: 10%;
  }

  .about-hero-image-wrapper {
    justify-content: center;
    min-height: 80dvh;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .member-component, .team-list {
    grid-template-columns: 1fr;
  }

  .team-image-wrapper {
    padding-top: 90%;
  }

  .testimonials-heading-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .how-we-work-component {
    grid-template-columns: 1fr;
  }

  .how-we-work-image-wrapper {
    border-radius: .5rem;
  }

  .how-we-work-image {
    min-height: 50vh;
  }

  .tabs-menu {
    grid-column-gap: 0rem;
    grid-row-gap: .5rem;
    border-radius: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    display: flex;
    position: static;
  }

  .our-projects-heading-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .tab-link-tab-1, .tab-link-tab-1.w--current, .tab-link-tab-2 {
    text-align: center;
    margin-right: 0;
  }

  .tab-link-tab-2.w--current {
    margin-left: 0;
    margin-right: 0;
  }

  .tab-link-tab-3 {
    text-align: center;
  }

  .tab-link-tab-3.w--current {
    margin-left: 0;
  }

  .tabs {
    align-items: stretch;
  }

  .other-projects-heading-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .project-header-component {
    grid-template-columns: 1fr;
  }

  .project-header-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .project-header-detail-list {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .image-grid-component {
    grid-template-columns: 1fr;
  }

  .small-project-image, .small-image-wrapper-right {
    height: 50dvh;
  }

  .contact-component {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-row-gap: 2rem;
  }

  .form-field-2-col {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .contact-image-wrapper {
    border-radius: .5rem;
  }

  .contact-image {
    min-height: 50vh;
  }

  .contact-details-wrapper {
    grid-row-gap: 1rem;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-heading-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .license-wrapper {
    justify-content: center;
    min-height: 80dvh;
    padding-bottom: 5%;
  }

  .licenses-list {
    grid-template-columns: 1fr 1fr;
  }

  .license-image-wrapper {
    padding-top: 90%;
  }

  .changelog-wrapper {
    text-align: center;
    justify-content: center;
    padding-bottom: 10%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .changelog-heading-wrapper, .license-heading-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .section-testimonial {
    margin-top: 4rem;
    margin-left: 5%;
    margin-right: 5%;
  }

  .section-testimonial.background-light-gray {
    border-radius: .5rem;
  }

  .testimonial-component {
    grid-template-columns: 1fr;
  }

  .testimonial-divider {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .section-team-member {
    margin-top: 4rem;
  }

  .team-member-description {
    font-size: 1rem;
  }
}

#w-node-bbcd3ccc-2514-7f71-5026-488a5d7294e2-34ef8418 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-bbcd3ccc-2514-7f71-5026-488a5d7294e5-34ef8418 {
  grid-area: 2 / 2 / 3 / 3;
  justify-self: end;
}

#w-node-_7f46aa13-fb11-5d9d-9145-a6b959f49e8e-34ef8418, #w-node-a3d87164-fb43-6d84-fe1f-99051057cfe8-34ef8418 {
  justify-self: end;
}

#w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c2-34ef8418 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c8-34ef8418 {
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
}

#w-node-_16bc0673-c5cc-889b-1941-4eecefb4277c-34ef8418 {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-f809f84f-4b2c-faa4-ce33-30d08d2bf4de-34ef8418 {
  justify-self: end;
}

#w-node-bef5bb48-e81c-477d-9172-2bfc87d2a5f2-34ef8418 {
  align-self: start;
}

#w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3c9-f8e1d3c3 {
  justify-self: start;
}

#w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3cb-f8e1d3c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3cc-f8e1d3c3 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3d5-f8e1d3c3 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: end;
}

#w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3de-f8e1d3c3 {
  justify-self: end;
}

#w-node-_89a41ef8-b9ed-2b3d-6921-c5edf2e642c7-34ef841b {
  align-self: start;
}

#w-node-_89a41ef8-b9ed-2b3d-6921-c5edf2e642ce-34ef841b {
  justify-self: end;
}

#w-node-_197288cc-8c58-5e04-87ec-faa023de1fd7-34ef841b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c2-34ef841b {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c8-34ef841b {
  grid-area: 2 / 2 / 3 / 3;
  place-self: start;
}

#w-node-_16bc0673-c5cc-889b-1941-4eecefb4277c-34ef841b {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_89a41ef8-b9ed-2b3d-6921-c5edf2e642c7-34ef8421 {
  align-self: start;
}

#w-node-c012c84c-02d5-81ed-f5c4-d6f47ccb950f-34ef8421 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4761be84-ef91-4cf8-4ae5-1bc38a25a68d-34ef8421 {
  justify-self: auto;
}

#w-node-a8272e16-146b-170d-0e3c-e3750c1dc10b-34ef8424 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_689bf62e-73fb-1a37-1cc4-03e6e84917bb-34ef8424 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_2e701a76-72f2-6cbb-cb37-7a1d03b96252-34ef8424 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-d2389e6d-37cf-a193-526e-e84e405d2098-34ef8424 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d360245b-73e6-49c1-1b52-ac23199723d5-34ef8424, #w-node-d7fdbca5-f00a-ad0a-b747-6e5c8a5fb4c5-34ef8431 {
  align-self: start;
}

#w-node-d7fdbca5-f00a-ad0a-b747-6e5c8a5fb4c8-34ef8431 {
  justify-self: end;
}

#w-node-_39a67aeb-f7a3-9613-1b15-fa1efa3f4622-34ef8436, #w-node-_6d5690af-c0c4-4b1f-104a-fcef841a2a19-34ef8436, #w-node-_908770f0-e0c4-a54c-d4e1-62cc314db9ea-34ef8436, #w-node-_04e442ff-dee9-68b8-b21b-1bc65dc078bb-34ef8436 {
  align-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-34ef8437 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-34ef8437 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86220-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86225-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86234-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86244-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86249-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86253-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86258-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86299-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86310-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86315-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86322-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86393-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8638e-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86407-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86415-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86420-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc86438-34ef8437, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-34ef8437, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-34ef8437 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-34ef8437 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-34ef8437 {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-bbcd3ccc-2514-7f71-5026-488a5d7294e5-34ef8418 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c2-34ef8418 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c8-34ef8418 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: auto;
  }

  #w-node-_16bc0673-c5cc-889b-1941-4eecefb4277c-34ef8418 {
    grid-area: 3 / 1 / 5 / 3;
  }

  #w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3c9-f8e1d3c3 {
    justify-self: start;
  }

  #w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3cb-f8e1d3c3 {
    justify-self: stretch;
  }

  #w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3d5-f8e1d3c3, #w-node-_32d3a832-a99a-f4af-392a-cf2806172332-34ef841b {
    justify-self: center;
  }

  #w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c2-34ef841b {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c8-34ef841b {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: auto;
  }

  #w-node-_16bc0673-c5cc-889b-1941-4eecefb4277c-34ef841b {
    grid-area: 3 / 1 / 5 / 3;
  }

  #w-node-c012c84c-02d5-81ed-f5c4-d6f47ccb950f-34ef8421 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_4761be84-ef91-4cf8-4ae5-1bc38a25a68d-34ef8421 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_6fb3a57a-c4c6-91ef-b6ff-9175d4046511-34ef8425, #w-node-f2deea31-c420-a8d7-7afd-6399d675b219-34ef8425 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-bbcd3ccc-2514-7f71-5026-488a5d7294e5-34ef8418, #w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c8-34ef8418 {
    grid-column-start: 1;
  }

  #w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3e3-f8e1d3c3 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_9f62d8f2-4183-f9e1-a59a-2139c41af8c8-34ef841b {
    grid-column-start: 1;
  }

  #w-node-_283b5adb-d39f-f728-83b8-6ee65d7f1f54-34ef8426 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_1bf4b083-ce8b-c77e-d006-aa95f8e1d3c9-f8e1d3c3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_689bf62e-73fb-1a37-1cc4-03e6e84917bb-34ef8424 {
    grid-column-end: 3;
  }

  #w-node-_2e701a76-72f2-6cbb-cb37-7a1d03b96252-34ef8424 {
    grid-area: 3 / 1 / 4 / 3;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}