:root {
  --color--second-color: #000;
  --font--primary-font: Inter, sans-serif;
  --colors--fourth-color: white;
  --page-margin--margin-15px: 15px;
  --line-height--page-line-height: 1.1;
  --font-weight--500: 500;
  --font--h1: 2.5rem;
  --font--h2: 2.2rem;
  --font--h3: 1.7rem;
  --font--h4: 1.4rem;
  --font--h5: 1rem;
  --font--h6: .8rem;
  --page-margin--margin-20px: 20px;
  --line-height--paragraph-line-height: 1.3;
  --colors--second-color: #f5f5f5;
  --button--button-color: white;
  --font-weight--400: 400;
  --colors--first-color: black;
  --page-container--width: 100%;
  --page-container--container: 95%;
  --color--first-color: white;
  --page-margin--margin-60px: 60px;
  --font--second-font: "Playfair Display", sans-serif;
  --page-margin--margin-30px: 30px;
  --backdrop-filter--blur-color: #f8f8f31a;
  --backdrop-filter--backdrop-size: 40px;
  --page-margin--margin-50px: 50px;
  --button--font-size: 14px;
  --button--nav-text: 1.1rem;
  --page-margin--margin-10px: 10px;
  --font--work-title: 1.2rem;
  --page-margin--margin-100px: 100px;
  --font-weight--300: 300;
  --button--cta-title: 24vw;
  --page-margin--margin-80px: 80px;
  --font-weight--700: 700;
  --font-weight--600: 600;
  --red: #e30613;
  --colors--third-color: #ffffffb3;
  --button--round-corners: 3rem;
  --button--circle-round-corners: 10rem;
  --backdrop-filter--backdrop-size-second: 15px;
  --page-container--round-corners: .6rem;
  --page-margin--margin-5px: 5px;
  --page-margin--margin-40px: 40px;
  --page-margin--margin-70px: 70px;
  --page-margin--margin-90px: 90px;
  --page-margin--margin-150px: 150px;
  --page-margin--margin-200px: 200px;
  --section--padding-top-bottom: 250px;
  --section--padding-left-right: 2%;
  --font-weight--800: 800;
}

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

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

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

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

body {
  background-color: var(--color--second-color);
  font-family: var(--font--primary-font);
  color: var(--colors--fourth-color);
  font-size: var(--page-margin--margin-15px);
  line-height: var(--line-height--page-line-height);
  font-weight: var(--font-weight--500);
}

h1 {
  font-size: var(--font--h1);
  line-height: var(--line-height--page-line-height);
  font-weight: var(--font-weight--500);
  margin-top: 20px;
  margin-bottom: 10px;
}

h2 {
  font-size: var(--font--h2);
  margin-top: 20px;
  margin-bottom: 10px;
}

