@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  font-family: "plantin", serif;
  font-weight: 300;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

strong {
  font-weight: 600;
}

.container {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 40px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .grid {
    column-gap: 0 !important;
  }
}
.grid.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid.columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.grid.columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.grid.columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.grid.columns-10 {
  grid-template-columns: repeat(10, 1fr);
}
.grid.columns-11 {
  grid-template-columns: repeat(11, 1fr);
}
.grid.columns-12 {
  grid-template-columns: repeat(12, 1fr);
}
.grid .grid-column.span-1 {
  grid-column: span 1;
}
.grid .grid-column.span-2 {
  grid-column: span 2;
}
.grid .grid-column.span-3 {
  grid-column: span 3;
}
.grid .grid-column.span-4 {
  grid-column: span 4;
}
.grid .grid-column.span-5 {
  grid-column: span 5;
}
.grid .grid-column.span-6 {
  grid-column: span 6;
}
.grid .grid-column.span-7 {
  grid-column: span 7;
}
.grid .grid-column.span-8 {
  grid-column: span 8;
}
.grid .grid-column.span-9 {
  grid-column: span 9;
}
.grid .grid-column.span-10 {
  grid-column: span 10;
}
.grid .grid-column.span-11 {
  grid-column: span 11;
}
.grid .grid-column.span-12 {
  grid-column: span 12;
}
@media (max-width: 800px) {
  .grid .grid-column.spacer {
    display: none;
  }
}

