:root {
  --content-width: calc(min(1750px, 100vw));
  --content-detail-width: 60%;
  --content-block: 10rem;
  --panel-padding: 4rem;
  --panel-text-padding: 6.5rem;
  --caption-padding: 0.5rem 0 0 0;
  --image-gap: 2rem;
  --paragraph-margin: 2rem;
  --text-padding: 7rem;
  --page-spacing: 1.25rem;
  --page-margin-block: min(max(2.5rem, calc(min(100vw - 1750px, 100vw) / 2)), 4rem);
  --page-margin-inline: calc((100vw - 1750px) / 2);
  --header-logo-height: 1rem;
  --header-height: calc(var(--header-logo-height) + var(--page-margin-block) * 2);
  --footer-height: calc(var(--page-margin-block) * 2);
  --content-height: 100vh;
  --panel-spacing: calc(var(--page-spacing) / 2);
  --color-spacing: 1rem;
  --color-height: 10rem;
  --heading-font-size: 3.5rem;
  --heading-line-height: 4rem;
  --subheading-font-size: 2.5rem;
  --subheading-line-height: 3.5rem;
  --section-header-font-size: 1.2rem;
  --section-header-line-height: 1.5rem;
  --body-font-size: 1rem;
  --body-line-height: 1.5rem;
  --footer-font-size: 1rem;
  --footer-line-height: 1.5rem;
  --navigation-font-size: 2.5rem;
  --navigation-line-height: 3.5rem;
  --caption-font-size: 0.8rem;
  --caption-line-height: 1rem;
  --link-caption-font-size: 1rem;
  --link-caption-line-height: 1.5rem;
  --more-font-size: 2.8rem;
  --more-line-height: 3.4rem;
  --contact-font-size: 2.5rem;
  --contact-line-height: 3.5rem;
}
@media (max-width: 1500px) {
  :root {
    --panel-padding: 3rem;
  }
}
@media (max-width: 1100px) {
  :root {
    --content-block: 8rem;
    --panel-padding: 2.5rem;
    --panel-text-padding: 3rem;
    --text-padding: 5rem;
    --heading-font-size: 2.5rem;
    --heading-line-height: 3.5rem;
    --subheading-font-size: 2rem;
    --subheading-line-height: 3rem;
    --section-header-font-size: 1.2rem;
    --section-header-line-height: 1.5rem;
    --body-font-size: 1rem;
    --body-line-height: 1.3rem;
    --footer-font-size: 1rem;
    --footer-line-height: 1.5rem;
    --navigation-font-size: 2rem;
    --navigation-line-height: 3rem;
    --caption-font-size: 0.9rem;
    --caption-line-height: 1.2rem;
    --link-caption-font-size: 1rem;
    --link-caption-line-height: 1.5rem;
    --more-font-size: 2.3rem;
    --more-line-height: 3.5rem;
    --contact-font-size: 2rem;
    --contact-line-height: 3rem;
  }
}
@media (max-width: 800px) {
  :root {
    --content-block: 6rem;
    --content-detail-width: 80%;
    --panel-padding: 1rem;
    --panel-text-padding: 2rem;
    --text-padding: var(--panel-spacing);
    --image-gap: 1rem;
    --content-height: calc(100vh - var(--header-height));
    --color-spacing: 0.25rem;
    --color-height: 5rem;
    --heading-font-size: 1.5rem;
    --heading-line-height: 2rem;
    --subheading-font-size: 1.2rem;
    --subheading-line-height: 2rem;
    --section-header-font-size: 1.2rem;
    --section-header-line-height: 1.5rem;
    --body-font-size: 1rem;
    --body-line-height: 1.3rem;
    --footer-font-size: 0.8rem;
    --footer-line-height: 1.3rem;
    --navigation-font-size: 1.5rem;
    --navigation-line-height: 2rem;
    --caption-font-size: 0.5rem;
    --caption-line-height: 0.8rem;
    --link-caption-font-size: 0.8rem;
    --link-caption-line-height: 1.2rem;
    --more-font-size: 1.4rem;
    --more-line-height: 1.8rem;
    --contact-font-size: 1.2rem;
    --contact-line-height: 2rem;
  }
}

