@font-face {
  font-display: swap;
  font-family: Barlow Condensed;
  font-style: normal;
  font-weight: 400;
  src: url("barlow-condensed-v12-latin-regular.d202d0c8.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Barlow Condensed;
  font-style: normal;
  font-weight: 600;
  src: url("barlow-condensed-v12-latin-600.c3310ef4.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Barlow Condensed;
  font-style: normal;
  font-weight: 700;
  src: url("barlow-condensed-v12-latin-700.3edf9643.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Barlow Condensed;
  font-style: normal;
  font-weight: 800;
  src: url("barlow-condensed-v12-latin-800.5a24f748.woff2") format("woff2");
}

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

:root {
  --color-text: white;
  --color-bg: black;
  --color-text-alt: red;
  --color-link: red;
  --color-link-hover: white;
  --ratio: .7;
  --grid-item-width: 32vw;
  --justify: space-between;
  --gap: 2.5vw;
  --rotation: 0deg;
  --radius: 0px;
  --offset: -30vh;
  --radius-small: 4px;
  font-size: 16px;
}

body {
  text-transform: uppercase;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-family: Barlow Condensed;
}

.js .loading:before, .js .loading:after {
  content: "";
  z-index: 1000;
  position: fixed;
}

.js .loading:before {
  background: var(--color-bg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.js .loading:after {
  opacity: .4;
  background: var(--color-link);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  animation: .7s linear infinite alternate forwards loaderAnim;
  top: 50%;
  left: 50%;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(.5, .5, 1);
  }
}

a {
  color: var(--color-link);
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  outline: none;
}

a:focus {
  background: #d3d3d3;
  outline: none;
}

a:focus:not(:focus-visible) {
  background: none;
}

a:focus-visible {
  background: none;
  outline: 2px solid red;
}

.unbutton {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}

.unbutton:focus {
  outline: none;
}

.frame {
  color: var(--color-title);
  grid-gap: 1rem;
  z-index: 100;
  background: var(--color-bg);
  grid-template-columns: auto auto;
  grid-template-areas: "title prev"
                       "nav nav"
                       "sponsor sponsor";
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.2;
  display: grid;
  position: relative;
}

.frame a:not(.frame__title-back), .row + p a, .footer a {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.frame a:not(.frame__title-back):before, .row + p a:before, .footer a:before {
  content: "";
  transform-origin: 0%;
  background: currentColor;
  width: 100%;
  height: 1px;
  transition: transform .3s;
  position: absolute;
  top: 90%;
}

.frame a:not(.frame__title-back):hover:before, .row + p a:hover:before, .footer a:before {
  transform-origin: 100%;
  transform: scaleX(0);
}

.frame__title {
  white-space: nowrap;
  grid-area: title;
  display: flex;
}

.frame__title-main {
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
}

.frame__title-back {
  align-items: flex-end;
  display: flex;
  position: relative;
}

.frame__title-back span {
  display: none;
}

.frame__title-back svg {
  fill: currentColor;
}

.frame__prev {
  grid-area: prev;
  justify-self: end;
}

.language__selector-title {
  color: var(--color-text-alt);
  width: 100%;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

.language__selector-item {
  grid-row: 2;
}

.section {
  z-index: 4;
  background: var(--color-bg);
  width: 100%;
  min-height: 60vh;
  line-height: 1;
  position: relative;
  top: 0;
}

.section--intro {
  text-align: left;
  cursor: default;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 60vh;
  margin-bottom: 250vh;
  padding: 0 6vw;
  display: flex;
}

.section__title {
  text-transform: uppercase;
  -moz-font-feature-settings: "swsh";
  -webkit-font-feature-settings: "swsh";
  font-feature-settings: "swsh";
  -webkit-hyphens: auto;
  hyphens: auto;
  width: 100%;
  max-width: 50vw;
  margin: 5vh 0 6vh;
  font-family: Barlow Condensed;
  font-size: clamp(3.125rem, 1.7597rem + 4.3689vw, 8.75rem);
  font-weight: 700;
  line-height: 1;
}

.section__title--medium {
  font-size: clamp(1.5rem, 12vw, 9rem);
}

.section__text {
  max-width: 400px;
  margin: 0;
}

.section__text--alt {
  color: var(--color-text-alt);
  margin-top: auto;
}

.section__arrow {
  fill: currentColor;
  transform: translateY(3px)rotate(135deg);
}

.section--columns {
  z-index: -1;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
}

.columns {
  justify-content: var(--justify);
  gap: var(--gap);
  transform: rotate(var(--rotation));
  will-change: transform, opacity;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.column-wrap {
  z-index: 1;
  will-change: transform;
  flex-direction: column;
  padding: 5vh 0 15vh;
  display: flex;
  position: relative;
}

.column-wrap:nth-child(2n) {
  margin-top: var(--offset);
}

.column {
  will-change: transform;
  display: block;
  position: relative;
}

.column.left {
  padding-top: 30vh !important;
}

.column__item {
  --grid-item-height: calc(var(--grid-item-width) * var(--ratio));
  width: var(--grid-item-width);
  height: var(--grid-item-height);
  border-radius: var(--radius);
  cursor: pointer;
  margin: 0 0 var(--gap) 0;
  z-index: 1;
  will-change: transform, filter;
  position: relative;
  overflow: hidden;
}

.column__item-img {
  will-change: transform;
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.section--benefits {
  text-align: left;
  cursor: default;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 5vw 10vh;
  display: flex;
}

.section--product {
  align-items: left;
  text-align: left;
  cursor: default;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5vw 10vh;
  display: flex;
}

.section--product h2, .section--product h3 {
  width: 75%;
}

.footer {
  width: 100%;
  margin-top: 8rem;
}

.logo__footer {
  width: 220px;
  height: auto;
  margin-bottom: 2rem;
}

.wrapper__footer {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  font-size: 20px;
  display: flex;
}

.footer .imprint {
  flex-direction: row;
  justify-content: flex-end;
  gap: 40px;
  display: flex;
}

.footer .copyright {
  flex-direction: column;
  display: flex;
}

.section__header {
  border-bottom: 1px solid #000;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
  padding: 4vh 8vw;
  display: flex;
}

.section__year {
  color: var(--color-text-alt);
}

.row {
  text-align: left;
  width: 100%;
}

.row__header {
  grid-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 4ch 1fr;
  justify-content: start;
  width: 100%;
  padding: 6rem 0 3rem;
  display: grid;
}

.row__header span:last-child {
  grid-column: 1 / span 2;
}

.row__content {
  grid-gap: 1rem;
  grid-auto-flow: column;
  justify-content: start;
  width: 100%;
  display: grid;
}

.row__content-imgwrap {
  border-radius: var(--radius-small);
  position: relative;
  overflow: hidden;
}

.row__content-img {
  aspect-ratio: 2;
  background-position: 50%;
  background-size: cover;
  height: 100px;
}

.row__content-imgwrap:nth-child(2n) .row__content-img {
  aspect-ratio: 1;
}

.row__content-imgwrap:nth-child(4n) .row__content-img {
  aspect-ratio: 1.5;
}

.row__content-imgwrap:last-child {
  justify-content: end;
}

.row__content-imgwrap:last-child .row__content-img {
  aspect-ratio: 2.75;
}

.row + p {
  margin-top: 40vh;
}

.logo__left img {
  width: 400px;
  height: auto;
}

.red {
  color: var(--color-text-alt);
}

h2 {
  -moz-font-feature-settings: "swsh";
  -webkit-font-feature-settings: "swsh";
  font-feature-settings: "swsh";
  -webkit-hyphens: auto;
  hyphens: auto;
  border-left: 3px solid red;
  margin: 0;
  padding: 25px;
  font-size: 100px;
  line-height: 85%;
}

h3 {
  -moz-font-feature-settings: "swsh";
  -webkit-font-feature-settings: "swsh";
  font-feature-settings: "swsh";
  -webkit-hyphens: auto;
  hyphens: auto;
  font-size: 2.5rem;
}

.box h3 {
  font-size: 2rem;
}

.wrapper {
  background-color: #0000;
  height: auto;
  min-height: 100vh;
  display: flex;
  overflow: visible;
}

.column {
  width: 50%;
}

.left h3 {
  width: 85%;
}

.right {
  background-color: #0000;
  padding: 0;
}

.boxes-container {
  flex-direction: column;
  align-items: end;
  display: flex;
}

.box {
  background-color: red;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  height: 350px;
  margin-bottom: 50px;
  padding: 3rem;
  display: flex;
  position: relative;
}

.box .icon {
  width: 80px;
  height: auto;
}

.box .icon svg {
  width: 100%;
  height: auto;
}

.box:last-child {
  margin-bottom: 0;
}

.proto img {
  border-radius: 20px;
  width: 100%;
  max-width: 50%;
  height: auto;
}

#label {
  position: absolute;
  top: 0;
  right: 0;
}

.madeinaustria {
  opacity: .2;
  width: 40vw;
  height: auto;
}

.mask img {
  transform-origin: 0;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 80vh;
}

.mask {
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.section--fullimage {
  padding: 10vh;
}

a.language__current {
  color: #fff;
}

.language__selector {
  gap: 40px;
  display: flex;
}

@media only screen and (width <= 767px) {
  .frame {
    flex-direction: column-reverse;
    padding: 4vh 6vw;
    display: flex;
  }

  .logo__left img {
    width: 300px;
  }

  .logo__left {
    margin-top: 20px;
  }

  .language__selector {
    gap: 20px;
    display: flex;
  }

  .section--benefits .section.wrapper {
    flex-direction: column;
    display: flex;
  }

  .column.left, .column.right {
    width: 100%;
    padding-top: 0 !important;
  }

  h2 {
    font-size: 80px;
  }

  .boxes-container {
    flex-direction: column;
    align-items: start;
    gap: 40px;
    display: flex;
  }

  .box {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    padding: 2rem;
  }

  .section--product h2, .section--product h3 {
    width: 100%;
  }

  .section__title {
    width: 100%;
    max-width: 100%;
    font-size: 80px;
  }

  .section--intro {
    text-align: left;
    cursor: default;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    height: 100%;
    margin-bottom: 50vh;
    padding: 0 6vw;
    display: flex;
    overflow: hidden;
  }

  #label {
    display: none;
  }

  .footer .imprint {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
    display: flex;
  }

  .wrapper__footer {
    flex-direction: column;
    width: 100%;
    font-size: 20px;
    display: flex;
  }

  .section--fullimage {
    padding: 0;
  }

  .left h3 {
    -webkit-hyphens: none;
    hyphens: none;
    width: 100%;
  }

  .mask img {
    transform-origin: 0;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 0;
    width: 100%;
    height: 80vh;
  }

  .section--columns {
    scale: 1.8 !important;
  }

  .column-wrap:nth-child(2n) {
    margin-top: 0 !important;
  }
}

@media only screen and (width <= 1199px) and (width >= 768px) {
  .section__title {
    width: 100%;
    max-width: 100vw;
    font-size: 100px;
  }

  .frame {
    color: var(--color-title);
    grid-gap: 1rem;
    z-index: 100;
    background: var(--color-bg);
    grid-template-columns: auto auto;
    grid-template-areas: "title prev"
                         "nav nav"
                         "sponsor sponsor";
    width: 100%;
    padding: 6vw;
    font-size: 1rem;
    line-height: 1.2;
    display: grid;
    position: relative;
  }

  .section--intro {
    overflow: hidden;
  }

  #label {
    width: 70vw;
    top: 0;
    right: -200px;
  }

  .madeinaustria {
    width: 100%;
  }

  .section--columns {
    scale: 1.8 !important;
  }

  .column.left {
    padding-top: 15vh !important;
  }

  .section--fullimage {
    padding: 3vh;
  }
}

@media screen and (width >= 53em) {
  .frame {
    background: var(--color-bg);
    justify-content: space-between;
    place-items: center start;
    padding: 6vw;
    display: flex;
  }

  .frame__prev {
    justify-self: start;
  }

  .language__selector {
    text-align: center;
    gap: 40px;
    font-weight: 700;
    display: flex;
  }

  .section, .row {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .row__header {
    grid-template-rows: auto;
    grid-template-columns: 4ch auto 1fr;
    display: grid;
  }

  .row__header span:last-child {
    grid-column: revert;
    justify-self: end;
  }
}

/*# sourceMappingURL=index.d046a61c.css.map */
