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

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

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

:root {
  --white: white;
  --smoked-white: #f8f1ec;
  --pistachio: #dedb7b;
  --violet: #c4b2f6;
  --pink: #fcd5db;
  --dark-grey: #272727;
  --green: #00524e;
  --orange: #ed7a5f;
}

body {
  color: #272727;
  letter-spacing: -.03em;
  font-family: Studiofeixensans, sans-serif;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 7.63889em;
  font-weight: 400;
  line-height: 100%;
}

h2 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.86111em;
  font-weight: 400;
  line-height: 123%;
}

h3 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.33333em;
  font-weight: 400;
  line-height: 117%;
}

h4 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.36111em;
  font-weight: 400;
  line-height: 120%;
}

h5 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.80556em;
  font-weight: 400;
  line-height: 120%;
}

h6 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.38889em;
  font-weight: 400;
  line-height: 140%;
}

p {
  margin-bottom: 10px;
}

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

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

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

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

.text-dark-grey {
  color: #272727;
}

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

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

.text-smoked-white {
  color: #f8f1ec;
}

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

.text-violet {
  color: #8c69ec;
}

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

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

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

.opacity-40 {
  opacity: .4;
}

.h3 {
  font-size: 3.33333em;
  line-height: 117%;
}

.h5 {
  font-size: 1.80556em;
  line-height: 120%;
}

.alignment-right {
  text-align: right;
}

.cta {
  color: #272727;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #ed7a5f;
  border: 2px solid #ed7a5f;
  border-radius: 300px;
  padding: 1.1em 2.2em;
  font-size: 1.38889em;
  font-weight: 400;
  line-height: 100%;
  transition: color .2s cubic-bezier(.215, .61, .355, 1), background-color .2s cubic-bezier(.215, .61, .355, 1);
  display: inline-block;
}

.cta:hover {
  background-color: var(--dark-grey);
  color: var(--smoked-white);
  border-width: 2px;
}

.cta.violet {
  background-color: #c4b2f6;
  border-color: #c4b2f6;
}

.cta.violet:hover {
  background-color: var(--dark-grey);
}

.cta.white {
  background-color: #fff;
  border-color: #fff;
  height: auto;
}

.cta.white:hover {
  background-color: var(--dark-grey);
  color: var(--smoked-white);
}

.cta.white.is--z10 {
  z-index: 10;
  align-self: flex-start;
  position: relative;
}

.cta.transparent {
  border: 1px solid var(--smoked-white);
  color: #f8f1ec;
  background-color: #0000;
}

.cta.transparent:hover {
  background-color: var(--smoked-white);
  color: var(--dark-grey);
}

.cta.transparent.circle {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 3.8em;
  padding-left: 0;
  padding-right: 0;
  line-height: 20px;
  display: flex;
}

.cta.pistachio {
  border-color: var(--pistachio);
  background-color: var(--pistachio);
}

.cta.pistachio:hover {
  background-color: var(--dark-grey);
}

.cta.nav {
  padding: .433333em 1.72222em;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 177.778%;
}

.cta.nav.transparent {
  display: none;
}

.cta.nav.pistachio:hover {
  color: var(--smoked-white);
}

.cta.nav.green {
  border-color: var(--green);
  background-color: var(--green);
  color: var(--smoked-white);
}

.cta.nav.green:hover {
  background-color: var(--dark-grey);
  color: var(--smoked-white);
}

.cta.nav.pink {
  border-color: var(--pink);
  background-color: var(--pink);
}

.cta.nav.pink:hover {
  background-color: var(--dark-grey);
}

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

.cta.smoked-white.is--z10 {
  z-index: 10;
  border-width: 1px;
  border-color: #000;
  align-self: flex-start;
  position: relative;
}

.h1 {
  font-size: 7.77778em;
  line-height: 100%;
}

.h1.text-smoked-white {
  color: #f8f1ec;
}

.h1.text-smoked-white.footer.z-index-1, .h1.hero {
  line-height: 100%;
}

.h1.max-width-13 {
  max-width: 13em;
}

.h4 {
  font-size: 2.36111em;
  line-height: 120%;
}

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

.h2 {
  font-size: 4.86111em;
  line-height: 110%;
}

.h2.b10.reveal {
  line-height: 114%;
}

.margin-big {
  height: 6em;
}

.navbar-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.navlink-text {
  letter-spacing: 0;
  line-height: 120%;
  text-decoration: none;
}

.navlink-text.link-footer {
  color: var(--smoked-white);
  font-size: 1.38889em;
  line-height: 130%;
}

.navlink-text.link-footer.opacity-40.alignment-right {
  transition: opacity .2s;
}

.navlink-text.link-footer.opacity-40.alignment-right:hover {
  opacity: 1;
}

.navbar-main-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.navbar-main-wrapper.mobile {
  display: none;
}

.nav-link {
  color: var(--dark-grey);
  cursor: pointer;
  background-color: #0000;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 3.6em;
  font-size: 1.25em;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  opacity: 1;
}

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

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

