:root {
  --light-grey: #eaeaea;
  --black: black;
  --grey: #7e7e7e;
  --white: white;
}

.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 {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.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 {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.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(--light-grey);
  color: var(--black);
  flex-direction: column;
  font-family: Inter, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.22;
}

h1 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.22;
}

h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 41px;
  font-weight: 400;
  line-height: 1.22;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.22;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.22;
}

h5 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.22;
}

h6 {
  color: var(--grey);
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.22;
}

p {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 20px;
}

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

a:hover {
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

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

label {
  margin-bottom: 5px;
  font-size: 23px;
  font-weight: 300;
  display: block;
}

blockquote {
  border-left: 1px solid var(--black);
  margin-bottom: 25px;
  padding: 10px 20px;
  font-size: 23px;
  line-height: 1.22;
}

figcaption {
  color: var(--grey);
  text-align: left;
  margin-top: 5px;
  margin-bottom: 25px;
}

.section {
  outline-offset: 0px;
  outline: 0 #000;
  padding-top: 25px;
  padding-bottom: 25px;
}

.section.style-section {
  margin-top: 100px;
}

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

.section.margin-top {
  margin-top: 150px;
}

.section.margin-top:focus {
  outline-offset: 0px;
  outline: 3px #000;
}

.section.margin-top:focus-visible {
  outline-offset: 0px;
  outline: 3px #000;
}

.section.margin-top[data-wf-focus-visible] {
  outline-offset: 0px;
  outline: 3px #000;
}

.section.margin-top.footer {
  background-color: var(--white);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.section.small-margin-top {
  margin-top: 35px;
}

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

.tag {
  background-color: var(--white);
  border-radius: 8px;
  align-self: flex-start;
  margin-bottom: 15px;
  margin-right: 15px;
  padding: 5px 13px;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
}

.tag.hover:hover, .tag.hover.w--current {
  background-color: var(--black);
  color: var(--white);
}

.tag.hover.margin-top {
  background-color: var(--white);
  color: var(--black);
}

.tag.hover.margin-top:hover {
  background-color: var(--black);
  color: var(--white);
}

.tag.hover.margin-top.no-margin-right {
  margin-right: 0;
}

.tag.hover.margin-top.no-margin-right.w--current {
  background-color: var(--white);
  color: var(--black);
}

.tag.margin-top {
  margin-top: 9px;
}

.style-container {
  border-top: 1px solid var(--black);
  border-bottom: 1px none var(--black);
  padding-top: 25px;
  padding-bottom: 25px;
}

.button {
  background-color: var(--white);
  color: var(--black);
  border-radius: 8px;
  align-self: flex-start;
  margin-bottom: 15px;
  margin-right: 15px;
  padding: 7px 15px;
}

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

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

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

.grid.team {
  margin-top: 10px;
}

.colour-swatch {
  width: 100%;
  height: 100px;
  background-color: var(--black);
  border-radius: 8px;
}

.colour-swatch.light-grey {
  border: 2px solid var(--white);
  background-color: var(--light-grey);
}

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

.spacer._25 {
  width: 25px;
  height: 25px;
}

.spacer._50 {
  width: 50px;
  height: 50px;
}

.spacer._75 {
  width: 75px;
  height: 75px;
}

.spacer._100 {
  width: 100px;
  height: 100px;
}

.spacer._15 {
  width: 15px;
  height: 15px;
}

.container {
  max-width: 1600px;
  min-height: 26px;
  padding-left: 26px;
  padding-right: 26px;
}

.container.password {
  margin-left: auto;
  margin-right: auto;
}

.container.menu {
  padding-top: 13px;
}

.text-input {
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  border-bottom-style: solid;
  border-radius: 0;
  margin-bottom: 25px;
  padding: 10px 0;
  font-size: 25px;
  line-height: 30px;
}

.text-input:focus {
  border-bottom-color: var(--black);
  background-color: rgba(0, 0, 0, 0);
}

.text-input::-ms-input-placeholder {
  background-color: rgba(0, 0, 0, 0);
}

.text-input::placeholder {
  background-color: rgba(0, 0, 0, 0);
}

.text-input.password {
  margin-bottom: 50px;
  padding-top: 29px;
  padding-bottom: 30px;
  font-size: 47px;
  line-height: 1.22;
}

.text-area {
  min-height: 100px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  border-bottom-style: solid;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 23px;
}

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

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

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

.rich-text-block img {
  width: 100%;
  min-width: 100%;
}

.rich-text-block li {
  list-style-type: decimal;
}

.rich-text-block p {
  margin-bottom: 15px;
}

.rich-text-block h6 {
  margin-bottom: 4px;
}

.rich-text-block blockquote {
  margin-top: 25px;
}

.rich-text-block.description {
  max-width: 75%;
}

.radio-button {
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-style: none;
  margin-top: 3px;
  margin-right: 7px;
}

.radio-button.w--redirected-checked {
  border-style: none;
  border-color: var(--black);
  background-color: var(--black);
}

.radio-button.w--redirected-focus {
  box-shadow: none;
  border-style: none;
}

.checkbox {
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-style: none;
  border-radius: 3px;
  margin-top: 2px;
  margin-right: 7px;
}

.checkbox.w--redirected-checked {
  background-color: var(--black);
  background-image: none;
  border-radius: 3px;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
  border-radius: 3px;
}

.tab-container {
  background-color: var(--white);
  border-radius: 8px;
  padding: 25px;
}

.dropdown {
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  border-bottom-style: solid;
  margin-bottom: 25px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 23px;
}

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

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

._12-columns.align-left.style-guide {
  margin-bottom: 25px;
}

.column {
  min-height: 10px;
  flex-flow: column;
  flex: 0 auto;
  align-self: stretch;
  padding-left: 13px;
  padding-right: 13px;
  display: flex;
  position: relative;
}

.column._1-column-desktop {
  width: 8.33333%;
}

.column._2-columns-desktop {
  width: 16.6667%;
}

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

.column._3-columns-desktop.hide-mobile {
  align-self: stretch;
}

.column._5-columns-desktop {
  width: 41.6667%;
}

.column._4-columns-desktop {
  width: 33.3333%;
}

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

.column._6-columns-desktop.align-right {
  text-align: right;
  flex-direction: row;
  justify-content: flex-end;
}

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

.column._8-columns-desktop {
  width: 66.6667%;
  align-content: center;
}

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

.column._9-columns-desktop._12-columns-tablet.large {
  padding-right: 145px;
}

.column._10-columns-desktop {
  width: 83.3333%;
}

.column._11-columns-desktop {
  width: 91.6667%;
}

.grid-placeholder {
  height: 25px;
  background-color: var(--grey);
}

.right-align {
  text-align: right;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

.navbar {
  z-index: 2;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(234, 234, 234, .8);
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.tag {
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  display: inline-block;
}

.project-journal-item {
  border-top: 1px solid #000;
  margin-bottom: 90px;
  padding-top: 20px;
}

.project-journal-item:last-child {
  margin-bottom: 20px;
}

.tags-list {
  display: block;
}

.project-image {
  margin-bottom: 26px;
}

.link-block {
  text-decoration: none;
}

.form-block {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-wrapper {
  border-top: 1px solid #000;
  padding-top: 10px;
}

.cta-link {
  text-decoration: none;
}

.brand {
  z-index: 3;
  align-self: flex-start;
  padding-left: 0;
  padding-right: 0;
}

.brand.w--current {
  color: var(--black);
}

.menu-button {
  z-index: 3;
}

.page-wrapper {
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.nav-menu {
  z-index: 1;
}

.success-message {
  background-color: var(--black);
  color: var(--white);
  text-align: left;
  border-radius: 8px;
  padding: 10px 13px;
}

.error-message {
  border-radius: 8px;
  padding-left: 13px;
  padding-right: 13px;
}

.style-guide-spacer-wrapper {
  background-color: var(--grey);
  display: inline-block;
}

.nav-link {
  color: var(--black);
  padding: 0;
}

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

.nav-comma {
  margin-right: 8px;
  display: inline-block;
}

.horizontal-line {
  width: 100%;
  border-top: 1px solid #000;
  border-radius: 1px;
  flex: 1;
  margin-top: 8px;
  margin-bottom: 10px;
}

.empty-state {
  background-color: rgba(0, 0, 0, 0);
}

.date {
  margin-top: -3px;
  margin-bottom: 0;
}

.date.margin-top {
  margin-top: 5px;
}

.project-journal-main-image {
  margin-bottom: 15px;
}

.project-journal-main-image.margin-bottom {
  margin-bottom: 30px;
}

.big-text {
  flex: 1;
  font-size: 32px;
}

.big-text.no-padding-bottom {
  margin-bottom: 5px;
}

.big-text.link {
  align-self: flex-start;
}

.big-text.margin-bottom {
  margin-bottom: 23px;
}

.office-image {
  width: 100%;
  margin-bottom: 20px;
}

.team-image {
  width: 100%;
  margin-bottom: 5px;
}

.project-info-title {
  margin-bottom: 0;
}

.hero-container {
  height: 100vh;
  flex-flow: column wrap;
  margin-bottom: 60px;
  padding-top: 55px;
  display: flex;
  overflow: hidden;
}

.hero-wrapper {
  flex: 1;
}

.hero-wrapper.text {
  flex: none;
  align-self: stretch;
}

.hero-wrapper.image {
  margin-bottom: 15px;
}

.info-wrapper {
  flex: 1;
}

.next.hide-desktop {
  display: none;
}

.side-by-side {
  display: flex;
}

.hero-slogan {
  margin-top: 6px;
}

.no-decoration-link {
  align-self: flex-start;
  text-decoration: none;
}

.no-decoration-link:hover {
  color: var(--grey);
}

.menu-brand {
  font-size: 23px;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  background-image: url('../images/Hero.jpg');
  background-position: 50%;
  background-size: cover;
}

.language-link {
  text-transform: none;
  border: 1px #000;
  text-decoration: none;
}

.languafe-wrapper-p-mob {
  display: none;
}

.awwards-wrapper {
  width: 100%;
  display: flex;
}

.text-style-faq-heading {
  font-size: 1.38em;
  font-weight: 400;
  line-height: 120%;
}

.faq_answer-wrapper {
  grid-column-gap: .88em;
  grid-row-gap: .88em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1em;
  display: flex;
}

.heading-style-h4 {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.13em;
  line-height: 120%;
}

.faq_info {
  width: 75%;
}

.faq_answer {
  overflow: hidden;
}

.icon-1x1-small {
  width: 1.2em;
  height: 1.2em;
  max-width: 100%;
  color: rgba(255, 255, 255, .6);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.padding-section-medium {
  padding-bottom: 6.25em;
}

.faq_component {
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 20px;
  padding: 0;
}

.faq_question {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.faq_item {
  cursor: pointer;
  border-bottom: 1px #000;
  padding-bottom: 10px;
}

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

.padding-bottom.padding-small {
  padding-bottom: 1em;
}

.text-style-faq {
  color: #787878;
  font-size: 1.13em;
  font-weight: 400;
}

.subtitle-text-faq {
  color: rgba(120, 120, 120, .5);
  font-size: 1.38em;
  font-weight: 400;
}

.tittle-awward {
  width: 100%;
  display: flex;
}

.tittle-awward-left {
  width: 25%;
}

.tittle-awward-lright {
  width: 75%;
  justify-content: space-between;
  display: flex;
}

.description-wrap {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.img-wrap {
  width: 100%;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.omg-project-wrap {
  width: 60%;
}

.omg-award-wrap {
  width: 40%;
  align-items: flex-start;
  display: flex;
}

.desk-awward-p, .desk-awward-p-big {
  font-size: 18px;
}

.image-2 {
  min-width: 100%;
}

.date-wrap {
  padding-top: 15px;
}

.awwar-big-text {
  flex: 1;
  font-size: 47px;
  transition: color .3s;
}

.awwar-big-text:hover {
  color: var(--grey);
}

.awwar-big-text.no-padding-bottom {
  margin-bottom: 5px;
}

.awwar-big-text.link {
  align-self: flex-start;
}

.awwar-big-text.margin-bottom {
  margin-bottom: 23px;
}

.heading-style-h5 {
  font-size: 23px;
}

@media screen and (max-width: 991px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .rich-text-block.description {
    max-width: 100%;
  }

  ._12-columns {
    justify-content: space-between;
  }

  .column._3-columns-desktop {
    width: 12%;
    display: block;
  }

  .column._3-columns-desktop._12-columns-tablet {
    width: 100%;
  }

  .column._3-columns-desktop._12-columns-tablet.order-last-tablet {
    flex-direction: row-reverse;
    order: 1;
  }

  .column._3-columns-desktop._12-columns-tablet.order-last-tablet.margin-top-tablet {
    margin-top: 20px;
  }

  .column._3-columns-desktop._12-columns-tablet.margin-bottom-tablet {
    margin-bottom: 20px;
  }

  .column._3-columns-desktop.hide-tablet {
    display: none;
  }

  .column._3-columns-desktop._6-columns-mobile {
    width: 12%;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    align-items: flex-start;
    display: flex;
  }

  .column._3-columns-desktop._6-columns-mobile.footer {
    width: 20%;
  }

  .column._3-columns-desktop.hide-mobile.width-20 {
    width: 25%;
  }

  .column._3-columns-desktop.grow-tablet {
    flex: 1;
  }

  .column._5-columns-desktop._7-columns-tablet {
    width: 58.3333%;
  }

  .column._6-columns-desktop.grow-tablet.right-align {
    width: 15%;
    align-self: flex-start;
  }

  .column._9-columns-desktop._12-columns-tablet {
    width: 100%;
  }

  .project-journal-item:last-child {
    margin-bottom: 0;
  }

  .tags-list {
    display: flex;
  }

  .menu-button {
    align-self: flex-end;
    padding: 0;
    display: block;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu {
    background-color: var(--light-grey);
    padding: 20px 13px 20px 26px;
    position: fixed;
    top: 49px;
    bottom: auto;
    left: 0%;
    right: 0;
  }

  .nav-link {
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: 20px;
  }

  .nav-comma {
    background-color: rgba(0, 0, 0, 0);
    display: none;
  }

  .tags-collection-list {
    flex-direction: column;
  }

  .date {
    text-align: right;
    flex-direction: column;
    margin-top: 6px;
  }

  .date.margin-top {
    margin-top: 13px;
  }

  .date.hide-tablet {
    display: none;
  }

  .project-location {
    text-align: right;
  }

  .project-journal-main-image.margin-bottom {
    margin-bottom: 20px;
  }

  .info-wrapper {
    flex: 0 auto;
  }

  .tags-wrapper {
    flex: 1;
    padding-top: 9px;
  }

  .next {
    margin-top: -10px;
  }

  .next.hide-desktop {
    display: block;
  }

  .menu-text {
    margin-bottom: 0;
  }

  .menu-text.close {
    display: none;
  }

  .awwards-wrapper {
    flex-direction: column;
  }

  .text-style-faq-heading {
    font-size: 2em;
  }

  .faq_answer-wrapper {
    padding-top: 0;
  }

  .heading-style-h4 {
    font-size: 2.5em;
  }

  .faq_info {
    width: 100%;
  }

  .icon-1x1-small {
    width: 1.6em;
    height: 1.6em;
  }

  .faq_component {
    padding: 3.19em;
  }

  .faq_item {
    margin-top: 1.7em;
    padding-bottom: 0;
  }

  .padding-bottom.padding-small {
    padding-bottom: 1.2em;
  }

  .text-style-faq {
    -webkit-text-stroke-color: rgba(120, 120, 120, .6);
    font-size: 1.5em;
    line-height: 120%;
  }

  .subtitle-text-faq {
    font-size: 1.6em;
  }

  .tittle-awward-left {
    width: 100%;
  }

  .description-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .omg-award-wrap {
    width: 50%;
  }
}

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

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 35.5px;
  }

  h3 {
    font-size: 31px;
  }

  h4 {
    font-size: 26.5px;
  }

  h5, h6 {
    font-size: 22px;
  }

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

  .section.margin-top {
    margin-top: 80px;
  }

  .tag {
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 18px;
  }

  .button {
    margin-bottom: 10px;
    margin-right: 10px;
  }

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

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

  .container.menu {
    margin-bottom: 10px;
  }

  .text-input.password {
    margin-bottom: 45px;
    font-size: 40px;
  }

  ._12-columns.footer-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: flex-start;
  }

  .column._3-columns-desktop {
    width: 14%;
  }

  .column._3-columns-desktop._6-columns-mobile {
    width: 50%;
    flex: 0 auto;
  }

  .column._3-columns-desktop._6-columns-mobile.footer {
    width: 20%;
    flex-direction: column;
  }

  .column._3-columns-desktop.hide-mobile {
    display: none;
  }

  .column._5-columns-desktop._7-columns-tablet._12-columns-mobile, .column._6-columns-desktop._12-columns-mobile {
    width: 100%;
  }

  .column._6-columns-desktop._12-columns-mobile.typeface {
    margin-bottom: 50px;
  }

  .column._6-columns-desktop._12-columns-mobile.margin-top {
    margin-top: 26px;
  }

  .column._6-columns-desktop.grow-tablet.right-align {
    width: 22%;
  }

  .column._9-columns-desktop._12-columns-mobile {
    width: 100%;
  }

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

  .project-journal-item {
    margin-bottom: 70px;
    padding-top: 13px;
  }

  .project-image {
    margin-bottom: 13px;
  }

  .menu-button {
    align-self: flex-end;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu {
    background-color: var(--light-grey);
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    padding-top: 20px;
    padding-left: 13px;
    padding-right: 13px;
    position: fixed;
    top: 49px;
    bottom: auto;
    left: 0%;
    right: 0;
  }

  .nav-link {
    margin-bottom: 20px;
  }

  .nav-comma {
    display: none;
  }

  .project-location {
    font-size: 19px;
  }

  .project-journal-main-image {
    margin-bottom: 5px;
  }

  .project-journal-main-image.margin-bottom {
    margin-bottom: 15px;
  }

  .big-text {
    font-size: 28px;
  }

  .office-image {
    margin-bottom: 10px;
  }

  .hero-container {
    margin-bottom: 20px;
  }

  .hero-slogan {
    font-size: 20px;
  }

  .menu-text {
    margin-bottom: 0;
    font-size: 22px;
  }

  .menu-text.close {
    display: none;
  }

  .menu {
    font-size: 22px;
  }

  .menu-brand {
    margin-bottom: 0;
  }

  .text-style-faq-heading {
    font-size: 2.5em;
  }

  .faq_answer-wrapper {
    padding-top: .2em;
  }

  .heading-style-h4 {
    font-size: 3.4em;
  }

  .icon-1x1-small {
    width: 2.2em;
    height: 2.2em;
  }

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

  .faq_item {
    padding-bottom: 0;
  }

  .padding-bottom.padding-small {
    padding-bottom: 1.8em;
  }

  .text-style-faq, .subtitle-text-faq {
    font-size: 2.5em;
  }

  .awwar-big-text {
    font-size: 40px;
  }

  .heading-style-h5 {
    font-size: 22px;
  }
}

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

  h1 {
    margin-bottom: 7px;
    font-size: 24px;
  }

  h2 {
    margin-bottom: 7px;
    font-size: 31.3px;
  }

  h3 {
    margin-bottom: 3px;
    font-size: 27.5px;
  }

  h4 {
    margin-bottom: 3px;
    font-size: 23.7px;
  }

  h5, h6 {
    margin-bottom: 3px;
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  label {
    font-size: 18px;
  }

  blockquote {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
  }

  .tag, .button {
    margin-bottom: 7px;
    margin-right: 7px;
    font-size: 18px;
  }

  .text-input.password {
    font-size: 35px;
  }

  ._12-columns {
    align-items: center;
  }

  ._12-columns.footer-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
    margin-right: 0;
  }

  .column._3-columns-desktop {
    width: 30%;
    min-height: 10px;
    align-self: stretch;
    display: none;
  }

  .column._3-columns-desktop._6-columns-mobile.footer {
    width: auto;
  }

  .column._3-columns-desktop.grow-tablet {
    align-self: flex-start;
    display: flex;
  }

  .column._6-columns-desktop.grow-tablet.right-align {
    width: 28%;
    align-self: flex-start;
  }

  .tags-list {
    align-content: space-around;
    display: block;
  }

  .tag-item {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .nav-menu {
    padding-top: 16px;
    top: 41px;
  }

  .nav-link {
    font-size: 18px;
  }

  .big-text {
    font-size: 24px;
  }

  .side-by-side {
    align-items: flex-end;
  }

  .hero-slogan {
    font-size: 22px;
  }

  .no-decoration-link {
    font-size: 16px;
  }

  .menu-text, .menu-brand {
    font-size: 18px;
  }

  .languafe-wrapper-p-mob {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 18px;
    display: block;
  }

  .text-style-faq-heading {
    font-size: 4vw;
  }

  .faq_answer-wrapper {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    padding-top: 0;
  }

  .heading-style-h4 {
    font-size: 5.8vw;
  }

  .icon-1x1-small {
    width: 5vw;
    height: 5vw;
  }

  .faq_component {
    padding: 5vw;
  }

  .faq_item {
    margin-top: 5vw;
    padding-bottom: 1vw;
  }

  .padding-bottom.padding-small {
    padding-bottom: 3vw;
  }

  .text-style-faq {
    font-size: 3.7vw;
    line-height: 145%;
  }

  .subtitle-text-faq {
    color: rgba(120, 120, 120, .7);
    font-size: 4vw;
    line-height: 120%;
  }

  .omg-award-wrap {
    width: 100%;
    flex-direction: column;
  }

  .awwar-big-text {
    font-size: 35px;
  }
}

#w-node-_6bc77d08-7717-209d-a1d7-38dcc2f4ef65-4c80a46e, #w-node-bc46aa39-9a1b-8b7a-2219-62b0789bf711-4c80a470, #w-node-_2a9b9b82-9a85-3e31-fe50-00ba8bc18660-4c80a470, #w-node-_1452bba0-3cdb-c987-2da0-8c1ba4f2decf-4c80a470, #w-node-e1e351aa-6e2b-6765-762c-561194b435ba-4c80a470, #w-node-_7173d382-916f-71d0-256d-0bf81b4c6138-4c80a47a, #w-node-_2b4be39b-b81e-8c0d-2620-43e7ccae1e5c-4c80a47a, #w-node-_7098c528-04d8-012c-1640-23fb57ea19b7-4c80a47a, #w-node-f82c94d0-61a4-3e03-1a91-dd681c235f78-4c80a47a, #w-node-_4ec27e6a-f1d1-9fdc-0e71-d2e0c32c132e-4c80a47a, #w-node-_6fe63b65-a683-b131-95aa-f70497dea27c-4c80a47a, #w-node-_6fe63b65-a683-b131-95aa-f70497dea27d-4c80a47a, #w-node-_6fe63b65-a683-b131-95aa-f70497dea27e-4c80a47a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


