* {
  font-size: 100%;
}
*, *::after, *::before {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
fieldset,
blockquote,
pre,
hr,
dl,
dd {
  margin: 0;
}

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

pre {
  font-size: 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1em;
}
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

button,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

input[type=checkbox], input[type=radio] {
  margin: 0;
}

fieldset {
  border: none;
  padding: 0;
}

input,
textarea,
select,
button {
  font: inherit;
  line-height: inherit;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: inherit;
}

button {
  -webkit-appearance: none;
}

td, th {
  padding: 0;
}

q::before, q::after {
  content: none;
}

table {
  border-collapse: collapse;
}

legend {
  padding: 0;
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url(/assets/font/roboto-v30-latin-300.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/font/roboto-v30-latin-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url(/assets/font/roboto-v30-latin-700.woff2) format("woff2");
}
:root {
  --color-primary: #3d4660;
  --color-accent: #6a87a5;
  --color-light-gray: #A8C1D1;
}

html {
  font-family: Roboto, sans-serif;
  line-height: 1.5;
  color: var(--color-primary);
  font-weight: 300;
}

body {
  overflow-x: hidden;
}

.content {
  max-width: 70rem;
  margin: auto;
  width: calc(100% - 80px);
  padding: 4rem 0;
}
@media (max-width: 500px) {
  .content {
    padding: 3rem 0;
  }
}

header {
  margin-bottom: 8rem;
  position: relative;
}
@media (max-width: 940px) {
  header {
    margin-bottom: 6rem;
  }
}
header img, header svg {
  width: 100%;
  height: auto;
  display: block;
}

.scissors {
  position: absolute;
  right: 0;
  transform: translate(105%, 10%);
  bottom: 0;
  width: min(12.5%, 10vw);
  opacity: 0;
  animation: scissors 0.3s forwards;
  animation-delay: 0.5s;
}

@keyframes scissors {
  to {
    transform: translate(105%, 0%);
    opacity: 1;
  }
}
main {
  display: grid;
  grid-template-columns: auto 22rem;
  grid-template-areas: "content sidebar";
  gap: 2rem;
  font-size: 1.3rem;
  margin-bottom: 8rem;
}
@media (max-width: 940px) {
  main {
    grid-template-columns: 1fr;
    grid-template-areas: "sidebar" "content";
    gap: 6rem;
    margin-bottom: 6rem;
  }
}
@media (max-width: 500px) {
  main {
    font-size: 1rem;
  }
}
main.main-full {
  grid-template-columns: 1fr;
  grid-template-areas: "content";
  gap: 8rem;
}

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

h1 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--color-accent);
  line-height: 1.33333;
}
@media (max-width: 940px) {
  h1 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
p + h1 {
  margin-top: 4rem;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.33333;
  margin-bottom: 1rem;
}
@media (max-width: 940px) {
  h2 {
    font-size: 1rem;
    line-height: 1.5;
  }
}

p {
  margin-bottom: 2rem;
}
@media (max-width: 940px) {
  p {
    margin-bottom: 1rem;
  }
}
p:last-child {
  margin-bottom: 0;
}

ul {
  margin-bottom: 2rem;
}

.text {
  text-align: justify;
}
@media (max-width: 940px) {
  .text {
    text-align: left;
  }
}
.text a {
  word-break: break-word;
}
.text a:hover {
  text-decoration: underline;
}

aside {
  text-align: right;
  grid-area: sidebar;
}
@media (max-width: 940px) {
  aside {
    text-align: left;
    font-size: 1.5rem;
  }
}
@media (max-width: 450px) {
  aside {
    font-size: 1.25rem;
  }
}
@media (max-width: 370px) {
  aside {
    font-size: 1rem;
  }
}
aside p span {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
aside p a {
  font-weight: 700;
}

.logo img {
  width: 100%;
  display: block;
}
.logo-full {
  height: 7.5rem !important;
  object-fit: cover;
  object-position: right;
}
@media (max-width: 450px) {
  .logo-full {
    display: none !important;
  }
}
.logo-small {
  height: auto;
  display: none !important;
}
@media (max-width: 450px) {
  .logo-small {
    display: block !important;
  }
}

.imprint {
  text-align: left;
}

nav {
  display: grid;
  gap: 3rem;
}
nav > * {
  grid-area: 1/1;
}
nav ul {
  max-width: calc(100% - 24rem);
  display: flex;
  gap: 0.5rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-self: end;
  flex-wrap: wrap;
}
@media (max-width: 940px) {
  nav ul {
    grid-row: 2;
    max-width: 100%;
    gap: 0.5rem 1rem;
  }
}
nav ul a {
  color: var(--color-primary);
}
nav ul a[aria-current=page] {
  color: var(--color-accent);
}

.reference {
  font-size: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-light-gray);
  line-height: 1.3333;
}
@media (max-width: 940px) {
  .reference {
    font-size: 0.75rem;
    padding: 1.5rem 0;
  }
}
.reference-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 940px) {
  .reference-images {
    gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem 0;
  }
}
.reference-image {
  display: grid;
  overflow: hidden;
  aspect-ratio: 4/3;
  align-items: center;
}
.reference-image img, .reference-image a {
  grid-area: 1/1;
}
.reference-image a {
  aspect-ratio: 4/3;
  display: block;
  overflow: hidden;
  justify-self: center;
}
.reference-image img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.reference-image img[aria-hidden] {
  object-fit: cover;
  opacity: 0.3;
  filter: blur(5px);
  z-index: 0;
}

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