/* GENERAL */
.-desktop {
  display: block;
}

.-mobile {
  display: none;
}

@media (max-width: 800px) {
  .-desktop {
    display: none;
  }

  .-mobile {
    display: block;
  }
}
p, li {
  font-size: 18px;
}

a {
  color: var(--accent);
}

h1 {
  text-align: center;
  margin: 22px 0;
  line-height: 1;
}

figure {
  padding: 0;
  margin: 0;
}
figure figcaption {
  font-size: 14px;
  padding-top: 5px;
  padding-left: 5px;
  text-align: right;
}
figure figcaption, figure figcaption a {
  color: #6C6C6C;
}
figure figcaption span {
  text-transform: uppercase;
}
@media (max-width: 800px) {
  figure figcaption {
    text-align: center;
  }
}

h1:first-child {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  text-transform: uppercase;
  font-weight: 900 !important;
}
h1:first-child .alt {
  font-family: "Montserrat Alternates", sans-serif;
  font-style: normal;
}

h1 span {
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
  color: var(--highlight);
  letter-spacing: 1px;
}

.main-report > div {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  color: var(--black);
  margin-left: auto;
  margin-right: auto;
}

.report > div {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  color: var(--black);
  margin-left: auto;
  margin-right: auto;
}

.report-section {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: center;
  padding: 40px 40px;
}
.report-section.-bg-gray {
  background-color: #eee;
}

.report-header {
  position: relative;
  background-color: #412363;
  color: var(--white);
}

.report-header-background {
  mix-blend-mode: screen;
  filter: brightness(10%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-image: url("/img/pattern.jpg");
}

.report-footer {
  flex-direction: row-reverse;
  background-color: var(--purple);
  color: var(--white);
}
.report-footer .report-section-text {
  flex: 0 3 900px;
}
.report-footer .report-section-image {
  flex: 0 2 300px;
}
.report-footer .report-section-image img {
  box-shadow: 4px 4px 0 #777;
}
.report-footer a {
  color: var(--white);
}
.report-footer a:hover {
  color: var(--highlight);
}

.report-section-text {
  flex: 0 2 800px;
}

.report-section-image {
  flex: 0 1 400px;
}
.report-section-image img {
  aspect-ratio: var(--image-ratio, auto);
  object-position: var(--object-position, center);
  object-fit: cover;
  box-shadow: var(--image-shadow, 4px 4px 0 rgba(0, 0, 0, 0.3));
}

.report-section:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 800px) {
  .report-section:not(.report-footer) {
    flex-direction: column-reverse !important;
    gap: 25px;
  }
  .report-section:not(.report-footer) .report-section-text {
    flex: 1 1 auto !important;
  }
  .report-section:not(.report-footer) .report-section-image {
    flex: 1 1 auto !important;
  }
  .report-section:not(.report-footer) .report-section-image img {
    width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
  .report-footer {
    flex-direction: column-reverse !important;
    gap: 25px;
  }
  .report-footer .report-section-text {
    flex: 1 1 auto !important;
  }
  .report-footer .report-section-image {
    flex: 1 1 auto !important;
  }
  .report-footer .report-section-image img {
    width: 300px;
    margin: 0 auto;
  }
}
.report-section:first-child .report-section-image {
  margin-right: -40px;
}

.report-section-text h2 {
  font-size: 2rem;
  margin-top: 0;
  color: #444;
  text-align: Center;
  margin-bottom: 20px;
}
.report-section-text h2 span {
  display: block;
}
.report-section-text h2 span:first-child {
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  text-shadow: 1px 1px 0px var(--highlight);
}
.report-section-text h2 span + span {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.report-footer span {
  text-shadow: none !important;
}

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