.navbar {
  z-index: 2000;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  margin-top: 1%;
  margin-left: 1%;
  margin-right: 1%;
  padding: 1%;
  transition: background-color .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-wrapper-links {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-nav-logo {
  width: 100px;
  display: none;
}

.wrapper-hero-section {
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.wrapper-hero-section.z-index-3 {
  justify-content: center;
}

.text-bubble.text-dark-grey {
  font-size: 12px;
  line-height: 14px;
}

.section {
  padding-top: 7.2em;
  padding-bottom: 7.2em;
}

.section.hero {
  width: 100%;
  height: 100vh;
  padding-left: 0%;
  padding-right: 0%;
  position: relative;
  overflow: hidden;
}

.section.what-we-do {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section.what-we-do.smoked-white {
  padding-bottom: 2em;
}

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

.section.footer {
  min-height: 100%;
  padding: 120px 0% 30px;
}

.section.what-we-value {
  height: 100%;
  min-height: 100%;
  padding-top: 0;
}

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

.section.text-aligned-left {
  padding-top: 6em;
  padding-bottom: 6em;
  position: relative;
}

.section.text-aligned-left.hero {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  overflow: visible;
}

.section.our-culture {
  height: 100%;
  padding-top: 15em;
  padding-bottom: 2em;
  position: static;
}

.section.smoked-white.section--margin {
  padding-bottom: 2%;
}

.section.smoked-white.section--margin.what-we-do {
  padding-top: 0;
  padding-left: 2%;
  padding-right: 2%;
}

.section.div-hide {
  overflow: hidden;
}

.section.our-values {
  height: 100%;
  padding-top: 5em;
  padding-bottom: 2em;
  position: static;
}

.section.hero-2 {
  width: 100%;
  position: relative;
}

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

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

.wrappe-hero-h5.bottom-left {
  width: 50%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.wrappe-hero-h5.bottom-left.alignment-left {
  max-width: 600px;
}

.image-person {
  width: 1.73611em;
  margin-right: 5px;
}

.wrapper-bubble {
  z-index: 2;
  align-self: flex-start;
  align-items: center;
  width: 13.6111em;
  height: 3.40278em;
  margin-left: 4em;
  padding-bottom: .4em;
  padding-left: .4em;
  padding-right: .9em;
  display: flex;
  position: relative;
  bottom: 0%;
  left: 0%;
  right: 40%;
}

.div1 {
  flex-direction: column;
  display: none;
  position: relative;
}

.div1.bottom-right {
  text-align: right;
  justify-content: space-between;
  width: 100%;
  display: flex;
  inset: auto 0% 0% auto;
}

.div1.bottom-right._404 {
  padding-left: 20%;
}

.div1.bottom-left {
  z-index: 1;
  justify-content: center;
  width: 100%;
  padding-bottom: 2%;
  padding-left: 1.94444em;
  padding-right: 1.94444em;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.div1.bottom-left.no-overflow {
  overflow: hidden;
}

.div1.div-visible {
  flex-direction: column;
  display: flex;
}

.div1._404 {
  display: block;
}

.wrapper-cta.is--sticky {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 3em 1fr;
  grid-auto-columns: 1fr;
  align-self: flex-start;
  align-items: center;
  display: grid;
  position: sticky;
  top: 7em;
}

.wrapper-what-we-do {
  padding-left: 3%;
  padding-right: 3%;
}

.wrapper-what-we-do-projects.white {
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.wrapper-what-we-do-cms.dark-grey {
  border-radius: 20px;
  flex-flow: wrap;
  height: 60em;
  margin-left: 2%;
  margin-right: 2%;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
}

.wrapper-what-we-do-cms.dark-grey.dark-section.reveal-scale {
  margin-left: auto;
  margin-right: auto;
}

.collection-list {
  grid-column-gap: 1.25em;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrapper-h2 {
  margin-bottom: 5em;
}

.wrapper-h2.margin-60 {
  max-width: 100%;
  padding-left: 8%;
  padding-right: 8%;
}

.wrapper-h2.blend-multiply {
  mix-blend-mode: multiply;
}

.span-image {
  background-image: url('../images/Constant-feedback--candor-Web.png');
  background-position: 50% 55%;
  background-repeat: no-repeat;
  background-size: 1.2em;
  display: inline-block;
  position: relative;
}

.span-image.simplfy {
  background-image: url('../images/Simplify--Make-it-accessible-Web.png');
  background-position: 50%;
  background-size: 1em;
  width: 1em;
  display: inline-block;
}

.collection-list-clients {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.wrapper-clients {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  position: relative;
}

.wrapper-clients.work-page {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  overflow: hidden;
}

.wrapper-clients.margin-60 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.collection-list-blog {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.wrapper-footer-top {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 280px;
  display: grid;
  position: relative;
}

.wrapper-footer-bottom-left {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.wrapper-footer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  position: relative;
}

.link-footer {
  color: var(--smoked-white);
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.38889em;
  line-height: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-footer.w--current {
  position: relative;
  overflow: hidden;
}

.wrapper-footer-ctas {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  display: grid;
}

.wrapper-footer-middle.margin-60 {
  z-index: 1;
  position: relative;
}

.wrapper-footer-bottom {
  z-index: 1;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.circle-big {
  width: 450px;
  height: 450px;
}

.circle-big.orange {
  z-index: 0;
  border-radius: 999px;
  width: 450px;
  height: 450px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 10% 0% 0%;
}

.circle-big.contact {
  background-color: var(--smoked-white);
  mix-blend-mode: soft-light;
  border-radius: 999px;
  width: 35em;
  height: 35em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 10% 40% auto auto;
}

.circle-big.contact._2 {
  bottom: auto;
  left: 40%;
  right: auto;
}

.circle-big.violet {
  z-index: 0;
  background-color: var(--violet);
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 10% 0% 0%;
}

.circle-big.pistachio {
  z-index: 0;
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  inset: 40% 0% 0% -10%;
}

.circle-big.white {
  z-index: 0;
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  inset: 5% 0% 0% 10%;
}

.circle-big._404 {
  background-color: var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  width: 600px;
  height: 600px;
  position: static;
  inset: 15% 0% 0% 30%;
}

.wrapper-footer-top-links {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--smoked-white);
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
}

.wrapper-case-study.smoked-white {
  border-radius: 4.16667em;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 36.9444em;
  padding: 5% 5% 3%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.wrapper-case-study-title {
  z-index: 3;
  flex: 1;
  align-items: center;
  display: flex;
  position: relative;
}

.margin-extra {
  height: 10em;
}

.wrapper-logo {
  justify-content: center;
  align-items: center;
  margin-right: 6em;
  display: flex;
}

.wrapper-logo.work-page {
  justify-content: flex-start;
}

.image-client-logo {
  width: 100%;
  min-width: 180px;
}

.image-client-logo.work-page {
  width: 80%;
}

.margin-small {
  height: 2em;
}

.text-author {
  font-size: 16px;
  line-height: 100%;
}

.wrapper-blog-image {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-bottom: 20px;
}

.wrapper-blog {
  cursor: pointer;
}

.wrapper-blog.white {
  border: 2px solid var(--smoked-white);
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-bottom: 6%;
  text-decoration: none;
  transition: border-color .2s;
  display: flex;
  overflow: hidden;
}

.wrapper-blog.white:hover {
  border: 2px solid var(--violet);
}

.wrapper-blog-text-bottom {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: auto;
  display: flex;
}

.wrapper-blog-text-top {
  width: 100%;
  color: var(--dark-grey);
  margin-bottom: 5.3em;
  text-decoration: none;
}

.wrapper-blog-text-top.margin-60 {
  flex: 1;
  align-self: flex-start;
}

.wrapper-blog-text {
  flex-flow: column wrap;
  flex: 1;
  align-content: flex-start;
  height: 100%;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.image-blog {
  clear: left;
  object-fit: cover;
  width: 100%;
  height: 175px;
}

.image-author {
  object-fit: cover;
  border-radius: 300px;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.wrapper-blog-author {
  align-items: center;
  display: flex;
}

.collection-list-categories {
  flex-wrap: wrap;
  display: flex;
}

.wrapper-category {
  margin-bottom: .4em;
  margin-right: .4em;
}

.text-blog-category {
  font-size: .75em;
}

.text-blog-category.violet.text-violet {
  text-transform: uppercase;
  border-radius: 5px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 500;
}

.image-hover-circle {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
}

.navlink-underline-footer {
  background-color: var(--dark-grey);
  width: 100%;
  height: 1px;
}

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

.navlink-underline-footer.smoked-white {
  background-color: var(--smoked-white);
}

.text-case-study-name {
  line-height: 42px;
}

.text-case-study-description {
  color: #272727b3;
  letter-spacing: -.02em;
  line-height: 100%;
}

.wrapper-bubble-people {
  align-self: center;
  margin-right: 5px;
}

.wrapper-hero-h1-bottom-right {
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  width: 40%;
  padding-left: 0%;
  display: flex;
  position: relative;
}

.wrapper-hero-h1-bottom-right.home {
  padding-left: 5%;
}

.wrapper-hero-h1-bottom-right._404 {
  width: 100%;
}

.text-with-radius-bg {
  color: var(--pistachio);
  white-space: nowrap;
  background-color: #dedb7b80;
  border-radius: 5px;
  padding: 5px 6px;
  font-size: 38px;
  font-weight: 400;
  line-height: 100%;
  display: inline-block;
}

.collection-list-skills {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.collection-list-wrapper-what-we-do {
  flex-wrap: wrap;
  flex: 0 auto;
  margin-bottom: 10px;
}

.section-hero {
  width: 100%;
  height: 100vh;
  padding: 100px 2% 40px;
}

.wrapper-what-we-value {
  align-items: center;
  max-width: 1200px;
  height: 100vh;
  margin-bottom: 31%;
  display: flex;
  position: relative;
}

.wrapper-what-we-value.is--new {
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 400vh;
  margin-bottom: 0%;
  padding-bottom: 20%;
}

.wrapper-what-we-value-content {
  grid-column-gap: 6em;
  grid-row-gap: 6em;
  align-items: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.wrapper-what-we-value-image {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
  position: sticky;
  top: 10%;
}

.wrapper-what-we-value-text {
  max-width: 500px;
}

.wrapper-what-we-value-text.is-first {
  margin-top: 28%;
}

.paragraph {
  font-size: 16px;
  line-height: 130%;
}

.paragraph.opacity-80 {
  font-size: 1em;
  line-height: 120%;
}

.opacity-80 {
  opacity: .8;
}

.image-what-we-value {
  opacity: 0;
  width: 100%;
  max-width: 600px;
}

.image-what-we-value.is-one {
  opacity: 1;
}

.image-what-we-value.b20 {
  display: none;
}

.wrapper-team-members {
  padding-top: 8em;
  padding-bottom: 10em;
}

.wrapper-team-member {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-team-member {
  mix-blend-mode: multiply;
  width: 330px;
}

.text-team-member-position {
  color: var(--dark-grey);
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 110%;
}

.collection-list-team-members {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-team-members.addclasses {
  grid-template-rows: auto;
}

.wrapper-text-aligned-left {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}

.wrapper-text-aligned-left.is-bottom {
  justify-content: flex-end;
}

.wrapper-404-contact {
  justify-content: space-between;
  display: flex;
}

.wrapper-404-contact-email {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 70%;
  display: flex;
}

.text-form {
  font-size: 16px;
  font-weight: 400;
}

.text-field {
  border-style: solid;
  border-width: 1px;
  border-color: transparent transparent var(--dark-grey);
  background-color: #0000;
  height: 60px;
  margin-bottom: 0;
  padding-left: 5px;
  font-size: 2.36111em;
}

.text-field:focus {
  border-style: solid;
  border-color: #0000 #0000 #000;
}

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

.form_contain {
  flex-direction: column;
  justify-content: space-between;
  height: 12em;
  display: flex;
  position: relative;
}

.submit-button {
  color: var(--dark-grey);
  background-color: #0000;
  font-size: 3em;
  font-weight: 400;
  position: absolute;
  inset: 20% 0% 0% auto;
}

.wrapper-404-bookcall {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-end;
  width: 30%;
  display: flex;
}

.text-block.text-work-case-study-description {
  color: #272727b3;
  font-size: 56px;
}

.text-block.text-work-case-study-name {
  font-size: 56px;
}

.text-block.text-case-study-name {
  font-size: 28px;
  line-height: 100%;
}

.text-block.text-case-study-description {
  letter-spacing: normal;
  font-size: 28px;
  line-height: 100%;
}

.text-block.text-with-radius-bg {
  border: 1px solid #0000;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 38px;
  line-height: 100%;
}

.text-block.text-with-radius-bg.static {
  color: var(--smoked-white);
  background-color: #0000;
}

.text-block.text-with-radius-bg.violet {
  color: var(--violet);
  background-color: #c4b2f680;
}

.form {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.collection-list-work {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-work-case-study-name {
  color: var(--dark-grey);
}

.text-work-case-study-description {
  color: #27272780;
  letter-spacing: -.03em;
}

.wrapper-work-case-studies {
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6em;
}

.collection-list-clients-work-page {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrapper-case-study-work-page {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 30em;
  padding: 3%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.wrapper-case-study-work-page.smoked-white {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 30em;
  padding: 3% 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-hover-circle-work-page {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
}

.main-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.text-blog-title {
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 400;
  line-height: 110%;
}

.infinite-stripe {
  grid-column-gap: 4em;
  align-items: center;
  display: flex;
}

.infinite-stripe.reveal {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
}

.margin-extra-small {
  height: 1em;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.z-index-3 {
  z-index: 3;
  position: relative;
}

.collection-item {
  border-radius: 20px;
}

.wrapper-our-cultures {
  grid-column-gap: 6em;
  grid-row-gap: 6em;
  justify-content: center;
  height: 200vh;
  margin-bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: visible;
}

.wrapper-our-cultures.mobile {
  display: none;
}

.wrapper-our-culture-images {
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  width: 50%;
  height: 500px;
  display: flex;
  position: sticky;
  top: 30%;
}

.wrapper-our-culture-image {
  background-image: url('../images/our-colture-image-1.webp');
  background-position: 50%;
  background-size: cover;
  width: 80%;
  height: 500px;
  position: absolute;
  top: -15%;
  box-shadow: 1px 1px 3px #0000001a;
}

.wrapper-our-culture-image._2 {
  z-index: 2;
  opacity: 0;
  background-image: url('../images/our-colture-image-2.webp');
  background-position: 50%;
  height: 550px;
  top: -20%;
  left: 2%;
}

.wrapper-our-culture-image._3 {
  z-index: 3;
  opacity: 0;
  background-image: url('../images/workshop.jpg');
  height: 540px;
  top: -19%;
  left: -3%;
}

.wrapper-our-culture-image._4 {
  z-index: 4;
  opacity: 0;
  background-image: url('../images/team.jpg');
  background-position: 50%;
  height: 580px;
  top: -25%;
  left: 9%;
}

.wrapper-our-culture-texts {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.wrapper-our-culture-texts.is-soma {
  justify-content: space-between;
  align-items: flex-start;
  width: 55%;
  height: 100%;
}

.wrapper-our-culture {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 200px;
  padding: 0;
  display: flex;
  position: static;
  top: 0;
}

.wrapper-our-culture.lastone {
  justify-content: center;
  min-height: 300px;
  margin-bottom: 25vh;
}

.html-embed-work-page.b40 {
  max-width: 50em;
}

.collection-list-item.addclasses.offset0 {
  padding-top: 10em;
}

.wrapper-nav-mobile-ctas {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: none;
}

.embed-p5js-circle-animation {
  z-index: 3;
  display: block;
}

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

.wrapper-404-blur {
  filter: blur(15px);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-nav-logo-black {
  width: 100px;
  display: inline-block;
}

.embed-nav-css {
  transition: all .2s;
}

.pre-loader {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

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

.wrapper-circles-contact, .navbar-wrapper-logo {
  display: none;
}

.header-work {
  background-image: url('../images/Work-hero.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.lottie-logo {
  z-index: 4;
  opacity: 0;
  width: 7.77778em;
  position: relative;
}

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

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

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

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

.container {
  max-width: 100%;
  padding-left: 8%;
  padding-right: 8%;
  position: relative;
}

.container.is-100h {
  padding-left: 2%;
  padding-right: 2%;
}

.container.margin-60 {
  width: 100%;
}

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

.h6 {
  font-size: 1.38889em;
  line-height: 140%;
}

.content {
  width: 100%;
}

.text-size-lg {
  letter-spacing: -.02em;
  font-size: 1.38889em;
  font-weight: 400;
  line-height: 160%;
}

.text-size-lg.is-line-height {
  line-height: 130%;
}

.text-size-lg.is-line-height.opacity-80.reveal.max-width-25, .text-size-lg.is-line-height.opacity-80.max-width-25 {
  max-width: 25em;
}

.text-size-lg.is-1 {
  margin-left: 1em;
}

.text-size-lg.b30.is-marg {
  margin-left: .5em;
}

.text-size-md {
  font-size: 1.25em;
  font-weight: 400;
  line-height: 120%;
}

.text-size-md.blog-card-name-mobile {
  color: var(--dark-grey);
}

.text-size-xs {
  letter-spacing: .04em;
  align-self: center;
  font-size: .833333em;
  font-weight: 400;
  line-height: 116.667%;
}

.text-size-xs.violet.text-violet.tag {
  border-radius: .333333em;
  padding: .28em .2em;
}

.text-size-xs.text-violet.text-style-allcaps.violet.tag {
  font-size: 1em;
}

.text-size-sm {
  letter-spacing: -.02em;
  font-size: 1.11111em;
  font-weight: 400;
  line-height: 118.75%;
}

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

.text-style-regular {
  font-weight: 400;
}

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

.paragraph-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 600px;
  display: grid;
}

.sg-row {
  border-top: 1px solid #fff3;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
  display: flex;
}

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

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

.text-line-height-sm {
  line-height: 1.1;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.opacity-50 {
  opacity: .5;
}

.sg-h3 {
  color: #fff;
  flex: none;
  width: 140px;
  font-size: 16px;
}

.link {
  color: #ff2bbf;
  text-decoration: underline;
}

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

.text-align-left.is-down {
  align-self: flex-end;
}

.text-align-left.is-down.d40.t40 {
  margin-bottom: 1%;
}

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

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

.t10 {
  margin-top: .52em;
}

.b80 {
  margin-bottom: 6em;
}

.b70 {
  margin-bottom: 5.3em;
}

.t50 {
  margin-top: 3em;
}

.b40 {
  margin-bottom: 2.08333em;
}

.b05 {
  margin-bottom: .25em;
}

.t40 {
  margin-top: 2.08333em;
}

.t20 {
  margin-top: 1em;
}

.sg-h2 {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.4em;
}

.b50 {
  margin-bottom: 3em;
}

.t30 {
  margin-top: 1.5625em;
}

.b30 {
  margin-bottom: 1.5625em;
}

.padding-wrapper {
  justify-content: space-around;
  align-items: center;
  width: 400px;
  display: flex;
}

.b20 {
  margin-bottom: 1em;
}

.b100 {
  margin-bottom: 10em;
}

.container-2 {
  z-index: 10;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  padding-left: 3.125%;
  padding-right: 3.125%;
  display: flex;
  position: relative;
  overflow: visible;
}

.b60 {
  margin-bottom: 4.5em;
}

.b10 {
  margin-bottom: .52em;
}

.wrapper.is-down {
  display: flex;
}

.wrapper.d20.z-index-1 {
  z-index: 1;
}

.hide {
  display: none;
}

.d80 {
  width: 80%;
}

.d40 {
  z-index: 5;
  width: 40%;
}

.d30 {
  z-index: 5;
  width: 30%;
  position: relative;
}

.is-t-less {
  padding-top: 0;
}

.is-center {
  justify-content: center;
  display: flex;
}

.is-left {
  justify-content: flex-start;
  display: flex;
}

.is-b-less {
  padding-bottom: 0;
}

.is-tab-full {
  width: auto;
}

.d50 {
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
  position: relative;
}

.d50.text-align-left.is-down {
  justify-content: flex-end;
}

.is-right {
  justify-content: flex-end;
  display: flex;
}

.d100 {
  z-index: 5;
  width: 100%;
  position: relative;
}

.d60 {
  width: 60%;
  position: relative;
}

.div-visible {
  display: flex;
}

.is-mob-full {
  width: auto;
}

.d70 {
  z-index: 5;
  width: 70%;
  position: relative;
}

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

.img-bg-ab {
  z-index: -10;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog-hero-wrapper {
  margin-left: 6.11111em;
  margin-right: 6.11111em;
  padding-top: 7em;
  padding-bottom: 3em;
}

.description-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.tech-tag {
  white-space: nowrap;
  font-size: 3em;
  line-height: 167%;
}

.we-work-container {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1656px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
  display: flex;
  position: relative;
}

.coll-list-hor {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: flex-start start;
  width: 100%;
  display: flex;
}

.tag-lg {
  border-radius: .4em;
  margin: .06em;
}

.tag-lg.is-skill {
  background-color: #dedb7b66;
}

.div-block {
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
}

.collection-wrap {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.collection-wrap.is-2 {
  margin-top: -5.2em;
}

.skill-coll-item {
  justify-content: center;
  display: flex;
}

.skill-coll-item:first-child {
  color: #fff;
  background-color: #0000;
}

.skill-coll-item.tech-tag {
  color: var(--pistachio);
  background-color: #dedb7b66;
  border-radius: .27em;
}

.skill-coll-item.tech-tag:first-child {
  color: var(--smoked-white);
  background-color: #0000;
}

.link-block {
  width: 100%;
  color: var(--dark-grey);
  text-decoration: none;
}

.d20 {
  z-index: 5;
  width: 20%;
  position: relative;
}

.d15 {
  z-index: 5;
  width: 15%;
  position: relative;
}

.img-wrapper.cover {
  width: 100%;
  height: 34.7222em;
}

.img-cover {
  object-fit: cover;
  border-radius: 1.38889em;
  width: 100%;
  height: 100%;
}

.post-container {
  max-width: 47.4306em;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.rich-txt h2 {
  padding-bottom: .25em;
}

.rich-txt p {
  margin-bottom: 3em;
  font-family: Recifetext, sans-serif;
  font-size: 1.38889em;
  line-height: 160%;
}

.rich-txt h3 {
  padding-bottom: .5em;
}

.rich-txt h5, .rich-txt h6 {
  padding-bottom: .3em;
}

.fontface-recife {
  letter-spacing: -.02em;
  font-family: Recifetext, sans-serif;
  font-size: 1.38889em;
  line-height: 160%;
}

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

.end-result-wrapper {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.text-pistachio-copy {
  color: var(--pistachio);
}

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

.we-tag {
  border-radius: .2em;
  align-items: center;
  margin-bottom: .3em;
  margin-right: .3em;
  padding: .1em .2em;
}

.we-tag.pistachio {
  background-color: #dedb7b66;
}

.we-tag.violet {
  background-color: #c4b2f666;
}

.lang-coll-item {
  justify-content: center;
  display: flex;
}

.lang-coll-item:first-child {
  color: #fff;
  background-color: #0000;
}

.lang-coll-item.tech-tag {
  color: var(--violet);
  background-color: #c4b2f666;
  border-radius: .27em;
}

.lang-coll-item.tech-tag:first-child {
  color: var(--smoked-white);
  background-color: #0000;
  margin-left: 4.7em;
}

.lang-coll-item.tech-tag:last-child {
  color: var(--smoked-white);
  background-color: #0000;
}

.tech-html {
  width: 100%;
}

.learn-coll-item {
  justify-content: center;
  display: flex;
}

.learn-coll-item:first-child {
  color: #fff;
  background-color: #0000;
}

.learn-coll-item.tech-tag {
  color: var(--violet);
  background-color: #c4b2f666;
  border-radius: .27em;
}

.tag-wrapper {
  width: 100%;
}

.mobile-btm-wrap {
  flex-flow: wrap;
  align-content: space-between;
  align-self: stretch;
  align-items: stretch;
  margin-top: auto;
  display: flex;
}

.what-we-value-image {
  width: 100%;
  height: 34.7222em;
  position: absolute;
  top: 15%;
}

.what-we-value-image._2 {
  z-index: 2;
  opacity: 0;
  background-image: url('../images/our-colture-image-2.webp');
  background-position: 50%;
  height: 550px;
  top: -20%;
  left: 2%;
}

.what-we-value-image._3 {
  z-index: 3;
  opacity: 0;
  background-image: url('../images/our-colture-image-3.webp');
  height: 540px;
  top: -19%;
  left: -3%;
}

.what-we-value-image._4 {
  z-index: 4;
  opacity: 0;
  background-image: url('../images/our-colture-image-4.webp');
  background-position: 50%;
  height: 580px;
  top: -25%;
  left: 9%;
}

.wrapper-our-walue-images {
  justify-content: flex-end;
  width: 40%;
  height: 100%;
}

.hero-about {
  background-image: url('../images/About-hero.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.p5-header-home {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header-contact {
  z-index: 0;
  background-color: var(--smoked-white);
  background-image: url('../images/contact-hero.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.wrapper-what-we-value-txt {
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: auto;
  display: flex;
  overflow: hidden;
}

.wrapper-what-we-value-txt.is-soma, .wrapper-what-we-value-txt.is-fix {
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  height: 100%;
}

.wrapper-what-we-value-img {
  mix-blend-mode: multiply;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  width: 100%;
  height: 500px;
  display: flex;
  position: sticky;
  top: 15%;
}

.client-feedback-img-wrapper {
  justify-content: flex-start;
  align-self: flex-start;
  width: 70%;
  max-width: 400px;
  margin-bottom: 2em;
  display: flex;
}

.client-feedback-img-wrapper:nth-child(2n) {
  justify-content: flex-end;
  align-self: flex-end;
}

.client-feedback-container {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.value-wrapper {
  padding-top: 1em;
  padding-bottom: 1em;
}

.c-slider {
  background-color: #0000;
}

.slider_slide_fill {
  border-bottom: 1px solid #000;
  align-items: center;
  display: flex;
}

.f-input {
  background-color: #0000;
  border-width: 0 0 1px;
  border-color: #000;
  border-bottom-style: solid;
  padding-top: 1.7em;
  padding-bottom: 1em;
  font-size: 2.36111em;
}

.f-input::placeholder {
  color: var(--dark-grey);
}

.f-input.b20:focus {
  border: 0 solid #000;
  border-bottom-width: 1px;
}

.next-arrow-btn {
  justify-content: center;
  align-items: center;
  width: 6em;
  height: 4em;
  display: flex;
}

.next {
  display: flex;
}

.error {
  flex: 1;
  width: 100%;
  position: absolute;
  top: 72%;
}

.burger-icon-wrapper {
  flex-direction: column;
  justify-content: space-between;
  width: 1.52778em;
  height: .694444em;
  display: none;
  position: relative;
}

.burger-line {
  width: 100%;
  height: 3px;
}

.mobile-logo {
  display: none;
}

.bubble-linkbox {
  position: absolute;
  inset: 0%;
}

.bg-color-wrapper {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bg-color {
  width: 100%;
  height: 100vh;
  position: static;
}

.navbar-wrap {
  justify-content: flex-end;
  width: 100%;
  display: flex;
}

.footer-link {
  text-decoration: none;
  overflow: hidden;
}

.dynamic-wrapper {
  width: 60%;
  padding-top: 2.8%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.dynamic-wrapper.bottom-right {
  text-align: right;
  justify-content: space-between;
  width: 100%;
  display: flex;
  inset: auto 0% 0% auto;
}

.dynamic-wrapper.bottom-right._404 {
  padding-left: 20%;
}

.dynamic-wrapper.bottom-left {
  z-index: 1;
  width: 100%;
  padding-bottom: 2%;
  padding-left: 1.94444em;
  padding-right: 1.94444em;
  inset: auto auto 0% 0%;
}

.dynamic-wrapper._404 {
  width: 70%;
}

.div2 {
  flex-direction: column;
  display: none;
  overflow: hidden;
}

.div2.bottom-right {
  text-align: right;
  justify-content: space-between;
  width: 100%;
  display: flex;
  inset: auto 0% 0% auto;
}

.div2.bottom-right._404 {
  padding-left: 20%;
}

.div2.bottom-left {
  z-index: 1;
  width: 100%;
  padding-bottom: 2%;
  padding-left: 1.94444em;
  padding-right: 1.94444em;
  inset: auto auto 0% 0%;
}

.div2.div-visible {
  display: none;
}

.div3 {
  flex-direction: column;
  display: none;
  overflow: hidden;
}

.div3.bottom-right {
  text-align: right;
  justify-content: space-between;
  width: 100%;
  display: flex;
  inset: auto 0% 0% auto;
}

.div3.bottom-right._404 {
  padding-left: 20%;
}

.div3.bottom-left {
  z-index: 1;
  width: 100%;
  padding-bottom: 2%;
  padding-left: 1.94444em;
  padding-right: 1.94444em;
  inset: auto auto 0% 0%;
}

.div3.div-visible {
  display: flex;
}

.div4 {
  flex-direction: column;
  display: none;
  overflow: hidden;
}

.div4.bottom-right {
  text-align: right;
  justify-content: space-between;
  width: 100%;
  display: flex;
  inset: auto 0% 0% auto;
}

.div4.bottom-right._404 {
  padding-left: 20%;
}

.div4.bottom-left {
  z-index: 1;
  width: 100%;
  padding-bottom: 2%;
  padding-left: 1.94444em;
  padding-right: 1.94444em;
  inset: auto auto 0% 0%;
}

.div4.div-visible {
  display: flex;
}

.div-btm {
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.div-btm.alignment-right {
  justify-content: flex-end;
}

.wrapper-footer-top-links-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #f8f1ec;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
}

.navlink-text-2 {
  letter-spacing: 0;
  line-height: 120%;
  text-decoration: none;
}

.navlink-text-2.link-footer {
  color: #f8f1ec;
  font-size: 1.38889em;
  line-height: 130%;
}

.navlink-underline-footer-2 {
  background-color: #272727;
  width: 100%;
  height: 1px;
}

.navlink-underline-footer-2.white {
  background-color: #fff;
}

.lang-tag, .lang-tag-copy {
  background-color: #c4b2f666;
  border-radius: .2em;
  margin-bottom: .1em;
  padding: .1em .2em;
}

.text-violet-plus {
  color: #c4b2f6;
}

.we-work {
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.txt-block {
  align-items: center;
  display: flex;
}

.hero-title-wrap {
  max-width: 2000px;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: relative;
}

.hero-title-wrap.bottom-right {
  text-align: right;
  justify-content: space-between;
  width: 100%;
  display: flex;
  inset: auto 0% 0% auto;
}

.hero-title-wrap.bottom-right._404 {
  padding-left: 20%;
}

.hero-title-wrap.bottom-left {
  z-index: 1;
  width: 100%;
  padding-bottom: 2%;
  padding-left: 1.94444em;
  padding-right: 1.94444em;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.hero-title-wrap.div-visible {
  display: flex;
}

.hero-title-wrap.mobile-padding.hero.z-index-1.no-overflow {
  overflow: hidden;
}

.contact-hero {
  flex-direction: column;
  justify-content: flex-end;
  height: 40vh;
  display: flex;
}

.dynamic-cta {
  color: #272727;
  text-align: center;
  letter-spacing: -.02em;
  border-radius: 300px;
  padding: .83em 1.7em;
  font-size: 1.38889em;
  font-weight: 400;
  line-height: 100%;
  transition: all .2s;
  display: inline-block;
}

.dynamic-cta:hover {
  background-color: var(--dark-grey);
  color: var(--smoked-white);
  border-width: 2px;
}

.dynamic-cta.violet {
  background-color: #c4b2f6;
  border-color: #c4b2f6;
}

.dynamic-cta.violet:hover {
  background-color: var(--dark-grey);
}

.dynamic-cta.white {
  background-color: #fff;
  border-color: #fff;
  height: auto;
}

.dynamic-cta.white:hover {
  background-color: var(--dark-grey);
  color: var(--smoked-white);
}

.dynamic-cta.transparent {
  border: 1px solid var(--smoked-white);
  color: #f8f1ec;
  background-color: #0000;
}

.dynamic-cta.transparent:hover {
  background-color: var(--smoked-white);
  color: var(--dark-grey);
}

.dynamic-cta.transparent.circle {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 3.3em;
  padding-left: 0;
  padding-right: 0;
  line-height: 20px;
  display: flex;
}

.dynamic-cta.pistachio {
  border-color: var(--pistachio);
  background-color: var(--pistachio);
}

.dynamic-cta.pistachio:hover {
  background-color: var(--dark-grey);
}

.dynamic-cta.nav {
  padding: .433333em 1.72222em;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 177.778%;
}

.dynamic-cta.nav.transparent {
  display: none;
}

.dynamic-cta.nav.pistachio:hover {
  color: var(--smoked-white);
}

.dynamic-cta.nav.green {
  border-color: var(--green);
  background-color: var(--green);
  color: var(--smoked-white);
}

.dynamic-cta.nav.green:hover {
  background-color: var(--dark-grey);
  color: var(--smoked-white);
}

.dynamic-cta.nav.pink {
  border-color: var(--pink);
  background-color: var(--pink);
}

.dynamic-cta.nav.pink:hover {
  background-color: var(--dark-grey);
}

.nav-link-2 {
  color: #272727;
  cursor: pointer;
  background-color: #0000;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.25em;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-link-2:hover {
  opacity: 1;
}

.cta-2 {
  color: #272727;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #ed7a5f;
  border: 2px solid #ed7a5f;
  border-radius: 300px;
  padding: 1.1em 2.2em;
  font-size: 1.38889em;
  font-weight: 400;
  line-height: 100%;
  transition: all .2s;
  display: inline-block;
}

.cta-2:hover {
  color: #f8f1ec;
  background-color: #272727;
  border-width: 2px;
}

.cta-2.nav {
  padding: .433333em 1.72222em;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 177.778%;
}

.cta-2.nav.transparent {
  display: none;
}

.cta-2.transparent {
  color: #f8f1ec;
  background-color: #0000;
  border: 1px solid #f8f1ec;
}

.cta-2.transparent:hover {
  color: #272727;
  background-color: #f8f1ec;
}

.cta-2.transparent.circle {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 3.3em;
  padding-left: 0;
  padding-right: 0;
  line-height: 20px;
  display: flex;
}

.center {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.loader-beige-bg {
  z-index: 3;
  background-color: var(--smoked-white);
  position: absolute;
  inset: 0%;
}

.loader-dynamic {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.loader-bg-white {
  z-index: 2;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.div-hide {
  overflow: hidden;
}

.div-hide.is--radius {
  z-index: 1;
  border-radius: 4.6em;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.span {
  display: inline;
}

.anim-1 {
  background-color: var(--white);
  width: 100%;
  height: 50%;
  position: absolute;
  inset: 0% 0% auto;
}

.anim-2 {
  background-color: var(--white);
  width: 100%;
  height: 50%;
  position: absolute;
  inset: auto 0% 0%;
}

.txt-wrap {
  padding-top: 1em;
  padding-bottom: 1em;
  overflow: hidden;
}

.hero-container {
  height: 100%;
}

.nowrap {
  white-space: nowrap;
  flex-flow: row;
  display: flex;
}

.form-contain {
  width: 100%;
}

.work-cta {
  z-index: 10;
  background-color: var(--smoked-white);
  color: #272727;
  text-align: center;
  letter-spacing: -.02em;
  border-radius: 300px;
  align-self: flex-start;
  padding: 1.1em 2.2em;
  font-size: 1.38889em;
  font-weight: 400;
  line-height: 100%;
  transition: color .2s cubic-bezier(.215, .61, .355, 1), background-color .2s cubic-bezier(.215, .61, .355, 1);
  display: inline-block;
  position: relative;
}

.work-cta.violet {
  background-color: #c4b2f6;
  border-color: #c4b2f6;
}

.work-cta.violet:hover {
  background-color: var(--dark-grey);
}

.work-cta.white {
  background-color: #fff;
  border-color: #fff;
  height: auto;
}

.work-cta.white:hover {
  background-color: var(--dark-grey);
  color: var(--smoked-white);
}

.work-cta.white.is--z10 {
  z-index: 10;
  align-self: flex-start;
  position: relative;
}

.work-cta.transparent {
  border: 1px solid var(--smoked-white);
  color: #f8f1ec;
  background-color: #0000;
}

.work-cta.transparent:hover {
  background-color: var(--smoked-white);
  color: var(--dark-grey);
}

.work-cta.transparent.circle {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 3.3em;
  padding-left: 0;
  padding-right: 0;
  line-height: 20px;
  display: flex;
}

.work-cta.pistachio {
  border-color: var(--pistachio);
  background-color: var(--pistachio);
}

.work-cta.pistachio:hover {
  background-color: var(--dark-grey);
}

.work-cta.nav {
  padding: .433333em 1.72222em;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 177.778%;
}

.work-cta.nav.transparent {
  display: none;
}

.work-cta.nav.pistachio:hover {
  color: var(--smoked-white);
}

.work-cta.nav.green {
  border-color: var(--green);
  background-color: var(--green);
  color: var(--smoked-white);
}

.work-cta.nav.green:hover {
  background-color: var(--dark-grey);
  color: var(--smoked-white);
}

.work-cta.nav.pink {
  border-color: var(--pink);
  background-color: var(--pink);
}

.work-cta.nav.pink:hover {
  background-color: var(--dark-grey);
}

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

.work-cta.smoked-white.is--z10 {
  z-index: 10;
  border-width: 0;
  align-self: flex-start;
  position: relative;
}

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

.wrapper-our-culture-images-mobile {
  grid-column-gap: 6em;
  grid-row-gap: 6em;
  justify-content: center;
  height: 200vh;
  margin-bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: visible;
}

.wrapper-our-culture-images-mobile.mobile, .empty-state {
  display: none;
}

.link-block-2 {
  width: 100%;
  height: 100%;
  position: absolute;
}

.collection-item-2 {
  position: relative;
}

.link-block-3 {
  width: 100px;
  min-width: 100%;
  height: 100%;
  position: absolute;
}

.collection-item-3 {
  position: relative;
}

.link-block-4, .link-block-5 {
  width: 100%;
  height: 100%;
  position: absolute;
}

.collection-item-4, .collection-item-5 {
  position: relative;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

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

@media screen and (max-width: 991px) {
  .main-body {
    height: 100%;
  }

  .h5 {
    font-size: 17px;
  }

  .h5.b10 {
    max-width: 14em;
  }

  .cta {
    font-size: 13px;
  }

  .cta.transparent.circle {
    width: 4.2em;
  }

  .cta.transparent.circle.mobile {
    width: 4.4em;
  }

  .cta.nav {
    font-size: 16px;
    line-height: 42px;
  }

  .cta.nav.transparent {
    display: flex;
  }

  .cta.nav.transparent:hover {
    color: var(--dark-grey);
  }

  .cta.nav.pistachio {
    min-width: 180px;
  }

  .cta.nav.is--marg-bottom {
    margin-bottom: .8em;
  }

  .h1.text-smoked-white.footer.z-index-1._2 {
    padding-bottom: 10px;
  }

  .h1.b10.t10 {
    margin-top: 70px;
  }

  .navbar-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100vh;
    padding: 4% 3%;
    position: relative;
  }

  .navlink-text {
    color: var(--smoked-white);
    line-height: 150%;
  }

  .navlink-text.link-footer.opacity-40.alignment-right {
    font-size: 13px;
  }

  .navbar-main-wrapper {
    z-index: 4;
    background-color: #272727;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 1.45em;
    padding-bottom: 1.45em;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: hidden;
  }

  .navbar-main-wrapper.mobile {
    display: none;
  }

  .nav-link {
    opacity: .4;
    width: 100%;
    padding: 0;
    font-size: 3.81944em;
  }

  .nav-link.w--current {
    box-shadow: none;
    opacity: 1;
  }

  .nav-menu-icon {
    z-index: 1999;
    display: block;
    position: relative;
  }

  .nav-menu-icon.hide {
    display: none;
  }

  .nav-menu-lottie {
    z-index: 1999;
    width: 60px;
    height: 50px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }

  .nav-menu-lottie.alternative, .nav-menu-lottie.carrot, .nav-menu-lottie.black, .nav-menu-lottie.dollar {
    display: none;
  }

  .navbar {
    max-height: 100%;
    margin: 1% 1% 0;
  }

  .navbar-wrapper-links {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 10em;
    margin-bottom: 6em;
    display: block;
  }

  .image-nav-logo {
    width: 100px;
    position: relative;
  }

  .section.hero, .section.hero.pink {
    height: 100%;
  }

  .section.what-we-value {
    flex-direction: column;
  }

  .section.our-culture, .section.our-values {
    position: relative;
  }

  .section.hero-2.pink {
    height: 95vh;
  }

  .wrapper-bubble {
    display: none;
    right: 22%;
  }

  .wrapper-what-we-do-cms.dark-grey {
    padding: 3em 2.57222em;
  }

  .wrapper-what-we-do-cms.dark-grey.dark-section {
    height: 100%;
  }

  .wrapper-what-we-do-cms.dark-grey.dark-section.reveal-scale {
    padding: 15em 0;
  }

  .span-image {
    white-space: nowrap;
  }

  .span-image.simplfy {
    background-position: 50% 63%;
    background-size: .8em;
  }

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

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

  .wrapper-case-study.smoked-white {
    min-height: 220px;
  }

  .navlink-underline-footer.white {
    display: none;
  }

  .wrapper-hero-h1-bottom-right {
    width: 80%;
  }

  .section-hero {
    height: 100%;
  }

  .wrapper-what-we-value {
    height: auto;
    margin-bottom: 4em;
    padding-top: 4em;
    padding-bottom: 0;
  }

  .wrapper-what-we-value.is--new {
    height: 200vh;
    padding-top: 0;
    padding-bottom: 10%;
  }

  .wrapper-what-we-value-content {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }

  .wrapper-what-we-value-image {
    width: 100%;
  }

  .wrapper-what-we-value-text {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: none;
    height: 100vh;
    display: flex;
    position: relative;
  }

  .wrapper-what-we-value-text.is-first {
    height: 100vh;
    margin-top: 0%;
  }

  .image-what-we-value {
    opacity: 0;
    width: 75%;
    max-width: none;
  }

  .image-what-we-value.b20 {
    mix-blend-mode: multiply;
    display: none;
  }

  .text-block.text-with-radius-bg {
    line-height: 55px;
  }

  .collection-list-clients-work-page {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .wrapper-case-study-work-page.smoked-white {
    min-height: 220px;
  }

  .wrapper-our-cultures {
    justify-content: flex-start;
    height: 100%;
    margin-bottom: 0%;
  }

  .wrapper-our-culture-images {
    justify-content: flex-end;
    width: 100%;
    height: 350px;
  }

  .wrapper-our-culture-image {
    height: 360px;
    top: -10%;
  }

  .wrapper-our-culture-image._2 {
    height: 360px;
    top: -15%;
  }

  .wrapper-our-culture-image._3 {
    height: 360px;
    top: -14%;
  }

  .wrapper-our-culture-image._4 {
    height: 370px;
    top: -18%;
  }

  .wrapper-our-culture-texts {
    width: 100%;
  }

  .wrapper-our-culture {
    min-height: 300px;
  }

  .wrapper-nav-horizontal-cta {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
  }

  .wrapper-nav-mobile-ctas {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: auto;
    display: flex;
  }

  .image-nav-logo-black {
    z-index: 1;
    width: 100px;
    position: relative;
  }

  .embed-nav-css {
    display: none;
  }

  .success-message {
    padding-top: 12px;
  }

  .wrapper-circles-contact {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    inset: 0%;
    overflow: hidden;
  }

  .navbar-wrapper-logo {
    z-index: 1999;
    min-width: 110px;
    display: block;
    position: relative;
  }

  .container.is-full-width {
    padding-left: 0%;
    padding-right: 0%;
  }

  .container.margin-60.margin-mobile {
    margin-bottom: 20px;
  }

  .h6 {
    font-size: 13px;
  }

  .h6.hero {
    max-width: 28em;
  }

  .text-size-lg {
    font-size: 13px;
  }

  .text-size-lg.is-line-height.opacity-80.reveal.max-width-25, .text-size-lg.is-line-height.opacity-80.max-width-25 {
    max-width: 22em;
  }

  .text-size-md {
    font-size: 13px;
  }

  .text-size-xs.violet.text-violet.text-style-allcaps.tag {
    font-size: 10px;
  }

  .wrapper.is-down.d60 {
    width: 60%;
  }

  .d80, .d40, .is-tab-full, .d50 {
    width: 100%;
  }

  .d50.text-align-left.is-down {
    width: 50%;
  }

  .d60, .d70 {
    width: 100%;
  }

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

  .we-work-container {
    align-items: center;
  }

  .collection-wrap.is-2 {
    margin-top: 0;
  }

  .post-container {
    max-width: 57em;
  }

  .rich-txt p {
    font-size: 13px;
  }

  .lang-coll-item.tech-tag:first-child {
    margin-left: 0;
  }

  .tech-html {
    width: 90%;
  }

  .tech-html.reveal {
    width: 100%;
  }

  .what-we-value-image {
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
  }

  .wrapper-our-walue-images {
    mix-blend-mode: multiply;
    flex-direction: row;
    justify-content: space-between;
    align-self: stretch;
    align-items: center;
    width: 50%;
    display: flex;
    position: sticky;
    top: 20%;
  }

  .wrapper-our-walue-images.hide-on-tablet {
    display: none;
  }

  .wrapper-what-we-value-txt {
    width: 100%;
  }

  .wrapper-what-we-value-txt.is-soma, .wrapper-what-we-value-txt.is-fix {
    justify-content: space-between;
    align-self: flex-start;
    width: 50%;
    height: 100%;
  }

  .wrapper-what-we-value-img {
    align-self: flex-start;
    width: 100%;
    height: 400px;
  }

  .bg-mobile {
    width: 100%;
    height: 50vh;
  }

  .mobile-bg-wrapper {
    z-index: -1;
    position: absolute;
    inset: 0%;
  }

  .mobile-bg-wrapper.hide-on-desktop {
    flex-direction: column;
    display: none;
  }

  .mobile-bg-wrapper.hide-on-desktop.hide {
    display: none;
  }

  .value-bg-mobile {
    z-index: -1;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
  }

  .value-bg-mobile.smoked-white.hide, .value-bg-mobile.smoked-white.hide-on-desktop, .value-bg-mobile.pistachio.hide-on-desktop, .value-bg-mobile.violet.hide-on-desktop {
    display: none;
  }

  .value-wrapper {
    padding-left: 8%;
    padding-right: 8%;
  }

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

  .f-input {
    font-size: 24px;
  }

  .error {
    top: 90%;
  }

  .burger-icon-wrapper {
    z-index: 1999;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 70px;
    height: 50px;
    padding: 18px 12px;
    display: flex;
  }

  .burger-line {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3px;
    display: flex;
  }

  .burger-icon-wrapper-2 {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 22px;
    height: 12px;
    display: flex;
  }

  .burger-line-2 {
    width: 22px;
    height: 3px;
  }

  .mobile-logo {
    height: 20px;
    display: flex;
  }

  .navbar-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding-bottom: 2%;
    padding-left: 2%;
    padding-right: 2%;
    display: flex;
  }

  .navlink-text-2 {
    color: #f8f1ec;
    font-size: 55px;
    line-height: 150%;
  }

  .navlink-text-2.link-footer {
    font-size: 13px;
  }

  .navlink-underline-footer-2.white {
    display: none;
  }

  .hero-title-wrap.mobile-padding {
    padding-top: 60px;
  }

  .dynamic-cta.transparent.circle {
    width: 3.7em;
  }

  .dynamic-cta.transparent.circle.mobile {
    width: 4.4em;
  }

  .dynamic-cta.nav {
    margin-bottom: 10px;
    font-size: 1.7em;
    line-height: 42px;
  }

  .dynamic-cta.nav.transparent {
    display: flex;
  }

  .dynamic-cta.nav.transparent:hover {
    color: var(--dark-grey);
  }

  .dynamic-cta.nav.pistachio {
    min-width: 180px;
  }

  .nav-link-2 {
    opacity: .4;
    width: 100%;
    padding: 0;
    font-size: 3.81944em;
  }

  .nav-link-2.w--current {
    box-shadow: none;
    opacity: 1;
  }

  .cta-2.nav {
    margin-bottom: 10px;
    font-size: 1.7em;
    line-height: 42px;
  }

  .cta-2.nav.transparent {
    display: flex;
  }

  .cta-2.nav.transparent:hover {
    color: #272727;
  }

  .cta-2.transparent.circle {
    width: 3.7em;
  }

  .cta-2.transparent.circle.mobile {
    width: 4.4em;
  }

  .work-cta.transparent.circle {
    width: 3.7em;
  }

  .work-cta.transparent.circle.mobile {
    width: 4.4em;
  }

  .work-cta.nav {
    margin-bottom: 10px;
    font-size: 1.7em;
    line-height: 42px;
  }

  .work-cta.nav.transparent {
    display: flex;
  }

  .work-cta.nav.transparent:hover {
    color: var(--dark-grey);
  }

  .work-cta.nav.pistachio {
    min-width: 180px;
  }

  .wrapper-our-culture-images-mobile {
    justify-content: flex-start;
    height: 100%;
    margin-bottom: 0%;
  }

  .text-block-3 {
    font-size: 12px;
  }

  .menu-overlay {
    z-index: 1999;
    background-color: var(--smoked-white);
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0%;
  }

  .div-block-3 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: end space-around;
    justify-items: stretch;
    margin-top: auto;
    margin-bottom: 12px;
    display: grid;
  }

  .div-block-4 {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: auto;
    display: flex;
  }

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

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  .h3 {
    font-size: 24px;
  }

  .h5 {
    font-size: 16px;
  }

  .h5.b10 {
    font-size: 24px;
  }

  .cta {
    font-size: 16px;
  }

  .cta.transparent.circle {
    width: 3.6em;
  }

  .cta.transparent.circle.mobile {
    width: 60px;
    height: 60px;
  }

  .h1 {
    font-size: 55px;
  }

  .h1.text-smoked-white {
    margin-bottom: 10px;
  }

  .h4 {
    font-size: 20px;
  }

  .h2 {
    font-size: 36px;
  }

  .h2.text-dark-grey.b10 {
    margin-bottom: 20px;
  }

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

  .navbar-wrapper {
    padding-left: 2em;
    padding-right: 2em;
  }

  .navlink-text, .navlink-text.link-footer {
    font-size: 16px;
  }

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

  .navbar-wrapper-links {
    margin-top: 80px;
  }

  .section.our-culture {
    padding-top: 10em;
  }

  .section.hero-2.pink {
    height: 93vh;
  }

  .wrapper-bubble {
    display: none;
  }

  .div1.bottom-right {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .div1.bottom-right._404 {
    padding-left: 0%;
  }

  .div1.bottom-left.no-overflow {
    padding-bottom: 3%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .wrapper-what-we-do-cms.dark-grey {
    height: auto;
    padding-top: 3em;
    padding-bottom: 4em;
  }

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

  .span-image {
    font-size: 50px;
  }

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

  .wrapper-footer-top {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: auto;
    justify-content: stretch;
    align-items: center;
  }

  .link-footer {
    font-size: 16px;
  }

  .wrapper-footer-ctas {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 100%;
    display: grid;
  }

  .wrapper-footer-ctas.social {
    justify-content: flex-start;
  }

  .wrapper-footer-ctas.d60 {
    grid-template-columns: 1fr 1fr;
  }

  .wrapper-footer-middle.margin-60 {
    margin-bottom: 20px;
  }

  .circle-big.contact {
    inset: 10% 30% auto auto;
  }

  .circle-big.contact._2 {
    bottom: auto;
    left: 30%;
    right: auto;
  }

  .circle-big.violet {
    inset: 20% 0% 0%;
  }

  .circle-big.pistachio {
    width: 300px;
    height: 300px;
  }

  .circle-big.pistachio.work-page {
    width: 25em;
    height: 25em;
    inset: auto auto 10% 5%;
  }

  .circle-big.white {
    width: 300px;
    height: 300px;
    top: 10%;
  }

  .circle-big.white.work-page {
    width: 25em;
    height: 25em;
    inset: 10% 5% auto auto;
  }

  .circle-big._404 {
    width: 500px;
    height: 500px;
  }

  .wrapper-case-study.smoked-white {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .margin-extra {
    height: 20em;
  }

  .image-client-logo {
    width: 100%;
  }

  .image-client-logo.work-page {
    width: 60%;
  }

  .wrapper-blog.white {
    height: auto;
    padding-bottom: 3%;
  }

  .wrapper-blog-text-bottom {
    order: -1;
  }

  .wrapper-blog-text-top {
    margin-bottom: 4em;
  }

  .wrapper-blog-text {
    flex-direction: column;
  }

  .image-blog {
    display: none;
  }

  .image-hover-circle {
    display: block;
  }

  .wrapper-hero-h1-bottom-right {
    width: 100%;
  }

  .text-with-radius-bg {
    color: var(--dark-grey);
    background-color: #dedb7b;
    border-radius: 300px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrapper-what-we-value.is--new {
    flex-wrap: wrap;
    height: auto;
  }

  .wrapper-what-we-value-text {
    mix-blend-mode: multiply;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .wrapper-what-we-value-text.is-first {
    mix-blend-mode: multiply;
    height: 100%;
  }

  .paragraph.opacity-80 {
    font-size: 16px;
    line-height: 20px;
  }

  .image-what-we-value {
    opacity: 1;
    width: 100%;
  }

  .image-what-we-value.b20 {
    margin-bottom: 30px;
    display: block;
  }

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

  .text-team-member-position {
    font-size: 16px;
  }

  .collection-list-team-members {
    grid-template-columns: 1fr 1fr;
  }

  .collection-list-team-members.addclasses {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .wrapper-404-contact {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    padding-top: 15%;
  }

  .wrapper-404-contact-email {
    width: 100%;
  }

  .submit-button {
    font-size: 3em;
    top: 33%;
  }

  .wrapper-404-bookcall {
    order: 1;
    justify-content: flex-end;
    width: 100%;
    margin-top: -65px;
  }

  .text-block.text-with-radius-bg {
    white-space: normal;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 24px;
  }

  .text-block.text-with-radius-bg.static {
    font-size: 2.2em;
  }

  .text-block.text-with-radius-bg.violet {
    border-color: var(--violet);
    background-color: #0000;
  }

  .collection-list-work {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .collection-list-clients-work-page {
    grid-template-columns: 1fr 1fr;
  }

  .wrapper-case-study-work-page.smoked-white {
    background-image: url('../images/case-studies-bg.webp');
    background-position: 50%;
    background-size: cover;
  }

  .wrapper-our-culture-images {
    z-index: -1;
    align-self: flex-start;
    width: 50%;
    height: 200px;
  }

  .wrapper-our-culture-image {
    width: 100%;
    height: 100%;
    top: 0%;
  }

  .wrapper-our-culture-image._2 {
    height: 100%;
    inset: 5% 10% 0% auto;
  }

  .wrapper-our-culture-image._3 {
    height: 100%;
    inset: -4% 8% 0% auto;
  }

  .wrapper-our-culture-image._4 {
    height: 100%;
    inset: -7% 2% 0% auto;
  }

  .html-embed-work-page.b40 {
    max-width: 70em;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .success-message {
    width: 50%;
    padding-top: 0;
  }

  .navbar-wrapper-logo {
    margin-bottom: 0;
    display: flex;
  }

  .lottie-logo {
    width: 72px;
  }

  .container {
    padding-left: 3%;
    padding-right: 3%;
  }

  .h6, .h6.opacity-40.b30, .text-size-lg {
    font-size: 16px;
  }

  .text-size-md {
    font-size: 14px;
  }

  .text-size-xs {
    font-size: 9px;
  }

  .text-size-xs.violet.text-violet.tag {
    font-size: 12px;
  }

  .text-size-xs.violet.text-violet.text-style-allcaps.tag {
    font-size: 9px;
  }

  .text-size-sm {
    font-size: 12px;
  }

  .sg-row {
    flex-direction: column;
  }

  .sg-h3 {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .text-align-left.is-down.d40 {
    order: 1;
  }

  .t10 {
    margin-top: 5px;
  }

  .b80, .b70 {
    margin-bottom: 35px;
  }

  .b40 {
    margin-bottom: 20px;
  }

  .b50 {
    margin-bottom: 35px;
  }

  .b30 {
    margin-bottom: 15px;
  }

  .padding-wrapper {
    font-size: 2.5vw;
  }

  .b20 {
    margin-bottom: 10px;
  }

  .container-2 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .b60 {
    margin-bottom: 35px;
  }

  .d50, .is-mob-full {
    width: 100%;
  }

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

  .tech-tag {
    align-items: center;
    display: flex;
  }

  .skill-coll-item.tech-tag:first-child {
    margin-left: -.7em;
    font-size: 5em;
  }

  .post-container {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .rich-txt p {
    font-size: 16px;
  }

  .we-tag {
    align-items: center;
    height: 40px;
    margin-bottom: 0;
    margin-right: 10px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
  }

  .lang-coll-item.tech-tag:first-child {
    border-width: 0;
    margin-left: -.7em;
    padding-right: 0;
    font-size: 5em;
  }

  .lang-coll-item.tech-tag:last-child {
    border-width: 0;
    margin-left: -.7em;
    font-size: 5em;
  }

  .tag-wrapper.b70 {
    width: auto;
    margin-bottom: 0;
  }

  .mobile-btm-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    min-height: auto;
    display: grid;
  }

  .wrapper-our-walue-images {
    width: 100%;
    display: none;
    position: absolute;
    inset: 0%;
  }

  .wrapper-what-we-value-txt.is-soma, .wrapper-what-we-value-txt.is-fix {
    width: 100%;
  }

  .wrapper-what-we-value-img {
    display: flex;
  }

  .bg-mobile {
    height: 670px;
  }

  .mobile-bg-wrapper.hide-on-desktop {
    display: none;
  }

  .value-bg-mobile.smoked-white.hide-on-desktop {
    display: flex;
    position: absolute;
  }

  .value-bg-mobile.pistachio.hide-on-desktop, .value-bg-mobile.violet.hide-on-desktop {
    display: flex;
  }

  .value-wrapper {
    flex-direction: column;
    justify-content: flex-end;
    padding: 8% 5%;
    display: flex;
  }

  .heading {
    font-size: 55px;
  }

  .offset0 {
    padding-top: 110px;
  }

  .f-input.b20 {
    margin-bottom: 1em;
  }

  .error {
    top: 120%;
  }

  .burger-icon-wrapper {
    flex-direction: column;
    justify-content: space-between;
    width: 60px;
  }

  .burger-icon-wrapper-2 {
    flex-direction: column;
    justify-content: space-between;
  }

  .footer-link {
    margin-left: 4em;
  }

  .dynamic-wrapper {
    width: 70%;
  }

  .dynamic-wrapper.bottom-right {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .dynamic-wrapper._404 {
    width: 100%;
  }

  .div2.bottom-right, .div3.bottom-right, .div4.bottom-right {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .div-btm {
    flex-wrap: wrap;
  }

  .navlink-text-2.link-footer {
    font-size: 16px;
  }

  .lang-tag {
    align-items: center;
    height: 40px;
    margin-bottom: .3em;
    padding-left: .7em;
    padding-right: .7em;
    display: flex;
  }

  .lang-tag-copy {
    align-items: center;
    height: 49px;
    padding-left: 1.1em;
    padding-right: 1.1em;
    display: flex;
  }

  .we-work {
    grid-row-gap: 9px;
  }

  .txt-block {
    font-size: 24px;
  }

  .hero-title-wrap.bottom-right {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .dynamic-cta {
    font-size: 16px;
  }

  .dynamic-cta.transparent.circle.mobile {
    width: 60px;
    height: 60px;
  }

  .cta-2 {
    font-size: 16px;
  }

  .cta-2.transparent.circle.mobile {
    width: 60px;
    height: 60px;
  }

  .txt-wrap.h1 {
    height: 55px;
  }

  .form-contain {
    margin-bottom: 0;
  }

  .work-cta {
    font-size: 16px;
  }

  .work-cta.transparent.circle.mobile {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 479px) {
  .h5 {
    line-height: 20px;
  }

  .h5.b10 {
    line-height: 32px;
  }

  .cta {
    white-space: normal;
    padding: 20px 13px;
  }

  .cta.violet.reveal {
    align-self: stretch;
  }

  .cta.violet.footer, .cta.white.footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cta.transparent.circle {
    width: 3.9em;
  }

  .cta.transparent.circle.mobile {
    width: 50px;
    height: 50px;
  }

  .cta.nav {
    padding: 18px 32px;
    line-height: 23px;
  }

  .cta.nav.transparent {
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .cta.nav.transparent:hover {
    color: var(--dark-grey);
  }

  .cta.nav.pistachio {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .h1 {
    font-size: 50px;
  }

  .h1.text-smoked-white.footer {
    font-size: 36px;
    line-height: 54px;
  }

  .h1.text-smoked-white.footer.z-index-1._1, .h1.text-smoked-white.footer._1 {
    line-height: 110%;
  }

  .h2 {
    line-height: 46px;
  }

  .h2.text-dark-grey.b20.reveal {
    margin-bottom: 50px;
  }

  .navbar-wrapper {
    height: 90%;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .navlink-text {
    font-size: 30px;
  }

  .navlink-text.link-footer {
    font-size: 16px;
  }

  .navlink-text.link-footer.opacity-40.alignment-right {
    font-size: 14px;
  }

  .navbar-logo {
    z-index: 3000;
    height: 20px;
    position: relative;
  }

  .navbar {
    padding-left: 5%;
    padding-right: 3%;
    font-size: 16px;
  }

  .navbar-wrapper-links {
    margin-bottom: 20px;
  }

  .image-nav-logo {
    width: auto;
    height: 100%;
  }

  .section {
    padding-top: 96px;
  }

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

  .section.footer.dark-grey.dark-section, .section.footer.green.dark-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.text-aligned-left {
    height: 100%;
  }

  .section.our-culture {
    margin-bottom: -20em;
    padding-bottom: 0;
  }

  .section.smoked-white.section--margin.what-we-do {
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .section.div-hide {
    padding-top: 60px;
  }

  .section.custom-paddings {
    padding-top: 20em;
    padding-bottom: 0;
  }

  .wrappe-hero-h5.bottom-left {
    width: 100%;
    position: static;
  }

  .div1.bottom-right {
    flex-direction: row;
    padding-left: 0%;
  }

  .div1.bottom-right.home-page {
    flex-direction: column;
  }

  .div1.bottom-left, .div1.bottom-left.no-overflow {
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .wrapper-cta.alignment-right.reveal {
    margin-top: 10px;
  }

  .wrapper-cta.is--sticky {
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: 100%;
  }

  .wrapper-what-we-do {
    padding-left: 5%;
    padding-right: 5%;
  }

  .wrapper-what-we-do-cms.dark-grey {
    padding: 10% 10px;
    position: relative;
  }

  .wrapper-what-we-do-cms.dark-grey.dark-section.reveal-scale {
    margin-top: 17em;
  }

  .span-image {
    white-space: nowrap;
    font-size: 52px;
  }

  .span-image.simplfy {
    white-space: nowrap;
  }

  .collection-list-clients {
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .wrapper-footer-top {
    margin-bottom: 230px;
  }

  .wrapper-footer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .wrapper-footer-ctas {
    justify-content: space-between;
    width: 100%;
  }

  .wrapper-footer-middle.z-index-1.margin-60 {
    margin-bottom: 50px;
  }

  .wrapper-footer-middle.margin-60 {
    margin-bottom: 16px;
  }

  .wrapper-footer-bottom {
    align-items: flex-end;
  }

  .circle-big.orange {
    width: 287px;
    height: 287px;
    inset: 20% 0% 0%;
  }

  .circle-big.contact {
    inset: 10% 30% auto auto;
  }

  .circle-big.contact._2 {
    inset: 10% 0% 0% 30%;
  }

  .circle-big.violet {
    width: 220px;
    height: 220px;
    inset: 31% 0% 0%;
  }

  .circle-big.pistachio {
    width: 250px;
    height: 250px;
    left: -30%;
  }

  .circle-big.pistachio.work-page {
    width: 300px;
    height: 300px;
    inset: auto auto 20% 5%;
  }

  .circle-big.white {
    width: 250px;
    height: 250px;
    top: 20%;
    left: 30%;
  }

  .circle-big.white.work-page {
    width: 300px;
    height: 300px;
    inset: 20% 5% auto auto;
  }

  .circle-big._404 {
    width: 300px;
    height: 300px;
  }

  .margin-extra {
    height: 30em;
  }

  .wrapper-logo.work-page {
    justify-content: center;
  }

  .image-client-logo {
    min-width: 150px;
  }

  .image-client-logo.work-page {
    width: 120px;
    min-width: 100px;
  }

  .image-author {
    object-fit: cover;
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }

  .wrapper-blog-author {
    align-items: center;
  }

  .collection-list-categories {
    justify-content: flex-end;
  }

  .collection-list-categories.is-right {
    justify-content: flex-start;
  }

  .wrapper-category {
    margin-left: 5px;
    margin-right: 0;
  }

  .text-case-study-name, .text-case-study-description {
    line-height: 32px;
  }

  .text-with-radius-bg {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .section-hero {
    padding-left: 5%;
    padding-right: 5%;
  }

  .wrapper-what-we-value-text, .wrapper-what-we-value-text.is-first {
    position: sticky;
    top: 20px;
  }

  .paragraph.opacity-80 {
    font-size: 16px;
    line-height: 20px;
  }

  .image-what-we-value.b20 {
    align-self: center;
  }

  .wrapper-team-members {
    padding-top: 20em;
  }

  .text-team-member-position {
    text-align: center;
  }

  .collection-list-team-members {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .wrapper-404-contact {
    padding-top: 0%;
    padding-bottom: 15%;
  }

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

  .submit-button {
    font-size: 1.5em;
    top: 37%;
  }

  .wrapper-404-bookcall {
    order: 1;
    align-self: flex-start;
    margin-top: 4px;
    margin-bottom: 0;
  }

  .text-block.text-work-case-study-description, .text-block.text-work-case-study-name {
    font-size: 24px;
  }

  .text-block.text-case-study-name, .text-block.text-case-study-description {
    font-size: 24px;
    line-height: 32px;
  }

  .text-block.text-with-radius-bg {
    border: 1px solid #0000;
    padding: 5px 25px;
    font-size: 16px;
    line-height: 42px;
  }

  .text-block.text-with-radius-bg.static {
    padding-left: 5px;
    font-size: 2em;
  }

  .text-block.text-with-radius-bg.violet {
    background-color: #0000;
  }

  .text-work-case-study-name, .text-work-case-study-description {
    line-height: 32px;
  }

  .collection-list-clients-work-page {
    grid-column-gap: 2em;
    grid-row-gap: 4em;
    grid-template-columns: 1fr 1fr;
  }

  .wrapper-case-study-work-page.smoked-white {
    min-height: 260px;
    padding: 20px;
  }

  .margin-extra-small {
    height: .5em;
  }

  .wrapper-our-cultures.mobile {
    width: 100%;
    display: block;
  }

  .wrapper-our-culture-images {
    justify-content: flex-end;
    display: none;
  }

  .wrapper-our-culture-image {
    width: 100%;
  }

  .wrapper-our-culture-texts {
    flex: 1;
  }

  .wrapper-our-culture {
    min-height: 200px;
  }

  .wrapper-our-culture.no-min-height {
    min-height: 0;
  }

  .wrapper-nav-horizontal-cta {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
  }

  .wrapper-nav-mobile-ctas {
    z-index: 1999;
    flex-direction: row;
    align-items: center;
    position: relative;
  }

  .image-nav-logo-black {
    width: auto;
    height: 100%;
  }

  .success-message {
    width: 100%;
  }

  .container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .h6.opacity-40.b10.reveal {
    opacity: 1;
  }

  .text-size-md.blog-card-name-mobile, .text-size-xs.violet.text-violet.text-style-allcaps.tag {
    font-size: 12px;
  }

  .sg-h3 {
    width: 70px;
    font-size: 10px;
  }

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

  .wrapper.is-down.d60, .wrapper.d20, .wrapper.d15 {
    width: 100%;
  }

  .hide-on-mobile-landscape, .hide-on-mobile-portrait, .hide-on-desktop {
    display: none;
  }

  .blog-hero-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 7em;
  }

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

  .tech-tag {
    align-items: center;
  }

  .coll-list-hor {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .collection-wrap.is-2 {
    margin-top: -19em;
  }

  .skill-coll-item.tech-tag:first-child {
    padding-right: 60px;
    font-size: 36px;
  }

  .post-container {
    max-width: 100%;
  }

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

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

  .lang-coll-item.tech-tag:first-child {
    margin-left: 2.2em;
    font-size: 36px;
  }

  .lang-coll-item.tech-tag:last-child {
    margin-left: -.9em;
    font-size: 36px;
  }

  .mobile-btm-wrap {
    grid-template-columns: .95fr 1fr;
  }

  .hero-about {
    height: 100%;
  }

  .wrapper-what-we-value-txt.is-fix {
    position: relative;
  }

  .client-feedback-img-wrapper {
    width: 100%;
  }

  .value-bg-mobile.smoked-white.hide-on-desktop {
    display: block;
  }

  .value-bg-mobile.pistachio.hide-on-desktop, .value-bg-mobile.violet.hide-on-desktop {
    display: flex;
  }

  .f-input {
    font-size: 20px;
  }

  .error {
    inset: -61% 0% auto;
  }

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

  .footer-link {
    margin-left: 6em;
  }

  .dynamic-wrapper {
    width: 100%;
  }

  .dynamic-wrapper.bottom-right {
    flex-direction: row;
    padding-left: 0%;
  }

  .dynamic-wrapper.bottom-right.home-page {
    flex-direction: column;
  }

  .div2.bottom-right {
    flex-direction: row;
    padding-left: 0%;
  }

  .div2.bottom-right.home-page {
    flex-direction: column;
  }

  .div3.bottom-right {
    flex-direction: row;
    padding-left: 0%;
  }

  .div3.bottom-right.home-page {
    flex-direction: column;
  }

  .div4.bottom-right {
    flex-direction: row;
    padding-left: 0%;
  }

  .div4.bottom-right.home-page {
    flex-direction: column;
  }

  .navlink-text-2.link-footer {
    font-size: 16px;
  }

  .navlink-text-2.link-footer.opacity-40.alignment-right {
    font-size: 14px;
  }

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

  .we-work {
    grid-column-gap: 5px;
    grid-row-gap: 0px;
  }

  .txt-block {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 26px;
  }

  .hero-title-wrap.bottom-right {
    flex-direction: row;
    padding-left: 0%;
  }

  .hero-title-wrap.bottom-right.home-page {
    flex-direction: column;
  }

  .hero-title-wrap.mobile-padding {
    padding-left: 5%;
    padding-right: 5%;
  }

  .dynamic-cta {
    white-space: normal;
    padding: 20px 25px;
    font-size: 16px;
  }

  .dynamic-cta.transparent.circle {
    width: 3.9em;
  }

  .dynamic-cta.transparent.circle.mobile {
    width: 50px;
    height: 50px;
  }

  .dynamic-cta.nav {
    margin-bottom: 10px;
    padding: 18px 32px;
    font-size: 1em;
    line-height: 23px;
  }

  .dynamic-cta.nav.transparent {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .dynamic-cta.nav.transparent:hover {
    color: var(--dark-grey);
  }

  .dynamic-cta.nav.pistachio {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .cta-2 {
    white-space: normal;
    padding: 20px 25px;
    font-size: 16px;
  }

  .cta-2.nav {
    margin-bottom: 10px;
    padding: 18px 32px;
    font-size: 1em;
    line-height: 23px;
  }

  .cta-2.nav.transparent {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .cta-2.nav.transparent:hover {
    color: #272727;
  }

  .cta-2.transparent.circle {
    width: 3.9em;
  }

  .cta-2.transparent.circle.mobile {
    width: 50px;
    height: 50px;
  }

  .txt-wrap.h1 {
    height: 50px;
  }

  .work-cta {
    white-space: normal;
    padding: 20px 25px;
    font-size: 16px;
  }

  .work-cta.transparent.circle {
    width: 3.9em;
  }

  .work-cta.transparent.circle.mobile {
    width: 50px;
    height: 50px;
  }

  .work-cta.nav {
    margin-bottom: 10px;
    padding: 18px 32px;
    font-size: 1em;
    line-height: 23px;
  }

  .work-cta.nav.transparent {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .work-cta.nav.transparent:hover {
    color: var(--dark-grey);
  }

  .work-cta.nav.pistachio {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .wrapper-our-culture-images-mobile {
    display: none;
  }

  .wrapper-our-culture-images-mobile.mobile {
    justify-content: flex-end;
    width: 100%;
    display: flex;
    position: absolute;
    inset: 0%;
  }

  .collection-list-wrapper {
    margin-top: 10em;
  }

  .div-block-3 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

#w-node-_6372da9e-e477-c19f-d0a8-daa77393bfa0-7393bf90, #w-node-f74dd290-d963-4c53-07bf-0c06f737ee8d-f737ee7d {
  justify-self: end;
}

#w-node-b416f77c-5e97-b58c-cfd7-8cac26d8a8a2-51c08c25 {
  align-self: stretch;
}

#w-node-_30a9b9d5-2a3a-23f6-574e-bb025cc8856b-4dc08c2b {
  align-self: end;
}

#w-node-_37035eba-a29c-388c-ba02-66098ac0a1a3-4dc08c2b, #w-node-_37035eba-a29c-388c-ba02-66098ac0a1a9-4dc08c2b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_5017fd5b-ecd2-4bfa-4836-95264579065e-44c08c27, #w-node-db8ac373-d545-bd26-1afc-0b57a8c0abe1-0896bc6b, #w-node-_2006a6d4-c0c7-b40c-2bb4-d7e24affd93f-04c08c35, #w-node-_89cfa5c6-08ca-a1b5-386b-b5b99bef8034-51c08c25, #w-node-_4ace67c9-1fad-338c-95ed-1a46bc9228cd-c0c08c28 {
    align-self: stretch;
  }

  #w-node-_78077087-59b6-bd11-487f-e7fcb607a9d9-c0c08c28 {
    justify-self: center;
  }

  #w-node-ab32d4a6-3494-e240-6dcf-6aefd72de997-6dc08c26, #w-node-_63d1da10-345a-6275-dc64-603baa890020-6dc08c26, #w-node-_645ee513-f406-cbca-56c2-2b9c72d8dd41-4dc08c2b {
    align-self: stretch;
  }
}


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