:root {
  --back-cream: #f1ede5;
  --black: #0e0e0e;
  --dark-grey: #60594e;
  --grey: #948b78;
  --soft-grey: #c8c2b5;
  --silver: #f2ede5;
  --light-black: #212121;
  --white: white;
  --soft-black: #3a3732;
  --peach: #fb9f6c;
  --dark-gre: #323232;
  --pink: #ecc8ca;
  --sand: #ccc6ac;
  --brown: #6b4428;
  --mint: #a1b6a5;
  --grey-2: #7c7c7c;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  background-color: var(--back-cream);
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.25em;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4em;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4em;
}

h5 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

h6 {
  color: #bdbdb3;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5em;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: var(--dark-grey);
  text-decoration: none;
  transition: opacity .2s, color .2s;
}

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

li {
  opacity: .9;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.4em;
}

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

label {
  color: var(--grey);
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 400;
  display: block;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 5px solid var(--soft-grey);
  color: var(--dark-grey);
  margin-top: 24px;
  margin-bottom: 32px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.4em;
}

figure {
  margin-bottom: 10px;
}

.page-wrapper {
  width: 100%;
  min-height: 75vh;
  margin-top: -85px;
  position: relative;
  overflow: hidden;
}

.section {
  z-index: 0;
  color: var(--silver);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.large {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.small {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.section.x-large {
  padding-top: 180px;
  padding-bottom: 180px;
}

.section.page-hero {
  background-color: var(--back-cream);
  padding-top: 150px;
  padding-bottom: 20px;
}

.section.grey {
  background-color: var(--silver);
  color: var(--dark-grey);
  background-image: none;
  padding-top: 80px;
}

.section.grey-page-hero {
  background-color: var(--silver);
  color: var(--dark-grey);
  padding-top: 180px;
  padding-bottom: 100px;
}

.section.project-hero {
  background-color: var(--grey);
  color: var(--white);
  align-items: flex-end;
  height: 100vh;
  padding-top: 150px;
  padding-bottom: 40px;
  display: flex;
}

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

.button {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border: 1px solid #000;
  border-radius: 40px;
  flex: none;
  margin-bottom: 8px;
  padding: 6px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .2s, color .2s, box-shadow .2s, background-color .2s;
}

.button:hover {
  border-color: var(--soft-black);
  background-color: var(--soft-black);
  color: var(--back-cream);
}

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

.button.outline {
  color: var(--black);
  background-color: #0000;
  border: 1px solid #000;
}

.button.outline:hover {
  background-color: var(--black);
  color: #fff;
}

.button.outline:active {
  border-color: var(--dark-grey);
  background-color: var(--dark-grey);
}

.button.grey {
  border-color: var(--silver);
  background-color: var(--silver);
  box-shadow: none;
  color: var(--dark-grey);
}

.button.grey:hover {
  border-color: var(--soft-grey);
  background-color: var(--soft-grey);
  color: var(--black);
}

.button.grey:active {
  color: var(--black);
  background-color: #bdbdb3;
}

.button.grey-outline {
  border: 1px solid var(--dark-grey);
  color: var(--dark-grey);
  background-color: #0000;
  font-family: Manrope, sans-serif;
}

.button.grey-outline:hover {
  background-color: var(--dark-grey);
  color: var(--white);
}

.spacer {
  background-color: var(--silver);
  height: 48px;
}

.spacer._64 {
  background-color: #0000;
  width: 64px;
  height: 64px;
}

.spacer._32 {
  background-color: #0000;
  border-radius: 6px;
  width: 32px;
  height: 32px;
}

.spacer._24 {
  text-transform: uppercase;
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.spacer._48 {
  background-color: #0000;
  border-radius: 6px;
  width: 48px;
}

.spacer._128 {
  background-color: #0000;
  width: 128px;
  height: 128px;
}

.spacer._80 {
  background-color: #0000;
  width: 80px;
  height: 80px;
}

.spacer._96 {
  background-color: #5eb2f400;
  width: 96px;
  height: 96px;
}

.spacer._32 {
  background-color: #0000;
  height: 32px;
}

.spacer._16 {
  background-color: #0000;
  width: 16px;
  height: 16px;
}

.text-box {
  max-width: 650px;
}

.text-box._550px {
  max-width: 550px;
}

.text-box._400px {
  max-width: 400px;
}

.text-box._720px {
  max-width: 720px;
}

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

.text-box._850px {
  max-width: 850px;
}

.text-box._500px {
  max-width: 500px;
}

.text-box._600px {
  max-width: 600px;
}

.text-box._450px {
  max-width: 450px;
}

.text-box._320px {
  max-width: 320px;
}

.text-box._350px {
  max-width: 350px;
}

.text-box._750px {
  max-width: 750px;
}

.text-box._750px.centered {
  margin-left: auto;
  margin-right: auto;
}

._12-columns {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.align-left {
  justify-content: flex-start;
}

.container {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.container.z-index-2 {
  z-index: 2;
}

.color-block {
  background-color: var(--black);
  border-radius: 12px;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.peach {
  background-color: var(--peach);
  border-style: none;
}

.color-block.blue {
  background-color: var(--dark-gre);
}

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

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

.color-block.dark-grey {
  background-color: var(--dark-grey);
}

.color-block.back-grey {
  border: 1px solid var(--silver);
  background-color: var(--back-cream);
}

.color-block.soft-grey {
  background-color: var(--soft-grey);
}

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

.color-block.white {
  border: 1px solid var(--silver);
  background-color: #fff;
}

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

.color-block.brown {
  background-color: var(--brown);
  border-style: none;
}

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

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

.color-block.mint {
  background-color: var(--mint);
  border-style: none;
}

.color-block.grey-colour {
  background-color: var(--grey-2);
  border-style: none;
}

.white {
  color: #fff;
  font-weight: 300;
}

.column-styleguide {
  background-color: var(--silver);
  border-radius: 12px;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  min-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column._10-column {
  width: 83.33%;
}

.column._11-column {
  width: 91.66%;
}

.column._6-column {
  width: 50%;
}

.column._5-column {
  width: 41.66%;
}

.column._1-column {
  width: 8.33%;
}

.column._4-column {
  width: 33.33%;
}

.column._9-column {
  width: 75%;
}

.column._3-column {
  width: 25%;
}

.column._2-column {
  width: 16.66%;
}

.column._7-column {
  width: 58.3333%;
}

.column._8-column {
  width: 66.6667%;
}

.ds-block {
  margin-bottom: 32px;
  font-family: Manrope, sans-serif;
}

.horizontal-line {
  background-color: var(--black);
  width: 100%;
  height: 1px;
  margin-bottom: 36px;
}

.horizontal-line.design-system {
  position: relative;
  bottom: -80px;
}

.horizontal-line.dark-grey {
  background-color: var(--dark-grey);
}

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

.rich-text img {
  border-radius: 8px;
  margin-bottom: 8px;
}

.rich-text h4 {
  margin-top: 24px;
}

.rich-text a {
  border-bottom: 1px solid #0000001a;
}

.rich-text a:hover {
  border-bottom-color: var(--dark-grey);
}

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

.nav-bar {
  z-index: 200;
  background-color: #fcfcfc;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: Manrope, sans-serif;
  display: flex;
  position: sticky;
  top: 0;
}

.logo-div {
  z-index: 6;
  grid-column-gap: 8px;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  line-height: 24px;
  display: flex;
  position: relative;
}

.nav-text-logo {
  color: var(--black);
  border: 1px #000;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

.nav-text-logo:hover {
  opacity: .75;
}

.footer-link {
  color: var(--white);
  cursor: pointer;
  border-bottom: 1px solid #0000;
  margin-bottom: 4px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: border .2s, color .2s, opacity .2s ease-in-out;
  display: block;
}

.footer-link:hover {
  border-bottom-color: var(--dark-grey);
}

.footer-link.w--current {
  opacity: 1;
}

.footer-links-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer {
  z-index: 0;
  background-color: var(--light-black);
  color: var(--white);
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.nav-dropdown {
  border-radius: 5px;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 24px 5px 10px;
  font-weight: 500;
  line-height: 24px;
  transition: color .2s, transform .2s;
  position: relative;
}

.nav-dropdown:hover {
  opacity: 1;
  color: #9b53ff;
  transform: translate(0, -2px);
}

.nav-dropdown.w--current {
  color: #096ad0;
  font-weight: 700;
  transition-property: none;
}

.paragraph {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.paragraph.small {
  font-size: 14px;
  line-height: 1.4em;
}

.paragraph.small.grey {
  color: var(--grey);
}

.paragraph.small.grey.mobile-visible {
  display: none;
}

.paragraph.large {
  color: var(--light-black);
  font-family: Manrope, sans-serif;
  font-size: 20px;
  line-height: 1.5em;
}

.paragraph.large.no-margin {
  color: var(--light-black);
}

.paragraph.medium {
  font-size: 18px;
}

.paragraph.x-large {
  color: var(--black);
  font-family: Manrope, sans-serif;
  font-size: 22px;
  display: block;
}

.paragraph.x-large.footertext {
  color: var(--white);
}

.paragraph.hero1 {
  color: var(--light-black);
}

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

.ds-menu-brand {
  color: var(--black);
  border: 1px #000;
  margin-bottom: 50px;
  margin-left: 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2em;
}

.ds-menu {
  width: 100%;
}

.ds-menu-link {
  color: var(--grey);
  border: 1px #000;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 27px;
  transition: background-color .2s, border .2s, color .2s;
}

.ds-menu-link:hover {
  color: var(--black);
}

.ds-menu-link.w--current {
  background-color: var(--soft-grey);
  color: var(--black);
  padding-right: 0;
  font-weight: 500;
}

.ds-nav {
  background-color: var(--silver);
  width: 240px;
  padding-top: 40px;
  position: fixed;
  inset: 0% auto 0% 0%;
  overflow: auto;
}

.form-radio-button {
  margin-bottom: 16px;
  padding-left: 24px;
}

.radio-button {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.radio-button.w--redirected-checked {
  border-width: 6px;
  border-color: var(--black);
}

.form-error {
  background-color: var(--silver);
  color: #444;
  border-radius: 6px;
  padding: 16px;
}

.contact-form {
  width: 100%;
  max-width: 650px;
  margin-bottom: 0;
}

.contact-form.right-align {
  margin-left: auto;
}

.form-checkbox {
  margin-bottom: 16px;
  padding-left: 24px;
}

.check-box {
  border-radius: 4px;
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.check-box.w--redirected-checked {
  border-color: var(--black);
  background-color: var(--black);
  background-position: 50%;
  background-size: 16px;
}

.ds-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
  position: relative;
}

.form-success {
  background-color: var(--silver);
  color: var(--dark-grey);
  border-radius: 4px;
  padding: 32px;
  font-size: 16px;
  line-height: 1.4em;
}

.ds-section {
  z-index: 0;
  background-color: var(--back-cream);
  text-align: left;
  padding: 60px 80px 48px 60px;
  position: relative;
}

.ds-section.header {
  border-bottom: 1px solid var(--silver);
  background-color: var(--back-cream);
}

.ds-title {
  color: var(--black);
  margin-bottom: 8px;
  font-family: Manrope, sans-serif;
}

.ds-section-header {
  margin-bottom: 50px;
}

.text-input {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--grey);
  background-color: #0000;
  height: 44px;
  margin-bottom: 16px;
  padding: 10px 8px;
  font-size: 15px;
  line-height: 1.4em;
  transition: border .2s;
}

.text-input:hover {
  border-bottom-color: var(--dark-grey);
}

.text-input:focus {
  border-style: none none solid;
  border-color: #a0b108 #a0b108 var(--black);
}

.text-input::placeholder {
  color: var(--soft-grey);
}

.text-area {
  border-style: none none solid;
  border-width: 1px;
  border-color: var(--silver) var(--silver) var(--grey);
  background-color: #0000;
  min-height: 120px;
  margin-bottom: 16px;
  padding: 12px 8px;
  font-size: 15px;
  transition: border .2s;
}

.text-area:hover {
  border-bottom-color: var(--dark-grey);
}

.text-area:focus {
  border-bottom-color: var(--black);
}

.text-area::placeholder {
  color: var(--soft-grey);
}

.ds-description {
  color: var(--grey);
  max-width: 400px;
  font-family: Manrope, sans-serif;
}

.nav-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 85px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: static;
  top: 0;
  left: 0;
  right: 0;
}

.error-2 {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.form-dropdown {
  border-style: none none solid;
  border-width: 1px;
  border-color: var(--silver) var(--silver) var(--grey);
  color: var(--dark-grey);
  background-color: #0000;
  border-radius: 0;
  width: 100%;
  height: 44px;
  margin-bottom: 16px;
  padding: 8px;
  font-size: 15px;
  position: relative;
}

.form-dropdown:hover {
  border-bottom-color: var(--dark-grey);
  color: #37474e;
}

.form-dropdown:focus {
  border-bottom-color: var(--black);
  color: #37474e;
}

.form-dropdown::placeholder {
  color: #999;
  font-size: 15px;
}

.field-block {
  z-index: 1;
  border: 1px solid #0000;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  min-width: 50px;
  min-height: 20px;
  margin-bottom: 8px;
  display: flex;
}

.error {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.footer-container {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
}

.ds-colour-block {
  width: 14.2857%;
  padding-right: 16px;
  display: inline-block;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.ds-module {
  background-color: var(--silver);
  border-radius: 12px;
  flex-direction: column;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  position: relative;
}

._2-column-grid {
  grid-column-gap: 80px;
  grid-row-gap: 32px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._2-column-grid.values1 {
  color: var(--soft-black);
}

._1-2-column-grid {
  grid-column-gap: 128px;
  grid-row-gap: 128px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._3-column-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._2-1-column-grid {
  grid-column-gap: 128px;
  grid-row-gap: 128px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.heading {
  margin-bottom: 16px;
  font-weight: 500;
}

.heading.h1 {
  color: var(--dark-grey);
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-family: Manrope, sans-serif;
  font-size: 48px;
  line-height: 1.25em;
}

.heading.h2 {
  margin-bottom: 16px;
  font-family: Manrope, sans-serif;
  font-size: 44px;
  line-height: 1.25em;
}

.heading.h3 {
  font-family: Manrope, sans-serif;
  font-size: 36px;
  line-height: 1.3em;
}

.heading.h4 {
  margin-bottom: 8px;
  font-family: Manrope, sans-serif;
  font-size: 28px;
  line-height: 1.4em;
}

.heading.h5 {
  margin-bottom: 12px;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  line-height: 1.5em;
}

.heading.h6 {
  color: var(--grey);
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5em;
}

.heading.xl-h1 {
  color: var(--light-black);
  letter-spacing: -3px;
  text-transform: none;
  font-family: Manrope, sans-serif;
  font-size: 80px;
  line-height: 1.2em;
}

.heading.h1-title {
  color: var(--soft-black);
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-family: Manrope, sans-serif;
  font-size: 48px;
  line-height: 1.4em;
}

.heading.l-h1 {
  letter-spacing: -3px;
  text-transform: none;
  font-size: 64px;
  line-height: 1.2em;
}

.heading.l-h1.no-margin {
  margin-bottom: 0;
}

.error2 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.licenses-grid {
  grid-column-gap: 96px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 440px;
  display: flex;
}

.visible-spacer {
  background-color: var(--silver);
  border-radius: 12px;
  margin-bottom: 24px;
  display: inline-block;
}

.field-split {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.licenses-image-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 1px #000;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.home-project-item {
  height: 100%;
  position: relative;
}

.project-link-div {
  color: var(--white);
  border-radius: 8px;
  align-items: flex-end;
  height: 500px;
  transition: border-radius .2s, color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-link-div:hover {
  border-radius: 16px;
}

.project-link-div.large {
  height: 700px;
}

.project-item {
  border-radius: 12px;
  margin-bottom: 48px;
  overflow: hidden;
}

._4-grid {
  grid-column-gap: 48px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.cover-image {
  object-fit: cover;
  background-color: #ffa22800;
  width: 100%;
  max-width: none;
  height: 100%;
}

.cover-image.freyja {
  float: none;
  aspect-ratio: auto;
  opacity: 1;
  background-color: #fff0;
  position: static;
}

.cover-image.m-li {
  -webkit-text-fill-color: inherit;
  background-color: #ffa22800;
  background-clip: border-box;
  transition: opacity .2s;
}

.project-thumbnail {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.nav-menu-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.nav-menu-link {
  cursor: pointer;
  padding: 10px 12px;
  font-family: Manrope, sans-serif;
}

.nav-menu-link:hover {
  opacity: .8;
}

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

.menu-button {
  z-index: 900;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: right;
  background-color: #0000;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 0;
  margin-right: 0;
  padding: 0;
}

.menu-button.w--open {
  color: var(--black);
  background-color: #0000;
  position: relative;
}

.banner-section {
  z-index: 3;
  border-bottom: 1px solid var(--silver);
  background-color: var(--back-cream);
  position: relative;
}

.banner-container {
  flex: 1;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
}

.banner {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  line-height: 1.4em;
  display: flex;
}

.banner-link {
  color: var(--black);
  border-bottom: 1px solid #ccdd2a00;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
  line-height: 1.3em;
  text-decoration: none;
  transition: opacity .2s, border .2s;
  display: inline;
}

.banner-link:hover {
  border-bottom: 1px solid var(--soft-grey);
  opacity: .74;
}

.error-3 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.questions-wrapper {
  text-align: left;
  padding-top: 28px;
}

.question-container {
  border-bottom: 1px solid var(--soft-grey);
  text-align: left;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  padding-bottom: 15px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.question-container.dark {
  border-bottom-color: var(--dark-grey);
}

.question-plus-icon {
  margin-top: 4px;
}

.question-header {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 24px;
  display: flex;
}

.question-answer {
  padding-right: 40px;
}

.footer-links-grid {
  grid-column-gap: 64px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 4fr auto auto auto 100px;
}

.center-page-card {
  z-index: 2;
  background-color: var(--white);
  border-radius: 8px;
  max-width: 800px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 64px;
  position: relative;
}

.footer-logo {
  color: var(--white);
  letter-spacing: -5px;
  margin-top: 80px;
  margin-bottom: 16px;
  font-size: 16vw;
  font-weight: 500;
  line-height: 1.1em;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

.footer-logo:hover {
  opacity: .75;
}

.menu-button-text {
  font-size: 14px;
  position: relative;
}

.menu-button-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 24px;
  grid-auto-columns: 1fr;
  align-items: center;
}

.menu-close-text {
  font-size: 14px;
  display: none;
  position: relative;
}

.footer-block-title {
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.questions-grid {
  grid-column-gap: 128px;
  grid-row-gap: 128px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 750px);
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.project-thumbnail-title {
  z-index: 5;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  margin-left: 32px;
  display: flex;
  position: relative;
}

.grid-block {
  position: relative;
}

.copyright-icon {
  margin-right: -20px;
  font-size: 16px;
  top: -32px;
  right: -5px;
}

.home-project-grid {
  grid-column-gap: 32px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
  font-family: Manrope, sans-serif;
}

.home-project-block-wrapper {
  margin-bottom: 32px;
}

.home-project-block-list {
  height: 100%;
}

.project-thumbnail-gradient-peach {
  background-image: linear-gradient(360deg, var(--peach), #fb9f6cf2 5%, #fb9f6ccf 10%, #0000 30%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-thumbnail-gradient-peach:hover {
  background-color: #fb9f6c40;
}

.thumbnail-project-tag-link {
  z-index: 4;
  grid-column-gap: 6px;
  color: var(--peach);
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 100px;
  align-items: center;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  position: absolute;
  bottom: 32px;
  right: 32px;
}

.thumbnail-project-tag-link.muli {
  color: var(--peach);
  border-color: #fb9f6c;
}

.logo-div-divider {
  background-color: #0e0e0e40;
  width: 16px;
  height: 2px;
}

.text-curved-outline {
  border: 2px solid var(--soft-grey);
  border-radius: 100px;
  padding-left: 18px;
  padding-right: 18px;
  display: inline-block;
}

.line-divider {
  background-color: var(--black);
  width: 100%;
  height: 1px;
  position: relative;
  top: -80px;
}

.line-divider.large {
  top: -120px;
}

.category-tag-shape-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.project-tag-link {
  z-index: 4;
  grid-column-gap: 6px;
  border: 1px solid var(--white);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 100px;
  align-items: center;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.project-tag-link:hover {
  opacity: .8;
}

.title-tag {
  color: var(--dark-gre);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  line-height: 1.1em;
  display: inline-block;
}

.title-tag.large {
  margin-bottom: 32px;
  font-size: 18px;
}

.title-tag.hero1 {
  color: var(--light-black);
}

.title-tag.blckbgr {
  color: var(--white);
}

.contact-text-box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-link {
  color: var(--dark-grey);
  text-align: center;
  letter-spacing: -5px;
  margin-bottom: 48px;
  font-family: Manrope, sans-serif;
  font-size: 100px;
  font-weight: 500;
  line-height: 1em;
  transition: border .2s, opacity .2s, color .2s;
  display: inline-block;
}

.contact-link:hover {
  color: var(--light-black);
}

.project-image {
  text-align: left;
  object-fit: fill;
  max-width: 75%;
  margin-left: 0;
}

.other-projects-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-image {
  border-radius: 8px;
}

.hero-2-grid {
  grid-column-gap: 80px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: start;
}

.refresh-title-icon {
  background-image: url('../images/Refresh-Icon.svg');
  background-position: 50% 80%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 4px;
  margin-right: -4px;
  line-height: 1.6em;
}

.hero-subtext-box {
  grid-column-gap: 10px;
  align-items: flex-start;
  max-width: 330px;
  margin-top: 12px;
}

.project-thumbnail-gradient-blue {
  background-color: #6c7bf100;
  background-image: linear-gradient(360deg, var(--dark-gre), #323232b5 16%, #4d4d4d7d 34%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-thumbnail-gradient-blue:hover {
  background-color: #6c7bf140;
}

.project-thumbnail-gradient-sand {
  opacity: 1;
  background-color: #ccc6ac36;
  background-image: none;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-thumbnail-gradient-sand:hover {
  background-color: #ccc6ac5c;
}

.home-project-grid-2 {
  grid-column-gap: 32px;
  grid-row-gap: 0px;
  color: var(--back-cream);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.4fr;
  align-items: end;
  margin-bottom: 32px;
}

.project-thumbnail-gradient-brown {
  opacity: 1;
  background-image: none;
  transition: background-color .2s;
  display: none;
  position: absolute;
  inset: 0%;
}

.project-thumbnail-gradient-brown:hover {
  background-color: #6b44284d;
}

.project-thumbnail-gradient-grey {
  background-image: linear-gradient(360deg, var(--grey-2), #7c7c7cf2 16%, #7c7c7cb3 34%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-thumbnail-gradient-grey:hover {
  background-color: #7c7c7c42;
}

.project-thumbnail-gradient-mint {
  background-image: linear-gradient(360deg, var(--mint), #a1b6a5f2 16%, #a1b6a5cc 34%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-thumbnail-gradient-mint:hover {
  background-color: #a1b6a545;
}

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

.side-image-block {
  border-radius: 8px;
  height: 550px;
  overflow: hidden;
}

.vertical-text-box {
  flex-direction: column;
  justify-content: space-between;
  max-width: 650px;
  display: flex;
}

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

.news-info {
  color: var(--grey);
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4px;
  display: flex;
}

.insight-horizontal-line {
  background-color: var(--grey);
  opacity: .4;
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.news-block {
  color: var(--black);
}

.insight-thumbnail {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 20px;
  transition: filter .2s, border-radius .2s, transform .2s;
  overflow: hidden;
}

.insight-thumbnail:hover {
  opacity: 1;
  filter: brightness(92%);
  border-radius: 16px;
}

.project-grid-list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.project-thumbnail-gradient-pink {
  background-image: linear-gradient(360deg, var(--pink), #ecc8caf2 16%, #ecc8cac9 34%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-thumbnail-gradient-pink:hover {
  background-color: #ecc8ca40;
}

.banner-text-block {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.banner-dot {
  background-color: var(--soft-grey);
  border-radius: 100px;
  flex: none;
  width: 4px;
  height: 4px;
}

.project-logo {
  height: 40px;
}

.project-page-horizontal-line {
  background-color: var(--black);
  width: 100%;
  height: 1px;
  position: relative;
  top: 24px;
}

.quote-slider {
  background-color: #0000;
  height: auto;
}

.quote-left-arrow {
  width: 48px;
  height: 25px;
  margin-top: 4px;
  margin-left: auto;
  margin-right: 0;
  transition: opacity .2s;
  right: 80px;
}

.quote-left-arrow:hover {
  opacity: .6;
}

.quote-slide-nav {
  text-align: left;
  width: 200px;
  height: 32px;
  margin-bottom: -16px;
  margin-left: 0;
  margin-right: auto;
  font-size: 10px;
  position: relative;
}

.error-5 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1330px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.quote-right-arrow {
  width: 48px;
  height: 25px;
  margin-top: 4px;
  margin-right: 0;
  transition: opacity .2s;
}

.quote-right-arrow:hover {
  opacity: .6;
}

.quote-slider-mask {
  margin-right: 200px;
}

.contact-grid {
  grid-column-gap: 128px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: .65fr 1fr;
}

.contact-text-link {
  color: var(--grey);
  border-bottom: 1px solid #0000;
  margin-top: 8px;
  margin-bottom: 24px;
  line-height: 20px;
  transition: border .2s, opacity .2s, color .2s;
  display: inline-block;
}

.contact-text-link:hover {
  border-bottom-color: var(--grey);
  color: var(--black);
}

.contact-info-card {
  background-color: var(--silver);
  color: var(--dark-grey);
  border-radius: 8px;
  padding: 40px 40px 32px;
}

.background-image-cover {
  z-index: -1;
  opacity: .9;
  mix-blend-mode: normal;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.tight-2-column-grid {
  grid-column-gap: 48px;
  grid-row-gap: 32px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.project-gradient-background {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}

.project-header-gradient-peach {
  background-image: linear-gradient(360deg, var(--peach), #fb9f6cf2 14%, #fb9f6ccf 31%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-header-gradient-mint {
  background-image: linear-gradient(360deg, var(--mint), #a1b6a5f2 16%, #a1b6a5cc 34%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-header-gradient-brown {
  background-image: linear-gradient(360deg, var(--brown), #6b4428f2 14%, #6b4428b3 31%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-header-gradient-pink {
  background-image: linear-gradient(360deg, var(--pink), #ecc8caf2 16%, #ecc8cac9 34%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-header-gradient-blue {
  background-image: linear-gradient(360deg, var(--dark-gre), #6c7bf1f7 16%, #6c7bf1cc 34%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-header-gradient-grey {
  background-image: linear-gradient(360deg, var(--grey-2), #7c7c7cf2 16%, #7c7c7cb3 34%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-header-gradient-sand {
  background-image: linear-gradient(360deg, var(--sand), #ccc6acfa 14%, #ccc6accc 31%, #0000 79%);
  opacity: 1;
  transition: background-color .2s;
  position: absolute;
  inset: 0%;
}

.project-header-gradient-sand:hover {
  background-color: #ccc6ac5c;
}

.copyright-link {
  border-bottom: 1px solid var(--soft-black);
  color: var(--grey);
  transition: border-color .2s, opacity .2s, color .2s;
}

.copyright-link:hover {
  border-bottom-color: var(--soft-grey);
  color: var(--soft-grey);
}

._3-1-grid {
  grid-column-gap: 80px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr;
}

.blog-down-arrow {
  width: 24px;
  margin-top: 16px;
}

.hidden {
  display: none;
}

.text-block {
  font-family: Manrope, sans-serif;
}

.logo-icon {
  height: auto;
  margin-bottom: 9px;
  padding-top: 25px;
  padding-bottom: 0;
}

.heading-2, .heading-3, .text-block-2, .text-block-3, .text-block-4 {
  font-family: Manrope, sans-serif;
}

.footer_background {
  background-color: #f5f5f5;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.footer_image-logo {
  width: 6.5rem;
  position: absolute;
  top: 2rem;
}

.brands_list {
  grid-column-gap: 5rem;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.brands_logo {
  object-fit: contain;
  width: 8rem;
  height: 3rem;
}

.heading-style-h5 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.heading-style-h5.text-style-allcaps {
  font-family: Manrope, sans-serif;
  font-size: 48px;
}

.brands_marquee {
  flex: none;
  justify-content: flex-start;
  display: flex;
}

.brands_marquee-wrap {
  display: flex;
}

.brands_layout {
  z-index: 1;
  grid-row-gap: 6rem;
  text-align: center;
  flex-direction: column;
  width: 100%;
  padding-top: 5.1rem;
  padding-bottom: 6rem;
  display: flex;
  position: relative;
}

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

.text-block-6, .text-block-7, .text-block-8, .text-block-9 {
  color: var(--white);
}

.empty-state {
  background-color: #dddddd05;
}

.empty-state-2, .empty-state-3, .empty-state-4, .empty-state-5 {
  background-color: #ddd0;
}

@media screen and (min-width: 1280px) {
  .footer-logo {
    font-size: 220px;
  }
}

@media screen and (min-width: 1920px) {
  .logo-icon {
    height: auto;
  }
}

@media screen and (max-width: 991px) {
  .button {
    position: relative;
  }

  ._12-columns {
    flex-flow: wrap;
  }

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

  .column {
    width: 50%;
  }

  .column._3-column {
    flex-wrap: nowrap;
  }

  .ds-block {
    margin-bottom: 40px;
  }

  .nav-text-logo {
    flex: 1;
  }

  .footer-links-block {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .nav-dropdown {
    text-align: center;
    flex: 1;
    padding-left: 9px;
    padding-right: 9px;
    font-size: 15px;
    display: block;
  }

  .ds-menu-brand {
    margin-top: 5px;
    margin-bottom: 0;
  }

  .ds-menu {
    z-index: 500;
    border-bottom: 1px solid var(--silver);
    background-color: #ebff32;
    padding-top: 17px;
    padding-bottom: 17px;
    display: block;
    position: absolute;
    inset: 80px auto auto 0%;
  }

  .ds-nav {
    z-index: 10;
    width: 100%;
    padding-top: 20px;
    position: sticky;
    bottom: auto;
    left: auto;
    overflow: visible;
  }

  .ds-content {
    margin-left: 0;
    position: static;
  }

  .nav-container, .footer-container {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  ._1-2-column-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-columns: .8fr 2fr;
    margin-left: 0;
  }

  ._3-column-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-left: 0;
  }

  ._2-1-column-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    margin-left: 0;
  }

  .heading.xl-h1, .heading.l-h1 {
    letter-spacing: -2px;
    font-size: 64px;
  }

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

  .licenses-grid {
    grid-column-gap: 40px;
    margin-left: 0;
  }

  .ds-body {
    flex-direction: column;
    display: flex;
  }

  .ds-menu-button {
    margin-right: 12px;
    top: -10px;
  }

  .ds-menu-button.w--open {
    color: var(--black);
    background-color: #d2e612;
    border-radius: 40px;
  }

  .licenses-image-grid {
    margin-left: 0;
  }

  .project-link-div.large {
    height: 600px;
  }

  ._4-grid {
    margin-left: 0;
  }

  .banner-container {
    text-align: center;
  }

  .error-3 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-links-grid {
    grid-column-gap: 48px;
    grid-template-columns: 4fr auto auto auto 80px;
  }

  .center-page-card {
    padding-top: 64px;
  }

  .footer-logo {
    flex: 1;
  }

  .questions-grid {
    grid-column-gap: 80px;
    margin-left: 0;
  }

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

  .thumbnail-project-tag-link {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 13px;
  }

  .contact-link {
    letter-spacing: -2px;
    font-size: 9vw;
  }

  .project-image {
    margin-left: 0;
  }

  .hero-2-grid {
    grid-template-columns: 1fr;
  }

  .home-project-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .side-image-block {
    height: 60vw;
  }

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

  .project-logo {
    height: 24px;
    margin-bottom: 3px;
  }

  .error-5 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .quote-slider-mask {
    margin-right: 160px;
  }

  .contact-grid {
    grid-column-gap: 64px;
  }

  .tight-2-column-grid {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

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

  .section.large {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .section.small {
    padding-top: 39px;
    padding-bottom: 39px;
  }

  .section.x-large {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .section.project-hero {
    height: 94vh;
    margin-top: 85px;
  }

  .spacer {
    height: 32px;
  }

  .spacer._64 {
    height: 48px;
  }

  .spacer._32 {
    width: 24px;
    height: 24px;
  }

  .spacer._48 {
    width: 32px;
  }

  .spacer._80 {
    width: 48px;
    height: 48px;
  }

  .spacer._16.mobile-hidden {
    display: none;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  .column._11-column, .column._6-column, .column._5-column, .column._4-column, .column._3-column, .column._8-column {
    width: 100%;
  }

  .logo-div {
    z-index: 7;
    position: relative;
  }

  .footer-links-block {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .footer {
    padding-bottom: 24px;
  }

  .nav-dropdown {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
  }

  .nav-dropdown:hover {
    transform: none;
  }

  .paragraph {
    font-size: 15px;
  }

  .paragraph.small.grey.mobile-hidden {
    display: none;
  }

  .paragraph.small.grey.mobile-visible {
    display: block;
  }

  .paragraph.large {
    font-size: 18px;
  }

  .paragraph.x-large {
    font-size: 20px;
  }

  .ds-menu-brand {
    padding-left: 0;
  }

  .ds-menu-brand.w--current {
    margin-top: 14px;
  }

  .ds-menu {
    background-color: #ebff32;
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .contact-form.right-align, .ds-content {
    margin-left: 0;
  }

  .ds-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-container {
    height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .field-block {
    min-height: auto;
  }

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

  .ds-colour-block {
    width: 25%;
  }

  ._2-column-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  ._1-2-column-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  ._3-column-grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  ._2-1-column-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .heading.h1 {
    font-size: 35px;
  }

  .heading.h2 {
    font-size: 32px;
  }

  .heading.h3 {
    font-size: 28px;
  }

  .heading.h4 {
    font-size: 18px;
  }

  .heading.h5 {
    font-size: 16px;
  }

  .heading.xl-h1 {
    font-size: 52px;
  }

  .heading.h1-title {
    font-size: 35px;
  }

  .heading.l-h1 {
    font-size: 52px;
  }

  .licenses-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .licenses-image-grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .home-project-item {
    width: 100%;
  }

  .project-link-div, .project-link-div.large {
    height: 70vw;
  }

  .project-item {
    margin-bottom: 32px;
  }

  ._4-grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .nav-menu-wrapper {
    background-color: var(--back-cream);
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: -60px;
    padding: 84px 30px 24px;
    display: flex;
  }

  .nav-menu-link {
    border-bottom: 1px solid var(--soft-grey);
    padding-left: 0;
    padding-right: 0;
    font-size: 24px;
    line-height: 48px;
  }

  .nav-menu-link:hover {
    transform: none;
  }

  .banner-section {
    text-align: left;
    justify-content: flex-start;
  }

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

  .banner {
    text-align: left;
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .center-page-card {
    padding-top: 48px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .footer-logo {
    letter-spacing: -3px;
    margin-top: 64px;
    margin-bottom: 24px;
    font-size: 21vw;
  }

  .questions-grid {
    grid-column-gap: 48px;
    grid-row-gap: 32px;
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .project-thumbnail-title {
    line-height: 16px;
  }

  .copyright-icon {
    margin-right: -8px;
    top: -21px;
  }

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

  .logo-div-divider, .logo-text-role {
    display: none;
  }

  .line-divider {
    top: -60px;
  }

  .line-divider.large {
    top: -100px;
  }

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

  .contact-link {
    margin-bottom: 32px;
  }

  .other-projects-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .home-project-grid-2, .project-grid-list {
    grid-template-columns: 1fr;
  }

  .quote-left-arrow, .quote-right-arrow {
    display: none;
  }

  .quote-slider-mask {
    margin-right: 0;
  }

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

  .tight-2-column-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 2fr;
    margin-left: 0;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }

  .section.large {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.page-hero {
    padding-top: 130px;
  }

  .section.grey-page-hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .section.project-hero {
    padding-top: 130px;
  }

  .button {
    width: 100%;
    font-size: 16px;
  }

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

  .color-block {
    margin-bottom: 20px;
  }

  .column {
    margin-bottom: 0;
  }

  .column._6-column {
    align-items: flex-start;
    width: 100%;
  }

  .column._5-column, .column._3-column {
    width: 100%;
  }

  .paragraph.large, .paragraph.medium {
    font-size: 16px;
  }

  .ds-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-input, .text-area {
    width: 100%;
  }

  .nav-container, .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._1-2-column-grid {
    grid-row-gap: 24px;
  }

  ._3-column-grid {
    grid-template-columns: 1fr;
  }

  .heading.h1 {
    font-size: 30px;
  }

  .heading.h2 {
    font-size: 26px;
  }

  .heading.h3 {
    font-size: 24px;
  }

  .heading.xl-h1 {
    letter-spacing: -1px;
    font-size: 36px;
  }

  .heading.h1-title {
    font-size: 30px;
  }

  .heading.l-h1 {
    letter-spacing: -1px;
    font-size: 36px;
  }

  .error2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .field-split {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .project-link-div, .project-link-div.large {
    height: 80vw;
  }

  .project-item {
    border-radius: 8px;
    margin-bottom: 24px;
  }

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

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

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

  .banner-section {
    display: none;
  }

  .banner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner-link {
    flex: 0 auto;
    width: 100%;
  }

  .error-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .question-plus-icon {
    margin-left: 16px;
  }

  .question-answer {
    padding-left: 0;
  }

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

  .center-page-card {
    padding-top: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .project-thumbnail-title {
    margin-bottom: 14px;
    margin-left: 14px;
  }

  .copyright-icon {
    font-size: 14px;
    top: -15px;
    right: -2px;
  }

  .home-project-block-wrapper {
    margin-bottom: 20px;
  }

  .thumbnail-project-tag-link {
    font-size: 12px;
    bottom: 12px;
    right: 12px;
  }

  .line-divider.large {
    top: -80px;
  }

  .project-tag-link {
    font-size: 12px;
    bottom: 12px;
    right: 12px;
  }

  .contact-link {
    font-size: 64px;
    line-height: 1.1em;
  }

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

  .project-logo {
    height: 20px;
    margin-bottom: 5px;
  }

  .quote-slide-nav {
    margin-bottom: -8px;
  }

  .contact-info-card {
    padding: 32px;
  }

  .blog-down-arrow {
    margin-top: 8px;
  }
}

#w-node-_76da1daf-50ea-0f72-7b05-89acf56d9310-94b893dc, #w-node-_17e98553-ae15-bbf3-6a50-b06c40d9f062-94b893dc, #w-node-_3a6b927f-cd53-9cf8-e326-d9a2411b2a09-94b893dc, #w-node-a38f8da4-26dc-a7d6-ce71-dd26bb6d8a3f-94b893dc, #w-node-a38f8da4-26dc-a7d6-ce71-dd26bb6d8a31-94b893dc, #w-node-e67c5f32-905c-3146-f8ce-ecdabe346c36-94b893dc, #w-node-_5a10295f-3fd3-8da5-58de-68b4cc844c49-94b893dc, #w-node-_8ed8832d-6c72-9f4b-a89b-6ba935830e6e-94b893df, #w-node-c198c93b-e283-8fa8-350b-e7ec9eae9932-94b893df, #w-node-_72c36f5d-ae50-3122-051a-0cbb683a525e-94b893e7, #w-node-_98b6440f-49b7-4174-6bdc-db4c91f5de7e-94b893e8, #w-node-dad66281-7383-aba8-7626-c14dddd978b6-94b893e8, #w-node-_58e29813-b6d3-ca81-99bc-e52e784e9f45-94b893f2, #w-node-_58e29813-b6d3-ca81-99bc-e52e784e9f46-94b893f2, #w-node-e51900ce-2b36-fbbf-5a32-8fe0bea768b4-94b89402 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-c0f67909-d99f-8e92-0f7f-13ac66ed3bec-94b893dc, #w-node-_8ed8832d-6c72-9f4b-a89b-6ba935830e7b-94b893df, #w-node-_72c36f5d-ae50-3122-051a-0cbb683a525c-94b893e7 {
    order: -9999;
  }

  #w-node-_11a1617f-355d-63c5-3491-2e8f362dae19-94b893e8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_76da1daf-50ea-0f72-7b05-89acf56d9310-94b893dc, #w-node-_17e98553-ae15-bbf3-6a50-b06c40d9f062-94b893dc, #w-node-_3a6b927f-cd53-9cf8-e326-d9a2411b2a09-94b893dc, #w-node-a38f8da4-26dc-a7d6-ce71-dd26bb6d8a3f-94b893dc, #w-node-a38f8da4-26dc-a7d6-ce71-dd26bb6d8a31-94b893dc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_82fe1f22-2395-6855-36b7-8265f58eb467-cf3fcb86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a8577b8f-26b0-80c9-c049-fa9a0ca2df13-94b893e5 {
    order: 9999;
  }

  #w-node-e51900ce-2b36-fbbf-5a32-8fe0bea768b4-94b89402 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_82fe1f22-2395-6855-36b7-8265f58eb467-cf3fcb86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


