@font-face {
  font-family: Darker Grotesque;
  src: url('../fonts/DarkerGrotesque-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Darker Grotesque;
  src: url('../fonts/DarkerGrotesque-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Darker Grotesque;
  src: url('../fonts/DarkerGrotesque-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Darker Grotesque;
  src: url('../fonts/DarkerGrotesque-ExtraBold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-color--primary: var(--black);
  --text-color--primary: var(--white);
  --black: black;
  --text-color--secondary: var(--gray);
  --white: white;
  --transparent: transparent;
  --text-color--alternate: var(--black);
  --gray: #b0b0b0;
  --background-color--secondary: var(--black-2);
  --background-color--alternate: var(--white);
  --text-color--tertiary: var(--gray-dark);
  --text-color--accent: var(--violet);
  --black-2: #1b1b1b;
  --gray-dark: #656565;
  --violet: #9e94f5;
}

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

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

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

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

body {
  background-color: var(--background-color--primary);
  color: var(--text-color--primary);
  font-family: Darker Grotesque, Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12.5rem;
  font-weight: 900;
  line-height: .7;
}

h2 {
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 6rem;
  font-weight: 600;
  line-height: .8;
}

h3 {
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: .8;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

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

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.slider-button {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.style-guide-spacing-empty-block {
  z-index: -1;
  background-color: #cfcaca;
  width: 100%;
  height: 4rem;
  position: relative;
}

.filter-button__text {
  letter-spacing: -.028rem;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
  position: relative;
}

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

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

.filter-button__label {
  border-style: none;
  border-radius: 0%;
  width: auto;
  height: auto;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.filter-button__label.w--redirected-checked {
  background-color: #ec6145;
}

.style-giude-sticky {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

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

.margin-bot-medium {
  margin-bottom: 2rem;
}

.text-style-caps {
  text-transform: capitalize;
}

.style-giude-navigation {
  z-index: 5;
  background-color: #cacaca;
  border: 1px solid #0003;
  border-radius: 3rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem;
  display: flex;
  position: sticky;
  top: 2rem;
}

.heading-style-h1 {
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-size: 12.5rem;
  font-weight: 900;
  line-height: .7;
}

.heading-style-h1.is-v2 {
  letter-spacing: 0;
  font-weight: 600;
  line-height: .8;
}

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

.filter-wrap {
  grid-column-gap: .4rem;
  flex-flow: wrap;
  align-items: flex-start;
  display: flex;
}

.body-accent {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
}

.style-guide-list {
  grid-row-gap: 3rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-color-black {
  color: #000;
}

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

.margin-bot-small {
  margin-bottom: 1.5rem;
}

.style-guide-head {
  grid-column-gap: 3rem;
  background-color: #333131;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 1rem 2rem;
  display: flex;
}

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

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

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

.margin-top-small {
  margin-top: 1.5rem;
}

.background-color-black {
  background-color: #000;
}

.style-guide {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  padding: 2rem 0 5rem;
  display: flex;
  position: relative;
}

.filter-button__style {
  display: none;
}

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

.style-guide-txt {
  text-transform: none;
  font-size: 5rem;
  font-weight: 700;
  line-height: 120%;
}

.style-guide-txt.normal {
  font-size: 1.5rem;
  font-weight: 700;
}

.style-guide-txt.small {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
}

.rich-text {
  width: 100%;
}

.margin-bot-xsmall {
  margin-bottom: 1rem;
}

.style-guide-content {
  z-index: 1;
  grid-row-gap: 12rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-top: 5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  position: relative;
}

.style-guide-head-icon {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.style-guide-small-heading-txt {
  color: #fff;
  text-transform: capitalize;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 120%;
}

.size-block {
  grid-column-gap: 16px;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  max-width: 35rem;
  display: flex;
}

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

.heading-style-h4 {
  margin-top: 0;
  margin-bottom: 0;
}

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

.slider-button__icon {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

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

.heading-style-h2 {
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 6rem;
  font-weight: 600;
  line-height: .8;
}

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

.heading-style-h3 {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: .8;
}

.heading-style-h3.is-v2 {
  line-height: 1;
}

.filter-button {
  color: #000;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 4.5rem;
  padding: .8rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.style-class-wrap {
  color: #fff;
  letter-spacing: .01em;
  background-color: #0073e6;
  border-radius: 1rem;
  padding: .5rem 1rem;
}

.filter-block {
  background-color: #0000;
  margin-bottom: 0;
}

.style-guide-list-item {
  grid-column-gap: 5rem;
  border-bottom: 1px solid #fff3;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 3rem;
  display: flex;
}

.style-guide-list-item.up {
  align-items: flex-start;
}

.div-block {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  width: 100%;
  display: flex;
}

.style-guide-small-head {
  grid-column-gap: 3rem;
  background-color: #333131;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
}

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

.text-size-small {
  font-size: .75rem;
  font-weight: 400;
  line-height: 120%;
}

.style-guide-button {
  color: #000;
  background-color: #3898ec00;
  border: 1px solid #0003;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem 1rem;
  font-size: 1rem;
  line-height: 120%;
  display: flex;
}

.style-guide-button.w--current {
  color: #fff;
  background-color: #000;
}

.style-guide-heading-txt {
  color: #fff;
  text-transform: capitalize;
  font-size: 3rem;
  line-height: 120%;
}

.style-guide-spacer-block {
  border: 1px solid #000;
  width: 100%;
  padding: .5rem;
}

.style-tag-wrap {
  color: #fff;
  background-color: #e93ece;
  border-radius: 1rem;
  padding: .5rem 1rem;
}

.margin-top-medium {
  margin-top: 2rem;
}

.text-color-white {
  color: #fff;
}

.body-large {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

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

.body-regular {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

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

.section-hero {
  flex-flow: column;
  justify-content: flex-end;
  height: 100svh;
  min-height: 47rem;
  max-height: 60rem;
  padding-top: 7.5rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 119rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.nav-link-list {
  grid-column-gap: 4rem;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.nav-link {
  color: var(--text-color--secondary);
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.nav-brand {
  flex: none;
  width: 100%;
  min-width: .5rem;
  max-width: 2.875rem;
  min-height: .5rem;
  margin-right: auto;
  padding: 0;
}

.burger-line {
  background-color: #fff;
  border-radius: .5rem;
  flex: none;
  width: 100%;
  height: .2rem;
}

.nav-menu {
  justify-content: space-between;
  display: flex;
  position: static;
}

.navbar {
  z-index: 98;
  background-color: #0000;
  padding-top: 2.12rem;
  padding-bottom: 2.12rem;
  position: fixed;
  inset: 0% 0% auto;
}

.burger {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 2.5rem;
  display: flex;
}

.nav-button-wrapper {
  margin-left: 4.75rem;
  display: inline-block;
  position: relative;
}

.nav-link-wrapper {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.btn {
  min-width: 8.9rem;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #f2f2f2;
  border-radius: 1.5rem;
  padding: .5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s cubic-bezier(.445, .05, .55, .95);
}

.btn.submit {
  border-color: var(--background-color--primary);
  background-color: var(--transparent);
  color: var(--text-color--alternate);
  margin-top: 3.7rem;
}

.btn.submit:hover {
  background-color: var(--background-color--primary);
  color: var(--text-color--primary);
}

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

.icon-logo {
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.container {
  width: 100%;
  max-width: 119rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-heading-block {
  z-index: 1;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: 56.87rem;
  height: 100%;
  margin-left: auto;
  display: flex;
  position: relative;
}

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

.wrap-consultation-block {
  grid-column-gap: 18rem;
  grid-row-gap: 18rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 9vh;
  display: flex;
}

.get-consultation {
  width: 12rem;
  height: 12rem;
  color: var(--text-color--primary);
  text-align: center;
  letter-spacing: -.02em;
  text-transform: uppercase;
  background-color: #ffffff17;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
}

.since-block {
  max-width: 16.2rem;
}

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

.hero_bg {
  z-index: 0;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

.icon-embed-custom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.illustration-heading {
  width: 100%;
  max-width: 29.6rem;
  position: absolute;
  top: 19.3rem;
  left: -44.8rem;
}

.devix-title {
  float: left;
  margin-top: .8rem;
  margin-right: .8rem;
  display: inline-block;
}

.hero-top-title {
  z-index: 1;
  max-width: 11.5rem;
  font-weight: 600;
  position: absolute;
  top: 1.5rem;
  left: 15.75rem;
}

.opacity-30 {
  opacity: .3;
}

.section-work {
  padding-top: 13rem;
  padding-bottom: 9.5rem;
}

.flex-block {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section-title {
  min-width: 18.0625rem;
  max-width: 18.0625rem;
  font-weight: 600;
  position: sticky;
  top: 10rem;
}

.section-title.is-bottom-space {
  margin-bottom: 2.5rem;
}

.section-title.is-static {
  position: static;
}

.work-blocks {
  grid-column-gap: 19rem;
  grid-row-gap: 19rem;
  flex-flow: column;
  width: 100%;
  max-width: 88.3rem;
  padding-top: 10rem;
  display: flex;
}

.work-block-item {
  grid-column-gap: 7.5rem;
  grid-row-gap: 7.5rem;
  background-color: var(--black);
  flex-flow: column;
  display: flex;
  position: sticky;
  top: 20vh;
}

.flex-beetwen {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.flex-beetwen.bottom-align {
  justify-content: space-between;
  align-items: flex-end;
}

.flex-beetwen.center-align {
  justify-content: space-between;
  align-items: center;
}

.flex-beetwen.right-space {
  padding-right: 2.15rem;
}

.max-38 {
  width: 100%;
  max-width: 38rem;
}

.max-20 {
  max-width: 20rem;
}

.work-block-info {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.max-22 {
  width: 100%;
  max-width: 22rem;
}

.max-61-75 {
  max-width: 61.75rem;
}

.max-58 {
  max-width: 58rem;
}

.section-about-us {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
  position: relative;
}

.max-34 {
  max-width: 34rem;
}

.about-us-block {
  z-index: 2;
  grid-column-gap: 4.25rem;
  grid-row-gap: 4.25rem;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.about-us-info {
  max-width: 46.8rem;
}

.top-consultation {
  position: absolute;
  inset: 0% 4.88rem auto auto;
}

.about-illustration {
  max-width: 30rem;
  display: none;
  position: absolute;
  inset: auto 0% -8rem auto;
}

.section-stats {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
  position: relative;
}

.div-block-3 {
  grid-column-gap: 103px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(9.9rem, 9.9rem) .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about_image-2 {
  align-self: flex-start;
  width: 100%;
  max-width: 9.125rem;
}

.max-80 {
  max-width: 80rem;
}

.margin-top-19 {
  margin-top: 19rem;
}

.size-12 {
  font-size: 12.5rem;
}

.text-weight-900 {
  font-weight: 900;
}

.margin-top-8 {
  margin-top: 8rem;
}

.stats_columns {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: row;
  max-width: 99rem;
  display: flex;
}

.right-block {
  justify-content: flex-end;
  align-items: flex-start;
  margin-left: auto;
  display: flex;
}

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

.section-purpose {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
  position: relative;
}

.max-105 {
  max-width: 105rem;
}

.max-13 {
  max-width: 13rem;
}

.max-46 {
  max-width: 46rem;
}

.left-11 {
  margin-left: 11rem;
}

.divider {
  background-color: #ffffff4d;
  width: 100%;
  height: .06rem;
  margin-top: 7.25rem;
  margin-bottom: 7.25rem;
}

.grid-purpose-blocks {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  perspective: 2000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.purpose-block-item {
  background-color: var(--background-color--secondary);
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  min-height: 39.18rem;
  padding: 3rem;
  display: flex;
}

.min-height-9 {
  justify-content: center;
  align-items: center;
  min-height: 9rem;
  margin-top: 1rem;
  display: flex;
}

.vertical-gap-5 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  display: flex;
}

.section-projects {
  padding-bottom: 19rem;
}

.project-collection-item {
  cursor: pointer;
  border-bottom: 1px solid #fff3;
  justify-content: space-between;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  position: relative;
}

.max-175 {
  max-width: 17.5rem;
}

.collection-list-wrapper {
  margin-top: 7.6rem;
}

.projects-collection-list {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  display: flex;
}

.form {
  background-color: #0000;
}

.radio-field {
  text-transform: uppercase;
  border: 1px solid #0000;
  border-radius: 1.875rem;
  padding: .5rem 1rem;
  transition: all .4s;
  display: inline-block;
  position: relative;
}

.radio-field:hover {
  border: 1px solid #67d7fb;
}

.radio-btn {
  background-color: #0000;
  border: 0 solid #0000;
  border-radius: 1.875rem;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  transition: all .4s;
  position: absolute;
  inset: 0%;
}

.radio-btn.w--redirected-checked {
  opacity: 1;
  border-width: 1px;
  border-color: #67d7fb;
  box-shadow: 0 0 #0000;
}

.radio-button-label {
  position: relative;
}

.collection-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.project-img-block {
  max-width: 17.875rem;
  position: absolute;
  inset: 2rem 20rem auto auto;
}

.div-block-4 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.form-block-filters {
  margin-top: 7.5rem;
  margin-bottom: 0;
}

.footer {
  background-color: var(--background-color--secondary);
  padding-top: 6rem;
}

.collection-list-2 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  display: flex;
}

.max-31 {
  width: 100%;
  max-width: 31rem;
  display: flex;
}

.footer-title {
  letter-spacing: -.775rem;
  font-size: 19rem;
  font-weight: 900;
  line-height: 101%;
}

.footer-link {
  color: var(--white);
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

.max-55 {
  width: 100%;
  max-width: 55rem;
}

.flex-gap-15 {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-contact {
  z-index: 2;
  background-color: var(--white);
  outline-color: var(--transparent);
  outline-offset: 0px;
  width: 100%;
  color: var(--text-color--alternate);
  outline-width: 0;
  outline-style: none;
  position: relative;
  overflow: hidden;
}

.left-17 {
  margin-left: 17rem;
}

.contact_head-h {
  max-width: 47rem;
}

.block {
  display: block;
}

.line-height-100 {
  line-height: 100%;
}

.contact_head-img {
  align-self: flex-start;
  width: 100%;
  max-width: 14.25rem;
  margin-left: 19.75rem;
  overflow: hidden;
}

.contact-info {
  grid-column-gap: 19rem;
  grid-row-gap: 19rem;
  flex-flow: column;
  width: 100%;
  max-width: 82rem;
  margin-left: 19.5rem;
}

.wrap-form-block {
  grid-column-gap: 15rem;
  grid-row-gap: 15rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.contact-info_img {
  aspect-ratio: 1 / 1.46;
  width: 100%;
  max-width: 23rem;
  overflow: hidden;
}

.form-block {
  align-items: stretch;
  width: 100%;
  max-width: 44rem;
  margin-bottom: 0;
}

.input {
  border-top: 1px solid var(--transparent);
  width: 100%;
  height: 3rem;
  min-height: 3rem;
  color: var(--black);
  border-left: 0 solid #000;
  border-right: 0 solid #000;
  margin-bottom: 0;
  padding: 1rem 0;
  font-weight: 600;
}

.input:focus {
  border-bottom: 1px solid var(--black);
}

.input.texterea {
  height: 3rem;
  overflow: auto;
}

.label {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 600;
}

.vertical-gap-25 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.margin-top-6 {
  margin-top: 6rem;
}

.section-contact-scroll {
  background-color: var(--background-color--alternate);
  color: var(--text-color--alternate);
  padding-top: 1.63rem;
  padding-bottom: 1.63rem;
}

.scroll-down-btn {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--black);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.contact-padding {
  padding-top: 3rem;
  padding-bottom: 11rem;
}

.footer-logo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-logo.is-mobile {
  display: none;
}

.body {
  height: auto;
}

.wrap-filters-block {
  min-width: 15rem;
}

.wrap-collection-name {
  min-width: 47rem;
}

.wrap-footer-logo {
  margin-top: 6rem;
}

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

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

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

.text-color-accent, .text-color-alternate {
  color: var(--text-color--accent);
}

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

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

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

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

.hero-illutration_overlay {
  z-index: 1;
  background-color: #0003;
  display: none;
  position: absolute;
  inset: 0%;
}

.hero_bg-video {
  z-index: 0;
  aspect-ratio: 1280 / 720;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  inset: 2rem auto auto -14%;
}

.hero_layout {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.bg-video {
  z-index: 0;
  width: 100%;
  height: 100%;
}

.about_bg-video-overlay {
  z-index: 1;
  background-image: radial-gradient(circle closest-side, #0000, #00000026 50%, #000);
  width: 150%;
  height: 119%;
  position: absolute;
  inset: -13% 0% 0% -25%;
}

.button-group {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.button-group.is-tags {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.image-parallax {
  object-fit: cover;
  min-width: .25rem;
  height: 100%;
  min-height: .25rem;
  transform: scale(1.16);
}

.tag {
  min-width: 8.5rem;
  color: var(--text-color--accent);
  text-align: center;
  letter-spacing: -.02em;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #fff3;
  border-radius: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.tag.submit {
  border-color: var(--black);
  color: var(--black);
  margin-top: 3.7rem;
}

.margin-top-16 {
  margin-top: 1rem;
}

.max-28-25 {
  width: 100%;
  max-width: 28.25rem;
}

.about_description {
  max-width: 86.25rem;
  margin-top: 6.5rem;
}

.about_bg {
  z-index: 0;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.about_bg-video {
  z-index: 0;
  aspect-ratio: 1280 / 720;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 62%;
  position: absolute;
  inset: 14.2rem -18rem auto auto;
}

.show-mobile {
  display: none;
}

.hide-mobile {
  display: block;
}

.purpose_subtitle {
  flex-flow: column;
  display: flex;
  position: relative;
}

.height-100 {
  height: 100%;
}

.purpose_title {
  width: 100%;
  max-width: 43.75rem;
  margin-top: 10rem;
}

.purpose_bg {
  z-index: 0;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow-x: clip;
}

.purpose_bg-video {
  z-index: 0;
  aspect-ratio: 1280 / 720;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0 0% auto;
}

.hero_bg-video-overlay {
  z-index: 1;
  background-image: radial-gradient(circle closest-side, #0003, #0003 80%, #000);
  width: 140%;
  height: 130%;
  position: absolute;
  inset: -24% 0% 0% -20%;
}

.hide {
  display: none;
}

.purpose_bg-video-overlay {
  z-index: 1;
  background-image: radial-gradient(circle closest-side, #0000, #0000001a 60%, #000);
  width: 140%;
  height: 130%;
  position: absolute;
  inset: -15% 0% 0% -20%;
}

.stats_column {
  width: 100%;
  max-width: 18.0625rem;
}

.stats_column.is-2 {
  max-width: 37.375rem;
  padding-top: 23.7rem;
}

.stats_column.is-4 {
  max-width: 21.7rem;
  padding-top: 31.9rem;
}

.max-14-5 {
  max-width: 14.5rem;
}

.counter_number-wrapper {
  text-transform: uppercase;
}

.counter_number-wrapper.is-1 {
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 6rem;
  font-weight: 800;
  line-height: .8;
}

.counter_number-wrapper.is-2 {
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-size: 12.5rem;
  font-weight: 900;
  line-height: .77;
}

.counter_number-wrapper.is-3 {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: .8;
}

.counter_number-wrapper.is-4 {
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 6rem;
  font-weight: 800;
  line-height: .8;
}

.btn-animate-chars {
  min-width: 8.9rem;
  color: var(--text-color--primary);
  text-align: center;
  letter-spacing: -.02em;
  text-transform: uppercase;
  cursor: pointer;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  display: flex;
  position: relative;
}

.btn-animate-chars.is-navigation {
  min-width: auto;
  color: var(--text-color--secondary);
  border-style: none;
  border-radius: 0;
  padding: .25rem .125rem;
}

.btn-animate-chars.is-submit {
  background-color: var(--transparent);
  color: var(--text-color--alternate);
  margin-top: 3.7rem;
}

.btn-animate-chars.is-footer {
  min-width: auto;
  color: var(--text-color--primary);
  border-style: none;
  border-radius: 0;
  padding: .25rem .15rem;
}

.btn-animate-chars__bg {
  z-index: 0;
  border: 1px solid var(--white);
  background-color: var(--black);
  pointer-events: none;
  border-radius: 1.5rem;
  position: absolute;
  inset: 0;
}

.btn-animate-chars__bg.is-2 {
  border-color: var(--black);
  background-color: var(--white);
}

.btn-animate-chars__text {
  z-index: 1;
  white-space: nowrap;
  position: relative;
}

.js, .css {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.image-zoom-out {
  object-fit: cover;
  min-width: .25rem;
  height: 100%;
  min-height: .25rem;
}

.div-block-6 {
  position: relative;
}

.footer_social-links {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.foooter_menu {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.foooter_menu.bottom-align {
  justify-content: space-between;
  align-items: flex-end;
}

.foooter_menu.center-align {
  justify-content: space-between;
  align-items: center;
}

.contact_layout {
  grid-column-gap: 6.5rem;
  grid-row-gap: 6.5rem;
  flex-flow: column;
  display: flex;
}

.contact_head {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 18.0625rem minmax(auto, 47rem) 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.form-label {
  background-color: var(--background-color--alternate);
  pointer-events: none;
  letter-spacing: -.02em;
  text-transform: uppercase;
  height: auto;
  margin: -.25rem;
  padding: .25rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  transition: all .24s;
  position: absolute;
  top: 1.5rem;
  transform: translate(0, -.25rem);
}

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

.demo1-form-custom-css {
  display: none;
}

.form-group {
  flex: 1;
  min-width: 40%;
  position: relative;
}

.form-input {
  border-top-style: none;
  border-top-width: 0;
  border-top-color: var(--transparent);
  border-right-style: none;
  border-right-width: 0;
  border-right-color: var(--transparent);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--black);
  border-left-style: solid;
  border-left-width: 0;
  border-left-color: var(--transparent);
  width: 100%;
  height: auto;
  min-height: 3.75rem;
  color: var(--text-color--alternate);
  letter-spacing: -.02em;
  text-transform: uppercase;
  caret-color: #00f;
  background-color: #fff;
  margin-bottom: 0;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
}

.form-input:hover {
  border-bottom-color: #000;
}

.form-input:focus {
  background-color: #fff;
  border-bottom-color: #000;
}

.form-input.is-textarea {
  resize: vertical;
  justify-content: flex-start;
  align-items: flex-end;
  height: 3.75rem;
  overflow: auto;
}

.form-button-wrapper {
  width: 100%;
}

.button {
  color: #ffecde;
  text-align: center;
  letter-spacing: -.03rem;
  text-transform: uppercase;
  background-color: #363b2e;
  border: .1em solid #0000;
  border-radius: .5rem;
  padding: 1.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.button.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.button.is-link {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.modal {
  z-index: 99;
  width: 100vw;
  height: 100vh;
  color: var(--text-color--alternate);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal_content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  background-color: var(--background-color--alternate);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 63.75rem;
  height: auto;
  min-height: 35vh;
  max-height: 80vh;
  padding: 1.5rem;
  display: flex;
  position: relative;
  overflow: scroll;
}

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

.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}

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

.spacer-large {
  width: 100%;
  padding-top: 3rem;
}

.modal-content-replace-this-div {
  border: 2px dashed #0000001a;
  width: 100%;
  height: 150vh;
}

.modal_close-button {
  color: var(--black);
  margin: -.25rem;
  padding: .25rem;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.modal_background-overlay {
  z-index: -1;
  background-color: #0009;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.modal_text {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: right;
  flex-flow: column;
  width: 100%;
  max-width: 22.5rem;
  display: flex;
}

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

.modal_image {
  width: 100%;
  max-width: 28rem;
  height: 100%;
}

.section_case {
  z-index: 0;
  background-color: var(--background-color--primary);
  color: var(--text-color--primary);
  padding-top: 9.5rem;
  padding-bottom: 25rem;
  position: relative;
}

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

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

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

.stats29_component {
  grid-column-gap: 7.75rem;
  grid-row-gap: 7.75rem;
  flex-flow: column;
  display: flex;
}

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

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.case_list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.stats29_item {
  border: var(--\<unknown\|relume-variable-border-width\>) solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  border-radius: var(--\<unknown\|relume-variable-radius-medium\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  display: flex;
  overflow: hidden;
}

.stats29_number {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.3;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .5rem;
}

.stats29_image-wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-medium\>);
  overflow: hidden;
}

.stats29_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-work-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.case_card-visual {
  position: relative;
  overflow: hidden;
}

.case_card-link {
  z-index: 10;
  transition: border-width .3s;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  transform: translate(0);
}

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

.case_card-button-wrapper {
  z-index: 5;
  background-color: #000000d9;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.case_card-view-button {
  z-index: 10;
  text-align: center;
  letter-spacing: -.02em;
  text-transform: uppercase;
  background-color: #ffffff26;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 12rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .1s linear;
  display: flex;
}

.view-button-text {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
}

.heading-h4 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
}

.heading-h4.text-uppercase {
  letter-spacing: 1px;
}

.case_head {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto 8.5rem;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.case_head.bottom-align {
  justify-content: space-between;
  align-items: flex-end;
}

.case_head.center-align {
  justify-content: space-between;
  align-items: center;
}

.case_subtitle {
  flex-flow: column;
  display: flex;
  position: relative;
}

.case_subtitle-inner {
  grid-column-gap: 3.12rem;
  grid-row-gap: 3.12rem;
  flex-flow: column;
  display: flex;
}

.case_title {
  text-align: right;
  width: 100%;
  max-width: 56.75rem;
  position: relative;
}

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

.modal-trigger {
  outline-color: var(--transparent);
  outline-offset: 0px;
  outline-width: 0;
  outline-style: none;
  padding: 4px;
}

.success-message {
  background-color: var(--transparent);
  padding: 0;
}

.success_text {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: right;
  flex-flow: column;
  width: 100%;
  max-width: 22.5rem;
  margin-left: auto;
  display: flex;
}

.error-message {
  background-color: var(--transparent);
  color: #ff1c1c;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  padding: 0;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1;
}

.case_title-image {
  object-fit: cover;
  min-width: .25rem;
  min-height: .25rem;
  position: absolute;
}

.case_title-image.is-1 {
  max-width: 8.625rem;
  inset: 10.4rem auto auto 1rem;
}

.case_title-image.is-2 {
  max-width: 17.4rem;
  inset: 8.2rem auto auto 6.75rem;
}

.case_card-text {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.case_card-text-row {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--text-color--secondary);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-divider-dot {
  background-color: var(--text-color--secondary);
  border-radius: 50%;
  flex: none;
  width: .25rem;
  height: .25rem;
}

.case_bg {
  z-index: 0;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.case_bg-video {
  z-index: 0;
  aspect-ratio: 1280 / 720;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 33%;
  position: absolute;
  inset: auto -5rem -4rem auto;
}

.case_bg-video-overlay {
  z-index: 1;
  background-color: #0003;
  background-image: none;
  width: 150%;
  height: 119%;
  position: absolute;
  inset: -13% 0% 0% -25%;
}

.max-23-75 {
  width: 100%;
  max-width: 23.75rem;
}

@media screen and (max-width: 991px) {
  .section-hero {
    min-height: 47rem;
    max-height: 65rem;
  }

  .nav-brand {
    z-index: 100;
    max-width: 3.25rem;
  }

  .burger-line {
    flex: none;
  }

  .nav-burger-wrapper {
    z-index: 100;
    padding: 1rem;
  }

  .nav-burger-wrapper.w--open {
    z-index: 100;
    background-color: #0000;
  }

  .nav-button-wrapper {
    z-index: 100;
  }

  .nav-link-wrapper {
    z-index: 99;
  }

  .modal_content-wrapper {
    grid-column-gap: 11rem;
    grid-row-gap: 11rem;
    width: 80%;
    max-width: none;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .modal_image {
    max-width: 50%;
  }

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

  .stats29_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

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

  .stats29_number {
    font-size: 4rem;
  }

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

  .case_card-link {
    cursor: auto;
  }

  .case_card-link:hover {
    border-style: none;
    border-width: 0;
  }

  .case_card-view-button {
    display: none;
  }

  .modal_close-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media screen and (max-width: 767px) {
  .section-hero {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .nav-link-wrapper {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .modal_content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    max-height: none;
    padding-top: 5rem;
  }

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

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

  .spacer-large {
    padding-top: 2rem;
  }

  .modal_text {
    text-align: center;
    order: -9999;
  }

  .modal_image {
    max-width: 100%;
    height: auto;
  }

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

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

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

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

  .stats29_number {
    font-size: 3.5rem;
  }

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

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

  .heading-h4 {
    font-size: 1.5rem;
  }

  .success_text {
    text-align: center;
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 4.625rem;
    line-height: .8;
  }

  h2 {
    font-size: 3rem;
    line-height: .9;
  }

  h3 {
    font-size: 2.5rem;
    line-height: .9;
  }

  .style-giude-navigation {
    width: 100%;
    display: none;
  }

  .heading-style-h1 {
    font-size: 4.625rem;
    line-height: .8;
  }

  .filter-wrap {
    flex-wrap: nowrap;
  }

  .body-accent {
    font-size: 1rem;
  }

  .style-guide-list {
    grid-row-gap: 1rem;
  }

  .style-guide-head {
    grid-column-gap: 1.5rem;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
  }

  .margin-top-small {
    margin-top: 1rem;
  }

  .style-guide {
    flex-direction: column;
  }

  .style-guide-content {
    grid-row-gap: 5rem;
    padding-left: 3rem;
  }

  .style-guide-head-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .heading-style-h2 {
    font-size: 3rem;
    line-height: .9;
  }

  .heading-style-h3 {
    font-size: 2.5rem;
    line-height: .9;
  }

  .heading-style-h3.is-v2 {
    line-height: .9;
  }

  .heading-style-h3.is-less {
    font-size: 2.125rem;
    line-height: 1;
  }

  .filter-button {
    flex: none;
  }

  .filter-block {
    padding-bottom: 1rem;
    display: flex;
    overflow: auto;
  }

  .style-guide-list-item {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 3rem;
  }

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

  .body-large, .body-regular {
    font-size: 1.125rem;
  }

  .section-hero {
    justify-content: flex-start;
    padding-bottom: 3.5rem;
  }

  .nav-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-link-list {
    grid-row-gap: 2.5rem;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .nav-link {
    text-align: center;
    font-size: 2.5rem;
  }

  .nav-brand {
    max-width: 2rem;
  }

  .nav-burger-wrapper {
    padding: .5rem;
  }

  .nav-menu {
    position: fixed;
  }

  .navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .burger {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    width: 1.7rem;
  }

  .nav-button-wrapper {
    margin-left: 0;
    margin-right: 1rem;
  }

  .nav-link-wrapper {
    background-color: var(--black);
    align-items: center;
    width: 100%;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
    padding: 20rem 2rem;
  }

  .btn.submit {
    margin-top: 2rem;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-heading-block {
    margin-top: 0;
  }

  .wrap-consultation-block {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3.95rem;
  }

  .get-consultation {
    width: 9rem;
    height: 9rem;
    font-size: 1rem;
  }

  .since-block {
    max-width: 9rem;
    margin-top: 5.38rem;
  }

  .text-color-gray.text-weight-600.text-align-justify {
    text-align: left;
  }

  .illustration-heading {
    margin-top: 2.55rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    top: 0;
    left: 0;
  }

  .devix-title {
    margin-top: .5rem;
    margin-right: 1rem;
    font-size: 1rem;
    display: block;
  }

  .hero-top-title {
    display: none;
    position: static;
  }

  .section-work {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .flex-block {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: wrap;
  }

  .section-title {
    min-width: auto;
    max-width: none;
    position: static;
  }

  .section-title.is-bottom-space {
    min-width: auto;
    margin-bottom: 0;
  }

  .work-blocks {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    padding-top: 0;
  }

  .work-block-item {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    top: 15vh;
  }

  .flex-beetwen {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: wrap;
  }

  .flex-beetwen.right-space {
    padding-right: 0;
  }

  .work-block-info {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: wrap-reverse;
  }

  .section-about-us {
    padding-top: 3.5rem;
    padding-bottom: 13.5rem;
  }

  .about-us-block {
    flex-flow: wrap;
    position: static;
  }

  .top-consultation {
    order: 9999;
    position: absolute;
    top: auto;
    bottom: -11rem;
    right: 1.5rem;
  }

  .section-stats {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .about_image-2 {
    display: none;
  }

  .margin-top-19 {
    margin-top: 8rem;
  }

  .size-12 {
    font-size: 7rem;
  }

  .margin-top-8 {
    margin-top: 4rem;
  }

  .padding-left-19 {
    padding-left: 0;
  }

  .stats_columns {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .section-purpose {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .max-13.is-mobile-8 {
    max-width: 8rem;
  }

  .left-11 {
    margin-left: 0;
  }

  .divider {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

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

  .purpose-block-item {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    min-height: auto;
    padding: 1.5rem;
  }

  .min-height-9 {
    min-height: auto;
  }

  .vertical-gap-5 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .section-projects {
    padding-bottom: 6rem;
    overflow: hidden;
  }

  .project-collection-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .collection-list-wrapper {
    margin-top: 4rem;
  }

  .radio-field {
    padding-top: .25rem;
    padding-bottom: .28rem;
  }

  .radio-button-label {
    white-space: nowrap;
    font-size: 1rem;
  }

  .wrap-sort-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: row;
    overflow: scroll;
  }

  .project-img-block {
    display: none;
  }

  .div-block-4 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: wrap;
  }

  .footer {
    padding-top: 3rem;
  }

  .footer-link {
    font-size: 1rem;
  }

  .flex-gap-15 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
  }

  .left-17 {
    margin-left: 3.5rem;
  }

  .contact_head-img, .contact-info {
    margin-left: 0;
  }

  .wrap-form-block {
    grid-column-gap: 3.5rem;
    grid-row-gap: 3.5rem;
    flex-flow: column-reverse;
  }

  .margin-top-6 {
    margin-top: 2.5rem;
  }

  .section-contact-scroll {
    display: none;
  }

  .scroll-down-btn {
    font-size: 1.1rem;
  }

  .contact-padding {
    padding-top: 3rem;
    padding-bottom: 6.75rem;
  }

  .footer-logo {
    width: 100%;
    height: auto;
    display: none;
  }

  .footer-logo.is-mobile {
    display: inline-block;
  }

  .body {
    font-size: 1.15rem;
  }

  .wrap-collection-name {
    min-width: auto;
  }

  .no-wrap {
    white-space: nowrap;
  }

  .wrap-footer-logo {
    margin-top: 2rem;
  }

  .collection-list-wrapper-2 {
    width: 99.9999%;
  }

  .div-block-5 {
    width: 100%;
  }

  .hero_bg-video {
    width: 144%;
    height: auto;
    top: 16.3rem;
    left: -22%;
  }

  .hero_layout {
    flex-flow: column;
  }

  .button-group.is-tags {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-rows: auto;
    grid-template-columns: minmax(auto, 1fr) minmax(auto, 1fr);
    grid-auto-columns: 1fr;
  }

  .button-group.is-mobile-full-width {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .tag {
    min-width: 7rem;
    font-size: .875rem;
  }

  .tag.submit {
    margin-top: 2rem;
  }

  .about_description {
    margin-top: 3rem;
  }

  .about_bg-video {
    width: 144%;
    height: auto;
    top: 35.6rem;
    left: 12%;
  }

  .show-mobile {
    display: block;
  }

  .hide-mobile {
    display: none;
  }

  .purpose_subtitle {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr auto;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: grid;
  }

  .purpose_title {
    margin-top: 4rem;
  }

  .purpose_bg-video {
    width: 57%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    top: 5.2rem;
    left: -2.15rem;
    right: auto;
  }

  .stats_column.is-2, .stats_column.is-4 {
    justify-content: flex-end;
    padding-top: 0;
    display: flex;
  }

  .max-14-5.is-mobile-max-9 {
    max-width: 9rem;
  }

  .counter_number-wrapper {
    font-size: 3rem;
    line-height: .9;
  }

  .counter_number-wrapper.is-1 {
    font-size: 4.25rem;
  }

  .counter_number-wrapper.is-2 {
    font-size: 8.75rem;
  }

  .counter_number-wrapper.is-4 {
    font-size: 5rem;
  }

  .btn-animate-chars.is-navigation {
    font-size: 2.5rem;
  }

  .btn-animate-chars.is-submit {
    margin-top: 2rem;
  }

  .btn-animate-chars.is-footer {
    margin-top: -.15rem;
    margin-bottom: -.15rem;
    padding-top: .15rem;
    padding-bottom: .15rem;
    font-size: 1rem;
  }

  .footer_social-links {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .contact_layout {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: wrap;
  }

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

  .form-input {
    font-size: 16px;
  }

  .modal_content-wrapper {
    width: 100%;
  }

  .modal_close-button {
    margin: -.125rem;
    padding: .125rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .modal_text {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    text-align: right;
  }

  .section_case {
    padding-top: 3.5rem;
    padding-bottom: 18.75rem;
  }

  .stats29_component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

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

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

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

  .case_card-button-wrapper {
    background-color: #0000;
  }

  .case_card-view-button {
    width: 9rem;
    height: 9rem;
  }

  .case_head {
    grid-column-gap: 3.5rem;
    grid-row-gap: 3.5rem;
    flex-flow: wrap;
    grid-template-rows: auto auto auto;
    grid-template-columns: auto;
  }

  .case_subtitle {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: grid;
  }

  .case_subtitle-inner {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

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

  .success_text {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    text-align: right;
  }

  .case_title-image.is-1 {
    max-width: 3.85rem;
    top: 4rem;
    left: .2rem;
  }

  .case_title-image.is-2 {
    max-width: 6.8rem;
    top: 3.1rem;
    left: 2rem;
  }

  .case_card-text {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .case_card-text-row {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-flow: wrap;
  }

  .case_bg-video {
    width: 110%;
    bottom: -1rem;
    right: -3rem;
  }
}

#w-node-_7080ba2d-5193-89a5-74c0-86d99482c5ed-7ec7db91 {
  align-self: stretch;
}

#w-node-c81024ba-9d44-0750-8448-b9f37ac0fd66-7ec7db91 {
  align-self: end;
}

#w-node-_7080ba2d-5193-89a5-74c0-86d99482c5f4-7ec7db91 {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_541ed046-0c3f-c678-16e0-c6abfe8addb7-5f4daa84 {
  place-self: center;
}

#typography-style.w-node-_541ed046-0c3f-c678-16e0-c6abfe8addfb-5f4daa84, #w-node-_541ed046-0c3f-c678-16e0-c6abfe8ade5d-5f4daa84, #w-node-_541ed046-0c3f-c678-16e0-c6abfe8ade64-5f4daa84 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_7080ba2d-5193-89a5-74c0-86d99482c5f4-7ec7db91 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e6e16a3a-351d-e547-0443-1f016e5a7ca9-7ec7db91 {
    order: 9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ab65fe26-ac8e-9d01-3f0e-79d7ff19cf3a-7ec7db91, #w-node-bc89ff51-2fd5-b066-894d-a638c6550ae1-7ec7db91 {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}