@font-face {
  font-family: "Laica";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ABCLaicaA-RegularItalic.woff2") format("woff2"),
    url("../fonts/ABCLaicaA-RegularItalic.woff") format("woff");
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-accent: #6b2571;
  --color-accent-dark: #240f3d;

  --font-size-xs: 0.625rem; /* 10px */
  --font-size-s: 0.875rem; /* 14px */
  --font-size-m: 1.5625rem; /* 25px */
  --font-size-l: 2.5rem; /* 40px */

  --vh-100: 100vh;

  --mouse-x: 0;
  --mouse-y: 0;
}

body {
  font-family: "Laica";
  font-size: var(--font-size-s);
  line-height: 1.2;
  background-color: var(--color-black);
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* scrolling and animation containers */

.scrolling-container {
  height: var(--vh-100);
  width: 100vw;
  overflow: hidden;
}

.scrollbar-track {
  background-color: transparent !important;
}

.state--modal-open .scrollbar-track {
  display: none !important;
  pointer-events: none !important;
}

.scrollbar-thumb {
  left: -2px !important;
}

.scrolling__transform {
  height: var(--vh-100);
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.scrolling__section {
  height: var(--vh-100);
  opacity: 1;
  transition: opacity 1800ms ease 1000ms;
}

.state--loading .scrolling__section {
  opacity: 0;
}

.scrolling__section--intro {
  position: relative;
}

.scrolling__title {
  background-color: var(--color-black);
  color: var(--color-white);
  transform: rotate(180deg);
  border-right: 1px solid var(--color-white);
  position: fixed;
  left: 0;
  height: var(--vh-100);
  z-index: 5;
  opacity: 1;
  width: 49px;
  transition: opacity 600ms ease 800ms;
}

.scrolling__title:nth-child(2) {
  transition: opacity 500ms ease 900ms;
}

.scrolling__title:nth-child(4) {
  transition: opacity 500ms ease 850ms;
}

.scrolling__title:nth-child(7) {
  transition: opacity 500ms ease 800ms;
}

.state--loading .scrolling__title {
  opacity: 0;
}

.scrolling__title-inner {
  writing-mode: tb;
  text-align: center;
  display: block;
  padding: 1rem;
  height: 100%;
}

.cross {
  width: 1px;
  height: 1px;
  position: absolute;
}

.cross::before,
.cross::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  transform: translate3d(-50%, 0, 0);
}

.cross--white::before,
.cross--white::after {
  background-color: var(--color-white);
}

.cross::after {
  transform: translate3d(-50%, 0, 0) rotate(90deg);
}

.will-appear {
  position: relative;
  overflow: hidden;
  --appear-angle: 250deg;
  --appear-color-0: rgba(0, 0, 0, 0);
  --appear-color-1: rgba(0, 0, 0, 1);
}

.will-appear.will-appear--white {
  --appear-color-0: rgba(255, 255, 255, 0);
  --appear-color-1: rgba(255, 255, 255, 1);
}

.will-appear::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    var(--appear-angle),
    var(--appear-color-1) 5%,
    var(--appear-color-1) 33.33%,
    var(--appear-color-0) 100%
  );
  width: 300%;
  height: 100%;
  transform: translate3d(-66.66%, 0, 0);
  opacity: 1;
  z-index: 4;
  pointer-events: none;
  transition: transform 1600ms ease, opacity 800ms ease 600ms;
}

.did-appear::after {
  transform: translate3d(0, 0, 0);
  opacity: 0;
}

@media screen and (max-width: 1000px) {
  .scrolling__transform {
    transform: translate3d(0, 0, 0) !important;
    display: block;
    overflow: visible;
  }

  .scrolling__title {
    position: relative;
    height: auto;
    transform: none !important;
    width: 100vw;
    z-index: 2;
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    border-right: none;
  }

  .scrolling__title-inner {
    writing-mode: initial;
  }

  .scrolling__section {
    width: 100vw !important;
    min-height: var(--vh-100);
    height: auto;
  }
}

/* Loader */
.loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--vh-100);
  background-color: var(--color-black);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms ease;
}

.state--loading .loader {
  opacity: 1;
  pointer-events: auto;
}

.loader__circle {
  width: 220px;
  height: 220px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: linear-gradient(90deg, #292929 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 50%;
}

@keyframes rotationOrbit {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(0);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}

.loader__orbit {
  width: 220px;
  height: 220px;
  position: absolute;
  left: 50%;
  top: 50%;
  animation: rotationOrbit 10s linear infinite;
}

.loader__orbit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color-white);
  border-radius: 50%;
}

.loader__cross {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 60%;
}

.loader__cross::before,
.loader__cross::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  transform: translate3d(-50%, 0, 0);
}

