@charset "UTF-8";
/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

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

li {
  list-style: none;
}

html {
  scrollbar-gutter: stable;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  color: inherit;
  background: none;
  outline: inherit;
  cursor: pointer;
}

[hidden] {
  display: none;
}

/* Theme */
/* Root */
:root {
  font-size: 16px;
  line-height: 1.3;
  --black: #1a1a1a;
  --graphite: #666666;
  --gray: #d6d6d6;
  --silvery-white: #e3e4e5;
  --white: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

p,
a {
  font-size: 1rem;
}

a {
  color: var(--black);
  text-decoration: none;
}

/* Swup */
.transition-fade {
  transition: opacity 0.33s ease-in-out;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

/* Zapobiega interakcji podczas animacji, ale nie rusza overflow/scrollbara */
html.is-animating {
  pointer-events: none;
}

/* Body */
body {
  width: 100%;
  height: 100%;
  color: var(--black);
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--white);
}

/* Cookies */
.cookies {
  width: calc(100% - 30px - 30px);
  max-width: 25%;
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 30px;
  background: var(--black);
  z-index: 999 !important;
}
.cookies__actions {
  display: flex;
  gap: 30px;
}
.cookies__actions--tab {
  color: var(--white);
  font-size: 0.875rem;
  background: none;
  border: 0;
  opacity: 0.5;
  cursor: pointer;
}
.cookies__actions--tab.active {
  opacity: 1;
}
.cookies__content {
  padding: 15px 0;
}
.cookies__content--panel {
  display: none;
}
.cookies__content--panel.active {
  display: block;
}
.cookies__content--panel__notice {
  color: var(--white);
  font-size: 0.875rem;
}
.cookies__content--panel__agreements {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.cookies__content--panel__agreements label {
  color: var(--white);
  font-size: 0.875rem;
}
.cookies__content--panel__accordion {
  border-top: 1px solid var(--graphite);
}
.cookies__content--panel__accordion--header {
  width: 100%;
  padding: 15px 0;
  color: var(--white);
  font-size: 0.875rem;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}
.cookies__content--panel__accordion--body {
  color: var(--white);
  font-size: 0.875rem;
  overflow: hidden;
}
.cookies__cta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.cookies__cta--accept {
  color: var(--white);
  font-size: 0.875rem;
  background-color: transparent;
  border: 1px solid var(--white);
  padding: 7px 14px;
  transition: 0.33s ease;
  cursor: pointer;
}
.cookies__cta--accept:hover {
  color: var(--black);
  background-color: var(--white);
}
.cookies__cta--stack {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.cookies__cta--stack__accept-selected, .cookies__cta--stack__reject {
  color: var(--white);
  font-size: 0.875rem;
  background-color: transparent;
  padding: 7px 0;
  cursor: pointer;
}
.cookies__cta--stack__accept-selected {
  opacity: 1;
  transition: opacity 0.16s ease;
}
.cookies__cta--stack__accept-selected:hover {
  opacity: 0.5;
}
.cookies__cta--stack__reject {
  opacity: 0.5;
  transition: opacity 0.16s ease;
}
.cookies__cta--stack__reject:hover {
  opacity: 1;
}

/* Desktop */
/* Logo */
.information__data--logo, .navigation__logo {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--black);
  transition: color 0.33s ease;
}
.information__data--logo svg, .navigation__logo svg {
  width: auto;
  height: 10px;
  display: block;
  overflow: visible;
  shape-rendering: geometricPrecision;
}
.information__data--logo:hover, .navigation__logo:hover {
  color: var(--graphite);
}

/* Navigation */
.navigation {
  width: calc(100% - 60px);
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 3;
}
.navigation__logo {
  z-index: 6;
}
.navigation__toggle {
  display: none;
}
.navigation__actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.navigation__actions--menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.navigation__actions--menu li a {
  color: var(--black);
  font-size: 0.875rem;
  transition: color 0.33s;
}
.navigation__actions--menu li a:hover {
  color: var(--graphite);
}
.navigation__actions--cta {
  color: var(--black);
  font-size: 0.875rem;
  transition: color 0.33s;
}
.navigation__actions--cta:hover {
  color: var(--graphite);
}

/* Container */
.container {
  width: 100%;
  height: auto;
  margin-top: 74px;
  padding: 30px;
  z-index: 2;
}

#homepage .container {
  width: 100%;
  height: calc(100svh - 30px - 14px - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 74px;
  margin-top: 0;
  padding: 30px;
  z-index: 2;
}
#homepage .information {
  display: none;
}

/* Categories */
.categories {
  width: 100%;
  margin-top: calc(12.5svh - 30px - 30px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.categories__reveal {
  display: flex;
  align-items: center;
  justify-self: start;
  position: absolute;
  left: 0;
  font-size: 1rem;
  color: var(--black);
  opacity: 0;
  transition: opacity 0.33s ease, transform 0.33s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.categories__reveal--category {
  font-size: 1rem;
  white-space: nowrap;
}
.categories__reveal--category::first-letter {
  margin-right: -0.02em;
}
.categories__reveal--cursor {
  width: 8px;
  height: 16px;
  display: inline-block;
  margin-left: 4px;
  background: currentColor;
  animation: categories 1s infinite;
}
.categories__list {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.categories__list.is-hovering li a {
  color: var(--graphite);
}
.categories__list li {
  width: -moz-fit-content;
  width: fit-content;
}
.categories__list li a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.33s ease;
}
.categories__list li a:hover {
  color: var(--black) !important;
}

@keyframes categories {
  50% {
    opacity: 0;
  }
}
/* Brands */
.brands {
  width: 100%;
  height: auto;
}
.brands__list {
  max-width: 480px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
}
.brands__list img {
  display: block;
  width: auto;
  opacity: 0.33;
}
.brands__list img[alt=Adobe] {
  height: 18px;
  margin-top: 2px;
}
.brands__list img[alt=Blender] {
  height: 21px;
}
.brands__list img[alt=Houdini] {
  height: 11px;
  margin-top: 5px;
}
.brands__list img[alt=Unity] {
  height: 22px;
}
.brands__list img[alt=Apple] {
  height: 17px;
  margin-top: 2px;
}
.brands__sneakpeak {
  max-width: 480px;
  margin: 19.5px auto 0 auto;
}
.brands__sneakpeak p,
.brands__sneakpeak span {
  font-size: 0.625rem;
  opacity: 0.33;
}
.brands__sneakpeak span {
  display: block;
  margin-top: 15px;
}

/* Root */
canvas {
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 1;
}

/* About */
.about {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: calc(12.5svh - 30px - 30px);
}
.about__title {
  grid-column: 2;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}
.about__content {
  grid-column: 3;
}
.about__content p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.about__content p:not(:first-of-type) {
  margin-top: 15px;
}
.about__content--cta {
  position: relative;
  padding: 0;
  margin-top: 30px;
  background: none;
  border: none;
  cursor: pointer;
}
.about__content--cta a {
  font-size: 1rem;
  transition: color 0.33s ease;
}
.about__content--cta a:hover {
  color: var(--graphite);
}
.about__content--cta::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--white);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.33s cubic-bezier(0.65, 0, 0.35, 1);
}
.about__content--cta:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}
.about__content--not-allowed {
  position: relative;
  padding: 0;
  margin-top: 30px;
  background: none;
  border: none;
  cursor: not-allowed;
}
.about__content--not-allowed a {
  color: var(--graphite);
  font-size: 1rem;
  transition: color 0.33s ease;
  pointer-events: none;
}
.about__content--not-allowed::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--graphite);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.33s cubic-bezier(0.65, 0, 0.35, 1);
}
.about__content--not-allowed:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}

