*,
:after,
:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#cmplz-manage-consent {
  display: none;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

p,
address {
  margin: 0;
}

a {
  color: #000000;
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #000000;
  background-color: #f0eceb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

main {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 6rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}

.site-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}

.site-wrapper::before {
  content: "";
  height: 100%;
  width: 3rem;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  border-right: 1px solid #2b2b28;
  transform: translateZ(0);
  will-change: transform;
}

.site-wrapper::after {
  content: "";
  height: 100%;
  width: 3rem;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  border-left: 1px solid #2b2b28;
  transform: translateZ(0);
  will-change: transform;
}

.highlighted {
  width: max-content;
  height: max-content;
  border-radius: 0.6rem;
  background-color: #ffffff;
  padding: 0.05rem 0.4rem;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.highlighted:hover {
  background-color: transparent;
}

@media screen and (max-width: 1024px) {
  main {
    padding: 0 3rem;
  }
  .site-wrapper::before, .site-wrapper::after {
    width: 1.5rem;
  }
}
@font-face {
  font-family: "NT Bau";
  src: url("../fonts/NTBau-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NT Bau";
  src: url("../fonts/NTBau-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NT Bau Mono";
  src: url("../fonts/NTBau_Mono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.site-header {
  width: calc(100% - 6rem);
  max-width: calc(1920px - 6rem);
  margin: 0 auto;
  overflow: hidden;
}
.site-header .header-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .site-header .header-container {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.site-header .header-container .logo-header {
  grid-column: 1/2;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: fixed;
  top: 3rem;
  left: 3rem;
  z-index: 9996;
  overflow: hidden;
}
.site-header .header-container .logo-header .logo-sign {
  width: 7.23rem;
  height: 7.23rem;
  object-fit: cover;
  scale: 0.37;
  transform-origin: top left;
  transition: scale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .header-container .logo-header .logo-text {
  width: 7.24rem;
  height: 2.29rem;
  object-fit: cover;
  transform: translateX(calc(-100% - 3rem));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .header-container .logo-header:hover .logo-sign {
  scale: 1;
}
.site-header .header-container .logo-header:hover .logo-text {
  transform: translateX(0);
}
.site-header .header-container .main-navigation {
  grid-column: 7/13;
  position: fixed;
  top: 3rem;
  right: 6rem;
  width: calc((100% - 12rem) / 2 - 10px);
  z-index: 9998;
}
.site-header .header-container .main-navigation .main-wrapper {
  border-radius: 0.6rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.5019607843);
  backdrop-filter: blur(20px);
}
.site-header .header-container .main-navigation .main-wrapper .primary-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0.4rem;
}
.site-header .header-container .main-navigation .main-wrapper .primary-menu .menu-item {
  border-radius: 0.6rem;
  padding: 0.4rem 1.2rem;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .header-container .main-navigation .main-wrapper .primary-menu .menu-item:hover {
  background-color: #2b2b28;
  color: #f0eceb;
}
.site-header .header-container .main-navigation .main-wrapper .primary-menu .menu-item a {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  display: block;
}
.site-header .header-container .main-navigation .main-wrapper .primary-menu .current-menu-item {
  background-color: #f0eceb;
}
.site-header .header-container .mobile-navigation {
  display: none;
}

.mobile-menu {
  display: none;
}

@media screen and (min-width: 1921px) {
  .site-header .header-container .logo-header {
    left: calc(50% - 960px + 3rem);
  }
  .site-header .header-container .main-navigation {
    right: calc(50% - 960px + 6rem);
    width: calc((1920px - 12rem) / 2 - 10px);
  }
}
@media screen and (max-width: 1024px) {
  .site-header .header-container .logo-header {
    display: flex;
    left: 1.5rem;
    padding-left: 1.5rem;
  }
  .site-header .header-container .main-navigation {
    right: 3rem;
    width: calc((100% + 25rem) / 2 - 10px);
  }
}
@media screen and (max-width: 768px) {
  .site-header .header-container .logo-header {
    display: none;
  }
  .site-header .header-container .main-navigation {
    display: none;
  }
  .site-header .header-container .mobile-navigation {
    display: block;
    position: fixed;
    top: 1.5rem;
    right: 3rem;
    z-index: 9999;
    cursor: pointer;
    padding: 0.4rem 1.28rem;
    border-radius: 0.6rem;
    background-color: #ffffff;
    border: unset;
    outline: unset;
    font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
    font-weight: 500;
    font-size: 1rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    color: #2b2b28;
  }
  body::before,
  body::after {
    content: "";
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 9999;
    top: 0;
    background: #f0eceb;
    will-change: transform;
  }
  body::before {
    left: -50%;
    border-right: 1px solid #2b2b28;
  }
  body::after {
    right: -50%;
    border-left: 1px solid #2b2b28;
  }
  body:not([data-menu-state=initial])::before,
  body:not([data-menu-state=initial])::after {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body[data-menu-state=closing]::before {
    transform: translateX(calc(50vw + 0.5px));
  }
  body[data-menu-state=closing]::after {
    transform: translateX(calc(-50vw - 0.5px));
  }
  body[data-menu-state=open]::before {
    transform: translateX(1.5rem);
  }
  body[data-menu-state=open]::after {
    transform: translateX(-1.5rem);
  }
  body[data-menu-state=open] .mobile-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0s ease, visibility 0s;
  }
  body[data-menu-state=closing] .mobile-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.1s ease 0.3s, visibility 0s 0.6s;
  }
  html:has(body[data-menu-state=open]),
  html:has(body[data-menu-state=closing]) {
    overflow: hidden;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #f0eceb;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease, visibility 0s 0.3s;
  }
  .mobile-menu .mobile-menu-logo {
    padding: 1.5rem 3rem;
  }
  .mobile-menu .mobile-menu-logo .logo-dark {
    width: 4.34rem;
    height: 6rem;
    object-fit: cover;
  }
  .mobile-menu .primary-menu {
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-self: end;
  }
  .mobile-menu .primary-menu .menu-item {
    background: #ffffff;
    border-radius: 0.6rem;
  }
  .mobile-menu .primary-menu .menu-item a {
    display: block;
    padding: 2.5rem 1rem 1rem;
    font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: -0.03em;
    color: #2b2b28;
  }
  .mobile-menu .primary-menu .current-menu-item {
    background-color: #2b2b28;
  }
  .mobile-menu .primary-menu .current-menu-item a {
    color: #ffffff;
  }
}
.site-footer {
  height: 100vh;
  height: 100dvh;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 3rem;
}
.site-footer .footer-container {
  height: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-footer .footer-container .footer-upper {
  margin-left: -3rem;
}
.site-footer .footer-container .footer-upper .logo-footer {
  width: 10.23rem;
  height: 10rem;
  object-fit: cover;
  position: relative;
  z-index: 9999;
  padding-left: 3rem;
}
.site-footer .footer-container .footer-middle .text-upper {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 0;
}
.site-footer .footer-container .footer-middle .text-lower {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 0;
}
.site-footer .footer-container .footer-lower {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}
.site-footer .footer-container .footer-lower .footer-info {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .site-footer .footer-container .footer-lower .footer-info {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact {
  grid-column: 1/4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(7, auto);
  column-gap: 2rem;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-country--1 {
  grid-column: 1;
  grid-row: 2;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-number--1 {
  grid-column: 2/4;
  grid-row: 2;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-country--2 {
  grid-column: 1;
  grid-row: 3;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-number--2 {
  grid-column: 2/4;
  grid-row: 3;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-country--3 {
  grid-column: 1;
  grid-row: 4;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-number--3 {
  grid-column: 2/4;
  grid-row: 4;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-country--4 {
  grid-column: 1;
  grid-row: 5;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-number--4 {
  grid-column: 2/4;
  grid-row: 5;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-country--5 {
  grid-column: 1;
  grid-row: 6;
}
.site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-number--5 {
  grid-column: 2/4;
  grid-row: 6;
}
.site-footer .footer-container .footer-lower .footer-info .email-container {
  grid-column: 4/7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.site-footer .footer-container .footer-lower .footer-info .email-container .email-txt {
  grid-column: 1/1;
}
.site-footer .footer-container .footer-lower .footer-info .email-container .email {
  grid-column: 2/4;
  font-style: normal;
}
.site-footer .footer-container .footer-lower .footer-info .meta-container {
  grid-column: 7/10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.site-footer .footer-container .footer-lower .footer-info .meta-container .links-txt {
  grid-column: 1/1;
  grid-row: 1/1;
}
.site-footer .footer-container .footer-lower .footer-info .meta-container .policies-txt {
  grid-column: 1/1;
  grid-row: 3;
  margin-top: 2rem;
}
.site-footer .footer-container .footer-lower .footer-info .meta-container .instagram-link {
  grid-column: 2/4;
  grid-row: 1/1;
}
.site-footer .footer-container .footer-lower .footer-info .meta-container .linkedin-link {
  grid-column: 2/4;
  grid-row: 2/2;
}
.site-footer .footer-container .footer-lower .footer-info .meta-container .terms-and-conditions {
  grid-column: 2/4;
  grid-row: 3;
  margin-top: 2rem;
}
.site-footer .footer-container .footer-lower .footer-info .meta-container .privacy-policy {
  grid-column: 2/4;
  grid-row: 4;
}
.site-footer .footer-container .footer-lower .footer-info .copyright {
  grid-column: 12/13;
  text-align: right;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #2b2b28;
}
.site-footer .footer-container .footer-lower .footer-countries {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .site-footer .footer-container .footer-lower .footer-countries {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.site-footer .footer-container .footer-lower .footer-countries .countries {
  grid-column: 1/7;
  display: flex;
  flex-direction: row;
  gap: 2vw;
}
.site-footer .footer-container .footer-lower .footer-countries .countries p {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.site-footer .footer-container .footer-lower .footer-countries .copyright.mobile {
  display: none;
}
.site-footer .footer-container .footer-lower .footer-countries .authorized-agent {
  grid-column: 7/11;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.site-footer .footer-container .footer-lower .footer-countries .credit {
  grid-column: 11/13;
  text-align: right;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #2b2b28;
  opacity: 0.3;
}

@media screen and (max-width: 1536px) {
  .site-footer .footer-container .footer-lower .footer-countries .countries {
    grid-column: 1/7;
    display: flex;
    flex-direction: row;
    gap: 2.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .site-footer .footer-container {
    padding: 3rem 0;
  }
  .site-footer .footer-container .footer-lower .footer-info .footer-contact {
    grid-column: 1/5;
  }
  .site-footer .footer-container .footer-lower .footer-info .email-container {
    grid-column: 5/9;
  }
  .site-footer .footer-container .footer-lower .footer-info .meta-container {
    grid-column: 9/13;
  }
  .site-footer .footer-container .footer-lower .footer-info .copyright {
    display: none;
  }
  .site-footer .footer-container .footer-lower .footer-countries .countries {
    row-gap: 0.5rem;
    column-gap: 1.5rem;
    flex-wrap: wrap;
  }
  .site-footer .footer-container .footer-lower .footer-countries .authorized-agent {
    text-align: end;
    grid-column: 7/13;
  }
  .site-footer .footer-container .footer-lower .footer-countries .copyright.mobile {
    display: block;
    grid-row: 2;
    grid-column: 1/7;
    margin-top: 0.8rem;
    text-align: left;
    font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #2b2b28;
  }
  .site-footer .footer-container .footer-lower .footer-countries .credit {
    grid-row: 2;
    grid-column: 7/13;
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .footer-container {
    padding: 1.5rem 0;
  }
  .site-footer .footer-container .footer-upper .logo-footer {
    width: 7.34rem;
    height: 6rem;
    z-index: 997;
  }
  .site-footer .footer-container .footer-middle .text-lower {
    font-size: 3.6rem;
    line-height: 3.6rem;
  }
  .site-footer .footer-container .footer-lower .footer-info {
    row-gap: 2rem;
  }
  .site-footer .footer-container .footer-lower .footer-info .footer-contact {
    grid-column: 1/7;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
  .site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-country {
    grid-column: 1/3;
  }
  .site-footer .footer-container .footer-lower .footer-info .footer-contact .phone-number {
    grid-column: 3/6;
  }
  .site-footer .footer-container .footer-lower .footer-info .email-container {
    grid-column: 1/7;
    grid-row: 2/2;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
  .site-footer .footer-container .footer-lower .footer-info .email-container .email {
    grid-column: 3/6;
  }
  .site-footer .footer-container .footer-lower .footer-info .email-container .email-txt {
    grid-column: 1/3;
  }
  .site-footer .footer-container .footer-lower .footer-info .meta-container {
    grid-column: 1/7;
    grid-row: 3/3;
  }
  .site-footer .footer-container .footer-lower .footer-info .meta-container .social-links-container {
    grid-column: 1/7;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
  .site-footer .footer-container .footer-lower .footer-info .meta-container .social-links-container .links-txt {
    grid-column: 1/3;
  }
  .site-footer .footer-container .footer-lower .footer-info .meta-container .social-links-container .instagram-link,
  .site-footer .footer-container .footer-lower .footer-info .meta-container .social-links-container .linkedin-link {
    grid-column: 3/6;
  }
  .site-footer .footer-container .footer-lower .footer-countries {
    grid-template-rows: repeat(2, max-content);
    row-gap: 2rem;
  }
  .site-footer .footer-container .footer-lower .footer-countries .countries {
    grid-column: 1/7;
    grid-row: 1/1;
  }
  .site-footer .footer-container .footer-lower .footer-countries .authorized-agent {
    grid-column: 1/7;
    grid-row: 2/2;
    text-align: left;
  }
  .site-footer .footer-container .footer-lower .footer-countries .copyright.mobile {
    grid-row: 3;
  }
  .site-footer .footer-container .footer-lower .footer-countries .credit {
    grid-row: 3;
    grid-column: 1/7;
  }
}
.bespoke-page {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .bespoke-page {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.bespoke-page .explore-projects-container {
  padding-top: 5rem;
  grid-column: 1/13;
}
.bespoke-page .explore-projects-container .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 3.5rem;
}
.bespoke-page .explore-projects-container .projects-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .bespoke-page .explore-projects-container .projects-list {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.bespoke-page .explore-projects-container .projects-list .product-card-small-container {
  grid-column: span 3;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .bespoke-page {
    grid-column: 1/7;
  }
  .bespoke-page .explore-projects-container {
    grid-column: 1/7;
    padding: 6rem 0;
  }
  .bespoke-page .explore-projects-container .projects-list {
    row-gap: 4rem;
  }
}
.contact-page {
  grid-column: 1/13;
  padding: 3rem 0 6rem;
}
.contact-page .logo-container {
  display: block;
  width: 7.3rem;
  height: 10rem;
  position: relative;
  z-index: 10000;
}
.contact-page .logo-container img {
  height: 100%;
  width: 100%;
  display: block;
}
.contact-page .contact-countries-wrapper {
  padding-top: calc(100vh - 52.2rem - 9.8rem - 6rem);
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-page .contact-countries-wrapper {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.contact-page .contact-countries-wrapper {
  row-gap: 10rem;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .country-name {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
  color: #000000;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information,
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .address-information {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  column-gap: 2rem;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information .email-txt {
  grid-column: 1/1;
  grid-row: 1/1;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information .phone-txt {
  grid-column: 1/1;
  grid-row: 2/2;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information .email-address {
  grid-column: 2/4;
  grid-row: 1/1;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information .phone-upper {
  grid-column: 2/4;
  grid-row: 2/2;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information .phone-lower {
  grid-column: 2/4;
  grid-row: 3/3;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .address-information .address-txt {
  grid-column: 1/1;
}
.contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .address-information .address {
  grid-column: 2/4;
}
.contact-page .business-inquiries-wrapper {
  padding: 13rem 0 10rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.contact-page .business-inquiries-wrapper .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #000000;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-page .business-inquiries-wrapper .business-inquiries-information {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-text {
  grid-column: 1/6;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-text p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #000000;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact {
  grid-column: 8/11;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item:has(.label-mail) {
  grid-template-rows: repeat(3, 1fr);
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .label-name,
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .label-mail,
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .label-name,
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .label-phone {
  grid-column: 1/1;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .label-mail {
  grid-row: 1/1;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .label-phone {
  grid-row: 2/2;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-name,
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-mail,
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-phone,
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-address {
  grid-column: 2/4;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-mail {
  grid-row: 1/1;
  width: fit-content;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-phone.item-1 {
  grid-row: 2/2;
}
.contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-phone.item-2 {
  grid-row: 3/3;
}
.contact-page .two-cards-section {
  grid-column: 1/13;
  padding-top: 6rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-page .two-cards-section {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.contact-page .two-cards-section .product-card-medium-container {
  grid-column: span 6;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .contact-page .contact-countries-wrapper {
    padding-top: calc(100vh - 52.2rem - 9.8rem - 1rem);
    row-gap: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .contact-page .business-inquiries-wrapper .heading {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-page {
    grid-column: 1/7;
    padding: 1.5rem 0;
  }
  .contact-page .logo-container {
    width: 4.34rem;
    height: auto;
	z-index: 99;
  }
  .contact-page .contact-countries-wrapper {
    padding-top: 25vh;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }
  .contact-page .contact-countries-wrapper .country-contact-wrapper {
    gap: 2.5rem;
  }
  .contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper {
    gap: 2rem;
  }
  .contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
  .contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information .email-address,
  .contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information .phone-lower,
  .contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .contact-information .phone-upper {
    grid-column: 3/6;
  }
  .contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .address-information {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
  .contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .address-information .address-txt {
    grid-column: 1/3;
  }
  .contact-page .contact-countries-wrapper .country-contact-wrapper .contact-information-wrapper .address-information .address {
    grid-column: 3/6;
  }
  .contact-page .business-inquiries-wrapper .business-inquiries-information {
    row-gap: 6rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .contact-page .business-inquiries-wrapper .business-inquiries-information .heading {
    font-size: 3.6rem;
    line-height: 3.6rem;
    letter-spacing: -0.04em;
  }
  .contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-text p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
  .contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-name,
  .contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-mail,
  .contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-phone,
  .contact-page .business-inquiries-wrapper .business-inquiries-information .business-inquiries-contact .contact-item .value-address {
    grid-column: 3/6;
  }
  .contact-page .two-cards-section {
    grid-column: 1/7;
    row-gap: 2rem;
  }
}
.project-page {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .project-page {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.project-page .hero-full-width {
  height: 100vh;
  height: 100dvh;
  grid-column: 1/13;
  position: relative;
  z-index: 9997;
}
.project-page .hero-full-width:before {
  content: "";
  height: inherit;
  width: 3rem;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: -6rem;
  border-right: 1px solid #f0eceb;
}
.project-page .hero-full-width:after {
  content: "";
  height: inherit;
  width: 3rem;
  position: absolute;
  z-index: 9999;
  top: 0;
  right: -6rem;
  border-left: 1px solid #f0eceb;
}
.project-page .hero-full-width .logo-container {
  position: absolute;
  z-index: 9999;
  top: 3rem;
  left: 0;
}
.project-page .hero-full-width .logo-container img {
  width: 7.3rem;
  height: 10rem;
  object-fit: cover;
}
.project-page .hero-full-width .background-container {
  height: 100%;
  width: calc(100% + 12rem);
  margin-left: -6rem;
  position: absolute;
}
.project-page .hero-full-width .background-container img,
.project-page .hero-full-width .background-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.project-page .hero-full-width .content-container {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 3rem;
}
.project-page .hero-full-width .content-container .project-services {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.project-page .hero-full-width .content-container .project-services span {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #f0eceb;
}
.project-page .hero-full-width .content-container .project-services .arrow {
  font-size: 1.2rem;
}
.project-page .hero-full-width .content-container .project-heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #f0eceb;
  margin-bottom: 4.5rem;
}
.project-page .hero-full-width .content-container .project-overview {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #f0eceb;
  width: calc(41.6666666667% - 1rem);
}
.project-page .project-details-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .project-page .project-details-container {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.project-page .project-details-container {
  position: relative;
  margin-top: -50vh;
  grid-column: 1/13;
}
.project-page .project-details-container .left-container {
  grid-column: 1/6;
  margin-top: calc(50vh + 15rem);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.project-page .project-details-container .left-container:not(:has(.project-details-item)) {
  height: 60vh;
}
.project-page .project-details-container .left-container .project-details-item .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #2b2b28;
  margin-bottom: 2rem;
}
.project-page .project-details-container .left-container .project-details-item .description {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: -0.01em;
  color: #2b2b28;
}
.project-page .project-details-container .right-container {
  grid-column: 7/13;
  margin-top: auto;
  display: block;
  position: sticky;
  bottom: 3rem;
}
.project-page .project-details-container .right-container .heading-small {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000000;
}
.project-page .project-details-container .right-container .project-details-box {
  background-color: #ffffff;
  padding: 3.5rem 3rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.project-page .project-details-container .right-container .project-details-box .details-row {
  display: grid;
  grid-template-columns: 15rem 1fr;
  column-gap: 3rem;
}
.project-page .project-details-container .right-container .project-details-box .details-row .label {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000000;
}
.project-page .project-details-container .right-container .project-details-box .details-row .value {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #000000;
}
.project-page .carousel-section {
  padding: 8rem 0;
  grid-column: 1/13;
}
.project-page .carousel-section .carousel-heading {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000000;
}
.project-page .carousel-section .swiper {
  height: 70rem;
  width: calc(100% + 6rem);
  margin-left: -3rem;
}
.project-page .carousel-section .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
}
.project-page .carousel-section .swiper .swiper-slide p {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #ffffff;
  padding: 0 3rem 0.5rem 3rem;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  letter-spacing: 0;
  text-transform: uppercase;
}
.project-page .carousel-section .swiper .swiper-slide img,
.project-page .carousel-section .swiper .swiper-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-page .carousel-section .swiper .swiper-button-prev {
  top: 5rem;
  left: 3rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.6rem;
  background-color: #f0eceb;
  transition: background-color 0.15s ease-in-out;
  overflow: hidden;
}
.project-page .carousel-section .swiper .swiper-button-prev::after {
  content: "";
  height: 10px;
  width: 1.2rem;
  background-image: url(/wp-content/themes/LiftLine/assets/images/arrow-prev.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  transition: transform 0.2s ease-in-out;
}
.project-page .carousel-section .swiper .swiper-button-prev::before {
  content: "";
  height: 10px;
  width: 1.2rem;
  background-image: url(/wp-content/themes/LiftLine/assets/images/arrow-prev.svg);
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(315deg) brightness(105%) contrast(101%);
  transform: translateX(220%);
  transition: transform 0.2s ease-in-out;
}
.project-page .carousel-section .swiper .swiper-button-prev:hover {
  background-color: #2b2b28;
}
.project-page .carousel-section .swiper .swiper-button-prev:hover::after {
  transform: translateX(-170%);
}
.project-page .carousel-section .swiper .swiper-button-prev:hover::before {
  transform: translateX(50%);
}
.project-page .carousel-section .swiper .swiper-button-next {
  top: 5rem;
  left: 6.7rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.6rem;
  background-color: #f0eceb;
  transition: background-color 0.15s ease-in-out;
  overflow: hidden;
}
.project-page .carousel-section .swiper .swiper-button-next::after {
  content: "";
  height: 10px;
  width: 1.25rem;
  background-image: url(/wp-content/themes/LiftLine/assets/images/arrow-next.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  transition: transform 0.2s ease-in-out;
}
.project-page .carousel-section .swiper .swiper-button-next::before {
  content: "";
  height: 10px;
  width: 1.25rem;
  background-image: url(/wp-content/themes/LiftLine/assets/images/arrow-next.svg);
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(315deg) brightness(105%) contrast(101%);
  transform: translateX(-220%);
  transition: transform 0.2s ease-in-out;
}
.project-page .carousel-section .swiper .swiper-button-next:hover {
  background-color: #2b2b28;
}
.project-page .carousel-section .swiper .swiper-button-next:hover::after {
  transform: translateX(170%);
}
.project-page .carousel-section .swiper .swiper-button-next:hover::before {
  transform: translateX(50%);
}
.project-page .testimonial-section {
  grid-column: 1/10;
}
.project-page .related-projects-section {
  grid-column: 1/13;
  padding-top: 5rem;
}
.project-page .related-projects-section .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 3.5rem;
}
.project-page .related-projects-section .related-projects {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .project-page .related-projects-section .related-projects {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.project-page .related-projects-section .related-projects .product-card-small-container {
  grid-column: span 3;
  width: 100%;
}

@media screen and (min-width: 1921px) {
  .project-page .hero-full-width .background-container {
    margin-left: -6rem;
    height: 100%;
    width: 1920px;
  }
}
@media screen and (max-width: 1024px) {
  .project-page .hero-full-width::before {
    width: 1.5rem;
    left: -3rem;
  }
  .project-page .hero-full-width::after {
    width: 1.5rem;
    right: -3rem;
  }
  .project-page .hero-full-width .background-container {
    margin-left: -3rem;
    width: calc(100% + 6rem);
  }
  .project-page .hero-full-width .content-container .project-heading {
    font-size: 4rem;
    line-height: 4rem;
  }
  .project-page .project-details-container .left-container {
    margin-top: calc(50vh + 6rem);
  }
  .project-page .project-details-container .left-container:not(:has(.project-details-item)) {
    height: 40vh;
  }
  .project-page .project-details-container .right-container .project-details-box .details-row {
    gap: 0;
  }
  .project-page .carousel-section .swiper .swiper-button-prev {
    top: 3.7rem;
    left: 1.5rem;
  }
  .project-page .carousel-section .swiper .swiper-button-next {
    top: 3.7rem;
    left: 5.2rem;
  }
  .project-page .testimonial-section {
    padding: 6rem 0;
  }
  .project-page .related-projects-section .related-projects .product-card-small-container {
    grid-column: span 4;
  }
}
@media screen and (max-width: 768px) {
  main:has(.project-page) {
    overflow: hidden;
  }
  .project-page {
    grid-column: 1/7;
  }
  .project-page .hero-full-width {
    grid-column: 1/7;
  }
  .project-page .hero-full-width .logo-container {
    top: 1.5rem;
  }
  .project-page .hero-full-width .logo-container img {
    width: 4.34rem;
    height: 6rem;
  }
  .project-page .hero-full-width .content-container {
    height: 50vh;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  .project-page .hero-full-width .content-container .project-heading {
    font-size: 3.6rem;
    line-height: 3.6rem;
  }
  .project-page .hero-full-width .content-container .project-overview {
    width: 100%;
    margin-top: auto;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .project-page .project-details-container {
    grid-column: 1/7;
    margin-top: 5rem;
    position: unset;
    display: flex;
    flex-direction: column-reverse;
    gap: 8rem;
  }
  .project-page .project-details-container .left-container {
    grid-column: 1/7;
    margin-top: unset;
  }
  .project-page .project-details-container .left-container:not(:has(.project-details-item)) {
    height: unset;
  }
  .project-page .project-details-container .left-container .project-details-item .heading,
  .project-page .project-details-container .left-container .project-details-item .description {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .project-page .project-details-container .right-container .project-details-box {
    padding: 3rem 3rem;
    gap: 2rem;
  }
  .project-page .project-details-container .right-container .project-details-box .details-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .project-page .project-details-container .right-container .project-details-box .details-row .label {
    line-height: 1.4rem;
  }
  .project-page .project-details-container .right-container .project-details-box .details-row .value {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .project-page .carousel-section {
    grid-column: 1/7;
  }
  .project-page .carousel-section .swiper {
    overflow: visible;
    width: auto;
    height: 100%;
    max-height: 60vh;
    margin-left: 0;
  }
  .project-page .carousel-section .swiper .swiper-slide p {
    padding: 0.5rem 0 0;
    color: #2b2b28;
    line-height: 1.4rem;
    bottom: -0.2rem;
    transform: translateY(100%);
  }
  .project-page .carousel-section .swiper .swiper-button-prev {
    top: -1.7rem;
    left: calc(100% - 3.2rem - 0.5rem - 3.2rem);
    background-color: #ffffff;
  }
  .project-page .carousel-section .swiper .swiper-button-next {
    top: -1.7rem;
    left: calc(100% - 3.2rem);
    background-color: #ffffff;
  }
  .project-page .testimonial-section {
    grid-column: 1/7;
  }
  .project-page .related-projects-section {
    grid-column: 1/7;
    padding: 6rem 0;
  }
  .project-page .related-projects-section .heading {
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin-bottom: 2.5rem;
  }
  .project-page .related-projects-section .related-projects {
    row-gap: 4rem;
  }
  .project-page .related-projects-section .related-projects .product-card-small-container {
    grid-column: span 3;
    height: 100%;
    aspect-ratio: 1/1.8;
  }
}
.homepage {
  grid-column: 1/13;
}
.homepage .hero-full-width {
  height: 100vh;
  height: 100dvh;
  grid-column: 1/13;
  position: relative;
  z-index: 9997;
}
.homepage .hero-full-width:before {
  content: "";
  height: inherit;
  width: 3rem;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: -6rem;
  border-right: 1px solid #f0eceb;
}
.homepage .hero-full-width:after {
  content: "";
  height: inherit;
  width: 3rem;
  position: absolute;
  z-index: 9999;
  top: 0;
  right: -6rem;
  border-left: 1px solid #f0eceb;
}
.homepage .hero-full-width .logo-container {
  position: absolute;
  z-index: 9999;
  top: 3rem;
  left: 0;
}
.homepage .hero-full-width .logo-container img {
  width: 7.3rem;
  height: 10rem;
  object-fit: cover;
}
.homepage .hero-full-width .background-container {
  height: 100%;
  width: calc(100% + 12rem);
  margin-left: -6rem;
  position: absolute;
}
.homepage .hero-full-width .background-container img,
.homepage .hero-full-width .background-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.homepage .hero-full-width .content-container {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 3rem;
  height: 50vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .homepage .hero-full-width .content-container {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.homepage .hero-full-width .content-container {
  grid-template-rows: auto auto 1fr auto;
}
.homepage .hero-full-width .content-container .homepage-heading {
  grid-column: 1/7;
  grid-row: 1;
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #f0eceb;
  margin-bottom: 4.5rem;
}
.homepage .hero-full-width .content-container .overview {
  grid-column: 1/7;
  grid-row: 4;
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #f0eceb;
  margin-bottom: 2.5rem;
}
.homepage .hero-full-width .content-container .button-one-arrow {
  grid-column: 1/4;
  grid-row: 5;
  width: 100%;
}
.homepage .client-projects {
  position: relative;
  padding-top: 15rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .homepage .client-projects {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.homepage .client-projects {
  overflow: visible;
}
.homepage .client-projects .overview-boundary {
  grid-column: 4/10;
  height: 60vh;
  position: relative;
  pointer-events: none;
  z-index: 1;
}
.homepage .client-projects .overview-boundary .overview-sticky {
  position: sticky;
  top: 15vh;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  pointer-events: auto;
  z-index: 2;
}
.homepage .client-projects .overview-boundary .overview-sticky p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
  color: #2b2b28;
}
.homepage .client-projects .projects-list {
  grid-column: 1/13;
  padding-top: 5rem;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .homepage .client-projects .projects-list {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.homepage .client-projects .projects-list .product-card-small-container {
  grid-column: span 3;
  width: 100%;
  position: sticky;
  top: 50vh;
  z-index: 4;
}
.homepage .client-projects .projects-list > :nth-child(1) {
  margin-top: -20rem;
}
.homepage .client-projects .projects-list > :nth-child(2) {
  margin-top: 8rem;
}
.homepage .client-projects .projects-list > :nth-child(3) {
  margin-top: -5rem;
}
.homepage .sticky-wrapper {
  height: calc(100vh + 40rem);
  position: relative;
}
.homepage .sticky-wrapper .split-section {
  width: 100%;
  height: 100vh;
  margin: 25rem 0 8rem;
  position: sticky;
  top: 0;
}
.homepage .sticky-wrapper .split-section .wrapper {
  width: 100%;
  height: inherit;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .homepage .sticky-wrapper .split-section .wrapper {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.homepage .sticky-wrapper .split-section .wrapper {
  background-color: #ffffff;
}
.homepage .sticky-wrapper .split-section .wrapper .left-content {
  grid-column: 1/6;
  height: inherit;
  margin-left: -6rem;
  padding-left: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.homepage .sticky-wrapper .split-section .wrapper .left-content .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #2b2b28;
  margin-top: 46vh;
}
.homepage .sticky-wrapper .split-section .wrapper .left-content .content {
  width: 60%;
}
.homepage .sticky-wrapper .split-section .wrapper .left-content .content p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #2b2b28;
  margin-bottom: 2.5rem;
}
.homepage .sticky-wrapper .split-section .wrapper .left-content .content .button-one-arrow {
  width: calc(75% - 0.5rem);
  background: #f0eceb;
}
.homepage .sticky-wrapper .split-section .wrapper .left-content .content .button-one-arrow:hover {
  background: #2b2b28;
}
.homepage .sticky-wrapper .split-section .wrapper .right-content {
  grid-column: 6/13;
  width: calc(100% + 6rem);
  height: inherit;
}
.homepage .sticky-wrapper .split-section .wrapper .right-content img,
.homepage .sticky-wrapper .split-section .wrapper .right-content video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.homepage .about-section {
  width: 100%;
  padding: 15rem 0 30rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .homepage .about-section {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.homepage .about-section {
  grid-template-rows: auto auto;
}
.homepage .about-section .image-wrapper.mobile {
  display: none;
}
.homepage .about-section .heading {
  grid-column: 3/6;
  grid-row: 1;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.homepage .about-section .content-wrapper {
  grid-column: 1/12;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  column-gap: 2rem;
}
.homepage .about-section .content-wrapper .image-wrapper.desktop {
  grid-column: 1/3;
  border-radius: 0.6rem;
}
.homepage .about-section .content-wrapper .image-wrapper.desktop img,
.homepage .about-section .content-wrapper .image-wrapper.desktop video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0.6rem;
  background: rgba(0, 0, 0, 0.1019607843);
}
.homepage .about-section .content-wrapper .content {
  grid-column: 3/12;
}
.homepage .about-section .content-wrapper .content p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #2b2b28;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1536px) {
  .homepage .sticky-wrapper .split-section .wrapper .left-content .content {
    width: 80%;
  }
}
@media screen and (max-width: 1280px) {
  .homepage .about-section .heading {
    grid-column: 4/6;
  }
  .homepage .about-section .content-wrapper {
    grid-column: 1/13;
  }
  .homepage .about-section .content-wrapper .image-wrapper.desktop {
    grid-column: 1/4;
  }
  .homepage .about-section .content-wrapper .content {
    grid-column: 4/13;
  }
}
@media screen and (max-width: 1024px) {
  .homepage .hero-full-width::before {
    width: 1.5rem;
    left: -3rem;
  }
  .homepage .hero-full-width::after {
    width: 1.5rem;
    right: -3rem;
  }
  .homepage .hero-full-width .background-container {
    margin-left: -3rem;
    width: calc(100% + 6rem);
  }
  .homepage .hero-full-width .content-container .homepage-heading {
    font-size: 4rem;
    line-height: 4rem;
  }
  .homepage .hero-full-width .content-container .overview {
    grid-column: 1/8;
  }
  .homepage .hero-full-width .content-container .button-one-arrow {
    grid-column: 1/5;
  }
  .homepage .client-projects {
    padding-top: 10rem;
  }
  .homepage .client-projects .overview-boundary .overview-sticky {
    top: 10vh;
  }
  .homepage .sticky-wrapper {
    height: auto;
  }
  .homepage .sticky-wrapper .split-section {
    height: auto;
    margin: 15rem 0 8rem;
    position: unset;
  }
  .homepage .sticky-wrapper .split-section .wrapper {
    grid-template-rows: auto auto;
  }
  .homepage .sticky-wrapper .split-section .wrapper .left-content {
    grid-row: 2;
    grid-column: 1/13;
    height: auto;
    gap: 3rem;
    margin-left: -3rem;
    padding-left: 3rem;
    padding-top: 3rem;
    width: calc(100% + 6rem);
  }
  .homepage .sticky-wrapper .split-section .wrapper .left-content .heading {
    margin: 0;
    font-size: 3.6rem;
    line-height: 3.6rem;
  }
  .homepage .sticky-wrapper .split-section .wrapper .left-content .content {
    width: 50%;
  }
  .homepage .sticky-wrapper .split-section .wrapper .right-content {
    grid-row: 1;
    grid-column: 1/13;
    margin-left: -3rem;
    max-height: 60rem;
  }
  .homepage .about-section {
    padding: 10rem 0 15rem;
  }
  .homepage .about-section .content-wrapper {
    grid-template-columns: repeat(12, 1fr);
  }
  .homepage .about-section .content-wrapper .content p {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .homepage {
    grid-column: 1/7;
  }
  .homepage .hero-full-width .logo-container {
    top: 1.5rem;
  }
  .homepage .hero-full-width .logo-container img {
    width: 4.34rem;
    height: 6rem;
  }
  .homepage .hero-full-width .content-container .overview {
    grid-column: 1/7;
    max-width: 50rem;
  }
  .homepage .hero-full-width .content-container .button-one-arrow {
    grid-column: 1/7;
    max-width: 37rem;
  }
  .homepage .client-projects {
    padding-top: 4.5rem;
  }
  .homepage .client-projects .overview-boundary {
    grid-column: 1/7;
    height: auto;
  }
  .homepage .client-projects .overview-boundary .overview-sticky {
    position: unset;
  }
  .homepage .client-projects .overview-boundary .overview-sticky p {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
  .homepage .client-projects .projects-list {
    grid-column: 1/7;
    row-gap: 4rem;
  }
  .homepage .client-projects .projects-list > :nth-child(1), .homepage .client-projects .projects-list > :nth-child(2), .homepage .client-projects .projects-list > :nth-child(3) {
    margin-top: 0;
  }
  .homepage .client-projects .projects-list .product-card-small-container {
    position: relative;
    top: unset;
  }
  .homepage .sticky-wrapper .split-section {
    margin: 10rem 0 4rem;
  }
  .homepage .sticky-wrapper .split-section .wrapper .left-content {
    grid-column: 1/7;
    padding: 3rem;
    gap: 2rem;
  }
  .homepage .sticky-wrapper .split-section .wrapper .left-content .content {
    width: 100%;
  }
  .homepage .sticky-wrapper .split-section .wrapper .left-content .content p {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: -0.03em;
  }
  .homepage .sticky-wrapper .split-section .wrapper .left-content .content .button-one-arrow {
    width: 100%;
  }
  .homepage .sticky-wrapper .split-section .wrapper .right-content {
    grid-column: 1/7;
  }
  .homepage .about-section {
    padding: 6rem 0 10rem;
    row-gap: 2rem;
  }
  .homepage .about-section .image-wrapper.mobile {
    grid-column: 1/5;
    grid-row: 1;
    display: block;
    aspect-ratio: 0.8/1;
    border-radius: 0.6rem;
  }
  .homepage .about-section .image-wrapper.mobile img,
  .homepage .about-section .image-wrapper.mobile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0.6rem;
  }
  .homepage .about-section .heading {
    grid-column: 1/7;
    grid-row: 2;
    margin: 0;
  }
  .homepage .about-section .content-wrapper {
    grid-column: 1/7;
    grid-row: 3;
    grid-template-columns: repeat(6, 1fr);
  }
  .homepage .about-section .content-wrapper .image-wrapper.desktop {
    display: none;
  }
  .homepage .about-section .content-wrapper .content {
    margin-top: -1rem;
    grid-column: 1/7;
  }
  .homepage .about-section .content-wrapper .content p {
    font-size: 2.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
  }
}
.projects-logo-container {
  margin-top: 3rem;
  display: block;
  width: 7.3rem;
  height: 10rem;
  position: relative;
  z-index: 10000;
}
.projects-logo-container img {
  height: 100%;
  width: 100%;
  display: block;
}

.projects-intro {
  grid-column: 1/7;
  padding-top: calc(33vh - 13rem);
  padding-bottom: 7rem;
}
.projects-intro h2 {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #2b2b28;
  margin-bottom: 1rem;
}
.projects-intro span {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  max-width: 65rem;
  color: #2b2b28;
}

.projects-section {
  grid-column: 1/13;
}
.projects-section .projects-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .projects-section .projects-wrapper {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.projects-section .projects-wrapper {
  margin-bottom: 10rem;
  row-gap: 10rem;
}
.projects-section .projects-wrapper .project-item {
  grid-column: span 3;
}

.two-cards-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .two-cards-section {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.two-cards-section {
  grid-column: 1/13;
  padding-top: 6rem;
}
.two-cards-section .product-card-medium-container {
  grid-column: span 6;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .projects-logo-container {
    margin-top: 1.5rem;
    width: 4.34rem;
    height: auto;
    z-index: 997;
  }
  .projects-intro {
    grid-column: 1/-1;
    padding-top: calc(30vh - 1.5rem);
    padding-bottom: 6rem;
  }
  .projects-intro h1 {
    font-size: 1rem;
    line-height: 2.4rem;
    text-transform: uppercase;
  }
  .projects-intro span {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: -0.03em;
  }
  .projects-section {
    grid-column: 1/7;
  }
  .projects-section .projects-wrapper {
    margin-bottom: 3rem;
    row-gap: 3rem;
  }
  .projects-section .projects-wrapper .project-item {
    grid-column: span 3;
  }
  .projects-section-medium {
    grid-column: 1/7;
    margin-top: 6rem;
    margin-bottom: 8rem;
  }
  .projects-section-medium .projects-wrapper-medium {
    row-gap: 2rem;
  }
  .projects-section-medium .projects-wrapper-medium .project-item-medium {
    grid-column: span 6;
  }
  .two-cards-section {
    grid-column: 1/7;
    row-gap: 2rem;
    padding: 6rem 0;
  }
}
.product-page {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-page {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.product-page .services-section {
  grid-column: 1/13;
  margin-top: -5rem;
  position: relative;
}
.product-page .services-section .link-button-container {
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transform: translateY(-2rem);
}
.product-page .services-section .link-button-container:not(.dark-mode) .link-button-arrow {
  color: #f0eceb;
}
.product-page .services-section .link-button-container:not(.dark-mode) .link-button-arrow span::before {
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(315deg) brightness(105%) contrast(101%);
}
.product-page .services-section .services-container {
  padding-top: 10rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-page .services-section .services-container {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.product-page .services-section .services-container {
  row-gap: 2rem;
}
.product-page .services-section .services-container .service-item {
  grid-column: 5/12;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  column-gap: 2rem;
  row-gap: 2rem;
}
.product-page .services-section .services-container .service-item .file-container {
  grid-column: 1/3;
  width: 100%;
  aspect-ratio: 0.8/1;
}
.product-page .services-section .services-container .service-item .file-container img,
.product-page .services-section .services-container .service-item .file-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-page .services-section .services-container .service-item .content-container {
  grid-column: 3/8;
}
.product-page .services-section .services-container .service-item .content-container .service-heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 1rem;
}
.product-page .services-section .services-container .service-item .content-container .service-description {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: -0.01em;
  color: #000000;
}
.product-page .download-pdf-container {
  grid-column: 5/10;
  padding: 5rem;
  margin-top: 6rem;
  border-radius: 0.6rem;
  background-color: #ffffff;
}
.product-page .download-pdf-container .heading {
  margin-bottom: 5rem;
}
.product-page .download-pdf-container .heading span {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.product-page .download-pdf-container .heading h3 {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
}
.product-page .download-pdf-container .button-one-arrow {
  background-color: #f0eceb;
}
.product-page .download-pdf-container .button-one-arrow:hover {
  background-color: #2b2b28;
}
.product-page .featuring-projects-container {
  padding: 8rem 0;
  grid-column: 1/13;
}
.product-page .featuring-projects-container .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 3.5rem;
}
.product-page .featuring-projects-container .projects-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-page .featuring-projects-container .projects-list {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.product-page .featuring-projects-container .projects-list .product-card-small-container {
  grid-column: span 3;
  width: 100%;
}
.product-page .related-products-services-container {
  grid-column: 1/13;
  padding-top: 6rem;
}
.product-page .related-products-services-container .heading {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000000;
}
.product-page .related-products-services-container .products-services-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-page .related-products-services-container .products-services-container {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.product-page .related-products-services-container .products-services-container {
  row-gap: 2rem;
}
.product-page .related-products-services-container .products-services-container .product-card-row {
  grid-column: span 9;
}

@media screen and (max-width: 1024px) {
  .product-page .services-section {
    margin-top: 0;
  }
  .product-page .services-section .services-container .service-item {
    grid-column: 4/12;
  }
  .product-page .services-section .link-button-container {
    transform: unset;
    bottom: 3rem;
  }
  .product-page .download-pdf-container {
    grid-column: 4/11;
  }
  .product-page .related-products-services-container .projects-container .product-card-row {
    grid-column: span 12;
  }
}
@media screen and (max-width: 768px) {
  .product-page {
    grid-column: 1/7;
  }
  .product-page .services-section {
    grid-column: 1/7;
  }
  .product-page .services-section .link-button-container {
    display: none;
  }
  .product-page .services-section .services-container {
    row-gap: 6rem;
    padding-top: 6rem;
  }
  .product-page .services-section .services-container .service-item {
    grid-column: 1/7;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
  .product-page .services-section .services-container .service-item .file-container {
    aspect-ratio: 1/1;
  }
  .product-page .services-section .services-container .service-item .content-container .service-heading {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.03em;
  }
  .product-page .download-pdf-container {
    grid-column: 1/7;
    padding: 1.5rem;
  }
  .product-page .download-pdf-container .heading h3 {
    font-size: 2.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.03em;
  }
  .product-page .download-pdf-container .button-one-arrow {
    width: 100%;
  }
  .product-page .featuring-projects-container {
    grid-column: 1/7;
    padding: 5rem 0;
  }
  .product-page .featuring-projects-container .heading {
    font-size: 2.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.03em;
  }
  .product-page .featuring-projects-container .projects-list {
    row-gap: 4rem;
  }
  .product-page .related-products-services-container {
    grid-column: 1/7;
    padding: 6rem 0;
  }
  .product-page .related-products-services-container .heading {
    margin-bottom: 1rem;
  }
  .product-page .related-products-services-container .projects-container {
    row-gap: 0.4rem;
  }
  .product-page .related-products-services-container .projects-container .product-card-row {
    grid-column: span 6;
  }
}
.products-n-services-page {
  grid-column: 1/13;
  padding-top: 3rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .products-n-services-page {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.products-n-services-page .logo-container {
  display: block;
  width: 7.3rem;
  height: 10rem;
  position: relative;
  z-index: 10000;
}
.products-n-services-page .logo-container img {
  height: 100%;
  width: 100%;
  display: block;
}
.products-n-services-page .intro-wrapper {
  grid-column: 1/7;
  padding-top: calc(33vh - 13rem);
  padding-bottom: 7rem;
}
.products-n-services-page .intro-wrapper .intro-title {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #2b2b28;
  margin-bottom: 1rem;
}
.products-n-services-page .intro-wrapper .intro-description {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #2b2b28;
}
.products-n-services-page .products-n-services-list {
  grid-column: 1/10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.products-n-services-page .product-card-medium-wrapper {
  padding-top: 23rem;
  padding-bottom: 4rem;
  grid-column: 1/13;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .products-n-services-page {
    grid-column: 1/7;
    padding-top: 1.5rem;
  }
  .products-n-services-page .logo-container {
    width: 4.34rem;
    height: auto;
    z-index: 997;
  }
  .products-n-services-page .intro-wrapper {
    grid-column: 1/7;
    padding-top: calc(30vh - 1.5rem);
    padding-bottom: 6rem;
  }
  .products-n-services-page .intro-wrapper .intro-description {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .products-n-services-page .products-n-services-list {
    grid-column: 1/7;
    gap: 0.4rem;
  }
  .products-n-services-page .product-card-medium-wrapper {
    padding-top: 10rem;
    padding-bottom: 4rem;
    flex-direction: column;
    grid-column: 1/7;
  }
}
.company-page {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .company-page {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.company-page .intro-wrapper {
  grid-column: 1/13;
  padding-top: 14rem;
  margin-bottom: -33rem;
}
.company-page .intro-wrapper .files-container {
  display: none;
}
.company-page .intro-wrapper .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #2b2b28;
  margin-bottom: 5rem;
}
.company-page .intro-wrapper p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #2b2b28;
  width: calc(38.4615384615% - 1.6923076923rem);
  margin-bottom: 1.5rem;
}
.company-page .sticky-component.reversed {
  grid-column: 1/13;
  height: max-content;
  padding: 3rem 0;
  position: relative;
}
.company-page .sticky-component.reversed .wrapper {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
}
.company-page .sticky-component.reversed .wrapper .files-container {
  grid-column: 8/13;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: end;
  padding-bottom: 3rem;
}
.company-page .sticky-component.reversed .wrapper .files-container img,
.company-page .sticky-component.reversed .wrapper .files-container video {
  width: 100%;
  height: calc(100vh - 12rem);
  object-fit: cover;
}
.company-page .sticky-component.reversed .wrapper .content-container {
  grid-column: 1/7;
  height: max-content;
  margin-top: 80rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2rem;
}
.company-page .sticky-component.reversed .wrapper .content-container .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  color: #000000;
}
.company-page .sticky-component.reversed .wrapper .content-container .partners-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 2rem;
}
.company-page .sticky-component.reversed .wrapper .content-container .partners-container .partner-logo-container {
  grid-column: 1/3;
  aspect-ratio: 1/1;
  border-radius: 0.6rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.company-page .sticky-component.reversed .wrapper .content-container .partners-container .partner-logo-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.company-page .sticky-component.reversed .wrapper .content-container .partners-container .partner-logo-container:hover + .partner-details-container .partner-name {
  background-color: #ffffff;
}
.company-page .sticky-component.reversed .wrapper .content-container .partners-container .partner-details-container {
  grid-column: 3/7;
}
.company-page .sticky-component.reversed .wrapper .content-container .partners-container .partner-details-container .partner-name {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #2b2b28;
  margin-bottom: 1rem;
  padding: 0.05rem 0.4rem;
  border-radius: 0.6rem;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-page .sticky-component.reversed .wrapper .content-container .partners-container .partner-details-container .partner-description {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: -0.01em;
  color: #2b2b28;
}
.company-page .sticky-background-section {
  grid-column: 1/13;
  padding: 6rem 0;
  position: relative;
  top: 0;
  left: 0;
}
.company-page .sticky-background-section .content-wrapper {
  position: sticky;
  display: contents;
}
.company-page .sticky-background-section .content-wrapper .background-image {
  height: 100vh;
  width: calc(100% + 12rem);
  max-width: 1920px;
  margin-left: -6rem;
  object-fit: cover;
  display: block;
  position: sticky;
  top: 0;
}
.company-page .sticky-background-section .content-wrapper .company-information {
  position: absolute;
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .heading {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10rem;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid {
  row-gap: 6rem;
  margin-bottom: 12rem;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat .stat-value {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #000000;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat .stat-label {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: -0.01em;
  color: #000000;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-1 {
  grid-column: 1/4;
  grid-row: 1/1;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-2 {
  grid-column: 4/7;
  grid-row: 1/1;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-3 {
  grid-column: 1/4;
  grid-row: 2/2;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-4 {
  grid-column: 4/7;
  grid-row: 2/2;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-5 {
  grid-column: 1/4;
  grid-row: 3/3;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-6 {
  grid-column: 4/7;
  grid-row: 3/3;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-team-container {
  width: calc(100% + 12rem);
  max-width: 1920px;
  padding: 6rem;
  margin-left: -6rem;
  background-color: #f0eceb;
  position: relative;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-team-container .heading {
  color: #000000;
  margin-bottom: 6rem;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-team-container .team-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .company-page .sticky-background-section .content-wrapper .company-information .company-team-container .team-container {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.company-page .sticky-background-section .content-wrapper .company-information .company-team-container .team-container {
  row-gap: 6rem;
}
.company-page .sticky-background-section .content-wrapper .company-information .company-team-container .team-container .employee-card {
  grid-column: span 3;
}
.company-page .company-career-section {
  padding: 6rem 0;
  grid-column: 1/13;
}
.company-page .company-career-section .heading {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000000;
}
.company-page .company-career-section .text-container p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #2b2b28;
  margin-bottom: 5rem;
}
.company-page .two-cards-section {
  grid-column: 1/13;
  padding-top: 6rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .company-page .two-cards-section {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.company-page .two-cards-section .product-card-medium-container {
  grid-column: span 6;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .company-page .intro-wrapper {
    padding-top: 5rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .company-page .intro-wrapper .files-container {
    display: block;
  }
  .company-page .intro-wrapper .files-container img,
  .company-page .intro-wrapper .files-container video {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
  }
  .company-page .intro-wrapper .heading {
    font-size: 3.2rem;
    line-height: 3.2rem;
    letter-spacing: -0.03em;
    margin-bottom: 0;
  }
  .company-page .intro-wrapper p {
    width: 100%;
  }
  .company-page .sticky-component.reversed .wrapper .files-container {
    display: none;
  }
  .company-page .sticky-component.reversed .wrapper .content-container {
    margin-top: 0;
    padding: 4rem 0;
    grid-column: 1/13;
    gap: 4.5rem;
  }
  .company-page .sticky-component.reversed .wrapper .content-container .heading {
    margin-bottom: 0;
  }
  .company-page .sticky-background-section .content-wrapper .background-image {
    margin-left: -3rem;
    width: calc(100% + 6rem);
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-team-container {
    margin-left: -3rem;
    padding: 6rem 3rem;
    width: calc(100% + 6rem);
  }
  .company-page .company-career-section .text-container p {
    font-size: 3.5rem;
    line-height: 3.5rem;
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 768px) {
  .company-page {
    grid-column: 1/7;
  }
  .company-page .intro-wrapper {
    grid-column: 1/7;
  }
  .company-page .intro-wrapper .heading {
    font-size: 2.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.03em;
    margin-bottom: 0;
  }
  .company-page .intro-wrapper p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .company-page .sticky-component.reversed {
    grid-column: 1/7;
  }
  .company-page .sticky-component.reversed .wrapper .content-container .heading {
    margin-bottom: -1.5rem;
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
  .company-page .sticky-component.reversed .wrapper .content-container .partners-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .company-page .sticky-component.reversed .wrapper .content-container .partners-container .partner-logo-container {
    aspect-ratio: 2.2/1;
  }
  .company-page .sticky-component.reversed .wrapper .content-container .partners-container .partner-details-container .partner-description {
    margin-top: 0.5rem;
  }
  .company-page .sticky-background-section {
    grid-column: 1/7;
  }
  .company-page .sticky-background-section .content-wrapper {
    position: unset;
    display: unset;
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat .stat-value {
    font-size: 3.6rem;
    line-height: 3.6rem;
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-1 {
    grid-row: 1/1;
    grid-column: 1/7;
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-2 {
    grid-row: 2/2;
    grid-column: 1/7;
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-3 {
    grid-row: 3/3;
    grid-column: 1/7;
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-4 {
    grid-row: 4/4;
    grid-column: 1/7;
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-5 {
    grid-row: 5/5;
    grid-column: 1/7;
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-numbers-container .stats-grid .stat.item-6 {
    grid-row: 6/6;
    grid-column: 1/7;
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-team-container .heading {
    margin-bottom: 3rem;
  }
  .company-page .sticky-background-section .content-wrapper .company-information .company-team-container .team-container {
    row-gap: 4rem;
    column-gap: 1.4rem;
  }
  .company-page .company-career-section {
    grid-column: 1/7;
    padding: 3rem 0;
  }
  .company-page .company-career-section .text-container p {
    font-size: 2.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.03em;
  }
  .company-page .two-cards-section {
    grid-column: 1/7;
    row-gap: 2rem;
    padding: 6rem 0;
  }
}
.entry-content {
  grid-column: 1/13;
  padding: 30rem 0 5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .entry-content {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.entry-content .header {
  grid-column: 1/6;
}
.entry-content .header h1 {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #2b2b28;
  padding-bottom: 5rem;
}
.entry-content .content {
  grid-column: 1/6;
}
.entry-content .content h2 {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #2b2b28;
  padding-bottom: 2rem;
}
.entry-content .content p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: -0.01em;
  color: #2b2b28;
  padding-bottom: 5rem;
}

.hero-stacked {
  grid-column: 1/13;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  position: relative;
  z-index: 9997;
}
.hero-stacked .logo-container {
  position: absolute;
  z-index: 9997;
  top: 3rem;
  left: 0;
}
.hero-stacked .logo-container img {
  width: 7.3rem;
  height: 10rem;
  object-fit: cover;
}
.hero-stacked .content-container {
  height: inherit;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-stacked .content-container {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
.hero-stacked .content-container .text-container {
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  gap: 1rem;
}
.hero-stacked .content-container .text-container .upper-txt {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #2b2b28;
}
.hero-stacked .content-container .text-container .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #2b2b28;
  margin-bottom: 3.5rem;
  width: 70%;
}
.hero-stacked .content-container .text-container .description {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #2b2b28;
}

.hero-stacked.image-left:before {
  content: "";
  height: inherit;
  width: 3rem;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: -6rem;
  border-right: 1px solid #f0eceb;
}
.hero-stacked.image-left .logo-container .logo-dark {
  display: none;
}
.hero-stacked.image-left .logo-container .logo-light {
  display: block;
}
.hero-stacked.image-left .content-container .file-container {
  grid-column: 1/7;
  height: inherit;
  margin-left: -6rem;
  position: relative;
  z-index: 9996;
}
.hero-stacked.image-left .content-container .file-container img,
.hero-stacked.image-left .content-container .file-container video {
  width: 100%;
  height: inherit;
  display: block;
  object-fit: cover;
}
.hero-stacked.image-left .content-container .text-container {
  grid-column: 7/12;
}

.hero-stacked.image-left.dark-bg:after {
  content: "";
  height: inherit;
  width: 3rem;
  position: absolute;
  z-index: 2;
  top: 0;
  right: -6rem;
  border-left: 1px solid #f0eceb;
}
.hero-stacked.image-left.dark-bg .content-container .text-container {
  grid-column: 7/13;
  width: calc(100% + 8rem);
  background-color: #2b2b28;
  margin-left: -2rem;
  padding-left: 2rem;
}
.hero-stacked.image-left.dark-bg .content-container .text-container .upper-txt,
.hero-stacked.image-left.dark-bg .content-container .text-container .heading,
.hero-stacked.image-left.dark-bg .content-container .text-container .description {
  color: #f0eceb;
}
.hero-stacked.image-left.dark-bg .content-container .text-container .description {
  width: 70%;
}

.hero-stacked.image-right {
  z-index: 9995;
}
.hero-stacked.image-right:after {
  content: "";
  height: inherit;
  width: 3rem;
  position: absolute;
  z-index: 2;
  top: 0;
  right: -6rem;
  border-left: 1px solid #f0eceb;
}
.hero-stacked.image-right .logo-container .logo-dark {
  display: block;
}
.hero-stacked.image-right .logo-container .logo-light {
  display: none;
}
.hero-stacked.image-right .content-container {
  grid-template-rows: 1fr;
}
.hero-stacked.image-right .content-container .file-container {
  grid-column: 6/13;
  grid-row: 1/1;
  height: inherit;
  margin-right: -6rem;
}
.hero-stacked.image-right .content-container .file-container img,
.hero-stacked.image-right .content-container .file-container video {
  width: 100%;
  height: inherit;
  display: block;
  object-fit: cover;
}
.hero-stacked.image-right .content-container .text-container {
  grid-column: 1/6;
  grid-row: 1/1;
}

main:not(:has(.product-page)) .products-back-button,
main:has(.product-page) .products-back-button {
  display: none;
}

@media screen and (max-width: 1024px) {
  .hero-stacked.image-right,
  .hero-stacked.image-left {
    height: 100vh;
    height: 100dvh;
  }
  .hero-stacked.image-right:after, .hero-stacked.image-right:before,
  .hero-stacked.image-left:after,
  .hero-stacked.image-left:before {
    content: unset;
  }
  .hero-stacked.image-right .logo-container .logo-dark,
  .hero-stacked.image-left .logo-container .logo-dark {
    display: none;
  }
  .hero-stacked.image-right .logo-container .logo-light,
  .hero-stacked.image-left .logo-container .logo-light {
    display: block;
  }
  .hero-stacked.image-right .content-container,
  .hero-stacked.image-left .content-container {
    grid-template-rows: minmax(0, 1fr) max-content;
  }
  .hero-stacked.image-right .content-container .file-container,
  .hero-stacked.image-left .content-container .file-container {
    height: 100%;
    margin-right: -3rem;
    margin-left: -3rem;
    grid-column: 1/13;
    grid-row: 1/1;
    position: relative;
  }
  .hero-stacked.image-right .content-container .file-container:after,
  .hero-stacked.image-left .content-container .file-container:after {
    content: "";
    height: 100%;
    width: 1.5rem;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    border-left: 1px solid #f0eceb;
  }
  .hero-stacked.image-right .content-container .file-container:before,
  .hero-stacked.image-left .content-container .file-container:before {
    content: "";
    height: 100%;
    width: 1.5rem;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    border-right: 1px solid #f0eceb;
  }
  .hero-stacked.image-right .content-container .file-container video,
  .hero-stacked.image-right .content-container .file-container img,
  .hero-stacked.image-left .content-container .file-container video,
  .hero-stacked.image-left .content-container .file-container img {
    height: 100%;
  }
  .hero-stacked.image-right .content-container .text-container,
  .hero-stacked.image-left .content-container .text-container {
    gap: 0;
    padding: 1.5rem 0;
    grid-column: 1/13;
    grid-row: 2/2;
  }
  .hero-stacked.image-right .content-container .text-container .heading,
  .hero-stacked.image-left .content-container .text-container .heading {
    width: 100%;
    margin-bottom: 2.5rem;
    font-size: 4rem;
    line-height: 4rem;
  }
  .hero-stacked.image-right .content-container .text-container .description,
  .hero-stacked.image-left .content-container .text-container .description {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .hero-stacked.image-left.dark-bg {
    height: 100vh;
    height: 100dvh;
  }
  .hero-stacked.image-left.dark-bg:before {
    content: "";
    height: 100%;
    width: 1.5rem;
    left: -3rem;
    border-left: unset;
  }
  .hero-stacked.image-left.dark-bg:after {
    height: 100%;
    width: 1.5rem;
    right: -3rem;
    border-right: unset;
  }
  .hero-stacked.image-left.dark-bg .content-container .file-container {
    z-index: unset;
  }
  .hero-stacked.image-left.dark-bg .content-container .text-container {
    grid-column: 1/13;
    grid-row: 2/2;
    margin-left: -3rem;
    padding: 1.5rem 3rem;
    height: 100%;
    width: calc(100% + 6rem);
  }
  .hero-stacked.image-left.dark-bg .content-container .text-container .description {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hero-stacked {
    grid-column: 1/7;
  }
  .hero-stacked .logo-container {
    top: 1.5rem;
  }
  .hero-stacked .logo-container img {
    width: 4.34rem;
    height: 6rem;
  }
  .hero-stacked.image-right .content-container .text-container,
  .hero-stacked.image-left .content-container .text-container {
    grid-column: 1/7;
  }
  .hero-stacked.image-right .content-container .text-container .heading,
  .hero-stacked.image-left .content-container .text-container .heading {
    font-size: 3.6rem;
    line-height: 3.6rem;
  }
  .hero-stacked.image-right .content-container .text-container .description,
  .hero-stacked.image-left .content-container .text-container .description {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .hero-stacked.image-right .content-container .file-container,
  .hero-stacked.image-left .content-container .file-container {
    grid-column: 1/7;
  }
  .hero-stacked.image-left.dark-bg .content-container .text-container {
    grid-column: 1/7;
  }
  main:has(.product-page) .products-back-button {
    display: block;
    position: absolute;
    left: 3rem;
    bottom: 0.8rem;
  }
  main:has(.product-page) .products-back-button .link-button-container .link-button-arrow {
    color: #f0eceb;
  }
  main:has(.product-page) .products-back-button .link-button-container .link-button-arrow span::before {
    filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(315deg) brightness(105%) contrast(101%);
  }
  main:has(.product-page) .hero-stacked .content-container .file-container {
    position: relative;
  }
}
.sticky-component {
  grid-column: 1/11;
  height: 160vh;
  position: relative;
  padding: 3rem 0;
}
.sticky-component .wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  height: 100%;
}
.sticky-component .wrapper .files-container {
  position: sticky;
  top: 0;
  flex: 1;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: end;
  padding-bottom: 3rem;
}
.sticky-component .wrapper .files-container img,
.sticky-component .wrapper .files-container video {
  width: 100%;
  height: calc(100vh - 12rem);
  object-fit: cover;
}
.sticky-component .wrapper .content-container {
  flex: 1;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
}
.sticky-component .wrapper .content-container .heading {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #000000;
}
.sticky-component .wrapper .content-container .text-container p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 1536px) {
  .sticky-component {
    grid-column: 1/11;
    height: 155vh;
    position: relative;
    padding: 3rem 0;
  }
  .sticky-component .main-wrapper .content-container {
    height: 90vh;
  }
}
@media screen and (max-width: 1024px) {
  .sticky-component {
    grid-column: 1/13;
    height: auto;
    position: unset;
  }
  .sticky-component .wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }
  .sticky-component .wrapper .files-container {
    position: unset;
    flex: unset;
    height: auto;
    padding-bottom: 0;
  }
  .sticky-component .wrapper .files-container video,
  .sticky-component .wrapper .files-container img {
    height: 70vh;
  }
  .sticky-component .wrapper .content-container {
    flex: unset;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .sticky-component {
    grid-column: 1/7;
  }
}
.testimonial-section {
  grid-column: 1/11;
  padding: 3rem 0;
}
.testimonial-section .testimonial-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.testimonial-section .testimonial-wrapper .testimonial-quote p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  color: #000000;
}
.testimonial-section .testimonial-wrapper .testimonial-author .author-name {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #000000;
}
.testimonial-section .testimonial-wrapper .testimonial-author .author-title {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000000;
}

@media screen and (max-width: 1024px) {
  .testimonial-section {
    grid-column: 1/13;
    padding: 12rem 0;
  }
  .testimonial-section .testimonial-wrapper .testimonial-quote p {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .testimonial-section {
    grid-column: 1/7;
  }
  .testimonial-section .testimonial-wrapper {
    gap: 2rem;
  }
  .testimonial-section .testimonial-wrapper .testimonial-quote p {
    font-size: 2.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.03em;
  }
}
.product-card-large-section {
  grid-column: 1/13;
  padding: 10rem 0 4rem;
}
.product-card-large-section .product-card-large-wrapper .background-wrapper {
  position: relative;
  border-radius: 0.6rem;
}
.product-card-large-section .product-card-large-wrapper .background-wrapper > img {
  width: 100%;
  aspect-ratio: 2.2/1;
  object-fit: cover;
  border-radius: 0.6rem;
  display: block;
}
.product-card-large-section .product-card-large-wrapper .background-wrapper .content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 3.4rem;
}
.product-card-large-section .product-card-large-wrapper .background-wrapper .content-wrapper .small-txt {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #ffffff;
}
.product-card-large-section .product-card-large-wrapper .background-wrapper .content-wrapper .text-content p {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  margin-bottom: 3rem;
  color: #ffffff;
}

@media screen and (max-width: 1024px) {
  .product-card-large-section .product-card-large-wrapper .background-wrapper .content-wrapper {
    padding: 1.5rem;
  }
  .product-card-large-section .product-card-large-wrapper .background-wrapper .content-wrapper .text-content p {
    font-size: 3.6rem;
    line-height: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .product-card-large-section {
    grid-column: 1/7;
  }
  .product-card-large-section .product-card-large-wrapper .background-wrapper > img {
    max-height: 65.5rem;
    aspect-ratio: 1/2;
    object-position: 68%;
  }
}
.product-card-row {
  grid-column: 1/10;
  padding: 0.4rem;
  border-radius: 0.6rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.product-card-row .image-wrapper {
  --size: calc((2 / 9) * 100% - (7 / 9) * 2rem);
  width: var(--size);
  height: 27.9rem;
  border-radius: 0.6rem;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}
.product-card-row .image-wrapper img,
.product-card-row .image-wrapper video {
  border-radius: 0.6rem;
  width: 40rem;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translateX(-2.8rem);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .product-card-row:hover .image-wrapper {
    width: calc(30% - 1.4444444444rem);
  }
  .product-card-row:hover .image-wrapper img,
  .product-card-row:hover .image-wrapper video {
    transform: translateX(0);
  }
  .product-card-row:hover .content-wrapper .read-more {
    transform: translateX(2rem);
  }
}
.product-card-row .content-wrapper .title {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
  color: #2b2b28;
  margin-left: 2rem;
  margin-top: 2.4rem;
}
.product-card-row .content-wrapper .read-more {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #2b2b28;
  position: relative;
  z-index: 1;
  transform: translateX(-8rem);
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1536px) {
  .product-card-row .image-wrapper {
    height: 21.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .product-card-row .image-wrapper {
    --size: calc((3 / 9) * 100% - (7 / 9) * 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .product-card-row .image-wrapper {
    --size: calc((2.5 / 9) * 100% - (7 / 9) * 2rem);
  }
}
@media screen and (max-width: 768px) {
  .product-card-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 2rem;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .product-card-row {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .product-card-row .image-wrapper {
    grid-column: 1/3;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .product-card-row .image-wrapper img,
  .product-card-row .image-wrapper video {
    width: 100%;
    height: 100%;
    transform: unset;
  }
  .product-card-row .content-wrapper {
    grid-column: 3/7;
  }
  .product-card-row .content-wrapper .title {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: -0.03em;
    margin: 0;
  }
  .product-card-row .content-wrapper .read-more {
    display: none;
  }
}
.employee-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-start;
}
.employee-card .employee-image-wrapper {
  width: 100%;
}
.employee-card .employee-image-wrapper img {
  width: 100%;
  aspect-ratio: 0.7/1;
  object-fit: cover;
}
.employee-card .employee-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.employee-card .employee-info .employee-name {
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 0;
}
.employee-card .employee-info .employee-role {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .employee-card {
    gap: 1.3rem;
  }
}
.product-card-small-container {
  width: 100%;
  aspect-ratio: 0.7/1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.product-card-small-container .product-card-small-eyebrow-wrapper {
  height: 2.4rem;
  white-space: nowrap;
  position: relative;
  transition: all 0.25s ease-in-out;
}
.product-card-small-container .product-card-small-eyebrow-wrapper .product-card-small-eyebrow {
  color: #2b2b28;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  display: flex;
  gap: 6px;
  position: absolute;
  left: 0%;
  transition: all 0.25s ease-in-out;
  transform: translateX(0);
}
@media (hover: hover) {
  .product-card-small-container:hover .product-card-small-eyebrow-wrapper .product-card-small-eyebrow {
    transition: all 0.25s ease-in-out;
    transform: translateX(-100%);
    left: 100%;
  }
}
.product-card-small-container .product-card-media-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 0.6rem;
  overflow: hidden;
  position: relative;
}
.product-card-small-container .product-card-media-wrapper .product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1) translateY(0);
  transition: transform 0.25s ease;
  will-change: transform;
}
.product-card-small-container .product-card-media-wrapper .product-card-video {
  object-fit: cover;
  background: #000000;
}
.product-card-small-container .product-card-media-wrapper .product-card-small-title-container {
  height: 6.2rem;
  border-radius: 0.6rem;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.5019607843);
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.25s ease-in-out;
}
.product-card-small-container .product-card-media-wrapper .product-card-small-title-container .product-card-small-title {
  color: #2b2b28;
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  transition: all 0.25s ease-in-out;
}
.product-card-small-container .product-card-media-wrapper .product-card-small-title-container .product-card-small-title-2 {
  display: none;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4rem;
  text-transform: uppercase;
  color: #2b2b28;
  opacity: 0.67;
  position: absolute;
  bottom: 2rem;
  left: 1rem;
}
@media (hover: hover) {
  .product-card-small-container:hover .product-card-media-wrapper .product-card-small-title-container {
    transition: all 0.25s ease-in-out;
    height: 9.2rem;
  }
  .product-card-small-container:hover .product-card-media-wrapper .product-card-small-title-container .product-card-small-title {
    transition: all 0.25s ease-in-out;
    bottom: 6rem;
  }
}

.product-card-small-container:hover .product-card-image {
  transition: all 0.25s ease-in-out;
  transform: scale(1.06);
}

@media screen and (max-width: 768px) {
  .product-card-small-container {
    aspect-ratio: unset;
    overflow: unset;
  }
  .product-card-small-container .product-card-small-eyebrow-wrapper {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 1;
    width: 90%;
    white-space: normal;
  }
  .product-card-small-container .product-card-small-eyebrow-wrapper .product-card-small-eyebrow {
    font-size: 1rem;
    line-height: 1.4rem;
    letter-spacing: 0;
    color: #ffffff;
  }
  .product-card-small-container .product-card-small-eyebrow-wrapper .product-card-small-eyebrow .arrow {
    display: none;
  }
  .product-card-small-container .product-card-small-eyebrow-wrapper .product-card-small-eyebrow .eyebrow-second-text {
    display: none;
  }
  .product-card-small-container:hover .product-card-small-eyebrow-wrapper .product-card-small-eyebrow {
    transition: unset;
    transform: unset;
  }
  .product-card-small-container .product-card-media-wrapper {
    overflow: unset;
    display: flex;
    flex-direction: column;
  }
  .product-card-small-container .product-card-media-wrapper .product-card-image {
    border-radius: 0.6rem 0.6rem 0rem 0rem;
    aspect-ratio: 0.73/1;
  }
  .product-card-small-container .product-card-media-wrapper .product-card-small-title-container {
    min-height: 7rem;
    background-color: #ffffff;
    border-radius: 0rem 0rem 0.6rem 0.6rem;
    position: unset;
  }
  .product-card-small-container .product-card-media-wrapper .product-card-small-title-container .product-card-small-title {
    top: 0.5rem;
    left: 0.8rem;
    bottom: unset;
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: -0.03em;
  }
  .product-card-small-container .product-card-media-wrapper .product-card-small-title-container .product-card-small-title-2 {
    display: flex;
    z-index: 1;
    position: absolute;
    bottom: 0.7rem;
  }
  .product-card-small-container:hover .product-card-media-wrapper .product-card-small-title-container {
    transition: unset;
    height: 7rem;
  }
  .product-card-small-container:hover .product-card-media-wrapper .product-card-small-title-container .product-card-small-title {
    transition: unset;
    bottom: unset;
  }
  .product-card-small-container:hover .product-card-image {
    transition: unset;
    transform: unset;
  }
}
.product-card-medium-container {
  width: 50%;
  height: 41rem;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.product-card-medium-container .product-card-medium-inner-title-mobile {
  display: none;
  position: absolute;
  z-index: 1;
  top: 0rem;
  left: 0.7rem;
  color: #ffffff;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4rem;
  text-transform: uppercase;
}
.product-card-medium-container .product-card-media-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.6rem;
  /* Media elements */
}
.product-card-medium-container .product-card-media-wrapper .product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card-medium-container .product-card-media-wrapper .product-card-video {
  object-fit: cover;
  background: #000000;
}
.product-card-medium-container .product-card-media-wrapper .product-card-medium-inner-container {
  height: 50%;
  max-height: calc(100% - 0.8rem);
  width: calc(75% - 1rem);
  padding: 0.4rem;
  margin: 0.4rem;
  background: rgba(255, 255, 255, 0.5019607843);
  border-radius: 0.6rem;
  backdrop-filter: blur(30px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease-in-out;
}
.product-card-medium-container .product-card-media-wrapper .product-card-medium-inner-container .product-card-medium-inner-title {
  color: #2b2b28;
  font-size: 1rem;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  line-height: 2.4rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-left: 0.4rem;
}
.product-card-medium-container .product-card-media-wrapper .product-card-medium-inner-container .product-card-medium-inner-description {
  color: #2b2b28;
  font-family: "NT Bau", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.03em;
  padding: 0 4rem 0 0.4rem;
}
.product-card-medium-container .product-card-media-wrapper .product-card-medium-inner-container .button-primary {
  margin-top: 1rem;
}
.product-card-medium-container:hover .product-card-media-wrapper .product-card-medium-inner-container {
  transition: all 0.25s ease-in-out;
  height: 100%;
}

.product-card-medium-container:hover .button-one-arrow {
  background: #2b2b28;
  color: #ffffff;
}

.product-card-medium-container:hover .bo-text,
.button-one-arrow:hover .bo-text {
  left: 1rem;
  transform: translateY(-50%) translateX(0);
  transition: all 0.25s ease-in-out;
}

.product-card-medium-container:hover .bo-icon,
.button-one-arrow:hover .bo-icon {
  transition: all 0.25s ease-in-out;
  transform: translateX(-100%);
  left: calc(100% - 0.4rem);
  background: #ffffff;
  color: #2b2b28;
}
.product-card-medium-container:hover .bo-icon img,
.button-one-arrow:hover .bo-icon img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(5%) saturate(636%) hue-rotate(22deg) brightness(98%) contrast(91%);
}

@media screen and (max-width: 768px) {
  .product-card-medium-container {
    width: 100%;
    height: auto;
  }
  .product-card-medium-container .product-card-medium-inner-title-mobile {
    display: block;
    text-transform: uppercase;
  }
  .product-card-medium-container .product-card-media-wrapper {
    display: flex;
    flex-direction: column;
  }
  .product-card-medium-container .product-card-media-wrapper .product-card-image {
    aspect-ratio: 164/131;
  }
  .product-card-medium-container .product-card-media-wrapper .product-card-video {
    aspect-ratio: 164/131;
  }
  .product-card-medium-container .product-card-media-wrapper .product-card-medium-inner-container {
    width: 100%;
    height: auto;
    margin: unset;
    background-color: #ffffff;
    padding: 0.8rem 0.8rem 3.5rem 0.8rem;
    border-radius: 0px 0px 0.6rem 0.6rem;
    position: unset;
  }
  .product-card-medium-container .product-card-media-wrapper .product-card-medium-inner-container .product-card-medium-inner-title {
    display: none;
  }
  .product-card-medium-container .product-card-media-wrapper .product-card-medium-inner-container .product-card-medium-inner-description {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: -0.03em;
  }
  .product-card-medium-container .product-card-media-wrapper .product-card-medium-inner-container .button-primary {
    display: none;
  }
}
.button-one-arrow {
  position: relative;
  width: 100%;
  max-width: 31.5rem;
  height: 4rem;
  border-radius: 0.6rem;
  border: none;
  background: #ffffff;
  padding: 0.4rem;
  color: #000000;
  font-size: 1rem;
  line-height: 2.4rem;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.button-one-arrow .bo-text {
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 4.2rem;
  transform: translate(0%, -50%);
  transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.button-one-arrow .bo-icon {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  left: 0.4rem;
  border-radius: 0.6rem;
  background: #2b2b28;
  color: #ffffff;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), left 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.button-one-arrow .bo-icon img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(315deg) brightness(105%) contrast(101%);
  width: auto;
  height: auto;
  display: block;
  object-fit: cover;
  transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HOVER */
.button-one-arrow:hover {
  background: #2b2b28;
  color: #ffffff;
}

.button-one-arrow:hover .bo-text {
  left: 1rem;
  transform: translateY(-50%) translateX(0);
}

.button-one-arrow:hover .bo-icon {
  transform: translateX(-100%);
  left: calc(100% - 0.4rem);
  background: #ffffff;
  color: #2b2b28;
}
.button-one-arrow:hover .bo-icon img {
  filter: unset;
}

@media screen and (max-width: 768px) {
  .button-one-arrow {
    width: 100%;
    max-width: 37rem;
  }
}
.link-button-container {
  overflow: hidden;
  width: 20rem;
}
.link-button-container .link-button-arrow {
  height: 2.4rem;
  width: max-content;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  transform: translateX(-1.2rem);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-button-container .link-button-arrow .arrow-1,
.link-button-container .link-button-arrow .arrow-2 {
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.link-button-container .link-button-arrow .arrow-1::before,
.link-button-container .link-button-arrow .arrow-2::before {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  background-image: url("../images/arrow-1.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.link-button-container .link-button-arrow .arrow-2 {
  margin-left: 0.4rem;
}
.link-button-container .link-button-arrow .title {
  margin-left: 1rem;
  white-space: nowrap;
  font-family: "NT Bau Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  transform: translateY(0.1rem);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-button-container .link-button-arrow:hover {
  transform: translateX(0);
}
.link-button-container .link-button-arrow.left .arrow-1,
.link-button-container .link-button-arrow.left .arrow-2 {
  transform: scaleX(-1);
}

/*# sourceMappingURL=style.css.map */
