:root {
  --primaryColor: #003690;
  --backgroundColor: #fff;
  --textColor: var(--primaryColor);
  --secondaryColor: #e7e9f0;
  --spacer: 30px;
  --gap: 15px;
  --bp1: 780px
}
* {
  box-sizing: border-box;
}
html {
  font-family: Museo-Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
  font-size: 1rem;
  color: var(--textColor);
}
body {
  margin: 0;
  padding: 0;
}
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
/* Layout */
@supports (display: grid) {
  @media (min-width: 780px) {
    .site {
      display: grid;
      grid-template-columns: minmax(25%, auto) minmax(480px, 1440px);
      grid-template-rows: auto;
      min-height: 100vh;
    }
  }
}

/* Header */
.siteHeader {
  background-color: var(--primaryColor);
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  padding: var(--gap);
}
.siteHeader__logo {
  --logoMinWidth: 50%;
  --logoMaxWidth: 380px;
  --transform: translateX(-60%);
  width: min(var(--logoMinWidth), var(--logoMaxWidth));
  transform: var(--transform);
}
.siteHeader__logo--report {
  --logoMinWidth: 75%;
  --logoMaxWidth: 480px;
  --transform: none;
}
.siteHeader__logo svg {
  max-height: 30px;
}
.siteHeader__logo--report svg {
  max-height: 80px;
}
@media (min-width: 780px) {
  .siteHeader {
    padding-top: calc(1.5 * var(--spacer));
    padding-left: calc(2 * var(--spacer));
    padding-right: 0;
    padding-bottom: 0;
  }
  .siteHeader__logo {
    --transform: translateX(-60%);
  }
  .siteHeader__logo--report {
    --transform: none;
  }
  .siteHeader__logo svg {
    max-height: inherit;
  }
  .siteHeader__logo--report svg {
    max-height: inherit;
  }
}

/* Content */
.siteContent {
  padding: var(--spacer) var(--gap);
  margin-top: 0;
}
.siteContent .row {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 0;
}

/* Report cards */
.reportCard {
  --flexBase: 100%;
  padding: var(--gap);
  flex: 1 1 var(--flexBase);
  max-width: var(--flexBase);
}
@media (min-width: 580px) {
  .reportCard {
    --flexBase: 50%;
  }
}
@media (min-width: 980px) {
  .reportCard {
    --flexBase: 33.33333%;
  }
}
.reportCard__wrapper {
  display: block;
  padding: 10px;
  background-color: var(--secondaryColor);
  height: 100%;
}
.reportCard__text {
  position: relative;
  padding: 0 10px;
}
.reportCard__text .title,
.reportCard__text .text {
  margin: 0;
}
.reportCard__text .title {
  margin-top: -1.25em;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}
.reportCard__image {
  position: relative;
  background-color: var(--secondaryColor);
}
.reportCard__image img {
  width: 100%;
}
.reportCard__image::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 33%;
  background: transparent linear-gradient(0deg, #E7E9F0 0%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: screen;
}
.reportCard--video .reportCard__text {
  position: relative;
  padding-right: 45px;
}
.reportCard--video .reportCard__text::after {
  content: '';
  display: block;
  position: absolute;
  top: 25px;
  right: 0;
  width: 35px;
  height: 35px;
  background: url("../assets/ico-play-button.svg") bottom right / contain no-repeat padding-box;
}
.reportCard__content {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.reportCard__content__wrapper {
  position: relative;
  background-color: #ffffffff;
  width: 100%;
  max-height: 90vh;
  max-width: min(1200px, 95vw);
  padding: var(--spacer) var(--gap);
  overflow-y: auto;
  overflow-x: hidden;
}
@media (min-width: 780px) {
  .reportCard__content__wrapper {
    padding: calc(2 * var(--spacer));
  }
}
@supports (backdrop-filter: blur(15px)) {
  .reportCard__content__wrapper {
    background-color: #FFFFFFCD;
    backdrop-filter: blur(15px);
  }
}
.reportCard__content.open {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.iframe {
  --ratio: 56.25%;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: var(--ratio);
}
.iframe iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.close-btn {
  width: 45px;
  height: 45px;
  border-radius: 90px;
  background:
    url("../assets/ico-close-button.svg") center / 50% no-repeat padding-box,
    var(--primaryColor) center / cover;
  transform: translate(-25%, 50%);
  position: relative;
  z-index: 10;
}
.reportFigures {
  display: flex;
  flex-flow: row wrap;
}
.reportFigures__item {
  --flexBase: 100%;
  --backgroundColor: #ffffff;
  flex: 1 1 var(--flexBase);
  max-width: var(--flexBase);
  padding: calc(2 * var(--spacer));
  background-color: var(--backgroundColor);
  border-bottom: 1px solid var(--primaryColor);
}
@media (max-width: 779px) {
  .reportFigures__item {
    padding: var(--gap);
  }
  .reportFigures__item:nth-of-type(2n + 2) {
    --backgroundColor: #e6efff;
  }
  .reportFigures__item:last-of-type {
    border-bottom: none;
  }
}
@media (min-width: 780px) {
  .reportFigures__item {
    --flexBase: 50%;
  }
  .reportFigures__item:nth-of-type(2n + 1) {
    border-right: 1px solid var(--primaryColor);
  }
  .reportFigures__item:nth-of-type(4n + 3),
  .reportFigures__item:nth-of-type(4n + 2) {
    --backgroundColor: #e6efff;
  }
  .reportFigures__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

.reportFigures__titel {
  margin-bottom: var(--spacer);
}
.reportFigures__titel .title {
  font-size: 1.75rem;
  text-transform: uppercase;
  line-height: 1;
  margin: 0
}
@media (min-width: 780px) {
  .reportFigures__titel .title {
    font-size:2.25rem;
  }
}
.reportFigures__titel strong {
  display: block;
  font-weight: 900;
}
.reportText {
  background-color: #ffffff;
  padding: var(--spacer);
  max-width: 50em;
  margin: 0 auto;
}
.reportText .date {
  margin-top: 3em;
}
.reportText .signatures {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  max-width: 40em;
  margin-top: 2em;
}
.reportText .signatures span {
  margin-top: 1em;
}
.reportLink {
  width: 100%;
  padding: var(--gap);
}
.reportLink a {
  font-weight: 700;
}