@font-face {
  font-family: 'Product sans';
  src: url('/fonts/product-sans-regular.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'Product sans';
  src: url('/fonts/product-sans-regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: 'Product sans';
  src: url('/fonts/product-sans-bold.ttf');
  font-weight: 600;
}
.nav,
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  height: 5rem;
  border-bottom: 1px solid rgba(196, 196, 196, 0.2);
}
.nav a,
.nav-mobile a,
.nav .with-dropdown,
.nav-mobile .with-dropdown {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1279px) {
  .nav .margin-left--64 {
    margin-left: 3rem;
  }
  .nav .margin-left--40 {
    margin-left: 2rem;
  }
}
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
}
.nav-mobile {
  display: none;
  height: 4rem;
}
@media (max-width: 1024px) {
  .nav-mobile {
    display: flex;
  }
}
.menu-mobile {
  height: calc(100vh - 4rem);
  overflow-y: scroll;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.menu-mobile.active {
  opacity: 1;
  pointer-events: initial;
}
.menu-mobile-toggle div:first-of-type {
  display: inherit;
}
.menu-mobile-toggle div:last-of-type {
  display: none;
}
.menu-mobile-toggle.active div:first-of-type {
  display: none;
}
.menu-mobile-toggle.active div:last-of-type {
  display: inherit;
}
.menu-mobile a,
.menu-mobile .with-dropdown .dropdown-header {
  padding-inline: 3.6rem;
  margin-bottom: 3rem;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.4px;
  box-sizing: border-box;
}
.menu-mobile a a,
.menu-mobile .with-dropdown .dropdown-header a {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.4px;
  padding-inline: 0;
  margin-bottom: 0;
}
.menu-mobile .with-dropdown {
  position: relative;
  transition: margin-bottom 0.3s;
  height: max-content;
  overflow-y: hidden;
}
.menu-mobile .with-dropdown svg path {
  fill: #818181;
}
.menu-mobile .with-dropdown .dropdown-container {
  height: 0;
  transition: height 0.3s, margin-bottom 0.3s;
  overflow-y: hidden;
}
.menu-mobile .with-dropdown .dropdown-container .dropdown {
  height: 100%;
  border-bottom-color: transparent !important;
  position: unset;
  max-height: inherit;
  padding: 3rem 3.6rem 3rem;
}
.menu-mobile .with-dropdown .dropdown-container .dropdown h2 {
  font-size: 18px;
  margin-bottom: 4rem;
}
.menu-mobile .with-dropdown .dropdown-container .dropdown .flex {
  flex-direction: column;
}
.menu-mobile .with-dropdown .dropdown-container .dropdown .flex a {
  padding-left: 0;
}
.menu-mobile .with-dropdown .dropdown-container .dropdown-header a {
  border-bottom: 2px solid transparent;
  padding-bottom: 0.75rem;
  transition: border-bottom-color 0.3s, color 0.3s;
}
.menu-mobile .with-dropdown.active {
  margin-bottom: 1.5rem;
}
.menu-mobile .with-dropdown.active .dropdown-header a {
  border-bottom-color: var(--color-primary);
  color: var(--color-primary);
}
.menu-mobile .with-dropdown.active svg path {
  fill: var(--color-primary);
}
.menu-mobile .with-dropdown.active .dropdown-container {
  height: var(--height);
}
.menu-mobile .with-dropdown.active .dropdown {
  border-bottom-color: #818181 !important;
}
@media (min-width: 1024px) {
  .menu-mobile {
    display: none !important;
  }
}
.footer {
  padding-block: 3rem;
  margin-top: auto;
}
.footer .width-same a {
  width: 100%;
  text-align: right;
  display: inline-block;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .footer p {
    line-height: 2;
  }
  .footer .width-same {
    width: 100%;
  }
  .footer .width-same a {
    text-align: center;
  }
  .footer .flex {
    margin-bottom: 4rem;
  }
  .footer > p {
    margin-bottom: 4rem;
    text-align: center;
  }
}
.items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1.5rem;
  grid-row-gap: 3.25rem;
  min-height: 30rem;
}
@media (max-width: 1279px) {
  .items {
    padding-inline: 4rem;
  }
}
@media (max-width: 1023px) {
  .items {
    padding-inline: 3rem;
  }
}
@media (max-width: 767px) {
  .items {
    padding: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.item-block {
  max-width: 100%;
}
.item-block img {
  width: 100%;
  height: 17rem;
  object-fit: cover;
}
.item-links .red-block {
  background-color: var(--color-primary);
  height: 5rem;
  width: 12.5rem;
}
@media (max-width: 1279px) {
  .item-links {
    padding-bottom: 3rem;
  }
  .item-links .red-block {
    display: none;
  }
  .item-links .padding-left--108 {
    padding-inline: 4rem;
  }
  .item-links a {
    margin-top: 2rem;
  }
}
@media (max-width: 1023px) {
  .item-links .padding-left--108 {
    padding-inline: 3rem;
  }
}
@media (max-width: 767px) {
  .item-links .padding-left--108 {
    padding-inline: 2rem;
  }
}
.item-link {
  height: max-content;
  padding: 0 0.5rem 0.375rem;
}
.item-link.active {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  cursor: initial;
}
.item-view .images {
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 0.3s;
  width: 100%;
}
.item-view .images .landing {
  width: 100%;
  height: 43rem;
  object-fit: cover;
}
.item-view .images .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2.5rem;
  grid-row-gap: 4.5rem;
}
.item-view .images .gallery img {
  width: 100%;
  height: 21rem;
  object-fit: cover;
}
.item-view .images .gallery img.extended {
  height: 26rem;
  object-fit: contain;
}
@media (max-width: 1279px) {
  .item-view {
    padding-inline: 4rem !important;
  }
}
@media (max-width: 1023px) {
  .item-view {
    padding-inline: 3rem !important;
  }
}
@media (max-width: 767px) {
  .item-view {
    padding-inline: 2rem !important;
  }
  .item-view .images .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-header {
  height: 12.5rem;
  width: 100vw;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
}
.product-header .red-block {
  height: 100%;
  width: 12.5rem;
  background-color: var(--color-primary);
}
@media (max-width: 1279px) {
  .product-header {
    padding-inline: 4rem;
  }
  .product-header .red-block {
    display: none;
  }
  .product-header .margin-left--96 {
    margin-left: 0;
  }
}
@media (max-width: 1023px) {
  .product-header {
    height: auto;
    margin-top: 5rem;
    padding-inline: 3rem;
  }
  .product-header h2,
  .product-header a {
    font-size: 2.25rem;
  }
  .product-header > div {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .product-header {
    padding-inline: 2rem;
  }
  .product-header h2,
  .product-header a {
    font-size: 1.75rem;
  }
}
.scroll-down {
  transform: rotate(90deg);
  position: absolute;
  bottom: 6rem;
  right: 2rem;
  width: 160px;
}
@media (max-width: 1024px) {
  .scroll-down {
    display: none;
  }
}
.dropdown {
  position: fixed;
  z-index: 1000;
  top: 5rem;
  left: 0;
  height: 0;
  width: 100vw;
  padding-inline: 12rem 8rem;
  box-sizing: border-box;
  overflow-y: hidden;
  transition: height 0.3s;
  padding-block: 0;
}
.dropdown .grid {
  grid-template-columns: 0.7fr 1fr 1fr 0.7fr 0.7fr 2fr;
}
.dropdown .grid div a {
  height: auto;
}
.dropdown .grid div .font-size--18 {
  margin-bottom: 1rem;
}
.dropdown .grid div :not(.font-size--18) {
  margin-bottom: 0.75rem;
}
@media (max-width: 1024px) {
  .dropdown .grid {
    grid-template-columns: 1fr;
  }
  .dropdown .grid div {
    display: flex;
    flex-direction: column;
  }
  .dropdown .grid div a:not(:first-of-type) {
    display: none;
  }
}
.with-dropdown:hover .dropdown {
  height: 15rem;
}
.slider {
  overflow: hidden;
  max-width: 100%;
}
.slider .slide {
  flex: 0 0 100%;
  position: relative;
  transition: margin-left 0.5s;
}
.slider .slide-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.slider .slide .show-more {
  border-bottom: 4px solid var(--color-primary);
  text-align: left;
  display: inline-block;
}
.slider .slide .arrow {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
}
.slider .slide .arrow:first-of-type {
  margin-left: -1rem;
}
.slider .slide .arrow img {
  height: 1rem;
  width: 1rem;
  object-fit: cover;
}
.slider .slide .arrow:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.slider .slide-out {
  margin-left: -100%;
}
@media (max-width: 1280px) {
  .slider .slide .margin-left--160 {
    margin-left: 6rem;
  }
}
@media (max-width: 1024px) {
  .slider .slide .margin-left--160 {
    margin-left: 4rem;
  }
}
@media (max-width: 768px) {
  .slider .slide .margin-left--160 {
    margin: auto;
    text-align: center;
  }
  .slider .slide .margin-left--160 h1 {
    font-size: 36px;
  }
  .slider .slide .margin-left--160 a {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .slider .slide .margin-left--160 .flex {
    justify-content: center;
  }
  .slider .slide .arrow svg path {
    fill: var(--color-primary);
  }
}
@media (max-width: 768px) {
  .slider {
    height: 90vh;
    min-height: 400px;
  }
  .slider .slide {
    flex-direction: column;
  }
  .slider .slide-img {
    position: unset;
    height: 50vh;
  }
}
.three-block-group {
  padding-block: 5rem;
  margin-bottom: 5rem;
  background-color: rgba(196, 196, 196, 0.2);
}
.three-block-group .grid {
  display: grid;
  grid-template-columns: 52fr 45fr;
  grid-gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.three-block-group .grid img {
  width: 100%;
  object-fit: contain;
}
.three-block-group .grid h2 {
  margin-bottom: 1rem;
  width: 25rem;
  max-width: 100%;
}
.three-block-group .grid span {
  display: block;
  margin-bottom: 1rem;
}
.three-block-group .grid span:after {
  content: '';
  display: block;
  height: 1px;
  width: 9rem;
  margin-top: 0.75rem;
  background-color: var(--color-primary);
}
.three-block-group .grid p {
  line-height: 1.5;
  width: 30rem;
  max-width: 100%;
}
.three-block-group .grid:nth-of-type(2n) div:first-of-type {
  order: 2;
}
.three-block-group.inverted {
  background-color: #242424;
}
.three-block-group.inverted h2,
.three-block-group.inverted p,
.three-block-group.inverted span {
  color: #fff;
}
.three-block-group.inverted h2:after,
.three-block-group.inverted p:after,
.three-block-group.inverted span:after {
  background-color: #FFF;
}
@media (max-width: 1280px) {
  .three-block-group {
    padding-inline: 2rem;
  }
}
@media (max-width: 1024px) {
  .three-block-group {
    display: flex;
    flex-direction: column;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .three-block-group .grid {
    width: 60rem;
    max-width: 100%;
    margin-inline: auto;
    grid-template-columns: 1fr;
    margin-bottom: 5rem;
    padding-inline: 2rem !important;
    box-sizing: border-box;
    grid-gap: 1.5rem;
  }
  .three-block-group .grid div:first-of-type {
    order: 2;
  }
  .three-block-group .grid p {
    width: 40rem;
  }
}
@media (max-width: 768px) {
  .three-block-group .grid p {
    width: 100%;
    box-sizing: border-box;
    padding-right: 1rem;
  }
}
body {
  --color-primary: #000;
}
.underlined-link {
  position: relative;
}
.underlined-link::before {
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  transition: right 0.3s;
  background-color: var(--color-primary);
  max-width: 100%;
}
.underlined-link:hover::before {
  right: calc(100% - var(--width));
}
.with-dot,
.has-cube {
  position: relative;
}
.with-dot::after,
.has-cube::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: -0.75rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
}
.red-cube {
  height: 12rem;
  width: 12.5%;
  position: relative;
  left: -12.5%;
}
@media (max-width: 1024px) {
  .red-cube {
    height: 0;
  }
}
.dark-cube {
  height: 12rem;
  width: 10%;
}
@media (max-width: 1024px) {
  .dark-cube {
    height: 0;
  }
}
/*# sourceMappingURL=main.css.map */