.sr-only {
  clip-path: inset(100%);
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Hide on XS */
@media (max-width: 1023px) {
  .hide-xs {
    display: none;
  }
}

.background-grey {
  background-color: #fafafa;
}

.background-black {
  background-color: #1A1A1A;
  color: #fff;
}

.border-top-grey {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

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

.h0 {
  font-size: 120px;
  line-height: 1em;
  font-weight: 300;
}

h1,
.h1 {
  font-size: 80px;
  line-height: 1em;
  font-weight: 300;
}
@media (max-width: 1280px) {
  h1,
  .h1 {
    font-size: 64px;
  }
}
@media (max-width: 1023px) {
  h1,
  .h1 {
    font-size: 48px;
  }
}

h2,
.h2 {
  font-size: 42px;
  line-height: 1.15em;
  font-weight: 300;
}
@media (max-width: 1023px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}

h3,
.h3 {
  font-size: 36px;
  line-height: 1.15em;
  font-weight: 300;
}
@media (max-width: 1023px) {
  h3,
  .h3 {
    font-size: 32px;
  }
}

h4,
.h4 {
  font-size: 30px;
  line-height: 1.25em;
  font-weight: 300;
}
@media (max-width: 1023px) {
  h4,
  .h4 {
    font-size: 28px;
  }
}

h5,
.h5 {
  font-size: 26px;
  line-height: 1.25em;
  font-weight: 300;
}
@media (max-width: 1023px) {
  h5,
  .h5 {
    font-size: 22px;
  }
}

.page-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  margin: 48px;
  /* Logo */
  /* Navigation trigger */
  /* Navigation */
}
@media (max-width: 1023px) {
  .page-header {
    margin: 20px;
  }
}
.page-header .logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin: 0;
}
@media (max-width: 1023px) {
  .page-header .logos {
    gap: 20px;
    margin-top: 4px;
  }
}
.page-header .logos img {
  display: block;
}
@media (max-width: 1023px) {
  .page-header .logos img {
    height: 32px;
  }
}
.page-header .navigation-trigger {
  font-size: 24px;
  line-height: 32px;
  height: 36px;
  padding: 14px 30px 10px 30px;
  border-width: 1px;
  border-style: solid;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.5s ease;
  background: white;
  color: black;
  border-color: white;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 48px;
  right: 48px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.page-header .navigation-trigger, .page-header .navigation-trigger a {
  text-decoration: none;
}
.page-header .navigation-trigger:hover {
  background: black;
  color: white;
  border-color: black;
}
@media (max-width: 1023px) {
  .page-header .navigation-trigger {
    top: 20px;
    right: 20px;
  }
}
.page-header .navigation-trigger::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 13L13 1M1 1L13 13' stroke='black' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.visible-menu .page-header .navigation-trigger::after {
  opacity: 1;
  visibility: visible;
}
.visible-menu .page-header .navigation-trigger {
  background-color: white;
}
.page-header .navigation-trigger span {
  interpolate-size: allow-keywords;
  transition: all 0.5s ease;
}
.visible-menu .page-header .navigation-trigger span {
  opacity: 0;
  width: 0;
}
.page-header .navigation {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.visible-menu .page-header .navigation {
  opacity: 1;
  visibility: visible;
}
.page-header .navigation a {
  text-decoration: none;
}
.page-header .navigation ul {
  margin: 0;
  padding: 0;
}
.page-header .navigation ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-header .navigation-contents {
  position: fixed;
  inset: 24px 24px 24px auto;
  width: 50%;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 48px;
  color: white;
  overflow: hidden;
  translate: 32px 0;
  transition: all 0.5s ease;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
}
@media (max-width: 1023px) {
  .page-header .navigation-contents {
    inset: 10px;
    width: auto;
    padding: 20px;
  }
}
.page-header .navigation-contents::-webkit-scrollbar {
  width: 6px;
}
.page-header .navigation-contents::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}
.page-header .navigation-contents::-webkit-scrollbar-track {
  background: transparent;
}
.visible-menu .page-header .navigation-contents {
  translate: 0 0;
}
.page-header .navigation-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.page-header .navigation-menu li {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
}
.visible-menu .page-header .navigation-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.page-header .navigation-menu li a {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.page-header .navigation-menu li + li {
  margin-top: 24px;
}
.page-header .navigation-menu li .number {
  font-size: 20px;
  line-height: 26px;
  padding-top: 6px;
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .page-header .navigation-menu li .number {
    padding-top: 0;
  }
}
.page-header .navigation-menu li .label {
  font-size: 30px;
  line-height: 34px;
}
@media (max-width: 1023px) {
  .page-header .navigation-menu li .label {
    font-size: 20px;
    line-height: 26px;
  }
}
.page-header .navigation-legal, .page-header .navigation-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.page-header .navigation-legal li, .page-header .navigation-social li {
  font-size: 20px;
  line-height: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateX(-10px);
}
.visible-menu .page-header .navigation-legal li, .visible-menu .page-header .navigation-social li {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.page-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15dvh;
  height: 100dvh;
  color: white;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/page-cover.jpg");
  padding: 0 24px;
  text-align: center;
  isolation: isolate;
}
.page-cover .title,
.page-cover .subtitle {
  margin: 0;
}
.page-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.page-intro {
  padding: 80px 0 160px 0;
}
@media (max-width: 1023px) {
  .page-intro {
    padding: 40px 0 80px 0;
  }
}
.page-intro__image {
  grid-column: span 3;
  align-self: flex-start;
  position: sticky;
  top: 80px;
}
@media (max-width: 1023px) {
  .page-intro__image {
    grid-column: span 12;
  }
}
@media (max-width: 1023px) {
  .page-intro__image {
    position: relative;
    top: 0;
  }
}
.page-intro__image img {
  display: block;
  max-width: 100%;
}
.page-intro__image .title {
  font-size: 30px;
  line-height: 1.25em;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 1023px) {
  .page-intro__image .title {
    font-size: 28px;
  }
}
.page-intro__text {
  grid-column: 7/span 5;
}
@media (max-width: 1023px) {
  .page-intro__text {
    grid-column: span 12;
  }
}

.component-tag {
  color: #666;
  font-size: 20px;
  line-height: 26px;
}
.component-tag::before {
  content: "— ";
}

.component-link {
  font-weight: 500;
}
.component-link::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: text-top;
  margin-left: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/icon-external.svg");
}