.loader__cross::after {
  transform: translate3d(-50%, 0, 0) rotate(90deg);
}

.loader__text {
  position: absolute;
  left: 60%;
  top: calc(50% + 22px);
  font-size: var(--font-size-s);
  color: var(--color-white);
}

/* Intro */
.intro {
  height: 100%;
}

.intro__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.5rem;
  z-index: 1;
}

.intro__logo {
  display: flex;
  align-items: flex-start;
}

.intro__logo svg {
  display: block;
  width: 70px;
  margin-right: 3px;
}

.intro__title {
  font-size: var(--font-size-m);
  color: var(--color-white);
  position: relative;
}

.intro__text {
  color: var(--color-white);
  line-height: 1.3;
}

.intro__text a {
  color: var(--color-white);
  text-decoration: none;
}

.intro__text a:hover {
  text-decoration: underline;
}

.intro__buy {
  padding: 10px;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  position: relative;
}

.intro__buy-button {
  padding: 0.5rem 2.5rem;
  color: var(--color-white);
  background-color: var(--color-accent);
  font-size: 0.75rem;
  display: block;
  margin-right: 1rem;
  text-decoration: none;
  transition: background-color 200ms ease;
}

.intro__buy-button:hover {
  background-color: var(--color-accent-dark);
}

.intro__copyright {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  color: var(--color-white);
  transform: rotate(180deg);
  writing-mode: tb;
  font-size: var(--font-size-xs);
}

.intro__canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vh-100);
  z-index: 0;
  cursor: grab;
}

.intro__canvas-wrapper:active {
  cursor: grabbing;
}

.intro__animation {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

@media screen and (max-width: 1200px) {
  .intro__text:nth-child(4) {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .intro {
    width: 100vw !important;
    height: var(--vh-100);
  }

  .intro__header {
    height: 100vh;
    flex-direction: column;
    padding-bottom: 0;
    pointer-events: none;
  }

  .intro__logo {
    padding-top: 10px;
  }

  .intro__text {
    display: none;
  }

  .intro__buy {
    align-self: center;
    pointer-events: auto;
  }

  .intro__animation {
    display: none;
  }
}

/* components */

.components {
  background-color: var(--color-black);
  display: flex;
  padding-left: 47px;
  height: 100%;
  overflow: hidden;
}

.components__title {
  background-color: var(--color-white);
  position: relative;
  padding-right: 7.5rem;
}

.components__title-text {
  font-size: var(--font-size-l);
  writing-mode: tb;
  transform: rotate(180deg);
  height: 100%;
  padding-left: 0.5rem;
  padding-top: 0.5rem;
}

.components__title-copyright {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  color: var(--color-black);
  transform: rotate(180deg);
  writing-mode: tb;
  font-size: var(--font-size-xs);
}

.components__title-squares {
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-black);
}

.components__title-squares::before,
.components__title-squares::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: -1px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-black);
  box-sizing: border-box;
}

.components__title-squares::after {
  top: calc(200% + 12px);
}

.components__content {
  display: inline-block;
  flex-direction: column;
  padding: 0 2rem;
  align-items: flex-start;
}

.components__content-top {
  height: 60%;
  margin-bottom: 12px;
  display: flex;
}

.column {
  min-width: 0;
}

.components__image-full {
  margin-right: 10px;
  height: 100%;
  display: block;
}

.components__image-small {
  height: 80%;
  display: block;
}

.components__content-bottom {
  height: calc(40% - 12px);
  display: flex;
  justify-content: space-between;
}

.components__discs {
  flex: 1;
  height: 100%;
}

.components__disc {
  display: inline-block;
  height: 100%;
  margin-right: 10px;
  position: relative;
}

.components__disc .cross {
  z-index: 5;
}

.components__disc-inner {
  height: 100%;
  position: relative;
  cursor: pointer;
}

.components__disc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}


.components__disc-image-wrapper {
  border-radius: 50%;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  /*animation: rotation 15s linear infinite;*/
}

.components__disc-image {
  height: 100%;
  display: block;
  transform: scale(1);
  transition: transform 1200ms ease;
}

.components__disc-inner:hover .components__disc-image {
  transform: scale(1.1);
}

.components__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0);
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: 50%;
  transition: transform 200ms ease;
}

.components__disc-inner:hover .components__play-button,
.state--playing .components__play-button {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.components__play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(calc(-50% + 1px), -50%, 0) scale(1);
  transition: transform 200ms ease;
}

.state--playing .components__play-button::after {
  transform: translate3d(calc(-50% + 1px), -50%, 0) scale(0);
}

.components__play-button::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(calc(-50% + 1px), -50%, 0) scale(0);
  transition: transform 200ms ease;
}