/* Team */
.team {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 12.5svh;
}
.team__member {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.team__member--thumbnail {
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
  background: var(--gray);
  overflow: hidden;
}
.team__member--thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform, clip-path;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  transform: scale(1.1);
}
.team__member--data {
  width: 100%;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.team__member--data span {
  display: block;
}
.team__member--data span:nth-child(3) {
  color: var(--graphite);
}

/* Partners */
.partners {
  width: 100%;
  height: auto;
  margin-top: 12.5svh;
  border-bottom: 1px solid var(--silvery-white);
}
.partners__title {
  display: block;
  padding-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--silvery-white);
}
.partners__list {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  padding: 60px 0;
}
.partners__list--details {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.partners__list--details__logo {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.partners__list--details__logo img {
  width: auto;
  display: block;
  opacity: 0.33;
  filter: grayscale(1);
  transition: opacity 0.3s ease;
}
.partners__list--details__logo img[alt=Apple] {
  height: 40px;
}
.partners__list--details__logo img[alt=Nvidia] {
  height: 30px;
  margin-top: 10px;
}
.partners__list--details__logo img[alt=Intel] {
  height: 26px;
  margin-top: 11px;
}
.partners__list--details__link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  opacity: 0.33;
  transition: opacity 0.3s ease;
}
.partners__list--details__link span {
  font-size: 1rem;
  line-height: 1;
}
.partners__list--details__link svg {
  width: 10px;
  height: 10px;
  display: block;
  flex-shrink: 0;
  shape-rendering: crispEdges;
}
.partners__list--details__link svg line, .partners__list--details__link svg polyline {
  stroke-width: 1px;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}
.partners__list--details:hover .partners__list--details__logo img,
.partners__list--details:hover .partners__list--details__link {
  opacity: 1;
}

/* Shop */
.shop {
  width: 100%;
  height: calc(100svh - 30px - 14px - 30px - 30px - 30px);
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin-top: calc(12.5svh - 30px - 30px);
}
.shop__breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}
.shop__breadcrumb a {
  transition: color 0.33s ease;
}
.shop__breadcrumb a:hover {
  color: var(--graphite);
}
.shop__breadcrumb--active {
  color: var(--graphite);
  transition: color 0.33s ease;
}
.shop__breadcrumb--active:hover {
  color: var(--black) !important;
}
.shop__notification {
  grid-column: 2;
}
.shop__notification--message {
  color: var(--graphite);
}
.shop__notification--join {
  margin-top: 12.5svh;
}
.shop__notification--join__title {
  font-size: 1.5rem;
  font-weight: 500;
}
.shop__notification--join__form {
  width: 66.6666666667%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 30px;
}
.shop__notification--join__form--input {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--silvery-white);
  transition: border-color 0.33s ease;
}
.shop__notification--join__form--input:focus-within {
  border-bottom: 1px solid var(--black);
}
.shop__notification--join__form--input input {
  flex: 1;
  padding: 0;
  color: var(--black);
  font-size: 1rem;
  background: transparent;
  border: none;
  outline: none;
}
.shop__notification--join__form--input input::-moz-placeholder {
  color: var(--graphite);
}
.shop__notification--join__form--input input::placeholder {
  color: var(--graphite);
}
.shop__notification--join__form--input button {
  padding-left: 15px;
  color: var(--black);
  font-size: 1rem;
  background: transparent;
  border: none;
  transition: color 0.33s ease;
  cursor: pointer;
}
.shop__notification--join__form--input button:hover {
  color: var(--graphite);
}
.shop__notification--join__form--legal-area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.shop__notification--join__form--legal-area input[type=checkbox] {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--graphite);
  transition: all 0.33s ease;
  cursor: pointer;
}
.shop__notification--join__form--legal-area input[type=checkbox]:checked {
  background: var(--black);
  border-color: var(--black);
}
.shop__notification--join__form--legal-area p, .shop__notification--join__form--legal-area a {
  font-size: 0.75rem;
  color: var(--graphite);
  line-height: 1;
}
.shop__notification--join__form--legal-area a {
  text-decoration: underline;
  transition: color 0.33s ease;
}
.shop__notification--join__form--legal-area a:hover {
  color: var(--black);
}