@font-face {
  font-family: "salon-deux";
  font-weight: normal;
  src: url("../fonts/regular.woff2");
}
@font-face {
  font-family: "salon-deux";
  font-weight: bold;
  src: url("../fonts/bold.woff2");
}
ui-navigation {
  display: flex;
  flex-direction: column;
  padding-block: var(--page-margin-block);
  position: fixed;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  z-index: 100;
  overflow: hidden;
  opacity: 0;
  color: white;
  background-color: black;
  transition: 0.2s;
}
ui-navigation[ui-open] {
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
ui-navigation ui-navigation-content {
  display: flex;
  flex-grow: 1;
  width: 100%;
  max-width: calc(var(--content-width) - var(--page-spacing) * 2);
  margin-inline: auto;
}
ui-navigation ui-navigation-content ui-navigation-links {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  text-align: end;
  font-size: var(--navigation-font-size);
  line-height: var(--navigation-line-height);
}
ui-navigation ui-navigation-content ui-navigation-links ui-navigation-links-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
ui-navigation ui-navigation-content ui-navigation-links ui-navigation-links-group a[ui-navigation-link] {
  margin-bottom: 0.25rem;
  cursor: pointer;
  text-transform: uppercase;
}
@media (hover: hover) {
  ui-navigation ui-navigation-content ui-navigation-links ui-navigation-links-group a[ui-navigation-link]:hover {
    text-decoration: underline;
    text-decoration-thickness: 0.175rem;
  }
}
ui-navigation ui-navigation-content ui-navigation-options {
  width: 2rem;
  margin-left: 5rem;
}
ui-navigation ui-navigation-content ui-navigation-options ui-navigation-close {
  position: relative;
  cursor: pointer;
}
ui-navigation ui-navigation-content ui-navigation-options ui-navigation-close::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: -5rem;
  right: -5rem;
  bottom: -4rem;
}
ui-navigation ui-navigation-content ui-navigation-options ui-navigation-close > svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}
ui-navigation ui-navigation-footer {
  display: flex;
  width: 100%;
  max-width: calc(var(--content-width) - var(--page-spacing) * 2);
  margin-inline: auto;
}

@media (max-width: 1100px) {
  ui-navigation-footer {
    flex-direction: column;
    align-items: start;
  }
  ui-navigation ui-navigation-content ui-navigation-links ui-navigation-links-group a[ui-navigation-link] {
    margin-bottom: 0.75rem;
  }
  ui-navigation ui-navigation-content ui-navigation-options {
    margin-left: 2rem;
  }
  ui-navigation ui-navigation-content ui-navigation-options ui-navigation-close::before {
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
  }
}
ui-content {
  display: block;
  position: relative;
  max-width: calc(var(--content-width) - var(--page-spacing) * 2);
  min-height: var(--content-height);
  margin-inline: auto;
  padding-inline: var(--page-spacing);
}

ui-section {
  display: flex;
  flex-wrap: wrap;
  padding-top: var(--header-height);
  padding-bottom: calc(var(--content-block) / 2);
  margin-inline: calc(var(--panel-spacing) * -1);
}
ui-section[ui-homepage] {
  margin-top: var(--header-height);
}
ui-section:last-of-type {
  padding-bottom: var(--content-block);
}

ui-page-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  height: var(--header-height);
  margin-right: var(--text-padding);
  text-transform: uppercase;
  text-decoration: underline;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

ui-page-header {
  width: 60rem;
  max-width: 100%;
  margin-left: auto;
  padding-right: var(--text-padding);
  padding-block: calc(var(--content-block) / 2);
  text-transform: uppercase;
  text-align: end;
}

ui-page-subheader {
  display: block;
  max-width: 40rem;
  margin-left: auto;
  margin-top: 4rem;
  font-size: var(--subheading-font-size);
  line-height: var(--subheading-line-height);
}
ui-page-subheader ui-line {
  display: block;
}