h3 {
  font-size: var(--font--h3);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

h4 {
  font-size: var(--font--h4);
  margin-top: 10px;
  margin-bottom: 10px;
}

h5 {
  font-size: var(--font--h5);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

h6 {
  font-size: var(--font--h6);
  margin-top: 10px;
  margin-bottom: 10px;
}

p {
  font-size: var(--page-margin--margin-20px);
  line-height: var(--line-height--paragraph-line-height);
  font-weight: var(--font-weight--500);
  margin-bottom: 10px;
}

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

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

blockquote {
  border-left: 1px solid var(--button--button-color);
  color: var(--colors--fourth-color);
  font-size: 28px;
  line-height: var(--line-height--paragraph-line-height);
  font-weight: var(--font-weight--400);
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-wrapper {
  z-index: 20;
  position: relative;
}

.button-with-animation {
  color: #0c0c1d;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button {
  background-color: var(--colors--fourth-color);
  color: var(--colors--first-color);
  text-align: center;
  letter-spacing: -1px;
  border-radius: 3px;
  padding: .85rem 1.4rem;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  overflow: visible;
}

.button:hover {
  opacity: .76;
}

.container {
  z-index: 30;
  width: var(--page-container--width);
  max-width: var(--page-container--container);
  mix-blend-mode: normal;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section {
  background-color: var(--colors--first-color);
  padding: 100px 10% 150px;
  position: relative;
}

.section.with-work-page {
  z-index: 20;
  background-color: var(--colors--first-color);
  padding-top: 50px;
  padding-bottom: 50px;
}

.section.with-utility {
  background-color: var(--colors--first-color);
  padding-top: 150px;
  padding-bottom: 150px;
}

.section.with-z-index {
  z-index: 30;
}

.display-1 {
  opacity: 100;
  font-size: 5rem;
  line-height: var(--line-height--page-line-height);
  font-weight: var(--font-weight--500);
  letter-spacing: -.15rem;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 5px;
}

.display-1.second, .display-1.second._5rem {
  font-size: var(--font--h1);
}

.display-1.second._7rem {
  color: var(--color--first-color);
  line-height: 1;
}

.display-1.second._1-7-rem {
  font-size: var(--font--h3);
  line-height: var(--line-height--paragraph-line-height);
  letter-spacing: -.05rem;
}

.display-1.second._1-2-rem {
  font-size: var(--font--h5);
  letter-spacing: -.02rem;
}

.margin-60 {
  margin-top: var(--page-margin--margin-60px);
}

.other-font {
  font-family: var(--font--second-font);
  letter-spacing: -1px;
  font-style: italic;
  font-weight: 400;
  line-height: .3;
}

.margin-30 {
  margin-top: var(--page-margin--margin-30px);
}

.margin-30.make-flex {
  display: flex;
}

.margin-30.make-flex.c {
  justify-content: center;
  align-items: center;
}

.project-circle {
  z-index: 999;
  opacity: 1;
  color: #000;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto 20px 20px auto;
}

.margin-20 {
  margin-top: var(--page-margin--margin-20px);
}

.hero_pricing-link {
  color: #fff;
  text-align: center;
  background-color: #2a2a2d;
  border: 1px solid #414141;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 300;
  text-decoration: none;
  transition: all .2s;
}

.hero_pricing-link:hover {
  box-shadow: 0 0 5px 2px #ffffffbf;
}

.hero_pricing-features-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.faq-item-top {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px #ffffff1f;
  border-left: 1px #ffffff1f;
  border-right: 1px #ffffff1f;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 5rem 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: start;
  place-items: center start;
  width: 100%;
  padding-top: 34px;
  padding-bottom: 34px;
  display: grid;
}

.faq-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  cursor: pointer;
  background-color: #ddd0;
  border-top: 1px solid #e7eeee;
  border-bottom: 1px #ffffff1f;
  flex-direction: column;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  place-items: stretch stretch;
  width: 100%;
  padding: 0;
  transition: all .8s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.faq-item.w--current {
  background-color: #ddd0;
  overflow: hidden;
}

.utility-page-wrap {
  z-index: 100;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

.input-first {
  background-color: var(--backdrop-filter--blur-color);
  -webkit-backdrop-filter: blur(var(--backdrop-filter--backdrop-size));
  backdrop-filter: blur(var(--backdrop-filter--backdrop-size));
  color: var(--colors--first-color);
  border: 1px #000;
  border-radius: 3px;
  min-height: 53px;
  margin-bottom: 0;
  padding: 16px 24px 16px 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

.input-first:hover {
  border-color: var(--colors--first-color);
}

.input-first:focus {
  border-color: var(--colors--first-color);
  color: #555;
}

.input-first::placeholder {
  color: #999;
  letter-spacing: -.3px;
  font-size: 15px;
  font-weight: 400;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #fa242a;
  border-radius: .4rem;
  font-size: 15px;
  font-weight: 500;
}

.white-block {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-right: 20px;
}

.caption {
  color: #ffffff8c;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.caption.margined {
  opacity: .74;
  color: var(--colors--second-color);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
}

.caption.margined._2 {
  text-transform: none;
  font-size: 13px;
  font-weight: 500;
}

.color-block {
  background-color: var(--colors--first-color);
  border: 1px solid #81818b33;
  border-radius: 2px;
  width: 100%;
  height: 85px;
  margin-bottom: 5px;
  padding: 10px;
  display: flex;
}

.color-block._2 {
  color: #3d3d3d;
  background-color: #111;
}

.light-block-second {
  border-radius: 3px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-right: 20px;
}

.light-block-second.rounded-bottom {
  border-radius: 3px;
  padding-bottom: 30px;
}

.color-block-parent {
  width: 20%;
  margin-right: 20px;
}

.color-row {
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 35px;
  padding: 25px 0 15px;
  display: flex;
}

.light-block {
  border-radius: 3px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-right: 20px;
}

.licensing-content {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

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

.subhead {
  color: var(--colors--second-color);
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.3;
}

.margin-50 {
  margin-top: var(--page-margin--margin-50px);
}

.licensing-title {
  font-size: 30px;
}

.licensing-link {
  color: var(--colors--second-color);
  text-decoration: underline;
}

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

.button-first-line {
  color: var(--colors--first-color);
  font-size: var(--button--font-size);
  font-weight: 400;
  line-height: 1.1;
  text-decoration: none;
  position: relative;
}

.container-nav {
  z-index: 5;
  flex-direction: column;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.part-2 {
  grid-column-gap: 20%;
  grid-row-gap: 20%;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.navlinks {
  z-index: 5;
  color: var(--colors--first-color);
  height: 71px;
  font-size: 76px;
  font-weight: 400;
  line-height: .9;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-icon-wrapper {
  grid-row-gap: 2px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 22px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navigation-wrapper-main {
  z-index: 1100;
  filter: invert();
  mix-blend-mode: difference;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  inset: 0% 0% auto;
}

.navigation-content {
  z-index: 9999;
  width: var(--page-container--width);
  max-width: var(--page-container--container);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: start stretch;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  display: grid;
  position: absolute;
  inset: 0% 0% auto;
}

.part-3 {
  grid-column-gap: 0px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button-main {
  font-size: var(--button--font-size);
  letter-spacing: 0;
  white-space: nowrap;
  filter: url('../images/');
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  transition-property: all;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.135, .9, .15, 1);
  display: flex;
  position: relative;
}

.blog-link {
  color: var(--color--first-color);
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.last-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  order: 1;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.nav-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.navbar {
  background-color: #ddd0;
  width: 100%;
}

.navigation-link {
  color: var(--colors--first-color);
  font-size: var(--button--nav-text);
  line-height: var(--line-height--paragraph-line-height);
  font-weight: var(--font-weight--500);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: clip;
}

.navigation-link.for-button {
  opacity: 1;
  color: var(--color--first-color);
  letter-spacing: -.15px;
  font-size: 1rem;
}

.navigation-link.for-footer {
  filter: invert();
  color: var(--colors--first-color);
  font-size: 1.5rem;
  font-weight: var(--font-weight--400);
  letter-spacing: -.15px;
}

.navigation-link.for-footer.gray-color {
  opacity: .5;
}

.nav-text.second {
  pointer-events: none;
  position: absolute;
  top: 100%;
}

.top-hero {
  z-index: 3;
  background-color: var(--colors--first-color);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 70px;
  display: flex;
  position: relative;
}

.top-hero.for-inner {
  min-height: auto;
  padding-top: 130px;
  padding-bottom: 16px;
}

.margin-10 {
  margin-top: var(--page-margin--margin-10px);
}

.work-wrapper-first {
  color: var(--colors--first-color);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work-overlay {
  z-index: 1;
  opacity: .28;
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.work-overlay.first {
  opacity: 1;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #fff0;
  -webkit-mask-image: linear-gradient(to top, #000 10%, #0000 100%);
  mask-image: linear-gradient(to top, #000 10%, #0000 100%);
}

.work-overlay.first.half {
  background-color: #fff0;
  height: 60%;
  inset: auto 0% 0%;
}

.work-photo-first {
  transform: scale3d(1none, 1none, 1none);
  object-fit: cover;
  transform-style: preserve-3d;
  width: 100%;
  min-height: 100%;
}

.photo-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.subhead-main {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}

.subhead-main.for-footer-title {
  opacity: .6;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}

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

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

.photo-interaction {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.case-sticky {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  max-height: 100vh;
  padding-top: 100px;
  padding-bottom: 20px;
  display: flex;
  position: sticky;
  top: 0;
}

.line-flex {
  border-top: .5px solid #ffffff4d;
  border-bottom: .5px solid #000;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.case-picture {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.loader-badge {
  background-image: url('../images/loader.svg');
  background-position: 0 0;
  background-size: contain;
  width: 34px;
  height: 34px;
  position: absolute;
  inset: -19px -15px auto auto;
}

.loader-badge.for-page {
  z-index: 5;
  filter: hue-rotate(37deg);
  top: -17px;
  right: -16px;
}

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

.contact-flex {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #333;
  padding: 5px;
  display: flex;
  position: relative;
}

.photo-author {
  background-image: url('../images/team-2_1team-2.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 70px;
}

.photo-author.second {
  background-image: url('../images/photo-17-2_1photo-17 (2).webp');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 100%;
  flex: none;
  width: 100px;
  height: 100px;
}

.info-text {
  z-index: 3;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: #222;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 7px 25px 5px 15px;
  display: flex;
  position: relative;
}

.name-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
}

.name-title.lighter {
  opacity: .4;
  color: var(--colors--fourth-color);
  font-size: 15px;
  font-weight: 500;
}

.absolute-shape {
  background-color: #111;
  width: 0%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

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

.photo-overflow {
  overflow: hidden;
}

.smaller {
  font-size: var(--font--h3);
  line-height: var(--line-height--paragraph-line-height);
  letter-spacing: -.05rem;
  display: inline-block;
}

.overlay-main {
  z-index: 1;
  opacity: .28;
  background-color: #0b0516;
  position: absolute;
  inset: 0%;
}

.overlay-main._01 {
  opacity: 1;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background-color: #fff0;
  -webkit-mask-image: linear-gradient(to top, #000 10%, #0000 100%);
  mask-image: linear-gradient(to top, #000 10%, #0000 100%);
}

.overlay-main._01.less {
  z-index: 5;
  pointer-events: none;
  height: 30%;
  inset: auto 0% -2px;
}

.overlay-main._01.less.full {
  background-color: #0000004d;
  height: 100%;
}

.wrok-primay-photo {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.wrok-primay-photo.second-photo {
  z-index: 3;
  opacity: 0;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.work-title {
  font-size: var(--font--work-title);
  line-height: var(--line-height--page-line-height);
  font-weight: var(--font-weight--500);
  letter-spacing: -.01em;
  margin: 0 1px;
}

.work-title.light-text {
  opacity: .45;
}

.work-title-wrapper {
  z-index: 6;
  grid-column-gap: 3px;
  grid-row-gap: 5px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto auto 20px 20px;
}

.project-card-thumbnail-wrapper {
  z-index: 6;
  aspect-ratio: 3 / 2;
  justify-content: center;
  align-items: center;
  width: 37vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.wrok-card-wrapper {
  width: 100%;
}

.work-bg {
  z-index: 4;
  object-fit: cover;
  background-color: #000;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.card-row {
  grid-column-gap: var(--page-margin--margin-15px);
  grid-row-gap: var(--page-margin--margin-15px);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.card-row.second {
  margin-top: var(--page-margin--margin-15px);
}

.work-wrapper {
  color: var(--colors--fourth-color);
  background-color: #222;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40vw;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.margin-100 {
  margin-top: var(--page-margin--margin-100px);
}

.testimonials-card {
  background-image: url('../images/photo-17-1_1photo-17 (1).webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  min-height: 40vw;
  padding: 20px;
  display: flex;
  position: relative;
}

.part-top {
  z-index: 5;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  display: flex;
  position: relative;
}

.part-bottom {
  z-index: 5;
  position: relative;
}

.button-text {
  height: 20px;
}

.button-text-wrapper {
  height: 22px;
  overflow: hidden;
}

.button-line-first {
  background-color: #0006;
  width: 100%;
  height: 1px;
  margin-top: 1px;
  position: relative;
}

.logo-white {
  width: 70px;
}

.button-flex {
  grid-column-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-line-overlay {
  z-index: 1;
  background-color: var(--colors--first-color);
  width: 100%;
  height: 1px;
  position: absolute;
}

.button-with-line {
  color: var(--color--second-color);
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
  position: relative;
}

.button-with-line.invert {
  filter: invert();
  text-transform: none;
}

.flex-bottom {
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.top-logo {
  height: 55vh;
  position: sticky;
  top: 0;
}

.bg-video {
  background-image: linear-gradient(#0000004d, #0000004d);
  height: 100%;
}

.text-big {
  mix-blend-mode: normal;
  position: absolute;
  inset: auto 0% 40px;
}

.tv-dots {
  z-index: 9999;
  opacity: .05;
  pointer-events: none;
  background-image: url('../images/dots.gif');
  background-position: 50%;
  background-size: auto;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.max-w-left {
  max-width: 600px;
}

.servise-wrapper {
  flex-flow: column;
  margin-top: -2.5vh;
  display: flex;
}

.service-item {
  cursor: pointer;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-top: -1px;
}

.services-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .33fr;
  grid-auto-columns: 1fr;
  padding-top: 1.5vh;
  padding-bottom: 1.5vh;
  display: grid;
}

.services-title-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.services-image-wrapper {
  width: 10vh;
  height: 9vh;
}

.services-image-aspect-ratio {
  width: 100%;
  height: 100%;
  padding-top: 75%;
  padding-bottom: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}

.image-background {
  filter: invert();
  width: 85%;
  height: 85%;
  position: absolute;
  inset: 0%;
}

.service-title {
  font-size: var(--font--h2);
  line-height: 1;
}

.accortion-button {
  background-color: #222;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 5vh;
  height: 5vh;
  padding: 25px;
  display: flex;
  position: relative;
}

.plus-wrapper {
  justify-content: center;
  align-items: center;
  width: 3vh;
  height: 3vh;
  display: flex;
  position: absolute;
}

.line-1 {
  background-color: var(--color--first-color);
  width: 2px;
  height: 50%;
  position: absolute;
}

.line-2 {
  background-color: var(--colors--second-color);
  width: 50%;
  height: 2px;
  position: absolute;
}

.accordion-bottom-text {
  padding-bottom: 1.5vh;
  padding-left: 8vh;
  padding-right: 8vh;
}

.p-accortion {
  font-size: var(--font--h5);
  font-weight: var(--font-weight--300);
}

.accordion-bottom {
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  position: relative;
  overflow: hidden;
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.main-strip {
  z-index: 5;
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.main-strip.right {
  z-index: 51;
  inset: 0% 0% 0% auto;
}

.hero-interaction {
  margin-top: 100vh;
  position: absolute;
  inset: 0%;
}

.hero-overflow-title {
  z-index: 50;
  position: sticky;
  top: 200px;
}

.hero-preview {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}

.hero-home-flex {
  z-index: 25;
  line-height: var(--line-height--paragraph-line-height);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: static;
}

.main-image {
  width: 22vw;
  height: 27vw;
  min-height: 27vw;
  position: relative;
  left: 0%;
}

.main-image.fifth {
  width: 16vw;
  height: 19vw;
  min-height: 19vw;
  margin-top: -50vw;
  left: -57vw;
}

.main-image.first {
  width: 16vw;
  height: 19vw;
  min-height: 19vw;
  margin-top: -39vw;
  top: -37vh;
  left: -60vw;
}

.main-image.third {
  width: 16vw;
  height: 19vw;
  min-height: 19vw;
  top: 22.2vh;
  left: 6.5vw;
}

.main-image.sixth {
  width: 16vw;
  height: 19vw;
  min-height: 19vw;
  margin-bottom: -5vw;
  top: .5vh;
  left: -9.6vw;
}

.main-image.eight {
  margin-top: -150%;
}

.main-image.seven {
  margin-top: 0%;
  margin-bottom: -45%;
  left: 140%;
}

.main-image.fourth {
  width: 16vw;
  height: 19vw;
  min-height: 19vw;
  margin-top: -45vw;
  top: 17.4vh;
  left: 58vw;
}

.main-image.second {
  width: 16vw;
  height: 19vw;
  min-height: 19vw;
  top: -21.4vh;
  left: -4.2vw;
}

.hero-main-title {
  color: var(--color--first-color);
  font-size: var(--button--cta-title);
  line-height: var(--line-height--page-line-height);
  font-weight: var(--font-weight--500);
  letter-spacing: -1rem;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
}

.animation-wrapper {
  height: 350vh;
  position: relative;
}

.hero-content {
  z-index: 15;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #000;
  flex-direction: row;
  flex: 1;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  margin-bottom: -100vh;
  padding-bottom: 3rem;
  padding-left: 3vw;
  padding-right: 3vw;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.image-fill {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  transform: scale(1.02);
}

.hero-images {
  z-index: 10;
  grid-column-gap: 26vw;
  grid-row-gap: 26vw;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: flex-start center;
  width: 100%;
  padding-top: 40vh;
  display: flex;
}

.hero-images.right-slide {
  z-index: 25;
  justify-content: center;
  align-items: center;
  inset: 0% 0% 0% auto;
}

.hero-images.left, .top-title-overflow {
  position: relative;
}

.hero-text-wrapper {
  z-index: 15;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 70vw;
  display: flex;
  position: static;
}

.hero-first {
  z-index: 25;
  flex-direction: column;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: visible;
}

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

.blog-main-wrapper {
  color: #121212;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.blog-main-wrapper.flex-center {
  color: #c1c1be;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 21px;
  font-weight: 500;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-wrap {
  box-sizing: border-box;
  aspect-ratio: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.image-wrap.for-instagram {
  aspect-ratio: 1;
}

.image-wrap.for-instagram._02 {
  aspect-ratio: 3 / 2;
}

.image-wrap.for-instagram._03 {
  aspect-ratio: 2 / 3;
}

.paralax-image {
  object-fit: cover;
  width: 100%;
  height: 105%;
  position: absolute;
  bottom: 0;
}

.button-icon-main {
  background-color: var(--colors--first-color);
  color: #c1c1be;
  border-radius: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
  position: absolute;
  inset: 15px 15px auto auto;
  overflow: hidden;
  transform: none;
}

.buton-icon-svg {
  filter: invert();
  justify-content: center;
  align-items: center;
  width: 18px;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.buton-icon-svg.is-absolute {
  z-index: 2;
  position: absolute;
  transform: translate(-30px);
}

.team-name-tag {
  font-size: var(--font--h5);
  font-weight: var(--font-weight--500);
  background-color: #f70;
  border-radius: 5px;
  padding: 6px 12px;
  position: absolute;
  inset: 9% -7% auto auto;
  transform: rotate(6deg);
}

.team-name-tag._01 {
  background-color: #0059ff;
  inset: auto auto -3% -8%;
  transform: rotate(-4deg);
}

.team-name-tag._02 {
  background-color: #9000ff;
  top: 5%;
  right: 5%;
  transform: rotate(-3deg);
}

.team-name-tag._03 {
  background-color: #ff0051;
  inset: auto 35% -4% auto;
  transform: rotate(3deg);
}

.team-name-tag._04 {
  background-color: #00a0a3;
  inset: 16% auto auto -11%;
  transform: rotate(-4deg);
}

.team-name-tag._05 {
  background-color: #333;
  inset: 10% -5% auto auto;
  transform: rotate(-12deg);
}

.footer {
  z-index: 30;
  background-color: var(--colors--first-color);
  padding-top: 100px;
  padding-bottom: 30px;
  position: relative;
}

.line-divider {
  background-color: #ffffff26;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 30px;
}

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

.margin-80 {
  margin-top: var(--page-margin--margin-80px);
}

.social-content {
  grid-column-gap: 20px;
  justify-content: flex-end;
  display: flex;
}

.social-content.left {
  justify-content: flex-start;
}

.social-wrapper {
  grid-row-gap: 2px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.social-icon {
  z-index: 1;
  width: 20px;
  position: relative;
}

.social-icon.second {
  width: 18px;
}

.text-badge-wrapper {
  z-index: 1;
  height: 18px;
  position: relative;
  overflow: hidden;
}

.icon-badge {
  z-index: 1;
  width: 20px;
  height: 20px;
  position: relative;
}

.photo-badge {
  background-image: url('../images/unlock-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 7px;
  min-width: 140px;
  min-height: 130px;
}

.text-badge {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: #ffffffed;
  border: 1px solid #e1e1e1;
  border-radius: 7px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 13px 10px 11px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.badge-paragraph {
  opacity: 1;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}

.badge-paragraph.biger {
  font-size: 15px;
  font-weight: 700;
}

.circle-badge-hover {
  background-color: #9bfa13;
  border-radius: 100%;
  width: 0;
  height: 0;
  position: absolute;
  inset: auto auto 15px 15px;
}

.code-embed {
  color: #000;
}

.badge-wrapper {
  z-index: 999;
  grid-row-gap: 5px;
  flex-flow: column;
  text-decoration: none;
  display: flex;
}

.remove-icon {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: absolute;
  inset: -5px -5px auto auto;
}

.badge-content {
  z-index: 9999;
  position: fixed;
  inset: auto 15px 15px auto;
}

.contact-section {
  padding-left: 5%;
  padding-right: 5%;
}

.grid_2-col {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid_2-col.gap-small {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.heading_h2 {
  text-align: center;
  letter-spacing: -.01em;
  text-wrap: balance;
  margin-top: 0;
  margin-bottom: 5%;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: .7em;
}

.form_error-message_content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: flex-start;
  display: flex;
}

.input_label {
  z-index: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .5em;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

.form_success-message {
  background-color: #99061233;
  border: 1px solid #e30613;
  border-radius: .5rem;
  padding: 2rem;
}

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

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

.input_field {
  color: #fff;
  background-color: #0000;
  background-image: linear-gradient(#0000001a, #0000);
  border: 1px solid #ffffff1a;
  border-radius: .25rem;
  height: auto;
  margin-bottom: 0;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.3;
  transition: background-color .2s cubic-bezier(.165, .84, .44, 1), border-color .2s cubic-bezier(.165, .84, .44, 1);
  box-shadow: inset 0 4px 4px -2px #0000001a;
}

.input_field:hover {
  background-color: #0000;
  border-color: #ffffff1a;
  box-shadow: inset 0 4px 4px -2px #0000001a;
}

.input_field:focus {
  outline-offset: 2px;
  border-color: #ffffff1a;
  outline: 2px solid #e30613;
}

.input_field::placeholder {
  color: #fff3;
}

.input_field.input_text-area {
  min-height: 7.5rem;
}

.container-3 {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.form_error-message {
  background-color: #ff2b2b33;
  border: 1px solid #ff565666;
  border-radius: .25rem;
  margin-top: 1rem;
  padding: 1rem;
}

.section-2 {
  color: #fff;
  padding-top: 5%;
  overflow: hidden;
}

.eyebrow {
  letter-spacing: .01em;
  text-transform: uppercase;
  color: color-mix(in srgb, currentColor 60%, transparent);
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Inter, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.3em;
  display: inline-block;
}

.header {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.button-2 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #e30613;
  background-image: radial-gradient(circle farthest-side at 50% -50%, #0000, #000000b3);
  border: 0 solid #0000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: 1em 1.5em;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s cubic-bezier(.165, .84, .44, 1), box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 4px 4px #0003, 0 1px 1px #0003, inset 0 0 0 1px #0000001a, inset 0 3px 2px -2px #ffffff80;
}

.button-2:hover {
  color: #fff;
  background-color: #e30613;
  border-color: #0000;
  box-shadow: 0 6px 12px #0003, 0 1px 1px #0003, inset 0 0 0 1px #0000001a, inset 0 3px 2px -2px #ffffff80;
}

.button-2:active {
  background-color: #e30613;
  box-shadow: 0 4px 4px #0003, 0 1px 1px #0003, inset 0 0 0 1px #0000001a, inset 0 3px 2px -2px #ffffff80;
}

.button-2:focus {
  outline-offset: 2px;
  outline: 2px solid #e30613;
}

.button-2.is-small {
  font-size: 1rem;
}

.button-2.is-inverse {
  color: #fff;
  background-color: #e30613;
  border-color: #0000;
}

.button-2.is-inverse:hover {
  background-color: #e30613;
  border-color: #0000;
}

.container-4 {
  margin-bottom: 5%;
}

.footer-section {
  height: 50vh;
}

.svg-3 {
  color: #b6000b;
}

.flex_horizontal {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  display: flex;
}

.flex_horizontal.gap-small {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.icon {
  color: #de4753;
  vertical-align: middle;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.icon.is-large {
  width: 3rem;
  height: 3rem;
}

.heading_h5 {
  color: #e0e0e0;
  letter-spacing: 0;
  margin-bottom: .5em;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3em;
}

.text-link {
  color: #de4753;
  text-decoration: underline;
  -webkit-text-decoration-color: color-mix(in srgb, currentColor 30%, transparent);
  text-decoration-color: color-mix(in srgb, currentColor 30%, transparent);
  font-weight: 400;
  display: inline;
}

.text-link:hover {
  color: #de475399;
  text-decoration: underline;
  -webkit-text-decoration-color: color-mix(in srgb, currentColor 100%, transparent);
  text-decoration-color: color-mix(in srgb, currentColor 100%, transparent);
}

.text-link.is-secondary {
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-color: color-mix(in srgb, currentColor 30%, transparent);
  text-decoration-color: color-mix(in srgb, currentColor 30%, transparent);
}

.text-link.is-secondary:hover {
  -webkit-text-decoration-color: color-mix(in srgb, currentColor 100%, transparent);
  text-decoration-color: color-mix(in srgb, currentColor 100%, transparent);
}

.map {
  height: 100%;
}

.grid-3 {
  grid-template-rows: auto;
  height: 100%;
}

.div-block-11-copy {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 5%;
  display: flex;
}

.flex_vertical {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.flex_vertical.gap-xsmall {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.div-block-11 {
  height: 100%;
}

.screen-reader {
  white-space: nowrap;
  border: 0 solid #0000;
  width: 1px;
  height: 1px;
  margin-top: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.divider {
  -webkit-text-stroke-width: 0px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: color-mix(in srgb, currentColor 15%, transparent);
  align-self: stretch;
}

.grid_6-col {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid_6-col.gap-medium {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 1fr .5fr 1fr;
}

.heading_h6 {
  letter-spacing: .1em;
  margin-bottom: .5em;
  font-family: Inter, sans-serif;
  font-size: .71rem;
  font-weight: 500;
  line-height: 1.3em;
}

.footer_wrapper {
  color: #fff;
  background-color: #101010;
  padding: 4rem 10%;
}

.footer_icon-link {
  color: color-mix(in srgb, currentColor 70%, transparent);
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: .35rem;
  display: inline-flex;
}

.text-color_secondary {
  font-weight: var(--font-weight--300);
  color: color-mix(in srgb, currentColor 75%, transparent);
  margin-top: 2rem;
}

.footer_icon-group {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #0000;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.footer_icon-group.margin_top-auto {
  display: none;
}

.footer_link {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: color-mix(in srgb, currentColor 60%, transparent);
  justify-content: flex-start;
  align-items: center;
  padding-top: .35em;
  padding-bottom: .35em;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
}

.footer_link:hover {
  opacity: 1;
  color: color-mix(in srgb, currentColor 100%, transparent);
  text-decoration: underline;
}

.paragraph_xlarge {
  letter-spacing: 0;
  margin-bottom: .7em;
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  line-height: 1.6em;
}

.paragraph_xlarge.margin-bottom_none.text_all-caps {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  line-height: 1.3em;
}

.logo {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  color: inherit;
  justify-content: flex-start;
  align-items: center;
  height: 2.5rem;
  text-decoration: none;
  display: flex;
}

.logo:hover {
  color: color-mix(in srgb, currentColor 80%, transparent);
}

.footer_bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer_bottom.margin-top_medium {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  margin-bottom: 1rem;
}

.nav_logo-icon {
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

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

.div-block-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin-left: 10%;
  display: flex;
}

.brand {
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand.w--current {
  background-image: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
  color: #e0e0e0;
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: var(--font-weight--300);
}

.nav-link.w--current {
  color: var(--colors--second-color);
  font-weight: var(--font-weight--700);
}

.text-block {
  color: #e0e0e0;
  margin-left: 1rem;
}

.div-block-12 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.redbutton-nav {
  outline-offset: 0px;
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: var(--font-weight--500);
  background-color: #e30613;
  background-image: radial-gradient(circle farthest-side, #e30613, #120002 100%, #000);
  border-radius: 5px;
  outline: .5px solid #88888829;
  padding: 15px 20px;
}

.navbar-2 {
  background-color: #000000b3;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.section-4 {
  background-image: linear-gradient(#0000003b, #0000003b), url('../images/désinfecteurs.avif');
  background-position: 0 0, 50% 75%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 80vh;
  display: flex;
}

.text-span {
  font-size: var(--font--h5);
  font-weight: var(--font-weight--300);
}

.souligne {
  font-weight: var(--font-weight--300);
  text-decoration: underline;
}

.text-span-2 {
  font-weight: var(--font-weight--600);
}

.div-block-6 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.hero-section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  align-items: center;
  padding: 10% 5% 5%;
  display: flex;
}

.mouse_wrapper {
  margin-top: 40px;
  margin-left: 0;
}

.grey-button {
  outline-offset: 0px;
  background-color: #3b3b3b;
  border-radius: 5px;
  outline: .5px solid #88888829;
  padding: 15px 20px;
  font-family: Inter, sans-serif;
}

.div-block-4 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.mouse-scroll-hero {
  z-index: 1;
  color: #202020;
  border: 2px solid #fff;
  border-radius: 9px;
  justify-content: center;
  align-items: flex-start;
  width: 20px;
  height: 29px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
}

.mouse-dots {
  background-color: #fff;
  width: 2px;
  height: 5px;
  margin-top: 6px;
}

.redbutton {
  outline-offset: 0px;
  background-color: #e30613;
  background-image: radial-gradient(circle farthest-side, #e30613, #120002 100%, #000);
  border-radius: 5px;
  outline: .5px solid #88888829;
  padding: 15px 20px;
  font-family: Inter, sans-serif;
}

.heading {
  color: #e0e0e0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 4.3rem;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  margin-left: 10%;
  margin-right: 10%;
}

.text-block-2 {
  color: #888;
  width: 70%;
  font-size: 1.4rem;
  line-height: 1.6rem;
}

.service-section {
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

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

.heading-4 {
  color: #e0e0e0;
  font-family: Inter, sans-serif;
  font-size: var(--font--h3);
  text-align: center;
  font-weight: 500;
}

.div-block-9 {
  width: 100%;
  height: 200px;
}

.text-block-3 {
  color: #e0e0e0;
  text-align: center;
}

.div-block-10 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.container-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-3 {
  color: #e0e0e0;
  font-family: Inter, sans-serif;
  font-size: var(--font--h1);
  margin-top: 0;
  margin-bottom: 5%;
  font-weight: 500;
  line-height: 3.5rem;
}

.product-link {
  color: #202020;
  border-bottom: 3px solid #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.product-link:hover {
  color: #202020;
  padding-left: 25px;
  padding-right: 25px;
}

.section_home-header {
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 60vh;
  display: block;
  position: relative;
  top: 0;
  overflow: hidden;
}

.paragraph {
  color: #e0e0e0;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 1rem;
}

.list_item {
  height: 100vh;
  position: sticky;
  top: 0;
}

.still-header_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: relative;
}

.margin-150px {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.main-wrapper {
  min-height: calc(100vh - 66px);
}

.product-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: 2vw;
  display: flex;
  position: relative;
}

.product-content:hover {
  color: #202020;
}

.product-number {
  font-size: 16px;
  font-weight: 500;
}

.page-wrapper-2 {
  overflow: clip;
}

.product-title {
  font-size: 1.4rem;
  line-height: 1;
}

.product-title:hover {
  color: #202020;
}

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

.work-list_infos-content {
  background-image: linear-gradient(#0009, #0009);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 700px;
  padding: 25px;
  display: flex;
}

.work_list_content {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: clip;
}

.presta-section {
  margin-top: 5%;
  margin-bottom: 5%;
  display: none;
}

.heading-7 {
  color: #e0e0e0;
  font-family: Inter, sans-serif;
  font-size: var(--font--h2);
  text-align: center;
  margin-bottom: 5%;
  font-weight: 500;
}

.work-list_infos {
  width: 100%;
  position: absolute;
}

.work_list_image {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 120vh;
  min-height: 120vh;
}

.list {
  z-index: 2;
  height: 100%;
  position: relative;
}

.paragraph-2 {
  color: #e0e0e0;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: var(--font-weight--400);
  text-align: center;
}

.heading-6 {
  color: #e0e0e0;
  text-transform: capitalize;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.margin-60px {
  margin-top: 40px;
  margin-left: 20%;
  margin-right: 20%;
}

.product-image {
  opacity: 0;
  pointer-events: none;
  width: 33.3333%;
  position: absolute;
}

.padding-global {
  justify-content: center;
  align-items: center;
  padding: 6rem 1.5rem;
  display: flex;
}

.mouse-center_wrapper {
  margin-top: 40px;
  margin-left: auto;
}

.list_block {
  width: 100%;
  height: 100%;
}

.section-3 {
  justify-content: center;
  padding: 5%;
  display: block;
}

.background-video {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 10%;
  display: flex;
}

.div-block-14 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  display: flex;
}

.heading-9 {
  font-family: Inter, sans-serif;
  font-size: var(--font--h2);
  font-weight: 500;
}

.paragraph-3 {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: var(--font-weight--300);
}

.faq-question-text {
  text-indent: 0;
  text-transform: none;
  max-width: 420px;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 100%;
}

.faq-section {
  color: #e0e0e0;
  justify-content: center;
  align-items: center;
  padding: 100px 5%;
  font-family: Inter, sans-serif;
  display: flex;
}

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

.faq-sticky-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 110px;
}

.faq-wrapper {
  perspective-origin: 50% 100%;
  transform-origin: 50% 100%;
  border-bottom: 1px solid #e0e0d6;
  margin-bottom: 20px;
  padding: 0 0 5px;
  overflow: hidden;
}

.faq-wrapper.cursor-hover-animation {
  margin-bottom: 20px;
  padding-top: 0;
  padding-left: 0;
}

.content-container {
  max-width: 1000px;
}

.heading-8 {
  flex: 0 auto;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 3.1rem;
}

.plus-line-animated {
  color: #171719;
}

.faq-answer {
  margin-top: 10px;
  overflow: hidden;
}

.faq-wrapper-last {
  perspective-origin: 50% 100%;
  transform-origin: 50% 100%;
  border-bottom: 1px solid #e0e0d6;
  margin-bottom: 20px;
  padding: 0 0 5px;
  overflow: hidden;
}

.faq-wrapper-last.cursor-hover-animation {
  border-bottom-style: none;
  margin-bottom: 20px;
  padding-top: 0;
}

.plus-icon {
  filter: invert();
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin-left: 10px;
  display: flex;
  position: relative;
}

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

.faq-question {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

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

.faq-section-questions {
  cursor: auto;
}

.faq-sticky-section-wrapper {
  position: relative;
}

.urgence-section {
  opacity: .8;
  color: #fff;
  background-image: radial-gradient(circle at 100% 0, #e30613, #010101);
  padding-left: 5%;
  padding-right: 5%;
  overflow: clip;
}

.text-align_center {
  grid-column-gap: 51px;
  grid-row-gap: 51px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.heading_h1 {
  letter-spacing: -.01em;
  text-wrap: balance;
  margin-bottom: .3em;
  font-family: Inter, sans-serif;
  font-size: 2.83rem;
  font-weight: 500;
  line-height: 1.04em;
}

.subheading {
  letter-spacing: 0;
  color: color-mix(in srgb, currentColor 70%, transparent);
  text-wrap: balance;
  max-width: 1000px;
  margin-bottom: 1.25rem;
  font-family: Inter, sans-serif;
  font-size: 1.13rem;
  line-height: 1.6em;
}

.button-black {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #010101;
  background-image: radial-gradient(circle farthest-side at 50% -50%, #0000, #000000b3);
  border: 0 solid #0000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: 1em 1.5em;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s cubic-bezier(.165, .84, .44, 1), box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 4px 4px #0003, 0 1px 1px #0003, inset 0 0 0 1px #0000001a, inset 0 3px 2px -2px #ffffff80;
}

.button-black:hover {
  color: #fff;
  background-color: #e30613;
  border-color: #0000;
  box-shadow: 0 6px 12px #0003, 0 1px 1px #0003, inset 0 0 0 1px #0000001a, inset 0 3px 2px -2px #ffffff80;
}

.button-black:active {
  background-color: #e30613;
  box-shadow: 0 4px 4px #0003, 0 1px 1px #0003, inset 0 0 0 1px #0000001a, inset 0 3px 2px -2px #ffffff80;
}

.button-black:focus {
  outline-offset: 2px;
  outline: 2px solid #e30613;
}

.heading-10 {
  font-size: var(--font--h1);
  margin-top: 0;
  margin-bottom: 2rem;
}

.img-2 {
  width: 100%;
  height: 200px;
}

.div-block-9-copy {
  background-image: url('../images/2-min.png');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 200px;
}

.div-block15 {
  width: 100%;
  height: 200px;
}

.background-video-2 {
  width: 100%;
  height: 100%;
}

.background-video-3 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 5%;
  padding-bottom: 5%;
  display: block;
}

.container-5 {
  background-image: linear-gradient(#0000008f, #0000008f);
  padding: 2.5rem;
  box-shadow: 0 4px 20px 18px #0006;
}

.grid-4 {
  grid-column-gap: 51px;
  grid-template-columns: 1fr .75fr;
  grid-template-areas: ". Area";
}

.image {
  box-sizing: border-box;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  height: 450px;
}

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

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

.path {
  color: #b6000b;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.section-5 {
  padding: 10% 20%;
}

.rich-text-block {
  font-size: var(--font--h5);
  font-weight: var(--font-weight--400);
}

.paragraph-4 {
  font-family: var(--font--primary-font);
  font-size: var(--font--h5);
  font-weight: var(--font-weight--300);
}

.heading-12 {
  font-size: var(--font--h3);
  font-weight: var(--font-weight--400);
  margin-bottom: 40px;
}

@media screen and (min-width: 1920px) {
  .case-details {
    grid-template-columns: minmax(35rem, 1fr) 3fr;
  }

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

  .section_home-header, .background-video-3 {
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  body {
    --color--second-color: #000;
    --font--primary-font: Inter, sans-serif;
    --colors--fourth-color: white;
    --page-margin--margin-15px: 15px;
    --line-height--page-line-height: 1.1;
    --font-weight--500: 500;
    --font--h1: 3.8rem;
    --font--h2: 2.2rem;
    --font--h3: 1.7rem;
    --font--h4: 1.4rem;
    --font--h5: 1rem;
    --font--h6: .8rem;
    --page-margin--margin-20px: 20px;
    --line-height--paragraph-line-height: 1.3;
    --colors--second-color: #f5f5f5;
    --button--button-color: white;
    --font-weight--400: 400;
    --colors--first-color: black;
    --page-container--width: 100%;
    --page-container--container: 95%;
    --color--first-color: white;
    --page-margin--margin-60px: 60px;
    --font--second-font: "Playfair Display", sans-serif;
    --page-margin--margin-30px: 30px;
    --backdrop-filter--blur-color: #f8f8f31a;
    --backdrop-filter--backdrop-size: 40px;
    --page-margin--margin-50px: 50px;
    --button--font-size: 14px;
    --button--nav-text: 1.1rem;
    --page-margin--margin-10px: 10px;
    --font--work-title: 1.2rem;
    --page-margin--margin-100px: 100px;
    --font-weight--300: 300;
    --button--cta-title: 24vw;
    --page-margin--margin-80px: 80px;
    --font-weight--700: 700;
    --font-weight--600: 600;
    --colors--third-color: #ffffffb3;
    --button--round-corners: 3rem;
    --button--circle-round-corners: 10rem;
    --backdrop-filter--backdrop-size-second: 15px;
    --page-container--round-corners: .6rem;
    --page-margin--margin-5px: 5px;
    --page-margin--margin-40px: 40px;
    --page-margin--margin-70px: 70px;
    --page-margin--margin-90px: 90px;
    --page-margin--margin-150px: 150px;
    --page-margin--margin-200px: 100px;
    --section--padding-top-bottom: 100px;
    --section--padding-left-right: 2%;
    --font-weight--800: 800;
  }

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

  .section.with-work-page {
    padding-top: 25px;
  }

  .section.with-utility {
    padding-top: 100px;
  }

  .display-1 {
    letter-spacing: -.05rem;
    font-size: 3rem;
  }

  .display-1.second {
    letter-spacing: -.05rem;
    font-size: 2.4rem;
  }

  .margin-60.make-30 {
    margin-top: var(--page-margin--margin-60px);
  }

  .faq-item-top {
    grid-template-columns: 2rem 1fr auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .utility-page-wrap {
    height: auto;
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .utility-page-wrap._01 {
    padding-bottom: 297px;
  }

  .color-block-parent {
    width: 33.3333%;
  }

  .subhead {
    font-size: 19px;
  }

  .container-nav {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .navlinks {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 60px;
    line-height: .9;
  }

  .navigation-wrapper-main {
    mix-blend-mode: normal;
    position: absolute;
  }

  .navigation-content {
    max-width: var(--page-container--width);
    padding-top: 20px;
  }

  .last-item {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    justify-content: flex-end;
    align-items: center;
  }

  .menu-button {
    order: 1;
    padding: 0 0 12px 12px;
  }

  .menu-button.w--open {
    background-color: #c8c8c800;
  }

  .nav-menu {
    background-color: #ebebeb;
    padding: 10px;
  }

  .navigation-link {
    justify-content: center;
    align-items: flex-start;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navigation-link.for-footer {
    justify-content: center;
    align-items: flex-start;
  }

  .navigation-link.for-footer.gray-color {
    font-size: 1.2rem;
  }

  .navigation-link.for-logo {
    font-size: 1.6rem;
  }

  .top-hero {
    min-height: auto;
    padding-top: 150px;
  }

  .top-hero.for-inner {
    padding-top: 116px;
  }

  .top-hero.main {
    padding-top: 70px;
  }

  .case-details {
    grid-row-gap: 1.4rem;
    flex-flow: column;
    display: flex;
  }

  .case-sticky {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    max-height: none;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }

  .grid-2-column {
    flex-flow: column-reverse;
    display: flex;
  }

  .grid-2-column.reverse {
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .grid-2-column.reverse._15-gap {
    grid-row-gap: 15px;
  }

  .grid-2-column.reverse.add-gap {
    grid-row-gap: 100px;
  }

  .project-card-thumbnail-wrapper {
    width: 66%;
  }

  .work-bg {
    opacity: 1;
    width: 100%;
  }

  .card-row {
    flex-flow: column;
  }

  .work-wrapper {
    aspect-ratio: 3 / 2;
    min-height: auto;
  }

  .testimonials-card {
    min-height: 70vw;
  }

  .top-logo {
    height: 36vh;
    min-height: 400px;
  }

  .services-image-wrapper {
    width: 7vh;
    height: 7vh;
  }

  .service-title {
    margin-left: 3vh;
    font-size: 28px;
  }

  .accordion-bottom-text {
    padding-left: 10vh;
    padding-right: 10vh;
  }

  .main-image {
    width: 30vw;
    height: 30vw;
    min-height: 30vw;
  }

  .main-image.fifth {
    width: 19vw;
    height: 22vw;
    min-height: 22vw;
    left: -51vw;
  }

  .main-image.first {
    width: 19vw;
    height: 22vw;
    min-height: 22vw;
  }

  .main-image.third {
    width: 19vw;
    height: 22vw;
    min-height: 22vw;
    top: 9.8vh;
  }

  .main-image.sixth {
    width: 19vw;
    height: 22vw;
    min-height: 22vw;
    left: -10vw;
  }

  .main-image.fourth {
    width: 19vw;
    height: 22vw;
    min-height: 22vw;
    margin-top: -61vw;
  }

  .main-image.second {
    width: 19vw;
    height: 22vw;
    min-height: 22vw;
  }

  .hero-main-title {
    letter-spacing: -.5rem;
  }

  .hero-content {
    padding-top: 4.4rem;
    padding-bottom: 20vh;
  }

  .hero-text-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding-top: 0;
  }

  .team-name-tag {
    font-size: 14px;
    right: -26%;
  }

  .team-name-tag._05 {
    right: -26%;
  }

  .div-block {
    align-self: auto;
    width: 100%;
  }

  .heading_h2 {
    text-align: center;
    line-height: 1em;
  }

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

  .footer-section {
    height: 65vh;
  }

  .grid-3 {
    flex-flow: column;
    display: flex;
  }

  .grid_6-col {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 1fr;
  }

  .footer_wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-4 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .div-block-13 {
    display: none;
  }

  .div-block-6 {
    flex-flow: column;
  }

  .mouse-scroll-hero {
    margin-bottom: 0;
  }

  .grid {
    margin-top: 10%;
    display: flex;
  }

  .product-link {
    grid-column-gap: 1rem;
    grid-row-gap: 1.5rem;
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .main-wrapper {
    min-height: auto;
  }

  .product-content {
    flex-wrap: wrap;
    padding-right: 0;
  }

  .margin-60px {
    margin-left: 5%;
    margin-right: 5%;
  }

  .product-image {
    opacity: 1;
    flex: none;
    width: 27%;
    position: relative;
  }

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

  .faq-seciton-grid {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .plus-icon {
    margin-left: 10px;
  }

  .heading-11 {
    text-align: center;
    font-size: 2.3rem;
  }

  .section-5 {
    padding-left: 15%;
    padding-right: 15%;
  }
}

@media screen and (max-width: 767px) {
  body {
    --color--second-color: #000;
    --font--primary-font: Inter, sans-serif;
    --colors--fourth-color: white;
    --page-margin--margin-15px: 15px;
    --line-height--page-line-height: 1.1;
    --font-weight--500: 500;
    --font--h1: 3.2rem;
    --font--h2: 2rem;
    --font--h3: 1.7rem;
    --font--h4: 1.4rem;
    --font--h5: 1rem;
    --font--h6: .8rem;
    --page-margin--margin-20px: 20px;
    --line-height--paragraph-line-height: 1.3;
    --colors--second-color: #f5f5f5;
    --button--button-color: white;
    --font-weight--400: 400;
    --colors--first-color: black;
    --page-container--width: 100%;
    --page-container--container: 95%;
    --color--first-color: white;
    --page-margin--margin-60px: 60px;
    --font--second-font: "Playfair Display", sans-serif;
    --page-margin--margin-30px: 30px;
    --backdrop-filter--blur-color: #f8f8f31a;
    --backdrop-filter--backdrop-size: 40px;
    --page-margin--margin-50px: 50px;
    --button--font-size: 14px;
    --button--nav-text: 1.1rem;
    --page-margin--margin-10px: 10px;
    --font--work-title: 1.2rem;
    --page-margin--margin-100px: 100px;
    --font-weight--300: 300;
    --button--cta-title: 24vw;
    --page-margin--margin-80px: 80px;
    --font-weight--700: 700;
    --font-weight--600: 600;
    --colors--third-color: #ffffffb3;
    --button--round-corners: 3rem;
    --button--circle-round-corners: 10rem;
    --backdrop-filter--backdrop-size-second: 15px;
    --page-container--round-corners: .4rem;
    --page-margin--margin-5px: 5px;
    --page-margin--margin-40px: 40px;
    --page-margin--margin-70px: 70px;
    --page-margin--margin-90px: 90px;
    --page-margin--margin-150px: 100px;
    --page-margin--margin-200px: 100px;
    --section--padding-top-bottom: 60px;
    --section--padding-left-right: 2%;
    --font-weight--800: 800;
  }

  .section {
    padding-left: 2%;
    padding-right: 2%;
  }

  .section.with-work-page {
    padding-top: 39px;
  }

  .display-1.second {
    font-size: 2rem;
  }

  .display-1.second._5rem {
    font-size: 3.2rem;
  }

  .project-circle {
    width: 90px;
    height: 90px;
  }

  .faq-item-top {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    grid-template-columns: 1fr auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .utility-page-wrap {
    padding-top: 175px;
    padding-bottom: 155px;
  }

  .navigation-wrapper-main {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-button {
    padding-right: 0;
  }

  .navigation-link.for-footer {
    justify-content: center;
    align-items: flex-start;
  }

  .top-hero {
    padding-top: 150px;
  }

  .top-hero.for-inner {
    padding-top: 110px;
  }

  .top-hero.main {
    padding-bottom: 30px;
  }

  .info-text {
    grid-row-gap: 0px;
  }

  .work-wrapper {
    aspect-ratio: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .top-logo {
    height: 31vh;
    min-height: 300px;
  }

  .main-image.sixth {
    margin-bottom: 12vw;
    top: -1.4vh;
  }

  .hero-text-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .image-wrap.for-instagram {
    height: auto;
  }

  .team-name-tag._02 {
    right: -28%;
  }

  .team-name-tag._04 {
    left: -34%;
  }

  .team-name-tag._05 {
    right: -36%;
  }

  .footer {
    padding-top: 70px;
    padding-bottom: 15px;
  }

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

  .grid_2-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid_2-col.gap-small {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .heading_h2 {
    text-align: center;
    line-height: 1.2em;
  }

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

  .header {
    margin-bottom: 2rem;
  }

  .grid_6-col {
    grid-template-columns: minmax(0, 1fr) 1fr;
  }

  .footer_bottom {
    text-align: center;
    flex-flow: column;
  }

  .div-block-13 {
    display: none;
  }

  .div-block-6 {
    flex-flow: column;
  }

  .mouse-scroll-hero {
    margin-bottom: 0;
  }

  .heading {
    font-size: 3.4rem;
    line-height: 3.6rem;
  }

  .grid {
    flex-flow: column;
    margin-top: 20%;
    display: block;
  }

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

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

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

  .margin-60px {
    margin-left: 0%;
    margin-right: 0%;
  }

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

  .div-block-14 {
    margin-top: -77px;
  }

  .faq-question-text {
    font-size: 28px;
  }

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

  .faq-wrapper, .faq-wrapper-last {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-4 {
    flex-flow: column;
    display: flex;
  }

  .div-block-16 {
    justify-content: center;
    align-items: center;
  }

  .section-5 {
    padding-left: 10%;
    padding-right: 10%;
  }
}

@media screen and (max-width: 479px) {
  body {
    --color--second-color: #000;
    --font--primary-font: Inter, sans-serif;
    --colors--fourth-color: white;
    --page-margin--margin-15px: 15px;
    --line-height--page-line-height: 1.1;
    --font-weight--500: 500;
    --font--h1: 1.9rem;
    --font--h2: 1.9rem;
    --font--h3: 1.1rem;
    --font--h4: 1.4rem;
    --font--h5: 1rem;
    --font--h6: .8rem;
    --page-margin--margin-20px: 20px;
    --line-height--paragraph-line-height: 1.3;
    --colors--second-color: #f5f5f5;
    --button--button-color: white;
    --font-weight--400: 400;
    --colors--first-color: black;
    --page-container--width: 100%;
    --page-container--container: 95%;
    --color--first-color: white;
    --page-margin--margin-60px: 60px;
    --font--second-font: "Playfair Display", sans-serif;
    --page-margin--margin-30px: 30px;
    --backdrop-filter--blur-color: #f8f8f31a;
    --backdrop-filter--backdrop-size: 40px;
    --page-margin--margin-50px: 50px;
    --button--font-size: 14px;
    --button--nav-text: 1.1rem;
    --page-margin--margin-10px: 10px;
    --font--work-title: 1.1rem;
    --page-margin--margin-100px: 100px;
    --font-weight--300: 300;
    --button--cta-title: 24vw;
    --page-margin--margin-80px: 80px;
    --font-weight--700: 700;
    --font-weight--600: 600;
    --colors--third-color: #ffffffb3;
    --button--round-corners: 3rem;
    --button--circle-round-corners: 10rem;
    --backdrop-filter--backdrop-size-second: 15px;
    --page-container--round-corners: .4rem;
    --page-margin--margin-5px: 5px;
    --page-margin--margin-40px: 40px;
    --page-margin--margin-70px: 70px;
    --page-margin--margin-90px: 90px;
    --page-margin--margin-150px: 100px;
    --page-margin--margin-200px: 100px;
    --section--padding-top-bottom: 60px;
    --section--padding-left-right: 2%;
    --font-weight--800: 800;
  }

  .section {
    padding-bottom: 20px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .section.with-work-page {
    padding-top: 14px;
    padding-bottom: 0;
  }

  .section.with-utility {
    padding-top: 80px;
  }

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

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

  .display-1.second {
    font-size: 1.6rem;
  }

  .display-1.second._5rem {
    font-size: 1.9rem;
  }

  .display-1.second._7rem {
    font-size: 4rem;
  }

  .display-1.second._1-7-rem {
    letter-spacing: -.01rem;
  }

  .margin-60.make-30 {
    margin-top: 30px;
  }

  .project-circle {
    width: 70px;
    height: 70px;
  }

  .hero_pricing-link {
    width: 100%;
  }

  .utility-page-wrap {
    padding-top: 111px;
    padding-bottom: 54px;
  }

  .utility-page-wrap._01 {
    padding-bottom: 326px;
  }

  .input-first {
    min-height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .input-first::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .color-block {
    width: 100%;
    height: 55px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .color-block-parent {
    width: 100%;
    margin-right: 3%;
  }

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

  .subhead {
    font-size: 16px;
  }

  .licensing-title {
    font-size: 29px;
  }

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

  .part-2 {
    order: -1;
  }

  .navlinks {
    font-size: 50px;
  }

  .navigation-content {
    grid-template-columns: .5fr 1fr;
    justify-content: space-between;
    padding-top: 13px;
  }

  .last-item {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .menu-button {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 0;
  }

  .navigation-link.for-footer {
    font-size: 1.2rem;
  }

  .navigation-link.for-footer.gray-color {
    font-size: 1rem;
  }

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

  .top-hero.for-inner {
    padding-top: 89px;
  }

  .work-wrapper-first {
    justify-content: center;
  }

  .subhead-main, .subhead-main.for-footer-title {
    font-size: 15px;
  }

  .case-sticky {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .photo-author.second {
    width: 70px;
    height: 70px;
  }

  .smaller {
    letter-spacing: -.01rem;
  }

  .work-title.hide {
    display: none;
  }

  .work-title-wrapper {
    grid-row-gap: 5px;
    flex-flow: column;
    width: 100%;
    bottom: 17px;
    left: 0;
  }

  .project-card-thumbnail-wrapper {
    width: 82%;
  }

  .work-wrapper {
    padding-top: 29px;
    padding-bottom: 79px;
  }

  .margin-100.make-50 {
    margin-top: 50px;
  }

  .testimonials-card {
    grid-row-gap: 50px;
  }

  .part-top {
    flex-flow: column;
  }

  .logo-white {
    width: 60px;
  }

  .button-flex {
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .top-logo {
    height: 25vh;
    min-height: 200px;
  }

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

  .service-title {
    margin-left: 0;
    font-size: 22px;
  }

  .accortion-button {
    width: 3vh;
    height: 3vh;
  }

  .accordion-bottom-text {
    padding-left: 0;
    padding-right: 1vh;
  }

  .p-accortion {
    letter-spacing: -.01px;
    font-size: 1.1rem;
  }

  .hero-interaction {
    margin-top: 92vh;
  }

  .main-image {
    width: 40vw;
    height: 40vw;
    min-height: 40vw;
  }

  .main-image.fifth {
    width: 37vw;
    height: 40vw;
    min-height: 40vw;
    top: 141px;
  }

  .main-image.first {
    width: 37vw;
    height: 40vw;
    min-height: 40vw;
    margin-top: -4vw;
    left: -53vw;
  }

  .main-image.third {
    width: 40vw;
    height: 40vw;
    min-height: 40vw;
    display: none;
    top: 33.8vh;
    left: -4.1vw;
  }

  .main-image.sixth {
    width: 40vw;
    height: 40vw;
    min-height: 40vw;
    margin-bottom: -62vw;
    display: none;
    top: -19.5vh;
    left: -4vw;
  }

  .main-image.eight, .main-image.seven {
    display: none;
  }

  .main-image.fourth {
    width: 37vw;
    height: 40vw;
    min-height: 40vw;
    margin-top: 48vw;
    left: 54.5vw;
  }

  .main-image.second {
    width: 37vw;
    height: 40vw;
    min-height: 40vw;
    top: -8vh;
  }

  .hero-main-title {
    letter-spacing: -.1rem;
  }

  .hero-content {
    padding-bottom: 14vh;
  }

  .hero-images.right-slide {
    height: 50vh;
    max-height: 50vh;
  }

  .hero-images.left {
    height: 70vh;
    max-height: 70vh;
  }

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

  .image-wrap {
    aspect-ratio: 1;
  }

  .button-icon-main {
    width: 32px;
    height: 32px;
    inset: auto 5px 5px auto;
  }

  .buton-icon-svg {
    width: 13px;
  }

  .team-name-tag._04 {
    top: 66%;
    left: -9%;
  }

  .footer {
    padding-top: 20px;
  }

  .line-divider {
    margin-top: 30px;
  }

  .navigation-grid {
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .navigation-grid._1-column {
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .navigation-grid._2-column {
    flex-flow: column;
    grid-auto-flow: column;
    justify-items: start;
    display: flex;
  }

  .margin-80.make-40 {
    margin-top: 40px;
  }

  .social-content {
    display: none;
  }

  .social-content.left {
    display: flex;
  }

  .heading_h2 {
    text-align: center;
    line-height: 1.1em;
  }

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

  .eyebrow {
    font-size: .6rem;
  }

  .button-2 {
    white-space: nowrap;
  }

  .footer-section {
    height: 75vh;
  }

  .grid_6-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid_6-col.gap-medium {
    flex-flow: column;
    display: flex;
  }

  .footer_icon-group {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .paragraph_xlarge.margin-bottom_none.text_all-caps {
    font-size: 1.2rem;
  }

  .logo {
    color: inherit;
  }

  .footer_bottom.margin-top_medium {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: 1rem;
  }

  .nav-menu-2 {
    background-color: #101010;
  }

  .icon-2 {
    color: #e0e0e0;
  }

  .menu-button-2.w--open {
    background-color: #101010;
  }

  .nav-link:hover {
    background-color: #888;
  }

  .redbutton-nav {
    font-size: 13px;
    display: none;
  }

  .section-4 {
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
  }

  .div-block-13 {
    display: none;
  }

  .div-block-6 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-section {
    background-image: linear-gradient(#fff0, #000);
    justify-content: center;
    align-items: flex-end;
    margin-top: 10vh;
    padding-bottom: 5vh;
  }

  .mouse_wrapper {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-left: auto;
    display: block;
  }

  .grey-button {
    font-size: 13px;
  }

  .mouse-scroll-hero {
    margin-bottom: 0;
  }

  .redbutton {
    font-size: 13px;
    display: block;
  }

  .heading {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    justify-content: flex-start;
    margin-top: 10%;
    display: flex;
  }

  .text-block-2 {
    width: 90%;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .service-section {
    height: auto;
  }

  .grid-2 {
    flex-flow: column;
    display: flex;
  }

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

  .heading-3 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .product-link {
    flex-direction: column;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .section_home-header {
    height: 90vh;
    position: relative;
  }

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

  .product-content {
    display: flex;
  }

  .product-number {
    color: #fff;
    display: none;
  }

  .product-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.2rem;
  }

  .product-title:hover {
    color: #fff;
  }

  .section_work-list {
    display: none;
  }

  .work-list_infos-content {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .presta-section {
    display: none;
  }

  .work-list_infos {
    background-color: #000;
    order: -1;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
    inset: 0% 0% auto;
  }

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

  .margin-60px {
    margin-left: 0%;
    margin-right: 0%;
  }

  .product-image {
    width: 100%;
    display: none;
  }

  .mouse-center_wrapper {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    display: none;
  }

  .div-block-14 {
    margin-top: 0;
  }

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

  .faq-question-text {
    font-size: 24px;
    line-height: 120%;
  }

  .faq-section {
    margin-left: 5%;
    margin-right: 5%;
    padding: 60px 10px 40px;
  }

  .faq-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .plus-line-animated {
    width: 20px;
  }

  .faq-wrapper-last {
    padding-left: 0;
    padding-right: 0;
  }

  .text-align_center {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .button-black {
    white-space: nowrap;
    padding-left: 1em;
    padding-right: 1em;
    font-size: .9rem;
  }

  .background-video-3 {
    display: flex;
  }

  .div-block-15 {
    display: none;
  }

  .section-5 {
    padding-left: 10%;
    padding-right: 10%;
  }
}

#w-node-d79fa38c-8ecb-a176-9278-ba6c01f7913e-47e2284b {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-d79fa38c-8ecb-a176-9278-ba6c01f7913f-47e2284b {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c7246924-f2dd-d497-dee9-b395cf33d705-47e2284b, #w-node-e94c8b43-074d-35bb-b2c2-a186189c42ed-47e2284b, #w-node-_7ae32c54-9af2-5905-60ee-b41b76b10b4e-47e2284b, #w-node-_7a650d02-fb61-12b4-3eee-50da4398063f-47e2284b, #w-node-eac2d97a-7ecd-474d-aa6e-8253836865be-47e2284b {
  place-self: center end;
}

#w-node-_80dc4fb4-eb73-cdbd-2061-747a50a99ebc-47e2284b, #w-node-_80dc4fb4-eb73-cdbd-2061-747a50a99edd-47e2284b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bcffb4d2-7c0e-989b-281f-8a6433463903-8b169251.w-node-_80dc4fb4-eb73-cdbd-2061-747a50a99ee2-47e2284b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_80dc4fb4-eb73-cdbd-2061-747a50a99ee9-47e2284b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_80dc4fb4-eb73-cdbd-2061-747a50a99f01-47e2284b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: stretch;
}

#w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cd0-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41d99-9bf41d89, #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cd4-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41d9d-9bf41d89, #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cd8-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41da1-9bf41d89, #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cdc-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41da5-9bf41d89 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70ce0-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41da9-9bf41d89, #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70ce4-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41dad-9bf41d89 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_108479f3-51cb-f5aa-bf2d-46f00708e4ac-fffe5773 {
  place-self: auto;
}

#w-node-c01693d0-eaf0-f634-ad9b-1611bce2f47c-fffe5773 {
  grid-area: Area;
}

#w-node-de913bda-f919-f0ec-13c8-e964786b30e5-fffe5773 {
  justify-self: stretch;
}

#w-node-_44ed6ab9-4c4e-a35a-ae4b-dbd67b90ce7a-7b90ce77.w-node-e1c93a0f-5c8f-f337-903d-24e7331d5bdf-fffe5773 {
  grid-area: 2 / 2 / 4 / 5;
}

#w-node-_97e171e8-8db0-a8e7-c8bc-c49948914313-48914311, #w-node-_97e171e8-8db0-a8e7-c8bc-c49948914334-48914311 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bcffb4d2-7c0e-989b-281f-8a6433463903-8b169251.w-node-_97e171e8-8db0-a8e7-c8bc-c49948914339-48914311 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_97e171e8-8db0-a8e7-c8bc-c49948914340-48914311 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_97e171e8-8db0-a8e7-c8bc-c49948914358-48914311 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: stretch;
}

@media screen and (min-width: 1920px) {
  #w-node-_108479f3-51cb-f5aa-bf2d-46f00708e4ac-fffe5773 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
  }
}

@media screen and (max-width: 991px) {
  #w-node-bcffb4d2-7c0e-989b-281f-8a6433463903-8b169251.w-node-_80dc4fb4-eb73-cdbd-2061-747a50a99ee2-47e2284b {
    grid-column: span 2 / span 2;
    justify-self: start;
  }

  #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cc7-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41d8c-9bf41d89 {
    order: -9999;
  }

  #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cd0-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41d99-9bf41d89, #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cd4-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41d9d-9bf41d89, #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cd8-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41da1-9bf41d89, #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cdc-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41da5-9bf41d89 {
    grid-column: span 2 / span 2;
  }

  #w-node-_108479f3-51cb-f5aa-bf2d-46f00708e4bd-fffe5773 {
    align-self: center;
  }

  #w-node-_44ed6ab9-4c4e-a35a-ae4b-dbd67b90ce7a-7b90ce77.w-node-e1c93a0f-5c8f-f337-903d-24e7331d5bdf-fffe5773 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-bcffb4d2-7c0e-989b-281f-8a6433463903-8b169251.w-node-_97e171e8-8db0-a8e7-c8bc-c49948914339-48914311 {
    grid-column: span 2 / span 2;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cd0-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41d99-9bf41d89, #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70cd8-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41da1-9bf41d89 {
    grid-column: span 2 / span 2;
  }

  #w-node-_2ff037a4-6a55-0a42-a7e7-331f70a70ce4-523dbcd4.w-node-_49510184-456e-554f-6b47-48089bf41dad-9bf41d89 {
    justify-self: center;
  }
}