.state--playing .components__play-button::before {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.components__audio {
  display: none;
}

.components__sticker {
  width: calc(calc(40vh - 12px) * 0.66666667);
}

.components__sticker svg {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  .components {
    padding-left: 0;
  }

  .components__title {
    display: none;
  }

  .components__content {
    width: 100%;
    padding: 10px;
  }

  .components__content-top {
    display: block;
    height: auto;
  }

  .components__image-full {
    height: auto;
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }

  .components__image-small {
    height: auto;
    width: 50%;
    display: block;
    margin-bottom: 10px;
  }

  .components__content-bottom {
    display: block;
  }

  .components__discs {
    display: flex;
    height: auto;
    width: 100%;
    margin-bottom: 10px;
  }

  .components__disc-image {
    height: auto;
    width: 100%;
  }

  .components__disc-image-wrapper,
  .components__content-top > .will-appear {
    width: auto!important;
  }
}

@media screen and (max-width: 700px) {
  .components__image-small {
    width: 100%;
  }

  .components__discs {
    display: block;
  }

  .components__disc {
    width: 100%;
    margin-right: 0;
  }

  .components__disc:first-child {
    margin-bottom: 10px;
  }

  .components__sticker {
    margin: 0 auto;
  }
}

/* Gallery */

.gallery {
  height: 100%;
  background-color: var(--color-black);
  display: flex;
  padding-left: 47px;
  overflow: hidden;
}

.gallery__title {
  width: 5.5rem;
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}

.gallery__title-copyright {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  color: var(--color-black);
  transform: rotate(180deg);
  writing-mode: tb;
  font-size: var(--font-size-xs);
}

.gallery__title-squares {
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-black);
}

.gallery__title-squares::before,
.gallery__title-squares::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: -1px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-black);
  box-sizing: border-box;
}

.gallery__title-squares::after {
  top: calc(200% + 12px);
}

.gallery__content {
  position: relative;
}

@keyframes galleryAnimation {
  0% {
    width: 0;
  }
  80% {
    width: 320px;
  }
}

.gallery__animation {
  position: absolute;
  bottom: 0;
  left: 10px;
  animation: galleryAnimation 5s linear infinite;
  overflow: hidden;
  z-index: 3;
}

.gallery__slider {
  position: relative;
  height: 100%;
}

.gallery__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0 50vw 0 0;
}

.gallery__overlay-image {
  height: 100%;
  display: block;
}

.gallery__image {
  position: absolute;
  top: 0;
  height: 100%;
  display: block;
  border-left: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
}

@media screen and (max-width: 1000px) {
  .gallery {
    padding-left: 0;
    border: none;
  }

  .gallery__title,
  .gallery__animation {
    display: none;
  }

  .gallery__image {
    height: auto;
    width: 100%;
    left: 0 !important;
    transform: none !important;
    position: relative;
    border: none;
    margin-bottom: 20vh;
    z-index: 2 !important;
  }

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

  .gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: var(--vh-100);
  }
}
@media screen and (min-width: 1001px) {
  .gallery__overlay {
    transform: none !important;
  }
}

/* Parallax */
.parallax {
  background-color: var(--color-white);
  width: 450vh;
  overflow: hidden;
  z-index: -1;
  position: relative;
}

.parallax__inner {
  height: 250vh;
  position: relative;
}

.parallax__image {
  position: absolute;
}

.parallax__image--1-1 {
  top: 0;
  right: 0;
  width: 47%;
}

.parallax__image--1-2 {
  bottom: 7%;
  right: 0;
  width: 45%;
}

.parallax__image--2-1 {
  top: 5%;
  left: 0;
  width: 15%;
}

.parallax__image--2-2 {
  bottom: 15%;
  left: 0;
  width: 35%;
}

.parallax__image--3-1 {
  top: 20%;
  left: 65%;
  width: 15%;
}

.parallax__image--3-2 {
  top: 35%;
  left: 10%;
  width: 20%;
}

.parallax__image--4-1 {
  top: 20%;
  left: 25%;
  width: 10%;
}

.parallax__image--4-2 {
  top: 40%;
  left: 65%;
  width: 12%;
}

.parallax__image--4-3 {
  top: 30%;
  right: 0;
  width: 12%;
}

.parallax__image img {
  width: 100%;
  display: block;
}

.parallax__frame {
  position: absolute;
  z-index: 1;
  height: var(--vh-100);
  width: calc(100vw - 149px);
}

.parallax__logo {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 40%;
  max-width: 120px;
}