h1 {
  margin: 0;
  font-size: var(--heading-font-size);
  line-height: var(--heading-line-height);
}

h2 {
  margin: 0;
  font-size: var(--subheading-font-size);
  line-height: var(--subheading-line-height);
}

ui-caption {
  display: block;
  padding: var(--caption-padding);
  text-transform: uppercase;
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
}

ui-image-panel,
a[ui-image-panel],
ui-title,
ui-summary,
ui-colors,
ui-text-panel,
ui-introduction,
ui-home-introduction {
  display: flex;
  flex-direction: column;
  margin-block: var(--panel-padding);
  margin-inline: var(--panel-spacing);
}

a[ui-image-panel] > img {
  cursor: pointer;
}

ui-section[ui-project] ui-image-panel ui-caption,
ui-section[ui-project] a[ui-image-panel] ui-caption {
  text-align: end;
}

ui-image-panel ui-caption,
a[ui-image-panel] ui-caption {
  text-align: end;
}
ui-image-panel ui-project-name,
a[ui-image-panel] ui-project-name {
  text-align: end;
}
ui-image-panel[ui-compare],
a[ui-image-panel][ui-compare] {
  justify-content: end;
}
ui-image-panel[ui-juxtaposed],
a[ui-image-panel][ui-juxtaposed] {
  justify-content: space-around;
}
ui-image-panel[ui-fill],
a[ui-image-panel][ui-fill] {
  width: calc(50% - var(--page-spacing));
  height: auto;
}
ui-image-panel[ui-fill] > img,
a[ui-image-panel][ui-fill] > img {
  width: 100%;
  height: auto;
  object-position: top;
  object-fit: contain;
}
ui-image-panel[ui-detail],
a[ui-image-panel][ui-detail] {
  width: calc(50% - var(--page-spacing));
  height: auto;
}
ui-image-panel[ui-detail] > img,
ui-image-panel[ui-detail] > ui-project-name,
ui-image-panel[ui-detail] > ui-caption,
a[ui-image-panel][ui-detail] > img,
a[ui-image-panel][ui-detail] > ui-project-name,
a[ui-image-panel][ui-detail] > ui-caption {
  width: var(--content-detail-width);
}
ui-image-panel[ui-detail] > img,
a[ui-image-panel][ui-detail] > img {
  object-fit: cover;
}
ui-image-panel[ui-detail]:nth-child(odd) > img,
ui-image-panel[ui-detail]:nth-child(odd) > ui-project-name,
ui-image-panel[ui-detail]:nth-child(odd) > ui-caption,
a[ui-image-panel][ui-detail]:nth-child(odd) > img,
a[ui-image-panel][ui-detail]:nth-child(odd) > ui-project-name,
a[ui-image-panel][ui-detail]:nth-child(odd) > ui-caption {
  margin-left: auto;
}
ui-image-panel[ui-detail]:nth-child(even) > img,
ui-image-panel[ui-detail]:nth-child(even) > ui-project-name,
ui-image-panel[ui-detail]:nth-child(even) > ui-caption,
a[ui-image-panel][ui-detail]:nth-child(even) > img,
a[ui-image-panel][ui-detail]:nth-child(even) > ui-project-name,
a[ui-image-panel][ui-detail]:nth-child(even) > ui-caption {
  margin-right: auto;
}
ui-image-panel[ui-span],
a[ui-image-panel][ui-span] {
  width: calc(75% - var(--page-spacing) * 2);
  height: auto;
}
ui-image-panel[ui-span] > img,
a[ui-image-panel][ui-span] > img {
  width: 100%;
  margin-left: auto;
}
ui-image-panel[ui-span]:nth-child(even),
a[ui-image-panel][ui-span]:nth-child(even) {
  margin-left: auto;
}
ui-image-panel[ui-span]:nth-child(odd),
a[ui-image-panel][ui-span]:nth-child(odd) {
  margin-right: auto;
}
ui-image-panel[ui-break],
a[ui-image-panel][ui-break] {
  width: calc(50% - var(--page-spacing));
  height: auto;
}
ui-image-panel[ui-break]:nth-child(even),
a[ui-image-panel][ui-break]:nth-child(even) {
  margin-left: calc(50% + var(--panel-spacing));
}
ui-image-panel[ui-break]:nth-child(odd),
a[ui-image-panel][ui-break]:nth-child(odd) {
  margin-right: calc(50% + var(--panel-spacing));
}
ui-image-panel[ui-break] > img,
a[ui-image-panel][ui-break] > img {
  width: 100%;
  height: auto;
  object-position: top;
  object-fit: contain;
}
ui-image-panel[ui-full-frame] img,
a[ui-image-panel][ui-full-frame] img {
  object-fit: contain;
  object-position: bottom;
}
ui-image-panel > img:not(:first-of-type),
a[ui-image-panel] > img:not(:first-of-type) {
  margin-top: var(--image-gap);
}
ui-image-panel > ui-image-row,
a[ui-image-panel] > ui-image-row {
  display: flex;
  width: 100%;
  height: auto;
  gap: var(--image-gap);
}
ui-image-panel > ui-image-row[ui-progression],
a[ui-image-panel] > ui-image-row[ui-progression] {
  align-items: baseline;
}
ui-image-panel > ui-image-row:not([ui-progression]):not([ui-author]) img,
a[ui-image-panel] > ui-image-row:not([ui-progression]):not([ui-author]) img {
  height: 100%;
}
ui-image-panel > ui-image-row > ui-image-container,
a[ui-image-panel] > ui-image-row > ui-image-container {
  flex: 2;
}
ui-image-panel > ui-image-row > ui-image-container[ui-primary],
a[ui-image-panel] > ui-image-row > ui-image-container[ui-primary] {
  flex: 3;
}
ui-image-panel > ui-image-row > ui-image-container[ui-detail],
a[ui-image-panel] > ui-image-row > ui-image-container[ui-detail] {
  flex: 1;
}
ui-image-panel > ui-image-row > ui-image-container > img,
a[ui-image-panel] > ui-image-row > ui-image-container > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