.component-button.solid-white {
  font-size: 24px;
  line-height: 32px;
  height: 36px;
  padding: 14px 30px 10px 30px;
  border-width: 1px;
  border-style: solid;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.5s ease;
  background: white;
  color: black;
  border-color: white;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.component-button.solid-white, .component-button.solid-white a {
  text-decoration: none;
}
.component-button.solid-white:hover {
  background: black;
  color: white;
  border-color: black;
}
.component-button.solid-black {
  font-size: 24px;
  line-height: 32px;
  height: 36px;
  padding: 14px 30px 10px 30px;
  border-width: 1px;
  border-style: solid;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.5s ease;
  background: black;
  color: white;
  border-color: black;
}
.component-button.solid-black, .component-button.solid-black a {
  text-decoration: none;
}
.component-button.solid-black:hover {
  background: white;
  color: black;
  border-color: white;
}
.component-button.icon-video::before, .component-button.icon-external::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transition: all 0.5s ease;
  transform: translateY(-2px);
}
.component-button.icon-video:hover::before, .component-button.icon-external:hover::before {
  filter: brightness(0) invert(1);
}
.component-button.icon-video::before {
  background-image: url("../images/icon-play.svg");
}
.component-button.icon-external::before {
  background-image: url("../images/icon-external.svg");
}

.component-text-image > * {
  margin: 0;
}
.component-text-image > * + * {
  margin-top: 32px;
}
.component-text-image p,
.component-text-image ul:not(.list),
.component-text-image ol:not(.list),
.component-text-image h1, .component-text-image h2, .component-text-image h3, .component-text-image h4, .component-text-image h5, .component-text-image h6 {
  max-width: 900px;
}
.component-text-image ul,
.component-text-image ol {
  padding-left: 32px;
}
.component-text-image ul li + li,
.component-text-image ol li + li {
  margin-top: 12px;
}
.component-text-image ul ul,
.component-text-image ul ol,
.component-text-image ol ul,
.component-text-image ol ol {
  margin-top: 10px;
}
.component-text-image ul li {
  list-style: disc;
}
.component-text-image img {
  display: block;
  max-width: 100%;
}
.component-text-image hr {
  display: block;
  border: none;
  background: #4D4D4D;
  width: 160px;
  height: 10px;
}
.component-text-image table {
  border-collapse: collapse;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
}
.component-text-image table th,
.component-text-image table td {
  border-top: 1px solid #f0f0f0;
  text-align: left;
  padding: 24px 24px 20px 24px;
}
@media (max-width: 1023px) {
  .component-text-image table th,
  .component-text-image table td {
    padding: 16px 12px 12px 12px;
  }
}
.component-text-image table th:last-child,
.component-text-image table td:last-child {
  text-align: right;
}
.component-text-image table th {
  background: rgba(0, 0, 0, 0.015);
}
.component-text-image table th.result {
  background: #f0f0f0;
}
.component-text-image .highlighted {
  font-size: 24px;
  line-height: 1.25em;
}
.component-text-image.separation-16 > * + * {
  margin-top: 16px;
}
.component-text-image.separation-24 > * + * {
  margin-top: 24px;
}
.component-text-image.separation-32 > * + * {
  margin-top: 32px;
}
.component-text-image.separation-48 > * + * {
  margin-top: 48px;
}

.component-dropdowns .title {
  color: #666;
  font-size: 24px;
  line-height: 30px;
}
.component-dropdowns .title::before {
  content: "— ";
}
.component-dropdowns .dropdown {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}
.component-dropdowns .dropdown-trigger {
  cursor: pointer;
  padding: 28px 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all 0.5s ease;
  font-size: 26px;
  line-height: 32px;
}
.component-dropdowns .dropdown-trigger::after {
  content: "";
  flex-shrink: 0;
  padding: 12px;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 100%;
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 0.75V13.25M13.25 7H0.75' stroke='%23333333' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  transition: all 0.5s ease;
}
.component-dropdowns .dropdown-trigger:hover::after {
  background-color: black;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 0.75V13.25M13.25 7H0.75' stroke='%23ffffff' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.component-dropdowns .dropdown-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  interpolate-size: allow-keywords;
  transition: all 0.5s ease;
}
.component-dropdowns .dropdown-content > * {
  margin: 0;
}
.component-dropdowns .dropdown-content > * + * {
  margin-top: 32px;
}
.component-dropdowns .dropdown.active .dropdown-trigger::after {
  rotate: 45deg;
  background-color: black;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 0.75V13.25M13.25 7H0.75' stroke='%23ffffff' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.component-dropdowns .dropdown.active .dropdown-content {
  height: auto;
  opacity: 1;
  padding-bottom: 32px;
}

