/* base */
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* colors palette */
/* typography base values */
/* type scale */
/* spacing values */
/* layout */
/* typography */
body {
  font-family: "Cinetype";
}

@font-face {
  font-family: "Cinetype";
  font-style: normal;
  font-display: swap;
  src: url("/assets/font/GT-Cinetype-Regular.woff") format("woff");
}
@font-face {
  font-family: "Cinetype-Italic";
  font-style: italic;
  font-display: swap;
  src: url("/assets/font/GT-Cinetype-Regular-Italic.woff") format("woff");
}
@font-face {
  font-family: "Cinetype-Mono";
  font-style: normal;
  font-display: swap;
  src: url("/assets/font/GT-Cinetype-Mono.woff") format("woff");
}
body {
  font-family: "Cinetype";
  color: #000;
}

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

h1, h2 {
  line-height: 2;
}

p, h4, h3, h5 {
  line-height: 1.3;
}

p {
  font-size: calc(1rem * 1.2);
}

a {
  color: #000;
}

figcaption {
  font-family: "Cinetype-Mono";
}

@media (min-width: 320px) and (max-width: 428px) {
  p {
    font-size: calc(1rem / (1.2 * 1.2) * 1.2);
  }
  h4 {
    font-size: calc(calc(1rem / (1.2 * 1.2) * 1.2) * 1.15);
  }
  figcaption {
    font-size: calc(1rem / 1.2 * 0.8) !important;
  }
  h1, h2 {
    line-height: 1.3;
  }
}
@media (min-width: 2048px) and (max-width: 5000px) {
  html {
    font-size: 20px;
  }
}
h1, .text--xxxl {
  font-size: calc(1rem * 1.2 * 1.2 * 1.2 * 1.2 * 1.2 * 1.2 * 1.2);
}

h2, .text--xxl {
  font-size: calc(1rem * 1.2 * 1.2 * 1.2 * 1.2 * 1.2);
}

h3, .text--xl {
  font-size: calc(1rem * 1.2 * 1.2 * 1.2);
}

h4, .text--lg {
  font-size: calc(1rem * 1.2 * 1.1);
}

h5, .text--sm, figcaption {
  font-size: calc(1rem / (1.2 * 1.2) * 1.2);
}
h5 p, .text--sm p, figcaption p {
  font-size: calc(1rem / (1.2 * 1.2) * 1.2);
}

h6, .text--xs {
  font-size: calc(1rem / 1.2);
}

/* layout */
.grid {
  display: flex;
  flex-wrap: wrap;
  padding: 128px 4rem 4rem 4rem;
  background: white;
}
.grid__block {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-flex;
  background: white;
}

@media (min-width: 320px) and (max-width: 428px) {
  .grid {
    padding: 0 1rem 1rem 1rem;
  }
  .grid__block {
    display: block;
  }
}
@media (min-width: 2048px) and (max-width: 5000px) {
  .grid {
    padding: 0 8rem 8rem 8rem;
  }
}
.span12 {
  width: 100%;
  height: fit-content;
}

@media (min-width: 320px) and (max-width: 428px) {
  .span12 {
    padding-top: 1rem;
  }
}
.span6 {
  flex: 1;
}
.span6:last-child {
  padding-left: 1rem;
  flex: 1;
}

@media (min-width: 320px) and (max-width: 428px) {
  .span6 {
    width: 100%;
  }
  .span6:last-child {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0;
  }
}
.shrinkleft .span6:first-child {
  flex: 3;
}

.shrinkright .span6:last-child {
  flex: 3;
}

.grid__block__text .cc2 {
  column-count: 2;
}

.block__type__multicolumns {
  width: 100%;
  margin: auto;
  display: flex;
  height: fit-content;
}
.block__type__multicolumns div {
  flex: 1;
}
.block__type__multicolumns div:first-child {
  padding-right: 1rem;
}

@media (min-width: 320px) and (max-width: 428px) {
  .block__type__multicolumns div {
    width: 100%;
    padding-top: 1rem;
  }
}
.grid__block__image {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.grid__block__image figure {
  position: relative;
}
.grid__block__image figure img, .grid__block__image figure video, .grid__block__image figure iframe {
  width: 100%;
}
.grid__block__image figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
}

.block__type__multicolumns .grid__block__image.big {
  flex: 3;
}

.block__type__multicolumns .grid__block__image.medium {
  flex: 2;
}

.grid__block__image.big figure {
  width: 100%;
}

.grid__block__image.medium figure {
  width: 65%;
}

.grid__block__image.small {
  width: 30%;
}

.grid__block__image.tiny {
  width: 22.5%;
}

.grid__block__image.centered {
  justify-content: center;
}

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

.grid__block__image.right {
  justify-content: flex-end;
}

@media (min-width: 320px) and (max-width: 428px) {
  .grid__block__image.small {
    width: 50%;
  }
  .grid__block__image.tiny {
    width: 50%;
  }
  .span12 .grid__block__image.medium figure {
    width: 100%;
  }
}
.grid__block__margin {
  height: 1rem;
}

@media (min-width: 320px) and (max-width: 428px) {
  .grid__block__margin {
    height: 0rem;
    padding-bottom: 0 !important;
  }
}
/* sections */
#header {
  top: 0;
  position: fixed;
  width: 100%;
  height: fit-content;
  font-size: calc(1rem * 1.2 * 1.2 * 1.2 * 1.2 * 1.2);
  padding: 4rem 0 0 4rem;
  line-height: 0.8666666667;
  transition: all 0.3s ease;
  touch-action: manipulation;
  cursor: pointer;
  z-index: 1;
  left: -3px;
}

@media (min-width: 320px) and (max-width: 428px) {
  #header {
    padding: 1rem 0 0 1rem;
    font-size: calc(1rem * 1.2 * 1.2 * 1.2 * 1.2 * 1.2);
  }
}
#container {
  position: relative;
}

.menu {
  z-index: 2;
  position: fixed;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  left: 1rem;
  top: 1rem;
}
.menu a {
  text-decoration: none;
  color: inherit;
}

/* elements */
#scene-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.stretch {
  transform-origin: top;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.stretch * {
  transform-origin: top;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.stretch.visible {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
}

.sticky {
  position: sticky;
}

model-viewer {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (min-width: 320px) and (max-width: 428px) {
  model-viewer {
    width: 100%;
    height: 75%;
  }
}
.view-button {
  background: #fff;
  box-sizing: border-box;
  border: none;
  outline: 1px solid black;
  position: absolute;
  width: 35px;
  height: 25px;
  font-size: calc(1rem * 1.2);
  transform: translate3d(-50%, -50%, 0);
  color: black !important;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.view-button:before {
  display: block;
  content: "";
  width: 1px;
  height: 40px;
  background-color: black;
  position: absolute;
  left: -1px;
  top: -1px;
}
.view-button:hover {
  top: -10px;
}
.view-button:hover:before {
  height: 50px;
}

@media (min-width: 320px) and (max-width: 428px) {
  .view-button {
    width: 22.5px;
    height: 15px;
    font-size: calc(1rem / 1.2);
  }
  .view-button:before {
    height: 25px;
  }
  .view-button:hover {
    top: -5px;
  }
  .view-button:hover:before {
    height: 30px;
  }
}

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