ui-filler {
  width: calc(50% - var(--page-spacing));
  margin-inline: calc(var(--page-spacing) / 4);
}

ui-text-panel,
ui-introduction,
ui-home-introduction {
  flex-direction: column;
  width: calc(50% - var(--page-spacing) - var(--panel-text-padding) * 2);
}

ui-introduction,
ui-home-introduction {
  padding: var(--panel-text-padding);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

ui-home-introduction {
  margin-block: auto;
}

ui-introduction {
  margin-top: auto;
}

ui-text-panel {
  padding: var(--panel-text-padding);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}
ui-text-panel[ui-break] {
  width: calc(50% - var(--page-spacing));
  height: auto;
}
ui-text-panel[ui-break]:nth-child(even) {
  margin-left: calc(50% + var(--panel-spacing));
}
ui-text-panel[ui-break]:nth-child(odd) {
  margin-right: calc(50% + var(--panel-spacing));
}

ui-panel-title {
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}
ui-panel-title:not(:first-of-type) {
  margin-top: 4rem;
}

ui-panel-subtitle {
  margin-bottom: 1rem;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

ui-paragraph:not(:last-of-type) {
  margin-bottom: var(--paragraph-margin);
}

ui-summary {
  display: flex;
  flex-direction: column;
  width: calc(50% - var(--page-spacing) - var(--panel-text-padding) * 2);
  height: auto;
  padding: var(--panel-text-padding);
}
ui-summary > ui-paragraph {
  margin-bottom: var(--panel-text-padding);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}
ui-summary ui-property {
  display: flex;
  flex-direction: column;
  margin-bottom: calc(var(--panel-text-padding) / 2);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}
ui-summary ui-property ui-property-title {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
ui-summary ui-intention {
  display: flex;
  flex-direction: column;
  margin-bottom: calc(var(--panel-text-padding) / 2);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}
ui-summary ui-intention ui-intention-title {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

ui-colors {
  display: flex;
  width: calc(50% - (var(--page-spacing)));
  flex-direction: column;
  gap: var(--page-spacing);
}
ui-colors[ui-inline] {
  width: auto;
}
ui-colors[ui-inline]:first-child {
  margin-top: 0;
}
ui-colors[ui-inline]:last-child {
  margin-bottom: 0;
}
ui-colors > ui-color-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
ui-colors > ui-color-group > ui-color-container {
  display: flex;
  gap: var(--color-spacing);
  flex-wrap: wrap;
  width: 100%;
  margin-right: calc(var(--page-spacing) * -0.25);
}
ui-colors > ui-color-group > ui-color-container > ui-color {
  height: var(--color-height);
  background-color: var(--color);
}
ui-colors > ui-color-group > ui-color-container > ui-color[ui-primary] {
  flex-grow: 6;
}
ui-colors > ui-color-group > ui-color-container > ui-color[ui-secondary] {
  flex-grow: 3;
}
ui-colors > ui-color-group > ui-color-container > ui-color[ui-accent-primary] {
  flex-grow: 1.5;
}
ui-colors > ui-color-group > ui-color-container > ui-color[ui-accent-secondary] {
  flex-grow: 0.75;
}
ui-colors > ui-color-group > ui-color-container > ui-color[ui-divider] {
  margin-right: 2rem;
}
ui-colors > ui-color-group > ui-color-palette {
  text-transform: uppercase;
  text-align: end;
  padding: var(--caption-padding);
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
}

ui-materials ui-material {
  display: block;
  position: relative;
  padding-left: 1rem;
}
ui-materials ui-material::before {
  content: "-";
  position: absolute;
  margin-left: -1rem;
}

@media (max-width: 1500px) {
  ui-page-header {
    max-width: 70%;
  }
}
@media (max-width: 1100px) {
  ui-page-header {
    max-width: 80%;
  }
}
@media (max-width: 800px) {
  ui-section:not([ui-homepage]) {
    margin-top: var(--header-height);
  }
  ui-section:last-of-type {
    padding-bottom: calc(var(--content-block) * 2);
  }
  ui-page-header {
    max-width: 100%;
  }
  ui-page-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--header-height) / 3);
    margin-right: unset;
    padding-inline: var(--page-spacing);
    align-items: baseline;
  }
  ui-image-panel,
  a[ui-image-panel] {
    padding-block: var(--panel-text-padding);
  }
  ui-image-panel[ui-detail], ui-image-panel[ui-span],
  a[ui-image-panel][ui-detail],
  a[ui-image-panel][ui-span] {
    width: 100%;
  }
  ui-image-panel[ui-fill], ui-image-panel[ui-break],
  a[ui-image-panel][ui-fill],
  a[ui-image-panel][ui-break] {
    --spacing-big: 4rem;
    --spacing-small: calc(var(--spacing-big) / 2);
    width: calc(100% - var(--spacing-big));
  }
  ui-image-panel[ui-fill]:nth-child(even), ui-image-panel[ui-break]:nth-child(even),
  a[ui-image-panel][ui-fill]:nth-child(even),
  a[ui-image-panel][ui-break]:nth-child(even) {
    margin-left: var(--spacing-big);
  }
  ui-image-panel[ui-fill]:nth-child(odd), ui-image-panel[ui-break]:nth-child(odd),
  a[ui-image-panel][ui-fill]:nth-child(odd),
  a[ui-image-panel][ui-break]:nth-child(odd) {
    margin-right: var(--spacing-big);
  }
  ui-filler {
    display: none;
  }
  ui-text-panel,
  ui-introduction,
  ui-home-introduction {
    width: 100%;
  }
  ui-text-panel[ui-break] {
    width: 100%;
    margin-right: unset !important;
  }
  ui-summary,
  ui-colors {
    width: 100%;
  }
}
a[ui-image-panel] {
  display: flex;
  flex-direction: column;
}
a[ui-image-panel]:hover ui-project-name {
  text-decoration: underline;
}
a[ui-image-panel] ui-project-name {
  margin-top: 2rem;
  text-transform: uppercase;
  text-align: end;
  font-size: var(--link-caption-font-size);
  line-height: var(--link-caption-line-height);
}

ui-project-thumbnail {
  display: flex;
  width: 100%;
  margin-top: var(--content-block);
  padding-block: calc(var(--content-block) / 2);
}
ui-project-thumbnail > img {
  width: 80%;
  height: auto;
  margin-left: auto;
}

ui-project-title {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-right: 40%;
  padding-bottom: calc(var(--content-block) / 4);
  text-align: end;
  text-transform: uppercase;
}
ui-project-title ui-name {
  font-size: var(--heading-font-size);
  line-height: var(--heading-line-height);
}
ui-project-title ui-location {
  font-size: var(--heading-font-size);
  line-height: var(--heading-line-height);
}

@media (max-width: 1100px) {
  a[ui-image-panel] ui-project-name {
    margin-block: 1rem;
  }
  ui-project-thumbnail > img {
    width: 100%;
  }
  ui-project-title {
    padding-right: unset;
  }
}
@media (max-width: 800px) {
  ui-project-thumbnail {
    margin-top: 0;
  }
}
ui-service-overview,
ui-service-detail {
  display: flex;
  flex-direction: column;
}

ui-service-overview {
  row-gap: 1rem;
  margin-top: var(--paragraph-margin);
}
ui-service-overview ui-service {
  position: relative;
  padding-left: 1rem;
  text-transform: uppercase;
}
ui-service-overview ui-service::before {
  content: "-";
  position: absolute;
  margin-left: -1rem;
}

ui-service-detail {
  row-gap: 2rem;
}
ui-service-detail ui-service {
  display: flex;
  flex-direction: column;
}
ui-service-detail ui-service ui-service-name {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: var(--section-header-font-size);
  line-height: var(--section-header-line-height);
}
ui-service-detail ui-service ui-service-purpose {
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}
ui-service-detail ui-service ui-service-steps {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
ui-service-detail ui-service ui-service-step,
ui-service-detail ui-service ui-service-description {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}
ui-service-detail ui-service ui-service-step {
  font-weight: bold;
}
ui-service-detail ui-service ui-service-step:not(:first-of-type) {
  margin-top: 1.2rem;
}

@media (max-width: 1100px) {
  ui-service-overview,
  ui-service-detail {
    width: 100%;
  }
}
ui-contact-information {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-left: auto;
  padding-right: var(--text-padding);
  padding-top: calc(var(--content-height) / 4.5);
  padding-bottom: calc(var(--content-block) / 2);
  text-transform: uppercase;
  text-align: end;
  font-size: var(--contact-font-size);
  line-height: var(--contact-line-height);
}
@media (hover: hover) {
  ui-contact-information > a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 1100px) {
  ui-contact-information {
    width: 100%;
  }
}
ui-impressum-information {
  display: flex;
  flex-direction: column;
  padding-left: var(--text-padding);
  padding-top: calc(var(--content-height) / 10);
}
ui-impressum-information ui-company-name,
ui-impressum-information ui-company-address,
ui-impressum-information ui-email-address,
ui-impressum-information ui-company-registration,
ui-impressum-information ui-company-ust-number,
ui-impressum-information ui-company-responsibility {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
ui-impressum-information ui-company-name {
  text-transform: uppercase;
}

ui-project-overview {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  width: 100%;
}
ui-project-overview a[ui-project-overview-title] {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-bottom: calc(var(--panel-padding) / 2);
  text-align: end;
  text-transform: uppercase;
  font-size: var(--more-font-size);
  line-height: var(--more-line-height);
}
@media (hover: hover) {
  ui-project-overview a[ui-project-overview-title]:hover {
    text-decoration: underline;
    text-decoration-thickness: 0.175rem;
  }
}
ui-project-overview ui-project-list {
  display: flex;
  justify-content: end;
}
ui-project-overview ui-project-list a[ui-project] {
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - var(--page-spacing));
}
ui-project-overview ui-project-list a[ui-project]:not(:last-of-type) {
  margin-right: calc(var(--panel-spacing) * 2);
}
@media (hover: hover) {
  ui-project-overview ui-project-list a[ui-project]:hover {
    text-decoration: underline;
  }
}
ui-project-overview ui-project-list a[ui-project] img {
  width: 100%;
  min-height: calc(var(--content-width) / 5);
  margin-bottom: 1rem;
  cursor: pointer;
}
ui-project-overview ui-project-list a[ui-project] ui-project-name {
  margin-left: auto;
  text-transform: uppercase;
  text-align: end;
  font-size: var(--link-caption-font-size);
  line-height: var(--link-caption-line-height);
}

@media (max-width: 1100px) {
  ui-project-overview ui-project-overview-title {
    width: 100%;
    margin-right: auto;
    text-align: start;
  }
  ui-project-overview ui-project-list {
    flex-direction: column;
  }
  ui-project-overview ui-project-list a[ui-project] {
    width: 100%;
  }
  ui-project-overview ui-project-list a[ui-project]:not(:last-child) {
    margin-bottom: 2rem;
  }
}
ui-header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  max-width: calc(var(--content-width) - var(--page-spacing) * 2);
  margin-inline: auto;
  padding-block: var(--page-margin-block);
  padding-inline: var(--page-spacing);
}
ui-header a[ui-header-logo],
ui-header ui-header-menu {
  display: flex;
  width: auto;
  cursor: pointer;
}
ui-header a[ui-header-logo] {
  height: var(--header-logo-height);
}
ui-header ui-header-menu {
  position: relative;
  height: auto;
  width: auto;
  margin-left: auto;
  margin-block: calc(var(--page-margin-block) * -1);
}
ui-header ui-header-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(var(--page-margin-block) * -0.5);
  right: calc(var(--page-margin-block) * -0.5);
  bottom: 0;
}
ui-header ui-header-menu > img {
  height: calc(var(--header-logo-height) / 2.5);
  margin-block: auto;
}