.component-cicle-list ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 0;
}
.component-cicle-list li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 30px;
  line-height: 1.25em;
  font-weight: 300;
}
@media (max-width: 1023px) {
  .component-cicle-list li {
    font-size: 28px;
  }
}
.component-cicle-list li a {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.5s ease;
}
.component-cicle-list li a:hover {
  opacity: 1;
}
.component-cicle-list li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  margin-right: 10px;
}

.component-gallery-swiper {
  /*
  .swiper {
      overflow: visible;
  }
  */
}
.component-gallery-swiper .swiper-buttons {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.component-gallery-swiper .swiper-buttons .text {
  margin-right: auto;
}
.component-gallery-swiper .swiper-buttons .next,
.component-gallery-swiper .swiper-buttons .prev {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s ease;
}
.component-gallery-swiper .swiper-buttons .next.swiper-button-disabled,
.component-gallery-swiper .swiper-buttons .prev.swiper-button-disabled {
  opacity: 0.2;
}
.component-gallery-swiper .swiper-buttons .next {
  background-image: url("../images/swiper-arrow-right.svg");
}
.component-gallery-swiper .swiper-buttons .prev {
  background-image: url("../images/swiper-arrow-left.svg");
}
.component-gallery-swiper .swiper-slide a:focus {
  pointer-events: none;
}
.component-gallery-swiper .swiper-slide img {
  display: block;
  aspect-ratio: 600/350;
  object-fit: cover;
}
.component-gallery-swiper .swiper-slide.video {
  position: relative;
}
.component-gallery-swiper .swiper-slide.video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  translate: -50% -50%;
  border-radius: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("../images/icon-play.svg");
  transition: all 0.5s ease;
}
.component-gallery-swiper .swiper-slide.video:hover::before {
  scale: 1.2;
}

.component-quote-list > .heading {
  margin: 0 0 48px 0;
}
.component-quote-list > .heading > * {
  margin: 0;
}
.component-quote-list > .heading > * + * {
  margin-top: 16px;
}
.component-quote-list > .list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.component-quote-list > .list > li {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  padding-left: 24px;
  align-self: flex-start;
}
.background-black .component-quote-list > .list > li {
  border-left-color: rgba(255, 255, 255, 0.3);
}
.component-quote-list.columns-2 > .list {
  grid-template-columns: 1fr 1fr;
}
.component-quote-list.columns-3 > .list {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1023px) {
  .component-quote-list > .list, .component-quote-list.columns-1 > .list, .component-quote-list.columns-2 > .list, .component-quote-list.columns-3 > .list {
    grid-template-columns: 1fr;
  }
}
.component-quote-list > * {
  margin: 0;
}
.component-quote-list > * + * {
  margin-top: 32px;
}
.component-quote-list .date {
  opacity: 0.75;
}
.component-quote-list.separation-16 > .list > li + li {
  margin-top: 16px;
}
.component-quote-list.separation-24 > .list {
  gap: 24px;
}
.component-quote-list.separation-32 > .list {
  gap: 32px;
}
.component-quote-list.separation-40 > .list {
  gap: 40px;
}
.component-quote-list.separation-48 > .list {
  gap: 48px;
}

.component-columns-list.left-border {
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  padding-left: 24px;
}
.component-columns-list > .heading {
  margin-bottom: 40px !important;
}
.component-columns-list > .heading, .component-columns-list > .heading > * {
  margin: 0;
}
.component-columns-list > .list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.component-columns-list > .list > li {
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: flex-start;
}
.component-columns-list.columns-2 > .list {
  grid-template-columns: 1fr 1fr;
}
.component-columns-list.columns-3 > .list {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1023px) {
  .component-columns-list > .list, .component-columns-list.columns-2 > .list, .component-columns-list.columns-3 > .list {
    grid-template-columns: 1fr;
  }
}
.component-columns-list > * {
  margin: 0;
}
.component-columns-list > * + * {
  margin-top: 32px;
}
.component-columns-list .small {
  opacity: 0.75;
  font-size: 0.9em;
}