/* Contact */
.contact {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 15px;
  margin-top: calc(12.5svh - 60px);
}
.contact__location--details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
}
.contact__location--details__timezone > span:first-child {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
}
.contact__location--details__timezone div[id^=time] {
  display: flex;
  align-items: center;
  color: var(--graphite);
  font-size: 1.5rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.contact__location--details__timezone div[id^=time] span {
  display: inline-block;
  font-size: 1.5rem;
}
.contact__location--details__timezone div[id^=time] span:nth-child(2) {
  padding: 0;
  animation: contact 2s step-end infinite;
}
.contact__location--details__timezone div[id^=time] span:last-child {
  margin-left: 5px;
}
.contact__location--details__representative span {
  display: block;
}
.contact__location--details__representative a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-top: 30px;
  padding: 0;
  font-size: 1rem;
  background: none;
  border: none;
  transition: color 0.33s ease;
  cursor: pointer;
}
.contact__location--details__representative a:hover {
  color: var(--graphite);
}
.contact__location--details__representative a::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--black);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.33s cubic-bezier(0.65, 0, 0.35, 1);
}
.contact__location--details__representative a:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes contact {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* Location */
.location {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 15px;
  margin-top: 12.5svh;
}
.location__gallery {
  display: flex;
  flex-direction: column;
}
.location__gallery--thumbnail {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.location__gallery--thumbnail img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.location__gallery--thumbnail:only-child,
.location__gallery--thumbnail img:only-child {
  flex: 1;
  height: 100%;
}
.location__gallery--thumbnail:not(:only-child) img {
  height: calc(50% - 7.5px);
}

/* Document */
.document {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin-top: calc(12.5svh - 60px);
}
.document__version {
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 30px;
}
.document__version span {
  display: block;
}
.document__version span:nth-child(1) {
  font-size: 1.5rem;
  font-weight: 500;
}
.document__version span:nth-child(2) {
  margin-top: 0px;
}
.document__version span:nth-child(2), .document__version span:nth-child(3) {
  color: var(--graphite);
  font-size: 0.875rem;
}
.document__content {
  width: 66.6666666667%;
}
.document__content--section span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
.document__content--section p,
.document__content--section li {
  color: var(--graphite);
  font-size: 0.875rem;
}
.document__content--section p {
  margin: 15px 0;
}
.document__content--section p strong {
  color: var(--black);
  font-weight: 500;
}
.document__content--section p a {
  color: var(--graphite);
  font-size: 0.875rem;
  transition: color 0.33s ease;
}
.document__content--section p a:hover {
  color: var(--black);
}
.document__content--section ul {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}
.document__content--section ul li {
  position: relative;
  padding-left: 10px;
}
.document__content--section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
}
.document__content--section ul li.no-bullet {
  padding-left: 0;
}
.document__content--section ul li.no-bullet::before {
  display: none;
}

/* Information */
.information {
  width: 100%;
  height: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
}
.information__manifest {
  padding: calc(12.5svh - 60px) 0;
}
.information__manifest--wrapper {
  max-width: 50%;
  margin: 0 auto;
}
.information__manifest--wrapper__text {
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.information__manifest--wrapper__text .char {
  display: inline-block;
  will-change: filter;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.information__manifest--wrapper__text .word {
  display: inline-block;
  white-space: nowrap;
}
.information__social-media {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10.8px;
}
.information__social-media a {
  font-size: 0.875rem;
  transition: color 0.33s ease;
}
.information__social-media a:hover {
  color: var(--graphite);
}
.information__data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--silvery-white);
  padding-top: 30px;
}
.information__data--legal-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.information__data--legal-area__documents {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.information__data--legal-area__documents li a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 0.875rem;
  transition: color 0.33s ease;
}
.information__data--legal-area__documents li a:hover {
  color: var(--graphite);
}
.information__data--legal-area__copyright {
  color: inherit;
  font-size: 0.875rem;
}

/* Mobile */
/* 1024 */
@media (max-width: 1024px) {
  html {
    scrollbar-gutter: auto;
  }
  /* Cookies */
  .cookies {
    width: 100vw;
    max-width: 100vw;
    bottom: 0px;
    right: 0px;
  }
  /* Logo */
  .navigation__logo, .information__data--logo {
    transition: none;
  }
  .navigation__logo:hover, .information__data--logo:hover {
    color: var(--black);
  }
  /* Navigation */
  .navigation {
    width: 100%;
    top: 0;
    left: 0;
    padding: 30px;
  }
  .navigation__logo svg {
    height: 15px;
  }
  .navigation__toggle {
    width: 30px;
    height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    justify-self: end;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 5;
  }
  .navigation__toggle span {
    width: 100%;
    height: 2px;
    display: block;
    background: var(--black);
  }
  .navigation__actions {
    width: 100%;
    height: 100svh;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    padding: 30px;
    background: var(--white);
    opacity: 0;
    z-index: 4;
  }
  .navigation__actions--menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: calc(12.5svh + 15px);
    list-style: none;
  }
  .navigation__actions--menu li a {
    font-size: 1.5rem;
    font-weight: 500;
    transition: none;
  }
  .navigation__actions--menu li a:hover {
    color: var(--black);
  }
  .navigation__actions--cta {
    font-size: 1.5rem;
    font-weight: 500;
    transition: none;
  }
  .navigation__actions--cta:hover {
    color: var(--black);
  }
  /* Container */
  .container {
    margin-top: 75px;
  }
  #homepage .container {
    height: calc(100svh - 30px - 15px - 30px);
    top: 75px;
  }
  /* Categories */
  .categories {
    grid-template-columns: 1fr;
  }
  .categories__reveal {
    display: none;
    transition: none;
  }
  .categories__reveal--cursor {
    animation: none;
  }
  .categories__list {
    grid-column: 1;
    grid-row-gap: 15px;
  }
  .categories__list.is-hovering li a {
    color: var(--black);
  }
  .categories__list li a {
    transition: none;
  }
  /* Root */
  #root {
    display: none !important;
  }
  /* Brands */
  .brands__list {
    max-width: 100%;
  }
  .brands__sneakpeak {
    max-width: 100%;
  }
  /* About */
  .about {
    grid-template-columns: 1fr;
  }
  .about__title {
    grid-column: 1;
  }
  .about__content {
    grid-column: 1;
    margin-top: 30px;
  }
  .about__content--cta a {
    transition: none;
  }
  .about__content--cta a:hover {
    color: var(--black);
  }
  .about__content--cta::after {
    background-color: var(--black);
    transform: none;
    transform-origin: none;
    transition: none;
  }
  .about__content--cta:hover::after {
    transform: none;
    transform-origin: none;
  }
  .about__content--not-allowed::after {
    background-color: var(--graphite);
    transform: none;
    transform-origin: none;
    transition: transform none;
  }
  .about__content--not-allowed:hover::after {
    transform: none;
    transform-origin: none;
  }
  /* Team */
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Partners */
  .partners__list {
    width: 100%;
  }
  .partners__list--details__logo img {
    transition: none;
  }
  .partners__list--details__link {
    transition: none;
  }
  .partners__list--details:hover .partners__list--details__logo img,
  .partners__list--details:hover .partners__list--details__link {
    opacity: 0.33;
  }
  /* Shop */
  .shop {
    height: calc(100svh - 30px - 15px - 30px - 30px - 30px);
    grid-template-columns: 1fr;
    align-content: start;
  }
  .shop__breadcrumb {
    display: none;
  }
  .shop__notification {
    grid-column: 1;
  }
  .shop__notification--join__form {
    width: 100%;
  }
  .shop__notification--join__form--input button {
    transition: none;
  }
  .shop__notification--join__form--input button:hover {
    color: var(--black);
  }
  .shop__notification--join__form--legal-area a {
    transition: none;
  }
  .shop__notification--join__form--legal-area a:hover {
    color: var(--graphite);
  }
  /* Document */
  .document {
    grid-template-columns: 1fr;
    align-content: start;
  }
  .document__version {
    height: auto;
    position: static;
    top: 0;
  }
  .document__content {
    width: 100%;
    margin-top: 30px;
  }
  .document__content--section p a {
    transition: none;
  }
  .document__content--section p a:hover {
    color: var(--graphite);
  }
  /* Information */
  .information__manifest--wrapper {
    max-width: 100%;
    margin: 0;
  }
  .information__manifest--wrapper__text {
    font-size: 1.5rem;
  }
  .information__social-media a {
    transition: none;
  }
  .information__social-media a:hover {
    color: var(--black);
  }
  .information__data--legal-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .information__data--legal-area__documents li a {
    transition: none;
  }
  .information__data--legal-area__documents li a:hover {
    color: var(--black);
  }
}
/* 480 */
@media (max-width: 480px) {
  /* Brands */
  .brands__list img[alt=Adobe] {
    display: none;
  }
  .brands__list img[alt=Apple] {
    display: none;
  }
  /* Team */
  .team {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 30px;
  }
  /* Partners */
  .partners__list {
    width: 100%;
    padding: 19px 0 30px 0;
  }
  .partners__list--details__logo {
    height: 20px;
  }
  .partners__list--details__logo img[alt=Apple] {
    height: 20px;
    margin-top: 5px;
  }
  .partners__list--details__logo img[alt=Nvidia] {
    height: 15px;
    margin-top: 10px;
  }
  .partners__list--details__logo img[alt=Intel] {
    height: 13px;
    margin-top: 11px;
  }
  .partners__list--details__link {
    display: none;
  }
  /* Contact */
  .contact {
    grid-column-gap: 0px;
  }
  .contact__location--details__representative a {
    transition: none;
  }
  .contact__location--details__representative a:hover {
    color: var(--black);
  }
  .contact__location--details__representative a::after {
    transform: none;
    transform-origin: none;
    transition: transform none;
  }
  .contact__location--details__representative a:hover::after {
    transform: none;
    transform-origin: none;
  }
  /* Location */
  .location {
    grid-template-columns: 1fr;
    align-content: start;
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }
  .location__gallery--thumbnail {
    gap: 30px;
  }
}/*# sourceMappingURL=styles.css.map */