.parallax__logo-inner {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.parallax__logo svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax__logo-text {
  font-size: var(--font-size-s);
  position: absolute;
  width: 300px;
}

.parallax__logo-text--top {
  left: 50%;
  top: -2rem;
  opacity: 0;
  transform: translate3d(50px, -100%, 0);
  transition: transform 800ms ease, opacity 800ms ease;
}

.parallax__logo-text--top.state--active {
  opacity: 1;
  transform: translate3d(0, -100%, 0);
  transition: transform 1200ms ease, opacity 1200ms ease;
}

.parallax__logo-text--top.state--over {
  opacity: 0;
  transform: translate3d(-50px, -100%, 0);
  transition: transform 800ms ease, opacity 800ms ease;
}

.parallax__logo-text--bottom {
  right: 50%;
  bottom: -2rem;
  text-align: right;
  opacity: 0;
  transform: translate3d(-50px, 100%, 0);
  transition: transform 800ms ease, opacity 800ms ease;
}

.parallax__logo-text--bottom.state--active {
  opacity: 1;
  transform: translate3d(0, 100%, 0);
  transition: transform 1200ms ease, opacity 1200ms ease;
}

.parallax__logo-text--bottom.state--over {
  opacity: 0;
  transform: translate3d(50px, 100%, 0);
  transition: transform 800ms ease, opacity 800ms ease;
}

.parallax__squares {
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
}

.parallax__squares::before,
.parallax__squares::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: -1px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  box-sizing: border-box;
}

.parallax__squares::after {
  top: calc(200% + 12px);
}

.parallax__animation {
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 7px;
  height: 221px;
}

.parallax__animation svg {
  width: 7px;
}

.parallax__copyright {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  color: var(--color-black);
  transform: rotate(180deg);
  writing-mode: tb;
  font-size: var(--font-size-xs);
}

@media screen and (max-width: 1000px) {
  .parallax__frame {
    width: 100vw;
  }

  .parallax__inner {
    width: 100vw !important;
    transform: none !important;
    height: 200vh;
  }

  .parallax__image--1-1 {
    top: 0;
    right: 0;
    width: 47%;
  }

  .parallax__image--1-2 {
    bottom: -16%;
    right: 0;
    width: 85%;
  }

  .parallax__image--2-1 {
    top: 15%;
    left: 0;
    width: 20%;
  }

  .parallax__image--2-2 {
    bottom: 9%;
    left: 0;
    width: 45%;
  }

  .parallax__image--3-1 {
    top: 38%;
    left: 60%;
    width: 30%;
  }

  .parallax__image--3-2 {
    top: 55%;
    left: 10%;
    width: 40%;
  }

  .parallax__image--4-1 {
    top: 41%;
    left: 17%;
    width: 20%;
  }

  .parallax__image--4-2 {
    top: 68%;
    left: 68%;
    width: 22%;
  }

  .parallax__image--4-3 {
    top: 93%;
    right: 0;
    width: 22%;
  }
}

/* Outro */
.outro {
  width: 100%;
  height: 100%;
  padding-left: 49px;
  display: flex;
  position: relative;
}

.outro__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.outro__content {
  flex: 1;
  position: relative;
}

.outro__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.outro__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.5rem;
  z-index: 1;
}

.outro__buy {
  padding: 10px;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.outro__buy-button {
  padding: 0.5rem 2.5rem;
  color: var(--color-white);
  background-color: var(--color-accent);
  font-size: 0.75rem;
  display: block;
  margin-right: 1rem;
  text-decoration: none;
  transition: background-color 200ms ease;
}

.outro__buy-button:hover {
  background-color: var(--color-accent-dark);
}

.outro__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.5rem;
  z-index: 1;
  align-items: flex-end;
}

.outro__imprint-wrapper {
  position: relative;
}

.outro__imprint {
  position: absolute;
  top: -10px;
  left: 0;
  transform: translate3d(0, -100%, 0);
  background-color: var(--color-black);
  border: 1px solid var(--color-white);
  padding: 0.5rem 5rem 0.5rem 0.5rem;
  opacity: 0;
  transition: opacity 200ms ease;
}

.outro__imprint.state--active {
  opacity: 1;
}

.outro__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 12px;
  height: 12px;
}

.outro__close::before,
.outro__close::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  top: 6px;
  left: -1px;
  transform: rotate(45deg);
}

.outro__close::after {
  transform: rotate(-45deg);
}

.outro__title {
  display: flex;
}

.outro__back {
  background-color: var(--color-black);
  color: var(--color-white);
  writing-mode: tb;
  transform: rotate(180deg);
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--color-white);
  left: 0;
  height: var(--vh-100);
  cursor: pointer;
  width: 49px;
}

@media screen and (max-width: 1000px) {
  .outro {
    height: var(--vh-100);
    padding-left: 0;
    width: 100% !important;
  }

  .outro__title {
    display: none;
  }

  .outro__footer .intro__text {
    display: block;
  }

  .outro__imprint {
    left: auto;
    right: 0;
  }
}