.component-columns-articles > .list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 24px;
}
.component-columns-articles > .list > li {
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: flex-start;
}
.component-columns-articles.columns-2 > .list {
  grid-template-columns: 1fr 1fr;
}
.component-columns-articles.columns-3 > .list {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1023px) {
  .component-columns-articles > .list, .component-columns-articles.columns-2 > .list, .component-columns-articles.columns-3 > .list {
    grid-template-columns: 1fr;
  }
}
.component-columns-articles > * {
  margin: 0;
}
.component-columns-articles > * + * {
  margin-top: 32px;
}
.component-columns-articles .small {
  opacity: 0.75;
  font-size: 0.9em;
}

.component-logo-list > .heading, .component-logo-list > .heading > * {
  margin: 0;
}
.component-logo-list > .list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.component-logo-list > .list li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 150px;
}
@media (max-width: 1023px) {
  .component-logo-list > .list li {
    width: 125px;
  }
}
.component-logo-list > .list li img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 500/250;
}
.component-logo-list > * {
  margin: 0;
}
.component-logo-list > * + * {
  margin-top: 32px !important;
}

.component-text-list > .heading, .component-text-list > .heading > * {
  margin: 0;
}
.component-text-list > .list {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.component-text-list > .list li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline;
  font-size: 20px;
  line-height: 1.25em;
}
.component-text-list > .list li::after {
  content: "-";
  margin: 0 8px;
}
.component-text-list > * {
  margin: 0;
}
.component-text-list > * + * {
  margin-top: 32px !important;
}

.component-link-list > .heading {
  margin: 0 0 48px 0;
}
.component-link-list > .heading > * {
  margin: 0;
}
.component-link-list > .heading > * + * {
  margin-top: 16px;
}
.component-link-list > .list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}
.component-link-list > .list > li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.component-link-list > .list > li::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/icon-external.svg");
}
.component-link-list > * {
  margin: 0;
}
.component-link-list > * + * {
  margin-top: 32px;
}
.component-link-list.centered > .list {
  justify-content: center;
}

.component-image-grid > .list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.component-image-grid.columns-2 > .list {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1023px) {
  .component-image-grid.columns-2 > .list {
    grid-template-columns: 1fr;
  }
}
.component-image-grid.columns-3 > .list {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1023px) {
  .component-image-grid.columns-3 > .list {
    grid-template-columns: 1fr;
  }
}
.component-image-grid > * {
  margin: 0;
}
.component-image-grid > * + * {
  margin-top: 32px;
}
.component-image-grid .small {
  opacity: 0.75;
  font-size: 0.9em;
}

.component-facts-circle > .list {
  margin: 0;
  padding: 0;
}
.component-facts-circle > .list > li {
  margin: 0;
  padding: 24px;
  list-style: none;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 100%;
  text-align: center;
  text-wrap: balance;
}
.component-facts-circle > .list > li > .fact {
  font-size: 80px;
  line-height: 1em;
  font-weight: 300;
}
@media (max-width: 1280px) {
  .component-facts-circle > .list > li > .fact {
    font-size: 64px;
  }
}
@media (max-width: 1023px) {
  .component-facts-circle > .list > li > .fact {
    font-size: 48px;
  }
}
.component-facts-circle > .list > li > .fact.small {
  scale: 0.8;
}
.component-facts-circle > .list, .component-facts-circle.columns-1 > .list {
  display: grid;
  grid-template-columns: minmax(0, 360px);
}
.component-facts-circle.columns-2 > .list {
  grid-template-columns: repeat(2, minmax(0, 360px));
}
.component-facts-circle.columns-3 > .list {
  grid-template-columns: repeat(3, minmax(0, 360px));
}
.component-facts-circle.columns-4 > .list {
  grid-template-columns: repeat(4, minmax(0, 360px));
}
@media (max-width: 1023px) {
  .component-facts-circle > .list, .component-facts-circle.columns-1 > .list, .component-facts-circle.columns-2 > .list, .component-facts-circle.columns-3 > .list, .component-facts-circle.columns-4 > .list {
    grid-template-columns: minmax(0, 360px) !important;
  }
}
.component-facts-circle.negative > .list {
  color: white;
}
.component-facts-circle.negative > .list > li {
  background-color: #1A1A1A;
}
.component-facts-circle > * {
  margin: 0;
}
.component-facts-circle > * + * {
  margin-top: 40px !important;
}

