:root {
  --dark: #293033;
  --white: white;
  --secondary: #929292;
  --body-bg: #f8f9f8;
  --dark-bg: #222526;
  --letter-spacing: .03em;
  --blue: #d1e2f7;
  --mobile-spacer: 110px;
  --spacer-180: 180px;
  --tablet-spacer: 140px;
  --dark-opacity: #222526d9;
  --green: #c5f2e7;
  --purple: #e7d1f1;
  --spacer-200: 140px;
  --yellow: #ffd07f;
  --transparent: #fff0;
  --mask: 400vh;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  color: var(--dark);
  margin-top: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

h2 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
}

h3 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 500;
  line-height: 36px;
}

h4 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

h5 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

h6 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

p {
  margin-bottom: 30px;
}

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

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

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

blockquote {
  text-align: center;
  background-image: url('../images/quote.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  border-left: 0 #000;
  max-width: 750px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px 0;
  font-family: Playfair Display, sans-serif;
  font-size: 34px;
  font-style: italic;
  line-height: 46px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  color: var(--secondary);
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  line-height: 28px;
}

.body {
  background-color: var(--body-bg);
  color: var(--dark);
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.nav-menu-flex-mobile {
  display: flex;
}

.brand {
  flex: none;
  height: auto;
}

.brand.w--current {
  flex: none;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.nav-menu {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.navbar-brand-mobile {
  padding-top: 0;
  padding-bottom: 0;
  display: none;
}

.nav-menu-flex {
  background-color: #fff;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.navbar {
  z-index: 1999;
  background-color: var(--body-bg);
  width: 100%;
  position: relative;
}

.navbar-inner-mobile {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  inset: 0% 0% auto;
}

.navbar-inner {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-mobile {
  justify-content: space-between;
  align-items: center;
  display: none;
}

.nav-menu-wrapper {
  width: 100%;
}

.nav-link {
  color: var(--dark);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  align-items: center;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-link:hover {
  color: #28add2;
}

.container {
  width: 100%;
  max-width: 1290px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 30px;
  transition: background-color .2s, color .2s;
  position: relative;
}

.container.main-hero {
  background-image: url('../images/desert-min.png');
  background-position: 50%;
  background-size: contain;
  background-attachment: scroll;
}

.container.large {
  padding-bottom: 10px;
}

.sc-link {
  background-color: var(--dark);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 20px;
  text-decoration: none;
  transition: transform .2s;
  display: flex;
}

.sc-link:hover {
  transform: translate(0, -3px);
}

.hero {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 180px;
  padding-bottom: 260px;
  position: relative;
}

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

.section.bg-grey {
  background-image: url('../images/desert-min.png');
  background-position: 0 0;
  background-size: cover;
}

.section.services-main {
  background-image: url('../images/Design-sans-titre.png');
  background-position: 0 0;
  background-size: auto;
}

.section.bg-image {
  background-image: url('../images/Design-sans-titre1.png');
  background-position: 50%;
  background-size: cover;
}

.section.bg-white {
  background-color: #fff;
}

.paragraph-large {
  font-size: 24px;
  line-height: 36px;
}

.sg-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid #2b2b2a99;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
}

.sg-section.border-none {
  border-bottom-style: none;
}

.sg-block {
  margin-bottom: 40px;
  display: block;
}

.label {
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600;
  line-height: 27px;
}

.label.text-white {
  text-align: center;
}

.label.cc-hero {
  max-width: 200px;
}

.divider {
  background-color: var(--dark);
  width: 100%;
  height: 1px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.sg-color-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.sg-color-block {
  color: #1b1c1c;
  height: 80px;
  margin-bottom: 10px;
  display: block;
}

.paragraph {
  margin-bottom: 25px;
}

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

.sg-button-block {
  margin-bottom: 20px;
  margin-right: 40px;
  display: inline-block;
}

.margin-bottom-75 {
  margin-bottom: 75px;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-none {
  margin-bottom: 0;
}

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

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-45 {
  margin-bottom: 45px;
}

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

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-65 {
  margin-bottom: 65px;
}

.margin-bottom-25 {
  margin-bottom: 10px;
}

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

.sg-margin-block {
  background-color: #ebebeb;
  width: 100%;
  display: flex;
}

.burger {
  cursor: pointer;
}

.burger-line {
  background-color: var(--white);
  border-radius: 3px;
  width: 18px;
  height: 2px;
}

.icon-grid {
  grid-column-gap: 25px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  display: grid;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding: 90px 20px 140px;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.table-row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 0px solid var(--dark);
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.table-row:first-child {
  padding-top: 0;
}

.table-row:last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.table-row.cc-link {
  padding-top: 0;
  padding-bottom: 0;
}

.table-row.cc-first {
  padding-top: 0;
}

.table-row.cc-last {
  border-bottom-style: none;
  padding-bottom: 0;
}

.display-1 {
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  color: #014f86;
  flex: none;
  margin-bottom: 0;
  font-size: 90px;
  font-weight: 600;
  line-height: 100px;
}

.display-1.servicesh1 {
  opacity: 1;
  color: var(--white);
  text-align: center;
  border: 1px #000;
  font-style: normal;
}

.display-1.black, .display-1.blue {
  color: var(--blue);
}

.button-dark {
  border: 1px solid var(--dark);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 50px;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-dark:hover {
  color: var(--white);
  background-color: #28add2;
  border-color: #28add2;
}

.button-dark.cc-large {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 12px;
}

.button-inner {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
  position: relative;
}

.badge {
  border: 1px solid var(--dark);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 2px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 23px;
  display: inline-block;
}

.button-wrapper {
  flex: none;
  padding-top: 35px;
  padding-bottom: 35px;
}

.nav-link-mobile {
  color: var(--white);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 7px 0 5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-link-mobile.w--current {
  border-bottom-color: var(--dark);
}

.arrow-bg-dark {
  background-color: var(--dark);
  border-radius: 50%;
  justify-content: flex-start;
  align-items: flex-start;
  width: 26px;
  height: 26px;
  overflow: hidden;
  transform: rotate(45deg);
}

.arrow-icon {
  padding: 7px;
  display: block;
}

.link-line {
  background-color: var(--dark);
  flex: none;
  height: 1px;
  position: absolute;
  inset: auto auto 0 0%;
}

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

.dropdown-list {
  background-color: #0000;
}

.dropdown-list.w--open {
  min-width: 150px;
  margin-left: -20px;
  padding-top: 10px;
}

.dropdown-link {
  color: var(--white);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  padding-top: 1px;
  padding-bottom: 1px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .3s, color .2s;
}

.dropdown-link:hover {
  transform: translate(6px);
}

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

.dropdown-list-inner {
  background-color: var(--dark-bg);
  padding-top: 15px;
  padding-bottom: 15px;
}

.dropdown-mobile {
  font-size: 16px;
}

.dropdown-item-mobile {
  color: var(--white);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  align-items: center;
  height: 143px;
  margin-left: 0;
  margin-right: 0;
  padding: 0 18px 0 0;
  font-size: 15px;
  font-weight: 600;
  transition: color .2s;
  display: flex;
}

.dropdown-item-mobile:focus-visible {
  outline-offset: 0px;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.dropdown-item-mobile[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.dropdown-list-mobile {
  background-color: #0000;
  position: relative;
}

.dropdown-link-mobile {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: block;
}

.dropdown-link-mobile:focus-visible {
  outline-offset: 0px;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.dropdown-link-mobile[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.hero-background {
  z-index: 0;
  opacity: .55;
  mix-blend-mode: multiply;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)translate(-80px, 10px);
}

.hero-text {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  mix-blend-mode: multiply;
  flex-direction: column;
  display: flex;
  position: relative;
}

.line {
  z-index: 1;
  grid-column-gap: 35px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.text-serif {
  font-family: Playfair Display, sans-serif;
}

.text-serif.cc-italic {
  letter-spacing: 0;
  text-transform: none;
  font-style: italic;
}

.text-serif.cc-underline {
  border-bottom: 3px solid var(--dark);
  display: inline-block;
}

.circular-text-link {
  z-index: 99999;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  transition: background-color .2s, color .2s;
  display: flex;
  position: relative;
}

.circular-text-icon {
  background-color: var(--dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
}

.rounded {
  border-radius: 60px;
}

.hero-label-wrapper {
  text-align: right;
  flex: none;
  margin-top: 6px;
}

.hero-image-wrapper {
  flex: none;
  margin-top: 5px;
}

.ticker {
  flex-direction: row;
  width: 106%;
  margin-left: -3%;
  margin-right: -3%;
  padding-top: 35px;
  padding-bottom: 25px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ticker.background-green {
  transform: rotate(-1deg);
}

.ticker.background-purple {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: #336daa;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  transform: rotate(0);
}

.ticker.cc-logo {
  margin-bottom: 160px;
  padding-top: 0;
  padding-bottom: 0;
  transform: none;
}

.ticker-wrapperr {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  flex: none;
  width: auto;
  padding-bottom: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
  transform: perspective(1px);
}

.ticker-inner {
  grid-column-gap: 40px;
  align-items: center;
  padding-right: 40px;
  display: flex;
}

.ticker-inner.cc-logo {
  grid-column-gap: 90px;
  padding-right: 90px;
}

.ticker-item {
  margin-bottom: 0;
}

.ticker-item.cc-uppercase {
  text-transform: uppercase;
}

.services {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.services.horizontal {
  flex-flow: row;
}

.projects-section-title-wrapper {
  max-width: 450px;
}

.grid-12-columns {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.display-3 {
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  color: #336daa;
  font-size: 40px;
  line-height: 50px;
}

.display-3.margin-bottom-25 {
  display: block;
}

.display-3.lowercase {
  letter-spacing: 0;
  text-transform: none;
}

.display-3.black {
  color: var(--dark);
}

.display-3.black.text-small {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.inline-block {
  display: inline-block;
}

.feature {
  grid-column-gap: 30px;
  display: flex;
}

.feature.cc-small {
  grid-column-gap: 20px;
  margin-bottom: 25px;
}

.feature-icon {
  flex: none;
}

.feature-icon.cc-bg {
  background-color: var(--dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  margin-top: 5px;
  display: flex;
}

.button-link {
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .2s, color .2s;
  position: relative;
}

.projects {
  padding-top: var(--spacer-180);
  padding-bottom: var(--spacer-180);
}

.projects-collection-list {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  padding-top: 80px;
  display: grid;
}

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

.text-white.margin-bottom-25 {
  text-align: left;
}

.project-info {
  z-index: 35;
  background-color: var(--dark-opacity);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: flex-start;
  max-width: 100%;
  padding: 30px;
  display: none;
  position: fixed;
  inset: 12px auto auto 12px;
}

.project-hover-cover {
  z-index: 50;
  display: block;
  position: absolute;
  inset: 0%;
}

.project-item {
  position: relative;
}

.button-white {
  border: 1px solid var(--white);
  color: var(--white);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 50px;
  padding: 10px 10px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.button-white.cc-large {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 12px;
}

.arrow-bg-white {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: flex-start;
  align-items: flex-start;
  width: 26px;
  height: 26px;
  overflow: hidden;
  transform: rotate(45deg);
}

.separator {
  background-color: var(--dark);
  width: 40px;
  height: 1px;
}

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

.label-wrapper {
  grid-column-gap: 15px;
  align-items: center;
}

.post-title {
  font-size: 28px;
  line-height: 38px;
}

.project:nth-child(odd) {
  margin-top: -80px;
}

.project-thumbnail {
  width: 100%;
}

.grid-2-columns {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.available {
  position: absolute;
  inset: -50px auto auto -50px;
}

.available-wrapper {
  margin-bottom: 40px;
  position: relative;
}

.display-2 {
  text-align: center;
  text-transform: none;
  color: #014f86;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 2.8rem;
  font-style: normal;
  line-height: 70px;
  display: flex;
}

.display-2.white {
  color: #fff;
}

.display-2.blue {
  color: #014f86;
}

.blog {
  padding-top: var(--spacer-180);
  padding-bottom: var(--spacer-180);
}

.post-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  align-items: center;
  display: flex;
}

.post-content {
  flex: 1;
  min-width: 500px;
  max-width: 500px;
}

.post-link {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.meta {
  color: var(--secondary);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.post-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

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

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

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

.cta-wrapper {
  padding-top: var(--spacer-180);
  padding-bottom: var(--spacer-180);
  overflow: hidden;
}

.footer-top {
  grid-column-gap: 80px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 20px;
  padding-bottom: 40px;
}

.footer {
  z-index: 0;
  position: sticky;
  bottom: 0;
}

.widget {
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.footer-bottom {
  text-align: center;
  padding-bottom: 40px;
  display: block;
}

.button-link-inner {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.services-section-title-wrapper {
  max-width: 300px;
  display: block;
}

.ticker-outer {
  padding-top: 20px;
  padding-bottom: 0;
  overflow: hidden;
}

.feature-icon-image {
  padding-top: 5px;
}

.sticky {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 30px;
}

.about-section-title-wrapper {
  max-width: 300px;
}

.step {
  grid-column-gap: 70px;
  display: flex;
}

.step-title {
  flex: none;
  max-width: 180px;
}

.about-top {
  padding-top: var(--spacer-180);
  padding-bottom: 165px;
  overflow: hidden;
}

.about-bottom {
  padding-bottom: var(--spacer-180);
}

.post-button {
  border: 1px solid var(--dark);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 50px;
  padding: 10px 10px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-nav {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-white {
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

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

.content-wrapper {
  z-index: 2;
  background-color: var(--white);
  position: relative;
}

.nav-menu-footer {
  display: none;
}

.sc-links {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.sc-links.cc-center {
  justify-content: center;
}

.sc-link-item {
  line-height: 1;
}

.dropdown-icon {
  padding-left: 3px;
  font-family: Unicons, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.dropdown-icon.hidden {
  display: none;
}

.footer-widgets {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.follow-us {
  z-index: 3;
  background-color: var(--purple);
  flex: none;
  padding-right: 50px;
  position: relative;
}

.ticker-container {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.link {
  position: relative;
}

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

.link-hover {
  text-decoration: underline;
  transition: opacity .2s, border-color .2s, color .2s;
}

.link-hover:hover {
  opacity: .6;
}

.link-hover.cc-white {
  color: #fff;
}

.spacer {
  height: var(--spacer-200);
}

.post-headline {
  max-width: 850px;
  margin: 90px auto 70px;
}

.rich-text-block h1, .rich-text-block h2 {
  margin-bottom: 25px;
}

.rich-text-block h3, .rich-text-block ul, .rich-text-block ol {
  margin-bottom: 20px;
}

.rich-text-block figure {
  margin-top: 70px;
  margin-bottom: 70px;
}

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

.post-main-image {
  max-width: 1100px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}

.single-post-title {
  margin-bottom: 30px;
  font-size: 48px;
  line-height: 58px;
}

.author {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.author-image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  overflow: hidden;
}

.text-small {
  font-size: 16px;
  line-height: 28px;
}

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

.avatar {
  justify-content: center;
  align-items: center;
  width: 125px;
}

.avatar.cc-small {
  width: 60px;
}

.avatar.cc-large {
  width: 250px;
}

.avatar.cc-center {
  margin-left: auto;
  margin-right: auto;
}

.related-headline {
  text-align: center;
  max-width: 850px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.related {
  border-top: 1px solid var(--dark);
  margin-top: 70px;
  padding-top: 100px;
}

.post-body {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.blog-page-headline {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  margin: 90px auto 60px;
  display: flex;
}

.featured-post-wrapper {
  margin-bottom: 150px;
}

.featured-post {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.featured-post-image {
  width: 100%;
}

.pagination {
  border-top: 1px solid var(--dark);
  margin-top: 50px;
  padding-top: 50px;
}

.pagination.cc-works {
  margin-top: 80px;
}

.pagination-button {
  background-color: var(--dark);
  border-style: none;
  border-width: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 0;
  display: flex;
}

.author-page-headline {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  margin: 90px auto 110px;
  display: flex;
}

.about-page-headline {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 580px;
  margin: 90px auto;
  display: flex;
}

.team-headline {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.table-head {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px solid var(--dark);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 23px;
  display: grid;
}

.award-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  padding-top: 23px;
  padding-bottom: 23px;
  display: grid;
}

.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 10px;
  margin-bottom: auto;
  padding-bottom: 10px;
  display: grid;
}

.grid-item {
  flex-direction: column;
  display: flex;
  position: relative;
}

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

.contact-form-block {
  margin-bottom: 0;
}

.form-fields-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 50px;
  display: grid;
}

.textarea {
  border-style: solid;
  border-width: 1px;
  border-color: transparent transparent var(--dark);
  color: #2b2b2a;
  background-color: #0000;
  min-height: 150px;
  margin-bottom: 0;
  padding: 0 0 20px;
  font-size: 18px;
  line-height: 30px;
}

.textarea:focus {
  border-color: transparent transparent var(--dark);
  color: #141413;
}

.textarea::placeholder {
  color: var(--dark);
}

.text-field {
  border-style: solid;
  border-width: 1px;
  border-color: transparent transparent var(--dark);
  color: var(--dark);
  background-color: #0000;
  min-height: 54px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  line-height: 30px;
}

.text-field:focus {
  border-color: transparent transparent var(--dark);
}

.text-field::placeholder {
  color: var(--dark);
}

.error-message {
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
}

.success-message {
  text-align: left;
  background-color: #0000;
  margin-bottom: 20px;
  padding: 0;
}

.button {
  border: 1px solid var(--dark);
  color: var(--dark);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.button.cc-large {
  padding-top: 12px;
  padding-bottom: 12px;
}

.award-arrow-button {
  background-color: #293033;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  display: flex;
  overflow: hidden;
}

.award-link {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.contact-page-headline {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 580px;
  margin: 90px auto;
  display: flex;
}

.image-wrapper {
  margin-bottom: 100px;
}

.project-headline {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin: 90px auto 60px;
  display: flex;
}

.post-summary {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.project-body {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  flex-direction: column;
  display: flex;
}

.project-details {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.details-sidebar {
  margin-right: -25px;
}

.div-block {
  margin-bottom: -30px;
}

.third-part {
  margin-bottom: -70px;
}

.background-body {
  background-color: var(--body-bg);
}

.helper-page-headline {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 850px;
  margin-top: 90px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.thumbnail-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 30px;
  display: grid;
}

._404 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 90px;
  padding-bottom: 140px;
  display: flex;
  position: relative;
}

._404-title {
  letter-spacing: -.03em;
  flex: none;
  margin-bottom: 30px;
  font-size: 200px;
  line-height: 208px;
}

.field-label {
  display: none;
}

.works-page-headline {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 580px;
  margin: 90px auto;
  display: flex;
}

.button-2 {
  grid-column-gap: 5px;
  color: #2b2b2a;
  text-align: center;
  cursor: pointer;
  background-color: #ccdbd7;
  border-style: none;
  border-radius: 0 12px;
  flex: none;
  align-content: flex-start;
  align-self: flex-start;
  align-items: center;
  padding: 18px 28px;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.text-white-2 {
  color: #fff;
  text-align: center;
}

.link-2, .link-3 {
  color: var(--blue);
}

.paragraph-2 {
  text-align: justify;
  color: #013a63;
  width: 70%;
  padding-left: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.1rem;
}

.flex-block {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  padding-bottom: 40px;
  padding-right: 20px;
}

.flex-block.full {
  flex-flow: row;
  width: 100%;
}

.div-block-2 {
  justify-content: space-between;
  display: flex;
}

.paragraph-3 {
  color: var(--white);
  text-align: right;
}

.flex-block-2 {
  box-sizing: border-box;
  object-fit: fill;
  overflow: hidden;
}

.flex-block-2.margin-bottom-30 {
  filter: drop-shadow(0 2px 5px #000000b3);
  background-color: #fff;
  justify-content: center;
  align-items: stretch;
  margin-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0;
  padding-right: 1rem;
}

.button-3 {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  display: flex;
}

.div-block4 {
  justify-content: center;
  align-items: center;
  margin: 10px auto 20px;
  display: flex;
}

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

.paragraph-4 {
  text-align: center;
  color: #013a63;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.1rem;
}

.div-block-3 {
  margin-top: 20px;
}

.section-2 {
  background-image: url('../images/Design-sans-titre4.png');
  background-position: 0 0;
  background-size: cover;
}

.div-block-4 {
  text-align: center;
  background-color: #336daa;
  border-radius: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
}

.div-block-5 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-block-3 {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.paragraph-5 {
  color: var(--white);
  text-align: justify;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.paragraph-6 {
  color: var(--white);
  text-align: justify;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2rem;
}

.paragraph-7 {
  color: var(--white);
  text-align: justify;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.heading {
  color: var(--white);
  text-align: center;
  margin-top: auto;
  font-size: 60px;
  line-height: 70px;
}

.paragraph-8 {
  color: var(--body-bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2rem;
}

.div-block-6 {
  color: var(--white);
  background-color: #0000;
  border-radius: 10px;
  padding-top: 5px;
  padding-left: 5px;
  padding-right: 5px;
}

.text-block-2 {
  color: var(--secondary);
  border-bottom: 1px solid #41a5d3;
  font-size: 14px;
}

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

.div-block-7 {
  background-color: gold;
  border-radius: 20px;
  width: 10px;
  height: 10px;
}

.text-block-3, .text-block-4, .text-block-5, .text-block-6 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.flex-block-4 {
  justify-content: flex-start;
  align-items: center;
}

.div-block-8 {
  background-image: url('../images/mountain-divider.svg');
  background-position: 50%;
  background-size: cover;
  height: 100px;
}

.flex-block-5 {
  filter: drop-shadow(0 0 2px #ffffffb3);
  background-image: linear-gradient(#fff, #fff);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto auto 0;
  padding: 10px 0;
}

.div-block-9 {
  margin-left: 0;
  margin-right: 10px;
}

.image-2 {
  margin-left: 10px;
  margin-right: 10px;
}

.image-3 {
  margin-left: 10px;
}

.div-block-10 {
  background-image: linear-gradient(#fff, #fff);
}

.paragraph-9 {
  color: #013a63;
  text-align: left;
  margin-left: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
}

.div-block-11 {
  background-color: #336daa;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.paragraph-10 {
  color: #fff;
  text-align: left;
  background-color: #0000;
  flex: 1;
  margin-bottom: 10px;
  font-size: 18px;
}

.heading-2 {
  color: var(--dark);
}

.flex-block-6 {
  filter: drop-shadow(0px 2px 5px var(--blue));
  mix-blend-mode: normal;
  background-color: #0000;
  background-image: linear-gradient(#fff, #fff);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

.paragraph-11 {
  color: #013a63;
  text-align: center;
  font-size: 16px;
}

.paragraph-12 {
  color: #013a63;
  padding-right: 10px;
}

.paragraph-13 {
  color: #013a63;
  padding-right: 10px;
  font-size: 16px;
}

.div-block-12 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  display: flex;
}

.div-block-13 {
  flex-flow: row;
  display: flex;
}

.flex-block-7 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.link-4, .link-5, .link-6 {
  color: #013a63;
  font-size: 16px;
  text-decoration: underline;
}

.div-block-14 {
  -webkit-backdrop-filter: drop-shadow(0 2px 10px #000);
  backdrop-filter: drop-shadow(0 2px 10px #000);
  width: 30%;
}

.button-4 {
  font-size: 16px;
}

.button-4.custom {
  color: var(--white);
  background-color: #28add2;
  border-radius: 20px;
  padding: .9rem 1rem;
  font-size: 20px;
  font-weight: 500;
}

.button-4.bigger {
  border-radius: 6px;
}

.div-block-15 {
  border-bottom: 3px solid #95b3e8;
  margin-bottom: 20px;
  margin-right: 20px;
  font-size: 24px;
}

.text-block-7, .text-block-8 {
  color: #fff;
  padding-bottom: 5px;
  font-size: 24px;
}

.text-block-9 {
  color: #fff;
  padding-bottom: 5px;
}

.flex-block-8 {
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: .5rem;
}

.flex-block-9 {
  filter: drop-shadow(0 0 2px #000000b3);
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding-bottom: .5rem;
  padding-left: .5rem;
  padding-right: .5rem;
}

.heading-3 {
  color: #28add2;
}

.heading-4 {
  color: var(--white);
  font-family: Ubuntu, Helvetica, sans-serif;
  font-weight: 600;
}

.card {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.flex-block-10 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 1rem;
}

.heading-5 {
  padding-left: 1rem;
}

.paragraph-14 {
  padding-left: 1.5rem;
}

.text-block-10 {
  color: #ad1f00;
  padding-bottom: .2rem;
  font-weight: 600;
}

.div-block-16 {
  width: auto;
}

.flex-block-11 {
  width: 100%;
}

.flex-block-12 {
  justify-content: space-around;
  align-items: center;
}

.div-block-17 {
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  display: flex;
}

.button-5, .button-6 {
  background-color: #28add2;
}

.button-7 {
  background-color: #28add2;
  margin-top: 2rem;
}

.paragraph-15 {
  color: var(--white);
  text-align: center;
  background-color: #336daa;
  margin-bottom: 0;
  padding-top: .8rem;
  padding-bottom: .8rem;
  font-size: 20px;
}

.div-block-18 {
  background-color: #336daa;
}

.div-block-19 {
  flex: 1;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.flex-block-13 {
  display: block;
}

.flex-block-14 {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 1rem;
}

.div-block-20 {
  flex: 1;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  display: flex;
}

.list-item, .list-item-2, .list-item-3, .list-item-4 {
  font-size: 18px;
}

.text-block-11 {
  color: #ad1f00;
  padding-left: 1.2rem;
  font-size: 1.6rem;
}

.text-block-12 {
  color: #28add2;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: .8rem;
  display: block;
}

.paragraph-17 {
  color: var(--dark);
  font-size: 1.2rem;
}

.flex-block-16, .flex-block-17, .flex-block-18, .flex-block-19 {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
}

.paragraph-18 {
  color: #fff;
  font-size: 20px;
}

.heading-6, .heading-7, .heading-8 {
  color: #336daa;
}

.div-block-21 {
  background-color: #fff;
  padding: 1rem;
}

@media screen and (min-width: 1280px) {
  p {
    color: #fff;
  }

  .nav-menu {
    grid-column-gap: 50px;
  }

  .container {
    max-width: 1480px;
    padding-top: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container.main-hero {
    background-size: cover;
    max-width: 100%;
  }

  .container.large {
    padding-left: 0;
    padding-right: 0;
  }

  .section.bg-grey {
    background-image: url('../images/desert-min.png');
    background-position: 0 0;
    background-size: cover;
  }

  .section.bg-image {
    background-position: 50%;
    background-attachment: scroll;
  }

  .display-1 {
    font-size: 100px;
    line-height: 110px;
  }

  .button-dark {
    overflow: hidden;
  }

  .hero-text {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .text-serif {
    font-family: Playfair Display, sans-serif;
  }

  .rounded, .hero-label-wrapper {
    flex: none;
  }

  .ticker.background-purple {
    overflow: hidden;
  }

  .services {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .display-3 {
    font-size: 32px;
  }

  .button-white {
    overflow: hidden;
  }

  .available {
    left: auto;
    right: -50px;
  }

  .blog-section-title-wrapper {
    max-width: 450px;
  }

  .post-button {
    overflow: hidden;
  }

  .ticker-container {
    max-width: 1400px;
    display: flex;
  }

  .award-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

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

  .button {
    overflow: hidden;
  }

  .details-sidebar {
    margin-right: 0;
  }

  .services-sidebar {
    max-width: 390px;
  }

  .flex-block-2.margin-bottom-30 {
    padding-top: 1rem;
  }

  .div-block-8 {
    background-image: url('../images/mountain-divider.svg');
    background-position: 0 0;
    background-size: auto;
    height: 30px;
  }

  .flex-block-5 {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-11 {
    background-color: #336daa;
    width: auto;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .button-4 {
    font-size: 16px;
  }

  .button-4.bigger {
    border-radius: 7px;
    font-size: 18px;
  }

  .flex-block-12 {
    padding-top: 40px;
  }

  .div-block-19 {
    justify-content: space-around;
  }

  .text-block-11 {
    color: #ad1f00;
    padding-left: 1.2rem;
    font-size: 26px;
  }

  .text-block-12 {
    color: #28add2;
    text-align: center;
    font-size: 17px;
  }

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

  .paragraph-17 {
    color: #000;
    font-size: 18px;
    line-height: 22px;
  }

  .flex-block-15 {
    padding-top: 2rem;
  }

  .flex-block-16, .flex-block-17, .flex-block-18, .flex-block-19 {
    justify-content: space-between;
    align-items: center;
  }

  .paragraph-18 {
    font-size: 20px;
    line-height: 20px;
  }
}

@media screen and (max-width: 991px) {
  .nav-menu-flex-mobile {
    grid-row-gap: 50px;
    background-color: #fff;
    flex-direction: column;
    min-height: 100vh;
    padding: 35px;
  }

  .brand {
    display: flex;
  }

  .nav-menu {
    grid-row-gap: 0px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .navbar-brand-mobile {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
  }

  .nav-menu-flex {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .navbar-inner-mobile {
    align-items: center;
    display: flex;
  }

  .navbar-inner {
    display: none;
    position: relative;
  }

  .nav-menu-wrapper-mobile {
    z-index: 9999;
    background-color: var(--dark-bg);
    width: 300px;
    height: 100%;
    position: fixed;
    overflow: auto;
  }

  .navbar-wrapper-mobile {
    display: flex;
  }

  .nav-menu-wrapper {
    z-index: 999;
    background-color: #fff;
    width: 100%;
    height: auto;
    position: absolute;
  }

  .nav-link {
    height: auto;
    padding: 6px 0;
  }

  .container.main-hero {
    background-size: cover;
  }

  .hero {
    padding-top: 160px;
    padding-bottom: 220px;
  }

  .paragraph-large {
    margin-bottom: 30px;
  }

  .paragraph-large.margin-bottom-none {
    margin-bottom: 0;
  }

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

  .label.cc-hero {
    max-width: 150px;
    margin-top: 2px;
    font-size: 11px;
    line-height: 16px;
  }

  .sg-button-block {
    margin-bottom: 20px;
  }

  .menu-button {
    padding: 0;
  }

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

  .burger {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    background-color: var(--dark);
    border-radius: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    display: flex;
  }

  .burger-line.cc-middle {
    display: none;
  }

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

  .table-row.cc-link {
    grid-column-gap: 10px;
  }

  .display-1 {
    font-size: 54px;
    line-height: 64px;
  }

  .nav-link-mobile {
    color: #336daa;
    height: auto;
    padding: 10px 0;
  }

  .nav-link-mobile.w--current {
    color: #336daa;
  }

  .dropdown-mobile {
    text-transform: lowercase;
    font-weight: 500;
  }

  .dropdown-item-mobile {
    color: #fff;
    text-transform: uppercase;
    height: auto;
    padding: 6px 0;
    font-size: 15px;
    font-weight: 600;
  }

  .dropdown-list-mobile {
    padding-left: 10px;
  }

  .dropdown-link-mobile {
    color: #fff;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 4px 0;
    font-size: 14px;
  }

  .dropdown-link-mobile.w--current {
    color: #fff;
  }

  .hero-background {
    width: 500px;
    transform: translate(-50%, -50%)translate(-40px, 10px);
  }

  .hero-text {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .line {
    grid-column-gap: 20px;
  }

  .circular-text-image.cc-mobile-small {
    width: 60px;
  }

  .circular-text-icon.cc-mobile-small {
    width: 24px;
    height: 24px;
  }

  .rounded {
    width: auto;
    height: 100%;
  }

  .hero-image-wrapper {
    height: 55px;
  }

  .services {
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 0;
  }

  .services.horizontal {
    flex-flow: column;
  }

  .projects-section-title-wrapper {
    max-width: none;
    margin-bottom: -30px;
  }

  .grid-12-columns {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .projects {
    padding-top: var(--tablet-spacer);
    padding-bottom: var(--tablet-spacer);
  }

  .projects-collection-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    column-count: auto;
    flex-direction: column;
    grid-template-columns: 1fr;
    padding-top: 0;
    display: flex;
  }

  .text-white {
    color: var(--white);
    font-size: 1rem;
  }

  .project-info {
    flex-direction: column;
  }

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

  .project:nth-child(odd) {
    margin-top: 0;
  }

  .grid-2-columns {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .available {
    display: none;
  }

  .display-2 {
    font-size: 3rem;
    line-height: 60px;
  }

  .blog {
    padding-top: var(--tablet-spacer);
    padding-bottom: var(--tablet-spacer);
  }

  .blog-wrapper {
    margin-top: 40px;
  }

  .post-wrapper {
    align-items: flex-start;
  }

  .post-content {
    min-width: 0;
    max-width: none;
  }

  .post-link {
    display: none;
  }

  .cta-wrapper {
    padding-top: var(--tablet-spacer);
    padding-bottom: var(--tablet-spacer);
  }

  .footer-top {
    flex-direction: column;
    display: flex;
  }

  .footer {
    position: relative;
  }

  .services-section-title-wrapper {
    max-width: none;
  }

  .sticky {
    position: relative;
    top: 0;
  }

  .about-section-title-wrapper {
    max-width: none;
  }

  .about-top {
    padding-top: var(--tablet-spacer);
  }

  .about-bottom {
    padding-bottom: 140px;
  }

  .blog-section-title-wrapper {
    margin-bottom: -40px;
  }

  .text-block {
    color: #336daa;
  }

  .content-wrapper {
    width: 100%;
    display: block;
    overflow: hidden;
  }

  .nav-menu-footer {
    grid-row-gap: 25px;
    text-align: left;
    flex-direction: column;
    margin-top: auto;
    display: flex;
  }

  .circular-text-icon-image {
    width: 40%;
  }

  .projects-collection-wrapper {
    margin-top: 80px;
  }

  .about-section-description {
    margin-bottom: -40px;
  }

  .footer-widgets {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .follow-us {
    display: none;
  }

  .featured-post {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .table-head {
    grid-column-gap: 10px;
  }

  .award-wrapper {
    align-items: flex-start;
  }

  .grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: auto;
  }

  .project-body {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .details-sidebar {
    margin-right: 0;
  }

  ._404 {
    display: block;
  }

  ._404-title {
    font-size: 140px;
    line-height: 148px;
  }

  .button-2 {
    position: relative;
  }

  .div-block-2 {
    justify-content: flex-start;
  }

  .paragraph-3 {
    padding-left: 10px;
  }

  .paragraph-5, .paragraph-6 {
    font-size: 1.1rem;
  }

  .paragraph-7 {
    font-size: 17px;
  }

  .heading {
    word-break: break-all;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    display: flex;
    overflow: visible;
  }

  .paragraph-8 {
    font-size: 1.1rem;
  }

  .flex-block-6 {
    margin-left: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .flex-block-12 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: row;
    justify-content: space-between;
    display: flex;
  }

  .list-item, .list-item-2, .list-item-3, .list-item-4 {
    font-size: 1rem;
  }

  .text-block-12 {
    font-size: .9rem;
    display: none;
  }

  .heading-6, .heading-7, .heading-8 {
    font-size: 2rem;
  }

  .flex-block-20 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex: 0 auto;
    justify-content: space-between;
  }

  .flex-block-21, .flex-block-22 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
    line-height: 44px;
  }

  h2 {
    font-size: 28px;
    line-height: 38px;
  }

  h3 {
    font-size: 24px;
    line-height: 34px;
  }

  h4 {
    font-size: 22px;
    line-height: 32px;
  }

  h5 {
    font-size: 20px;
    line-height: 30px;
  }

  h6 {
    font-size: 18px;
    line-height: 28px;
  }

  blockquote {
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
    line-height: 40px;
  }

  .brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-left: 0;
  }

  .navbar-brand-mobile {
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 140px;
  }

  .sg-section {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .label.cc-hero {
    max-width: none;
  }

  .sg-color-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .sg-color-block {
    width: 25%;
  }

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

  .table-row {
    padding-bottom: 40px;
  }

  .display-1 {
    font-size: 46px;
    line-height: 56px;
  }

  .nav-link-mobile {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .dropdown-item-mobile {
    display: flex;
  }

  .hero-text {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .line {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .circular-text-link.cc-hero {
    margin-bottom: 10px;
  }

  .hero-label-wrapper {
    order: 1;
    margin-top: 20px;
  }

  .hero-image-wrapper {
    display: none;
  }

  .ticker.cc-logo {
    margin-bottom: 110px;
  }

  .ticker-inner {
    grid-column-gap: 30px;
    padding-right: 30px;
  }

  .services {
    padding-top: var(--mobile-spacer);
    padding-bottom: var(--mobile-spacer);
  }

  .display-3 {
    font-size: 36px;
    line-height: 46px;
  }

  .feature {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .feature.cc-small {
    flex-direction: row;
  }

  .projects {
    padding-top: var(--mobile-spacer);
    padding-bottom: var(--mobile-spacer);
  }

  .display-2 {
    font-size: 42px;
    line-height: 52px;
  }

  .blog {
    padding-top: var(--mobile-spacer);
    padding-bottom: var(--mobile-spacer);
  }

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

  .cta-wrapper {
    padding-top: var(--mobile-spacer);
    padding-bottom: var(--mobile-spacer);
  }

  .footer-bottom {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column-reverse;
  }

  .step {
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .step-title {
    max-width: none;
  }

  .about-top {
    padding-top: var(--mobile-spacer);
    padding-bottom: 0;
  }

  .about-bottom {
    padding-top: 0;
    padding-bottom: var(--mobile-spacer);
  }

  .footer-widgets {
    display: flex;
  }

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

  .spacer {
    height: var(--tablet-spacer);
  }

  .single-post-title {
    font-size: 40px;
    line-height: 50px;
  }

  .featured-post-wrapper {
    margin-bottom: 130px;
  }

  .featured-post {
    flex-direction: column;
  }

  .featured-post-image {
    width: 100%;
    max-width: none;
  }

  .about-page-headline {
    margin-bottom: 60px;
  }

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

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

  .contact-form-block {
    width: 100%;
  }

  .form-fields-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .textarea {
    padding-top: 8px;
  }

  .contact-page-headline {
    margin-bottom: 60px;
  }

  .image-wrapper {
    margin-bottom: 70px;
  }

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

  .works-page-headline {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu-flex-mobile {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-menu-wrapper-mobile {
    width: 255px;
  }

  .nav-menu-wrapper {
    width: 80%;
  }

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

  .sg-color-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sg-button-block {
    margin-bottom: 20px;
  }

  .table-row.cc-link {
    grid-column-gap: 0px;
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .display-1 {
    font-size: 34px;
    line-height: 44px;
  }

  .line {
    flex-direction: column;
  }

  .circular-text-link {
    display: none;
  }

  .circular-text-link.cc-hero {
    display: flex;
  }

  .hero-label-wrapper {
    text-align: center;
  }

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

  .display-3 {
    font-size: 30px;
    line-height: 40px;
  }

  .project-info {
    max-width: none;
  }

  .display-2 {
    font-size: 1.9rem;
    line-height: 42px;
  }

  .footer-top {
    grid-row-gap: 40px;
  }

  .footer.background-dark {
    display: flex;
  }

  .footer-widgets {
    justify-content: flex-start;
    align-items: center;
  }

  .table-head {
    display: none;
  }

  .award-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

  .grid.team.margin-bottom-80 {
    grid-template-columns: 1fr;
  }

  .award-link {
    display: none;
  }

  .button-2 {
    width: auto;
    font-size: 16px;
  }

  .paragraph-2 {
    padding-left: 0;
  }

  .flex-block.full {
    flex-flow: column;
    flex: 0 auto;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
  }

  .flex-block-2.margin-bottom-30 {
    flex-flow: column;
    padding-right: 0;
  }

  .heading {
    word-break: normal;
    overflow-wrap: anywhere;
    font-size: 1.8rem;
  }

  .paragraph-8 {
    margin-bottom: 0;
  }

  .flex-block-4 {
    justify-content: center;
    align-items: center;
  }

  .button-4.bigger {
    margin-top: 1rem;
  }

  .flex-block-12 {
    flex-flow: column;
  }

  .paragraph-15 {
    font-size: 1rem;
  }

  .flex-block-14 {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
  }

  .text-block-11 {
    text-align: center;
    padding-left: 0;
  }

  .heading-6 {
    text-align: center;
  }

  .heading-7 {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .heading-8 {
    text-align: center;
  }

  .flex-block-20 {
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .flex-block-21, .flex-block-22 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .flex-block-23 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .list, .list-2, .list-3 {
    padding-left: 1.3rem;
  }
}

#w-node-e82f9d4a-70ca-93cc-18eb-d37399ff448e-99ff448b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e82f9d4a-70ca-93cc-18eb-d37399ff448f-99ff448b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e82f9d4a-70ca-93cc-18eb-d37399ff44c4-99ff448b {
  grid-area: 1 / 8 / 2 / 10;
}

#w-node-e82f9d4a-70ca-93cc-18eb-d37399ff44a0-99ff448b {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-_92c5178d-e5dd-2034-d65d-cf02c3112bbe-99ff448b {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_026f4a45-4beb-cf96-ae39-a1bbaa74eb3b-deaf047b {
  grid-area: span 1 / span 4 / span 1 / span 4;
  place-self: start stretch;
}

#w-node-_026f4a45-4beb-cf96-ae39-a1bbaa74eb49-deaf047b {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-cc72317a-f489-e4e6-ee66-e866888978fc-deaf047b {
  grid-area: span 1 / span 4 / span 1 / span 4;
  place-self: start stretch;
}

#w-node-cc72317a-f489-e4e6-ee66-e86688897910-deaf047b {
  grid-area: 1 / 6 / 2 / 13;
}

@media screen and (max-width: 991px) {
  #w-node-e82f9d4a-70ca-93cc-18eb-d37399ff448f-99ff448b {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-e82f9d4a-70ca-93cc-18eb-d37399ff44c4-99ff448b {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-e82f9d4a-70ca-93cc-18eb-d37399ff44a0-99ff448b {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_92c5178d-e5dd-2034-d65d-cf02c3112bbe-99ff448b {
    grid-area: 1 / 3 / 2 / 3;
  }

  #w-node-_026f4a45-4beb-cf96-ae39-a1bbaa74eb3b-deaf047b, #w-node-cc72317a-f489-e4e6-ee66-e866888978fc-deaf047b {
    grid-column: span 4 / span 4;
  }
}


@font-face {
  font-family: 'Unicons';
  src: url('../fonts/unicons-line.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: block;
}