ui-footer {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: calc(var(--content-width) - var(--page-spacing) * 2);
  min-height: var(--footer-height);
  margin-inline: auto;
  padding-inline: var(--page-spacing);
}

ui-footer-item {
  display: flex;
  flex-grow: 1;
  text-transform: uppercase;
  justify-content: center;
}
ui-footer-item:first-of-type > ui-text:first-of-type::after {
  content: "|";
  margin-inline: 0.5rem;
}
ui-footer-item:first-of-type {
  justify-content: start;
}
ui-footer-item:last-of-type {
  justify-content: end;
}
ui-footer-item > ui-text,
ui-footer-item > a {
  font-size: var(--footer-font-size);
  line-height: var(--footer-line-height);
}
@media (hover: hover) {
  ui-footer-item > a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 1100px) {
  ui-footer {
    flex-direction: column;
    align-items: start;
  }
  ui-footer-item {
    flex-direction: column;
    align-items: start;
    margin-bottom: 1rem;
  }
  ui-footer-item:first-of-type > ui-text:first-of-type::after {
    content: none;
  }
}
body[ui-debug] [ui-fill] {
  box-shadow: 0 0 1rem 0.3rem blue;
}
body[ui-debug] [ui-span] {
  box-shadow: 0 0 1rem 0.3rem green;
}
body[ui-debug] [ui-break] {
  box-shadow: 0 0 1rem 0.3rem red;
}
body[ui-debug] [ui-detail] {
  box-shadow: 0 0 1rem 0.3rem yellow;
}

* {
  font-family: "salon-deux";
  letter-spacing: 0.1em;
}

body {
  margin: unset;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ui-background {
  position: absolute;
  top: var(--header-height);
  left: calc(var(--page-margin-inline) * -1);
  right: calc(var(--page-margin-inline) * -1);
  z-index: -1;
}
@media (max-width: 1750px) {
  ui-background {
    left: 0;
    right: 0;
  }
}
ui-background[ui-bottom] {
  top: unset;
  bottom: var(--footer-height);
}
ui-background[ui-middle] {
  top: unset;
  bottom: 50%;
}
ui-background > svg {
  color: #ccc;
}
ui-background > svg g line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

@media (max-width: 800px) {
  ui-background {
    display: none;
  }
}

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