.component-facts-columns > .list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 96px 24px;
}
.component-facts-columns > .list > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1023px) {
  .component-facts-columns > .list {
    grid-template-columns: 1fr;
  }
}

.component-spacer-16 {
  height: 16px;
}
.component-spacer-24 {
  height: 24px;
}
.component-spacer-32 {
  height: 32px;
}
.component-spacer-48 {
  height: 48px;
}

.section-top {
  color: white;
  background-color: #1A1A1A;
  padding-top: 80px;
  padding-bottom: 160px;
}
@media (max-width: 1023px) {
  .section-top {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.section-top__heading {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 1023px) {
  .section-top__heading {
    flex-direction: column;
  }
}
.section-top__heading .number {
  font-size: 200px;
  line-height: 1em;
  opacity: 0.5;
}
@media (max-width: 1023px) {
  .section-top__heading .number {
    order: -1;
    font-size: 40px;
  }
}
.section-top__navigation {
  margin: 80px 0 0 0;
}
@media (max-width: 1023px) {
  .section-top__navigation {
    margin-top: 40px;
  }
}
.section-top__navigation ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .section-top__navigation ul {
    column-gap: 0 !important;
  }
}
.section-top__navigation ul.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.section-top__navigation ul.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.section-top__navigation ul.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.section-top__navigation ul.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.section-top__navigation ul.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.section-top__navigation ul.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.section-top__navigation ul.columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.section-top__navigation ul.columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.section-top__navigation ul.columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.section-top__navigation ul.columns-10 {
  grid-template-columns: repeat(10, 1fr);
}
.section-top__navigation ul.columns-11 {
  grid-template-columns: repeat(11, 1fr);
}
.section-top__navigation ul.columns-12 {
  grid-template-columns: repeat(12, 1fr);
}
.section-top__navigation ul .grid-column.span-1 {
  grid-column: span 1;
}
.section-top__navigation ul .grid-column.span-2 {
  grid-column: span 2;
}
.section-top__navigation ul .grid-column.span-3 {
  grid-column: span 3;
}
.section-top__navigation ul .grid-column.span-4 {
  grid-column: span 4;
}
.section-top__navigation ul .grid-column.span-5 {
  grid-column: span 5;
}
.section-top__navigation ul .grid-column.span-6 {
  grid-column: span 6;
}
.section-top__navigation ul .grid-column.span-7 {
  grid-column: span 7;
}
.section-top__navigation ul .grid-column.span-8 {
  grid-column: span 8;
}
.section-top__navigation ul .grid-column.span-9 {
  grid-column: span 9;
}
.section-top__navigation ul .grid-column.span-10 {
  grid-column: span 10;
}
.section-top__navigation ul .grid-column.span-11 {
  grid-column: span 11;
}
.section-top__navigation ul .grid-column.span-12 {
  grid-column: span 12;
}
@media (max-width: 800px) {
  .section-top__navigation ul .grid-column.spacer {
    display: none;
  }
}
@media (max-width: 1023px) {
  .section-top__navigation ul {
    gap: 0;
  }
}
.section-top__navigation ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 24px;
  line-height: 1.25em;
  grid-column: span 4;
}
@media (max-width: 1023px) {
  .section-top__navigation ul li {
    font-size: 20px;
    grid-column: span 12;
  }
}
.section-top__navigation ul li a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 48px;
  height: 100%;
  padding: 24px 0;
  text-decoration: none;
  border-bottom: 1px solid #4D4D4D;
  transition: all 0.5s ease;
}
.section-top__navigation ul li a .number {
  opacity: 0.6;
  transition: all 0.5s ease;
}
.section-top__navigation ul li a .label {
  opacity: 0.8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: all 0.5s ease;
}
.section-top__navigation ul li a:hover {
  border-bottom-color: white;
}
.section-top__navigation ul li a:hover .number,
.section-top__navigation ul li a:hover .label {
  opacity: 1;
}
.section-top__intro {
  margin: 80px 0 0 0;
}
.section-top__intro .grid-column.left {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 1023px) {
  .section-top__intro .grid-column.left {
    grid-column: span 12;
  }
}
.section-top__intro .grid-column.left .image {
  display: block;
  max-width: 100%;
}
.section-top__intro .grid-column.right {
  grid-column: 7/span 5;
}
@media (max-width: 1023px) {
  .section-top__intro .grid-column.right {
    grid-column: span 12;
  }
}
.section-top__intro .grid-column.right > * {
  margin: 0;
}
.section-top__intro .grid-column.right > * + * {
  margin-top: 48px;
}

.page-subsection {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  position: relative;
}
@media (max-width: 1023px) {
  .page-subsection {
    overflow-x: hidden;
  }
}
.page-subsection.top-border {
  padding-top: 0;
}
.page-subsection.top-border > .container {
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.page-subsection.top-border.background-black > .container {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.page-subsection-default {
  padding-top: 80px;
  padding-bottom: 160px;
}
@media (max-width: 1023px) {
  .page-subsection-default {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.page-subsection-default > .container > .grid {
  gap: 120px 48px;
}
@media (max-width: 1023px) {
  .page-subsection-default > .container > .grid {
    gap: 48px;
  }
}
.page-subsection-default__heading {
  grid-column: span 4;
  padding-right: 48px;
}
@media (max-width: 1023px) {
  .page-subsection-default__heading {
    grid-column: span 12;
    padding-right: 0;
  }
}
.page-subsection-default__heading .title {
  margin: 0;
  position: sticky;
  top: 80px;
}
.page-subsection-default__content {
  grid-column: span 8;
}
@media (max-width: 1023px) {
  .page-subsection-default__content {
    grid-column: span 12;
  }
}
.page-subsection-default__content > * {
  margin: 0;
}
.page-subsection-default__content > * + * {
  margin-top: 120px;
}
@media (max-width: 1023px) {
  .page-subsection-default__content > * + * {
    margin-top: 60px;
  }
}
.page-subsection-default__content-fullwidth {
  grid-column: span 12;
}
.page-subsection-default__content-fullwidth > * + * {
  margin-top: 120px;
}
@media (max-width: 1023px) {
  .page-subsection-default__content-fullwidth > * + * {
    margin-top: 60px;
  }
}

.page-subsection-cicle-list {
  color: white;
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  position: relative;
}
.page-subsection-cicle-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  width: 100%;
  height: 100%;
}
.page-subsection-cicle-list__heading {
  grid-column: span 12;
}
.page-subsection-cicle-list__heading .title {
  margin: 0;
  max-width: 420px;
  text-wrap: balance;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.page-subsection-cicle-list__heading .title .number {
  opacity: 0.75;
}
.page-subsection-cicle-list__content {
  padding-top: 80px;
  grid-column: 7/span 6;
}
@media (max-width: 1023px) {
  .page-subsection-cicle-list__content {
    grid-column: span 12;
    padding-top: 40px;
  }
}
.page-subsection-cicle-list__content > * {
  margin: 0;
}
.page-subsection-cicle-list__content > * + * {
  margin-top: 120px;
}

.page-subsection-cicle-detail {
  padding-top: 80px;
  padding-bottom: 160px;
}
@media (max-width: 1023px) {
  .page-subsection-cicle-detail {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.page-subsection-cicle-detail .grid {
  gap: 120px 24px;
}
@media (max-width: 1023px) {
  .page-subsection-cicle-detail .grid {
    gap: 40px;
  }
}
.page-subsection-cicle-detail__heading {
  grid-column: span 4;
  text-wrap: balance;
}
@media (max-width: 1023px) {
  .page-subsection-cicle-detail__heading {
    grid-column: span 12;
  }
}
.page-subsection-cicle-detail__heading .title {
  margin: 0;
}
.page-subsection-cicle-detail__heading .image {
  margin-top: 48px;
}
.page-subsection-cicle-detail__content {
  grid-column: 7/span 6;
}
@media (max-width: 1023px) {
  .page-subsection-cicle-detail__content {
    grid-column: span 12;
  }
}
.page-subsection-cicle-detail__content > * {
  margin: 0;
}
.page-subsection-cicle-detail__content > * + * {
  margin-top: 120px;
}
@media (max-width: 1023px) {
  .page-subsection-cicle-detail__content > * + * {
    margin-top: 60px;
  }
}
.page-subsection-cicle-detail__items {
  grid-column: span 12;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.page-subsection-cicle-detail__item {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .page-subsection-cicle-detail__item {
    column-gap: 0 !important;
  }
}
.page-subsection-cicle-detail__item.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.page-subsection-cicle-detail__item.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.page-subsection-cicle-detail__item.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.page-subsection-cicle-detail__item.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.page-subsection-cicle-detail__item.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.page-subsection-cicle-detail__item.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.page-subsection-cicle-detail__item.columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.page-subsection-cicle-detail__item.columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.page-subsection-cicle-detail__item.columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.page-subsection-cicle-detail__item.columns-10 {
  grid-template-columns: repeat(10, 1fr);
}
.page-subsection-cicle-detail__item.columns-11 {
  grid-template-columns: repeat(11, 1fr);
}
.page-subsection-cicle-detail__item.columns-12 {
  grid-template-columns: repeat(12, 1fr);
}
.page-subsection-cicle-detail__item .grid-column.span-1 {
  grid-column: span 1;
}
.page-subsection-cicle-detail__item .grid-column.span-2 {
  grid-column: span 2;
}
.page-subsection-cicle-detail__item .grid-column.span-3 {
  grid-column: span 3;
}
.page-subsection-cicle-detail__item .grid-column.span-4 {
  grid-column: span 4;
}
.page-subsection-cicle-detail__item .grid-column.span-5 {
  grid-column: span 5;
}
.page-subsection-cicle-detail__item .grid-column.span-6 {
  grid-column: span 6;
}
.page-subsection-cicle-detail__item .grid-column.span-7 {
  grid-column: span 7;
}
.page-subsection-cicle-detail__item .grid-column.span-8 {
  grid-column: span 8;
}
.page-subsection-cicle-detail__item .grid-column.span-9 {
  grid-column: span 9;
}
.page-subsection-cicle-detail__item .grid-column.span-10 {
  grid-column: span 10;
}
.page-subsection-cicle-detail__item .grid-column.span-11 {
  grid-column: span 11;
}
.page-subsection-cicle-detail__item .grid-column.span-12 {
  grid-column: span 12;
}
@media (max-width: 800px) {
  .page-subsection-cicle-detail__item .grid-column.spacer {
    display: none;
  }
}
.page-subsection-cicle-detail__item .info > *,
.page-subsection-cicle-detail__item .description > *,
.page-subsection-cicle-detail__item .image > * {
  margin: 0;
}
.page-subsection-cicle-detail__item .info > * + *,
.page-subsection-cicle-detail__item .description > * + *,
.page-subsection-cicle-detail__item .image > * + * {
  margin-top: 24px;
}
.page-subsection-cicle-detail__item .info {
  grid-column: span 3;
}
@media (max-width: 1023px) {
  .page-subsection-cicle-detail__item .info {
    grid-column: span 12;
  }
}
.page-subsection-cicle-detail__item .info .highlight {
  font-size: 24px;
  line-height: 1.25em;
  opacity: 0.75;
}
.page-subsection-cicle-detail__item .description {
  grid-column: span 6;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 1023px) {
  .page-subsection-cicle-detail__item .description {
    grid-column: span 12;
    padding-left: 0;
    padding-right: 0;
  }
}
.page-subsection-cicle-detail__item .image {
  grid-column: span 3;
}
@media (max-width: 1023px) {
  .page-subsection-cicle-detail__item .image {
    grid-column: span 12;
  }
}
.page-subsection-cicle-detail__extra {
  grid-column: span 12;
}
.page-subsection-cicle-detail__extra > * {
  margin: 0;
}
.page-subsection-cicle-detail__extra > * + * {
  margin-top: 48px;
}
.page-subsection-cicle-detail__gallery {
  grid-column: span 12;
}

.page-subsection-links {
  padding-top: 160px;
  padding-bottom: 160px;
}
.page-subsection-links__content {
  grid-column: span 12;
}
.page-subsection-links__content > * {
  margin: 0;
}
.page-subsection-links__content > * + * {
  margin-top: 120px;
}

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