select[data-ss-uuid] {
  display: none;
  pointer-events: none; }

.style-select {
  display: block;
  position: relative;
  width: 140px; }
  .style-select, .style-select * {
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    line-height: 19px;
    color: black;
    font-weight: 300;
    cursor: pointer; }
  .style-select .ss-selected-option {
    width: 100%;
    background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
    border-radius: 2px;
    padding: 6px;
    border: 1px solid #d0d0d0; }
    .style-select .ss-selected-option::after {
      content: "▾";
      position: absolute;
      top: 6px;
      right: 12px;
      display: block; }
  .style-select .ss-dropdown {
    top: 32px;
    left: 0;
    position: absolute;
    float: left;
    width: 100%;
    display: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #d0d0d0;
    border-top: 0 none; }
    .style-select .ss-dropdown .ss-option {
      width: 100%;
      padding: 6px;
      background-color: white; }
      .style-select .ss-dropdown .ss-option.highlighted {
        background-color: #f2f4f8; }
      .style-select .ss-dropdown .ss-option.disabled {
        color: #d0d0d0; }
      .style-select .ss-dropdown .ss-option.ticked::before {
        content: "✓";
        padding-right: 3px; }
  .style-select.open .ss-dropdown {
    display: block; }
  .style-select.open .ss-selected-option::after {
    content: "▴"; }

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2027%2044%27%3E%3Cpath%20d%3D%27M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z%27%20fill%3D%27%23007aff%27%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2027%2044%27%3E%3Cpath%20d%3D%27M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z%27%20fill%3D%27%23007aff%27%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2027%2044%27%3E%3Cpath%20d%3D%27M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2027%2044%27%3E%3Cpath%20d%3D%27M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2027%2044%27%3E%3Cpath%20d%3D%27M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2027%2044%27%3E%3Cpath%20d%3D%27M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white
  .swiper-pagination-progressbar-fill {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black
  .swiper-pagination-progressbar-fill {
  background: #000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%270%200%20120%20120%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%3E%3Cdefs%3E%3Cline%20id%3D%27l%27%20x1%3D%2760%27%20x2%3D%2760%27%20y1%3D%277%27%20y2%3D%2727%27%20stroke%3D%27%236c6c6c%27%20stroke-width%3D%2711%27%20stroke-linecap%3D%27round%27%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%2830%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%2860%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%2890%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%28120%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%28150%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.37%27%20transform%3D%27rotate%28180%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.46%27%20transform%3D%27rotate%28210%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.56%27%20transform%3D%27rotate%28240%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.66%27%20transform%3D%27rotate%28270%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.75%27%20transform%3D%27rotate%28300%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.85%27%20transform%3D%27rotate%28330%2060%2C60%29%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%270%200%20120%20120%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%3E%3Cdefs%3E%3Cline%20id%3D%27l%27%20x1%3D%2760%27%20x2%3D%2760%27%20y1%3D%277%27%20y2%3D%2727%27%20stroke%3D%27%23fff%27%20stroke-width%3D%2711%27%20stroke-linecap%3D%27round%27%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%2830%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%2860%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%2890%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%28120%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.27%27%20transform%3D%27rotate%28150%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.37%27%20transform%3D%27rotate%28180%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.46%27%20transform%3D%27rotate%28210%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.56%27%20transform%3D%27rotate%28240%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.66%27%20transform%3D%27rotate%28270%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.75%27%20transform%3D%27rotate%28300%2060%2C60%29%27%2F%3E%3Cuse%20xlink%3Ahref%3D%27%23l%27%20opacity%3D%27.85%27%20transform%3D%27rotate%28330%2060%2C60%29%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

/* required styles */

.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
  touch-action: none;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
  max-width: none !important;
}

/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
  max-width: 15000px !important;
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  user-select: none;
}

.leaflet-tile-pane {
  z-index: 2;
}

.leaflet-objects-pane {
  z-index: 3;
}

.leaflet-overlay-pane {
  z-index: 4;
}

.leaflet-shadow-pane {
  z-index: 5;
}

.leaflet-marker-pane {
  z-index: 6;
}

.leaflet-popup-pane {
  z-index: 7;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */

.leaflet-control {
  position: relative;
  z-index: 7;
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */

.leaflet-clickable {
  cursor: pointer;
}

.leaflet-container {
  cursor: grab;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
  cursor: move;
  cursor: grabbing;
  cursor: grabbing;
}

/* visual tweaks */

.leaflet-container {
  background: #ddd;
  outline: 0;
}

.leaflet-container a {
  color: #0078a8;
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgb(255 255 255 / 50%);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */

.leaflet-bar {
  box-shadow: 0 1px 5px rgb(0 0 0 / 65%);
  border-radius: 4px;
}

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-control-zoom-out {
  font-size: 20px;
}

.leaflet-touch .leaflet-control-zoom-in {
  font-size: 22px;
}

.leaflet-touch .leaflet-control-zoom-out {
  font-size: 24px;
}

/* layers control */

.leaflet-control-layers {
  box-shadow: 0 1px 5px rgb(0 0 0 / 40%);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(http://cdn.leafletjs.com/leaflet/v0.7.7/images/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(http://cdn.leafletjs.com/leaflet/v0.7.7/images/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgb(255 255 255 / 70%);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover {
  text-decoration: underline;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: content-box;
  background: #fff;
  background: rgb(255 255 255 / 50%);
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child, :last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgb(0 0 0 / 20%);
  background-clip: padding-box;
}

/* popup */

.leaflet-popup {
  position: absolute;
  text-align: center;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}

.leaflet-popup-content p {
  margin: 18px 0;
}

.leaflet-popup-tip-container {
  margin: 0 auto;
  width: 40px;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  box-shadow: 0 3px 14px rgb(0 0 0 / 40%);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:dximagetransform.microsoft.matrix(m11=0.70710678, m12=0.70710678, m21=-0.70710678, m22=0.70710678);
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,menu,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}*[hidden]{display:none}body{line-height:1}menu,ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}@keyframes arrow-bounce-animation{0%{transform:translateY(-10%)}100%{transform:translateY(25%)}}@font-face{font-family:"Atlas Grotesk Light";src:url(/static/cbbb185413e9173f6afe.woff2) format("woff2"),url(/static/a12455a982ef7d6d6a42.woff) format("woff");font-weight:300;font-style:normal;font-stretch:normal}@font-face{font-family:"Atlas Grotesk Regular";src:url(/static/1001066b2853f2ed1fdf.woff2) format("woff2"),url(/static/523e6d4a99b557353dca.woff) format("woff");font-weight:400;font-style:normal;font-stretch:normal}@font-face{font-family:"Atlas Grotesk Regular Italic";src:url(/static/85aba5164257b646568d.woff2) format("woff2"),url(/static/6d55fb15260fe7022160.woff) format("woff");font-weight:400;font-style:italic;font-stretch:normal}@font-face{font-family:"Atlas Grotesk Medium";src:url(/static/b517bcfd52bb9e29d346.woff2) format("woff2"),url(/static/7b4954697fa09bc6057a.woff) format("woff");font-weight:500;font-style:normal;font-stretch:normal}@font-face{font-family:"Atlas Grotesk Bold";src:url(/static/69e37b935dbeae8fd566.woff2) format("woff2"),url(/static/95246b013257eca87154.woff) format("woff");font-weight:700;font-style:normal;font-stretch:normal}@font-face{font-family:"Atlas Grotesk Black";src:url(/static/5cfae0a8e22c8be4f4f7.woff2) format("woff2"),url(/static/d2a629a1526c9eb1e301.woff) format("woff");font-weight:900;font-style:normal;font-stretch:normal}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;src:url(/static/81a3160fdb1a0037edad.woff2) format("woff2"),url(/static/28b709551b0b99fdd406.woff) format("woff")}@font-face{font-family:"Font Awesome 5 Solid";font-style:normal;font-weight:900;src:url(/static/85475257955f4bf4f6d9.woff2) format("woff2"),url(/static/e98fbd160b2f50ebfe4d.woff) format("woff")}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(/static/0fe9428559f3518bb8d4.woff2) format("woff2"),url(/static/0e6b58ac5d805dfcd66f.woff) format("woff")}.sr-only{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}button{background-color:rgba(0,0,0,0);border:0;padding:0}.button{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.25rem;line-height:2.75rem;line-height:normal;display:inline-block;border:2px solid #222;padding:10px 20px;min-height:42px;box-sizing:border-box;border-radius:2px;vertical-align:top;width:-moz-fit-content;width:fit-content;color:#222;transition:border-color 200ms ease-in-out,color 200ms ease-in-out}@media all and (min-width: 560px){.button{line-height:2.375rem}}@media all and (min-width: 1380px){.button{line-height:2.75rem}}@media all and (min-width: 560px){.button{height:42px;padding:0px 20px;max-width:calc(560px - 30px * 2)}}@media all and (min-width: 1012px){.button{max-width:calc(1012px - 26px * 2)}}@media all and (min-width: 1380px){.button{height:48px;max-width:calc(1380px - 26px * 2)}}.button:not(:disabled){cursor:pointer}.button:not(:disabled):hover{border-color:#ed1b2d;color:#ed1b2d}.button:disabled{color:#acacac;border-color:#acacac}.button.button--icon-only{padding:0 14px}@media all and (min-width: 1012px){.button.button--icon-only{padding:0 11px}}.button.button--icon-only svg{width:20px;height:20px;vertical-align:text-bottom}.button--full-width{width:100%}.button--cta{background-color:#ed1b2d;border:none;color:#fff;position:relative;overflow:visible}.button--cta:not(:disabled):hover{color:#fff}@media all and (min-width: 1012px){.button--cta:not(:disabled):hover svg use{stroke-dashoffset:0;opacity:1;transition:stroke-dashoffset 500ms ease-out,opacity 100ms ease-out}}.button--cta:disabled{background-color:#e2e2e2;color:#acacac;pointer-events:none}.button--cta svg{position:absolute;top:-8px;left:0;width:100%;height:58px}.button--cta svg use{stroke:#222;stroke-dasharray:700;stroke-dashoffset:700;opacity:0;transition:stroke-dashoffset 500ms ease-out 100ms,opacity 100ms ease-out}.button--white{background-color:#3a3a3a;border:none;color:#fff}.button--white.button--icon-only svg use{fill:#fff}*::-moz-selection{background-color:#ed1b2d;color:#fff}*::selection{background-color:#ed1b2d;color:#fff}*,*::after,*::before{box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*:focus{outline:none}:root{font-family:"Atlas Grotesk Regular";font-size:16px;line-height:24px;color:#222}.preventscroll{overflow:hidden !important}.preventscroll::-webkit-scrollbar{-webkit-appearance:none;appearance:none}html{-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;width:100%;height:100%;max-width:100%;background-color:#222}body{font-size:1.25rem;width:100%;min-height:100%;max-width:100%;height:100%;overflow-x:hidden;overflow-y:scroll}body.is-cookie-bar-open{overflow:hidden}body.prevent-scroll{overflow:hidden !important}body.prevent-scroll::-webkit-scrollbar{-webkit-appearance:none;appearance:none}main{min-height:100%;background-color:#fff}h1{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem}@media all and (min-width: 560px){h1{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){h1{font-size:2.5rem;line-height:3rem}}h1.h1--red{background-color:#ed1b2d;color:#fff;padding:2px 8px;display:inline;-webkit-box-decoration-break:clone;box-decoration-break:clone}h2{font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.375rem;line-height:1.75rem}@media all and (min-width: 560px){h2{font-size:1.5rem;line-height:1.75rem}}@media all and (min-width: 1380px){h2{font-size:1.75rem;line-height:2.25rem}}h3{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1rem;line-height:1.5rem}@media all and (min-width: 560px){h3{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){h3{font-size:1.125rem;line-height:1.875rem}}.introtext{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.125rem;line-height:1.75rem}@media all and (min-width: 560px){.introtext{font-size:1.25rem;line-height:1.75rem}}@media all and (min-width: 1380px){.introtext{font-size:1.5rem;line-height:2.25rem}}p{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem}@media all and (min-width: 560px){p{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){p{font-size:1.125rem;line-height:1.875rem}}h2 a{font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.375rem;line-height:1.75rem;color:#ed1b2d}@media all and (min-width: 560px){h2 a{font-size:1.5rem;line-height:1.75rem}}@media all and (min-width: 1380px){h2 a{font-size:1.75rem;line-height:2.25rem}}h3 a{color:#000 !important}h3 a{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1rem;line-height:1.5rem}@media all and (min-width: 560px){h3 a{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){h3 a{font-size:1.125rem;line-height:1.875rem}}h3 a:hover{border-bottom-color:#000 !important}a{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem;cursor:pointer;text-decoration:none;color:#222}@media all and (min-width: 560px){a{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){a{font-size:1.125rem;line-height:1.875rem}}svg use{fill:#222}blockquote{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1.25rem;line-height:1.75rem;color:#ed1b2d}@media all and (min-width: 560px){blockquote{font-size:1.25rem;line-height:1.75rem}}@media all and (min-width: 1380px){blockquote{font-size:1.5rem;line-height:2rem}}.note{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.1875rem;color:#acacac}@media all and (min-width: 560px){.note{font-size:0.8125rem;line-height:1.3125rem}}@media all and (min-width: 1380px){.note{font-size:1rem;line-height:1.625rem}}figcaption,caption{text-transform:uppercase;font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.1875rem;color:#ed1b2d}@media all and (min-width: 560px){figcaption,caption{font-size:0.75rem;line-height:1.1875rem}}@media all and (min-width: 1380px){figcaption,caption{font-size:0.875rem;line-height:1.0625rem}}.credits{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.125rem;color:#acacac}@media all and (min-width: 1380px){.credits{font-size:0.9375rem;line-height:1.125rem}}hr{margin-top:24px;margin-bottom:24px;height:1px;background-color:#e9e0c4;border:none;clear:both}@media all and (min-width: 560px){hr{margin-top:40px;margin-bottom:40px}}::-moz-placeholder{color:#acacac}::placeholder{color:#acacac}.textfield{display:flex;flex-direction:column;align-items:flex-start;position:relative;vertical-align:top;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:"Atlas Grotesk Medium";font-weight:500;font-size:0.875rem;line-height:20px;height:48px;background:#fff;border:2px solid #222;border-radius:2px;box-sizing:border-box;color:#222;padding:0 16px;width:100%}@media all and (min-width: 560px){.textfield{font-size:1rem;line-height:24px}}.salesforce-form,.form{font-size:0}.salesforce-form fieldset,.form fieldset{margin-bottom:16px}.salesforce-form .field,.form .field{display:flex;flex-direction:column;align-items:flex-start;margin-bottom:32px;position:relative;vertical-align:top}.salesforce-form .field--hidden,.form .field--hidden{height:0;margin-bottom:0}.salesforce-form .field.half,.salesforce-form .field.one-third,.form .field.half,.form .field.one-third{display:inline-block;margin-right:16px}.salesforce-form .field.half,.form .field.half{width:calc((100% - 22px)/2)}.salesforce-form .field.half+.half,.form .field.half+.half{margin-right:0}.salesforce-form .field.one-third,.form .field.one-third{width:calc((100% - 22px)/2)}@media all and (min-width: 560px){.salesforce-form .field.one-third,.form .field.one-third{width:calc((100% - 43px)/3)}}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form .field.one-third+.one-third,.form .field.one-third+.one-third{margin-right:0}}.salesforce-form .field.one-third+.one-third+.one-third,.form .field.one-third+.one-third+.one-third{margin-right:16px}@media all and (min-width: 560px){.salesforce-form .field.one-third+.one-third+.one-third,.form .field.one-third+.one-third+.one-third{margin-right:0}}.salesforce-form .field.one-third label .optional,.form .field.one-third label .optional{display:none}.salesforce-form .field label,.form .field label{margin-bottom:4px;text-transform:uppercase;font-family:"Atlas Grotesk Bold";display:block}.salesforce-form .field label .optional,.form .field label .optional{color:#acacac;position:absolute;top:0;right:0;text-transform:lowercase;font-family:"Atlas Grotesk Regular"}.salesforce-form .field input[type=email],.salesforce-form .field input[type=number],.salesforce-form .field input[type=text],.form .field input[type=email],.form .field input[type=number],.form .field input[type=text]{padding:0 40px 0 16px}.salesforce-form .field-success,.form .field-success{position:absolute;top:40px;right:12px;display:none}@media all and (min-width: 1380px){.salesforce-form .field-success,.form .field-success{top:46px}}.salesforce-form .field-success svg,.form .field-success svg{width:24px;height:24px}.salesforce-form .field-error,.form .field-error{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem;color:#ed1b2d;margin-top:4px;display:block}@media all and (min-width: 560px){.salesforce-form .field-error,.form .field-error{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.salesforce-form .field-error,.form .field-error{font-size:1.125rem;line-height:1.875rem}}.salesforce-form label,.form label{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem}@media all and (min-width: 560px){.salesforce-form label,.form label{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.salesforce-form label,.form label{font-size:1.125rem;line-height:1.875rem}}.salesforce-form input[type=number]::-webkit-inner-spin-button,.salesforce-form input[type=number]::-webkit-outer-spin-button,.form input[type=number]::-webkit-inner-spin-button,.form input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}.salesforce-form input[type=email],.salesforce-form input[type=number]:not(.donation_block__amount_input--active),.salesforce-form input[type=text],.form input[type=email],.form input[type=number]:not(.donation_block__amount_input--active),.form input[type=text]{-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:"Atlas Grotesk Medium";font-weight:500;font-size:0.875rem;line-height:20px;height:48px;background:#fff;border:2px solid #222;border-radius:2px;box-sizing:border-box;color:#222;padding:0 16px;width:100%}@media all and (min-width: 560px){.salesforce-form input[type=email],.salesforce-form input[type=number]:not(.donation_block__amount_input--active),.salesforce-form input[type=text],.form input[type=email],.form input[type=number]:not(.donation_block__amount_input--active),.form input[type=text]{font-size:1rem;line-height:24px}}.salesforce-form input[type=email].is-invalide,.salesforce-form input[type=number]:not(.donation_block__amount_input--active).is-invalide,.salesforce-form input[type=text].is-invalide,.form input[type=email].is-invalide,.form input[type=number]:not(.donation_block__amount_input--active).is-invalide,.form input[type=text].is-invalide{border:2px solid #ed1b2d}.salesforce-form input[type=email].is-valide+.field-success,.salesforce-form input[type=number]:not(.donation_block__amount_input--active).is-valide+.field-success,.salesforce-form input[type=text].is-valide+.field-success,.form input[type=email].is-valide+.field-success,.form input[type=number]:not(.donation_block__amount_input--active).is-valide+.field-success,.form input[type=text].is-valide+.field-success{display:block}.salesforce-form .custom-select,.form .custom-select{width:100%}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form .custom-select,.form .custom-select{position:relative}.salesforce-form .custom-select::after,.form .custom-select::after{content:"";font-family:"Font Awesome 5 Solid";font-size:1.5rem;top:50%;right:16px;position:absolute;transform:translateY(-50%)}}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form select,.form select{-webkit-appearance:none;-moz-appearance:none;appearance:none;appearance:none;font-family:"Atlas Grotesk Medium";font-weight:500;font-size:0.875rem;line-height:20px;height:48px;background:#fff;border:2px solid #222;border-radius:2px;box-sizing:border-box;color:#222;padding:0 16px;width:100%}}@media all and (min-width: 320px)and (max-width: 560px)and (min-width: 560px){.salesforce-form select,.form select{font-size:1rem;line-height:24px}}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form select.is-invalide,.form select.is-invalide{border:2px solid #ed1b2d}}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form select.is-valide+.field-success,.form select.is-valide+.field-success{display:block}}.salesforce-form textarea,.form textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:"Atlas Grotesk Medium";font-weight:500;font-size:0.875rem;line-height:20px;height:48px;min-height:128px;width:100%;background:#fff;border:2px solid #222;border-radius:2px;box-sizing:border-box;color:#222;padding:12px 16px}@media all and (min-width: 560px){.salesforce-form textarea,.form textarea{font-size:1rem;line-height:24px}}.salesforce-form input[type=radio].radio,.form input[type=radio].radio{display:none}.salesforce-form input[type=radio].radio+label,.form input[type=radio].radio+label{cursor:pointer;display:block;padding:2px 0 0 36px;position:relative;min-height:40px}.salesforce-form input[type=radio].radio+label::before,.form input[type=radio].radio+label::before{content:"";position:absolute;top:2px;left:2px;height:24px;width:24px;background-color:#fff;border:3px solid #fff;box-sizing:border-box;border-radius:12px;box-shadow:0 0 0 2px #222}.salesforce-form input[type=radio].radio:checked+label::before,.form input[type=radio].radio:checked+label::before{background-color:#222}.salesforce-form input[type=radio].radio:hover:not(:checked)+label,.form input[type=radio].radio:hover:not(:checked)+label{color:#ed1b2d}.salesforce-form input[type=radio].radio:hover:not(:checked)+label::before,.form input[type=radio].radio:hover:not(:checked)+label::before{background:#ed1b2d;box-shadow:0 0 0 2px #ed1b2d}.salesforce-form input[type=radio].radio[disabled]:checked+label::before,.form input[type=radio].radio[disabled]:checked+label::before{background-color:#acacac;outline:2px solid #acacac;border-radius:6px}.salesforce-form input[type=radio].toggle,.form input[type=radio].toggle{display:none}.salesforce-form input[type=radio].toggle+label,.form input[type=radio].toggle+label{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.25rem;line-height:2.75rem;border:2px solid #222;box-sizing:border-box;cursor:pointer;padding:0 16px;height:48px;border-radius:2px;display:block;text-align:center}@media all and (min-width: 560px){.salesforce-form input[type=radio].toggle+label,.form input[type=radio].toggle+label{line-height:2.375rem}}@media all and (min-width: 1380px){.salesforce-form input[type=radio].toggle+label,.form input[type=radio].toggle+label{line-height:2.75rem}}.salesforce-form input[type=radio].toggle:checked+label,.form input[type=radio].toggle:checked+label{background-color:#222;color:#fff}.salesforce-form input[type=radio].toggle:hover:not(:checked)+label,.form input[type=radio].toggle:hover:not(:checked)+label{border-color:#ed1b2d;color:#ed1b2d}.salesforce-form input[type=checkbox],.form input[type=checkbox]{display:none}.salesforce-form input[type=checkbox]+label,.form input[type=checkbox]+label{display:block;padding-left:40px;position:relative;margin-bottom:-10px;min-height:32px;cursor:pointer}.salesforce-form input[type=checkbox]+label::before,.form input[type=checkbox]+label::before{content:"";position:absolute;top:4px;left:2px;height:24px;width:24px;background-color:#fff;border:2px solid #fff;box-sizing:border-box;outline:2px solid #222}.salesforce-form input[type=checkbox]:checked+label::before,.form input[type=checkbox]:checked+label::before{background-color:#000}.salesforce-form input[type=checkbox][disabled]:checked+label::before,.form input[type=checkbox][disabled]:checked+label::before{background-color:#acacac;outline:2px solid #acacac}.salesforce-form-amounts-legend,.form-amounts-legend{font-size:100%;margin-top:-16px}.home-page .salesforce-form-amounts-legend,.home-page .form-amounts-legend{margin-bottom:20px}.salesforce-form-amounts-example,.form-amounts-example{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem}@media all and (min-width: 560px){.salesforce-form-amounts-example,.form-amounts-example{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.salesforce-form-amounts-example,.form-amounts-example{font-size:0.9375rem;line-height:1.4375rem}}.salesforce-form-disclaimer,.form-disclaimer{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem}@media all and (min-width: 560px){.salesforce-form-disclaimer,.form-disclaimer{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.salesforce-form-disclaimer,.form-disclaimer{font-size:0.9375rem;line-height:1.4375rem}}.salesforce-form-disclaimer a,.form-disclaimer a{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;color:#222;border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#222;transition:border-bottom-color 0ms ease-in-out}@media all and (min-width: 560px){.salesforce-form-disclaimer a,.form-disclaimer a{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.salesforce-form-disclaimer a,.form-disclaimer a{font-size:0.9375rem;line-height:1.4375rem}}.salesforce-form-disclaimer a:hover,.form-disclaimer a:hover{color:#ed1b2d}.salesforce-form-disclaimer a:hover,.form-disclaimer a:hover{border-bottom-color:#ed1b2d}.salesforce-form .free-amount__currency,.form .free-amount__currency{position:absolute;top:0;left:12px;display:block;height:100%;line-height:48px;padding:0 16px;font-size:1.25rem;font-family:"Atlas Grotesk Bold"}.salesforce-form .free-amount__input,.form .free-amount__input{font-size:1.25rem !important;padding:0 0 0 16px !important}.salesforce-form .free-amount__input,.form .free-amount__input{-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:"Atlas Grotesk Medium";font-weight:500;font-size:0.875rem;line-height:20px;text-transform:uppercase;text-align:center;color:#222;cursor:pointer;width:100%}@media all and (min-width: 560px){.salesforce-form .free-amount__input,.form .free-amount__input{font-size:1rem;line-height:24px}}.salesforce-form .free-amount__input[selected],.salesforce-form .free-amount__input:focus,.form .free-amount__input[selected],.form .free-amount__input:focus{background-color:#222;color:#fff}.salesforce-form .free-amount__input[selected]+.free-amount__currency,.salesforce-form .free-amount__input:focus+.free-amount__currency,.form .free-amount__input[selected]+.free-amount__currency,.form .free-amount__input:focus+.free-amount__currency{color:#fff}.salesforce-form .free-amount.selected input,.form .free-amount.selected input{background-color:#222;color:#fff}.salesforce-form .free-amount.selected input+.free-amount__currency,.form .free-amount.selected input+.free-amount__currency{color:#fff}.salesforce-form .free-amount:not(.selected) input:hover:not(:focus):not([selected]),.form .free-amount:not(.selected) input:hover:not(:focus):not([selected]){border-color:#ed1b2d;color:#ed1b2d}.salesforce-form .free-amount:not(.selected) input:hover:not(:focus):not([selected])+.free-amount__currency,.form .free-amount:not(.selected) input:hover:not(:focus):not([selected])+.free-amount__currency{color:#ed1b2d}.salesforce-form--cro .field,.form--cro .field{width:calc(83.3333333333% - 4px);margin-bottom:20px}@media all and (min-width: 560px)and (max-width: 1012px){.salesforce-form--cro .field,.form--cro .field{width:calc(80% - 6px)}}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form--cro .field,.form--cro .field{width:100%}}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form--cro .field input[type=text],.form--cro .field input[type=text]{padding:0 10px}}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form--cro .field.one-third,.form--cro .field.one-third{width:calc(
            33.3333333333% - 12.6666666667px
          );margin-right:0}.salesforce-form--cro .field.one-third+.one-third,.form--cro .field.one-third+.one-third{margin-left:19px}.salesforce-form--cro .field.one-third+.one-third+.one-third,.form--cro .field.one-third+.one-third+.one-third{margin-right:0}}.salesforce-form--cro .field ul,.form--cro .field ul{display:flex;flex-direction:row}.salesforce-form--cro .field li:nth-last-child(n+2),.form--cro .field li:nth-last-child(n+2){margin-right:25px}.salesforce-form--cro .field label,.form--cro .field label{text-transform:none}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form--cro .field label,.form--cro .field label{font-family:"Atlas Grotesk Black";font-weight:400;font-size:14px;line-height:20px}}.salesforce-form--cro .field label .optional,.form--cro .field label .optional{position:relative}@media all and (min-width: 320px)and (max-width: 560px){.salesforce-form--cro .field input,.form--cro .field input{font-family:"Atlas Grotesk Medium";font-weight:500;font-size:12px;line-height:20px}}.salesforce-form--cro input[type=radio].radio+label,.form--cro input[type=radio].radio+label{margin-bottom:-4px;min-height:0}.salesforce-form .donation-block__navigation,.form .donation-block__navigation{margin-top:6px}.salesforce-form br{font-size:2.5rem}.salesforce-form label{margin-bottom:4px;text-transform:uppercase;font-family:"Atlas Grotesk Bold";display:block}.salesforce-form input[type=radio]{margin-right:8px}.salesforce-form input[type=Submit]{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.25rem;line-height:2.75rem;line-height:normal;display:inline-block;border:2px solid #222;padding:10px 20px;min-height:42px;box-sizing:border-box;border-radius:2px;vertical-align:top;width:-moz-fit-content;width:fit-content;color:#222;transition:border-color 200ms ease-in-out,color 200ms ease-in-out;background-color:#ed1b2d;border:none;color:#fff;position:relative;overflow:visible;margin-top:32px}@media all and (min-width: 560px){.salesforce-form input[type=Submit]{line-height:2.375rem}}@media all and (min-width: 1380px){.salesforce-form input[type=Submit]{line-height:2.75rem}}@media all and (min-width: 560px){.salesforce-form input[type=Submit]{height:42px;padding:0px 20px;max-width:calc(560px - 30px * 2)}}@media all and (min-width: 1012px){.salesforce-form input[type=Submit]{max-width:calc(1012px - 26px * 2)}}@media all and (min-width: 1380px){.salesforce-form input[type=Submit]{height:48px;max-width:calc(1380px - 26px * 2)}}.salesforce-form input[type=Submit]:not(:disabled){cursor:pointer}.salesforce-form input[type=Submit]:not(:disabled):hover{border-color:#ed1b2d;color:#ed1b2d}.salesforce-form input[type=Submit]:disabled{color:#acacac;border-color:#acacac}.salesforce-form input[type=Submit].salesforce-form--icon-only{padding:0 14px}@media all and (min-width: 1012px){.salesforce-form input[type=Submit].salesforce-form--icon-only{padding:0 11px}}.salesforce-form input[type=Submit].salesforce-form--icon-only svg{width:20px;height:20px;vertical-align:text-bottom}.salesforce-form input[type=Submit]:not(:disabled):hover{color:#fff}@media all and (min-width: 1012px){.salesforce-form input[type=Submit]:not(:disabled):hover svg use{stroke-dashoffset:0;opacity:1;transition:stroke-dashoffset 500ms ease-out,opacity 100ms ease-out}}.salesforce-form input[type=Submit]:disabled{background-color:#e2e2e2;color:#acacac;pointer-events:none}.salesforce-form input[type=Submit] svg{position:absolute;top:-8px;left:0;width:100%;height:58px}.salesforce-form input[type=Submit] svg use{stroke:#222;stroke-dasharray:700;stroke-dashoffset:700;opacity:0;transition:stroke-dashoffset 500ms ease-out 100ms,opacity 100ms ease-out}i{-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}i::after{font-family:"Font Awesome 5 Free","Font Awesome 5 Solid","Font Awesome 5 Brands"}i.facebook::after{content:""}i.instagram::after{content:""}i.linkedin::after{content:""}i.youtube::after{content:""}i.magnifying-glass::after{content:""}@media all{.background-image{opacity:1;transition:opacity .35s ease-in .1s}}@media all{.background-image.is-loading{opacity:0;transition:none}}@media all{.has-background-image{position:relative}}.block{margin-bottom:32px;clear:both;opacity:0;transform:translateY(96px);transition:opacity 50ms ease-in-out,transform 0 ease-in-out}@media all and (min-width: 560px){.block{margin-bottom:48px}}.block.is-visible{transform:translateY(0);opacity:1}.content-stream--half>.block{transform:translateY(0);opacity:1;transition:none}.block--friends{padding-top:60px;margin-top:-32px;transform:translateY(0);opacity:1;transition:none}@media all and (min-width: 560px){.block--friends{margin-top:-48px}}.lightweight-content .block{margin-bottom:16px}@media all and (min-width: 560px){.lightweight-content .block{margin-bottom:24px}}.block-anchor{background-color:#000;height:56px;display:inline-block;position:absolute;top:-56px;left:0}.block-anchor__link{color:#fff;color:#fff}.block-anchor__link:hover{color:#ed1b2d}.block-anchor__link:hover .link{color:#ed1b2d}.block-anchor__link .link{color:#fff;transition:color 0ms ease-in-out}.block-anchor__link:hover{color:#ed1b2d}.block-anchor__link:hover .link svg use{fill:#ed1b2d}.block-anchor__link .link svg use{fill:#fff;transition:fill 0ms ease-in-out}.block-anchor__image{width:56px;height:56px;display:inline-block}.block-anchor__image img,.block-anchor__image .background-image{height:100%;width:100%}.block-anchor .link{line-height:56px;padding:0 16px 0 12px;vertical-align:top;display:inline-block}.block-anchor .link__label{margin-right:12px;text-transform:uppercase;border-bottom-color:rgba(0,0,0,0)}.block-anchor .link svg{width:24px;height:24px}.block-anchor .link:visited{color:#fff}.block-anchor--rnd{top:auto;bottom:0;position:fixed;transition:opacity 200ms ease;z-index:20}@media all and (min-width: 1012px){.block-anchor--rnd{position:absolute}}.block-anchor--hidden{pointer-events:none;opacity:0}.border{-ms-overflow-style:none;-webkit-overflow-scrolling:touch;pointer-events:none;position:fixed;content:"";display:block;top:0;left:0;height:100%;width:100%;z-index:1040;box-sizing:border-box;border:#ed1b2d 0 solid;opacity:0;transition:border-width 400ms ease-in-out,opacity 400ms ease-in-out}.border::-webkit-scrollbar{display:none}.border.is-visible{opacity:1;border-width:5px}@media all and (min-width: 560px){.border.is-visible{border-width:6px}}.border--fixed.is-visible{position:fixed}.donation-form{margin-left:auto;margin-right:auto}.donation-form::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.donation-form{float:none;max-width:100%}html.show-grid .donation-form{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.donation-form{float:none;max-width:100%}html.show-grid .donation-form{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.donation-form{float:none;max-width:100%}html.show-grid .donation-form{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.donation-form{float:none;max-width:1380px}html.show-grid .donation-form{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.donation-form__content{position:relative}@media only screen and (min-width: 320px){.donation-form__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.donation-form__content{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.donation-form__content{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.donation-form__content{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.donation-form__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.donation-form__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.donation-form__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.donation-form__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.donation-form--friends .donation-block__frequency{display:flex;flex-wrap:wrap;justify-content:space-between;margin-bottom:27px;padding:0;width:calc(100% + 25px)}@media all and (min-width: 1012px){.donation-form--friends .donation-block__frequency{justify-content:flex-start}}.donation-form--friends .donation-block__frequency li{flex-grow:1;margin-right:25px;padding:0;width:40%}@media all and (min-width: 1012px){.donation-form--friends .donation-block__frequency li{flex-grow:initial;width:auto}}.donation-form--friends .donation-block__frequency li:nth-last-child(n+4){margin-bottom:0}.donation-form--friends .donation-block__frequency li:nth-last-child(n+3){margin-bottom:0}@media all and (min-width: 1012px){.donation-form--friends .donation-block__frequency li:last-child{margin-right:0}}.donation-form--friends .donation-block__frequency input[type=radio].radio+label{padding:0 0 0 30px;min-height:0;font-family:"Atlas Grotesk Regular";font-weight:700;font-size:1rem;line-height:1.5rem}@media all and (min-width: 560px){.donation-form--friends .donation-block__frequency input[type=radio].radio+label{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.donation-form--friends .donation-block__frequency input[type=radio].radio+label{font-size:1.125rem;line-height:1.5rem}}.donation-form--friends .donation-block__frequency input[type=radio].radio+label::before{position:absolute;width:18px;height:18px;top:3px}.donation-form--friends .donation-block__amount-suggestions{display:flex;flex-wrap:wrap;justify-content:space-between;margin-bottom:30px}@media all and (min-width: 1012px){.donation-form--friends .donation-block__amount-suggestions{flex-wrap:nowrap}}.donation-form--friends .donation-block__amount-suggestions+.field-error{margin-top:0}.donation-form--friends .donation-block__amount-suggestions+.field-error+.donation-block__next-button{margin-top:30px}.donation-form--friends .donation-block__amount-suggestions li{flex-grow:1;width:40%}@media all and (min-width: 320px)and (max-width: 560px){.donation-form--friends .donation-block__amount-suggestions li input[type=number]{line-height:27px}}@media all and (min-width: 1012px){.donation-form--friends .donation-block__amount-suggestions li{width:25%}}.donation-form--friends .donation-block__amount-suggestions li:nth-child(odd),.donation-form--friends .donation-block__amount-suggestions li:nth-child(even){padding:0}.donation-form--friends .donation-block__amount-suggestions li:nth-last-child(n+4){margin-bottom:0}.donation-form--friends .donation-block__amount-suggestions li:nth-child(odd){margin-right:25px}.donation-form--friends .donation-block__amount-suggestions li:nth-child(odd):not(:last-child):not(:nth-last-child(2)){margin-bottom:15px}@media all and (min-width: 1012px){.donation-form--friends .donation-block__amount-suggestions li:nth-child(odd):not(:last-child):not(:nth-last-child(2)){margin-bottom:0}}@media all and (min-width: 1012px){.donation-form--friends .donation-block__amount-suggestions li:not(:last-child){margin-right:25px}.donation-form--friends .donation-block__amount-suggestions li:nth-child(odd):not(:last-child){margin-bottom:0}}.donation-form--friends .donation-block__amount-suggestions li input[type=radio].toggle+label{line-height:42px}.donation-form--friends .donation-block__next-button{margin-bottom:56px;padding:0 30px}.donation-header{margin-left:auto;margin-right:auto;position:relative}.donation-header::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.donation-header{float:none;max-width:100%}html.show-grid .donation-header{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.donation-header{float:none;max-width:100%}html.show-grid .donation-header{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.donation-header{float:none;max-width:100%}html.show-grid .donation-header{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.donation-header{float:none;max-width:1380px}html.show-grid .donation-header{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media all and (min-width: 560px){.donation-header{min-height:16vw}}@media all and (min-width: 1012px){.donation-header{min-height:20vw}}@media all and (min-width: 1380px){.donation-header{min-height:275px}}@media only screen and (min-width: 320px){.donation-header__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.donation-header__content{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.donation-header__content{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.donation-header__content{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.donation-header__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.donation-header__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.donation-header__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.donation-header__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media all and (min-width: 1012px){.donation-header__content{position:absolute;left:0;bottom:0}}.donation-header__content .donation-block__output{margin-bottom:28px}.donation-header__image-wrapper{display:none;height:190px;position:relative}@media only screen and (min-width: 320px){.donation-header__image-wrapper{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.donation-header__image-wrapper{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.donation-header__image-wrapper{width:calc(33.3333333333% - 34.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.donation-header__image-wrapper{width:calc(33.3333333333% - 40px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.donation-header__image-wrapper{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.donation-header__image-wrapper{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.donation-header__image-wrapper{margin-left:calc(50% - 39px + 52px)}}@media only screen and (min-width: 1380px){.donation-header__image-wrapper{margin-left:calc(50% - 45px + 60px)}}@media all and (min-width: 1012px){.donation-header__image-wrapper{display:block;height:40px}}.donation-header__image{position:relative}.donation-header__image::after{background-image:linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));bottom:0;height:100%;width:70%;content:"";display:block;position:absolute}.donation-header__subtitle{font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.375rem;line-height:1.75rem;color:#ed1b2d;margin-bottom:32px;position:relative;z-index:1}@media all and (min-width: 560px){.donation-header__subtitle{font-size:1.5rem;line-height:1.75rem}}@media all and (min-width: 1380px){.donation-header__subtitle{font-size:1.75rem;line-height:2.25rem}}.donation-header__title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;margin-bottom:24px;position:relative;z-index:1}@media all and (min-width: 560px){.donation-header__title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.donation-header__title{font-size:2.5rem;line-height:3rem}}@media all and (min-width: 560px){.donation-header__title{margin-bottom:15px}}.donation-status{margin-bottom:80px;margin-left:auto;margin-right:auto}.donation-status::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.donation-status{float:none;max-width:100%}html.show-grid .donation-status{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.donation-status{float:none;max-width:100%}html.show-grid .donation-status{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.donation-status{float:none;max-width:100%}html.show-grid .donation-status{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.donation-status{float:none;max-width:1380px}html.show-grid .donation-status{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.donation-status__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.donation-status__content{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.donation-status__content{width:calc(41.6666666667% - 36.8333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.donation-status__content{width:calc(41.6666666667% - 42.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.donation-status__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.donation-status__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.donation-status__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.donation-status__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.donation-status__text{margin-bottom:12px}.donation-status__goal{float:right;color:#acacac}:not(.donation-status__goal)+.donation-status__collected{text-align:center;font-family:"Atlas Grotesk Regular";font-weight:700;font-size:1rem;line-height:1.5rem}@media all and (min-width: 560px){:not(.donation-status__goal)+.donation-status__collected{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){:not(.donation-status__goal)+.donation-status__collected{font-size:1.125rem;line-height:1.5rem}}.donation-status__progress{position:relative}.donation-status__progress::before{background-color:#e9e0c4;content:"";display:block;height:12px;width:100%}.donation-status__progress-bar{height:12px;width:50%;background-color:#222;margin-bottom:4px;position:absolute;top:0;left:0}@keyframes shake{50%{transform:translate3d(-5px, 0, 0)}}@keyframes ekahs{50%{transform:translate3d(5px, 0, 0)}}@keyframes slide-in{0%{opacity:0;transform:translateY(500%)}100%{opacity:1;transform:translateY(0)}}.drag-indicator{align-items:center;background:rgba(0,0,0,.8);border-radius:20px;color:#fff;cursor:grab;height:40px;opacity:0;display:inline-flex;flex-direction:row;font:15px/1 "Atlas Grotesk Regular";padding:12px 20px 13px;transition:opacity 400ms ease-out}.drag-indicator span{margin-left:10px;margin-right:10px}.drag-indicator svg use{fill:#fff}.drag-indicator svg{transform:translate3d(0, 0, 0);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:1000px}.drag-indicator--show{animation:slide-in ease-out 800ms;animation-iteration-count:1;opacity:1}.drag-indicator--show svg:first-child{animation:shake ease .6s;animation-iteration-count:2;animation-delay:.8s}.drag-indicator--show svg:last-child{animation:ekahs ease .6s;animation-iteration-count:2;animation-delay:.8s}.drag-indicator--hover svg:first-child{animation-iteration-count:infinite}.drag-indicator--hover svg:last-child{animation-iteration-count:infinite}.expander-icon{pointer-events:none;width:28px;height:28px;cursor:pointer;display:block}.expander-icon .expander-icon__image{height:28px;width:28px}.expander-icon .expander-icon__article{height:28px;width:28px}.expander-icon .expander-icon__video{height:28px;width:28px}.expander-icon .expander-icon__video use{fill:#fff}.expander-icon--clickable{pointer-events:all}.hero-banner{color:#fff;position:relative;height:100vh;min-height:100vh}.hero-banner .background-image{height:100%;width:100%;position:absolute;top:0;left:0}.hero-banner__container{position:relative;height:100%}.hero-banner iframe{height:100%;width:100%;position:absolute;left:0;top:0;opacity:0;pointer-events:none;transition:opacity 300ms ease-out 300ms}.hero-banner iframe.is-visible{opacity:1;pointer-events:auto;transition:opacity 300ms ease-out}.hero-banner__hit-target{position:relative;display:inline-block;width:48px;height:48px;margin-bottom:16px;margin-right:10px}.hero-banner__play-video{position:relative;top:55px}.hero-banner__play-video svg{color:#fff;max-width:250px}.hero-banner__play-video svg use{fill:rgba(0,0,0,0)}.hero-banner__play-video svg:hover{color:#ed1b2d}.hero-banner__play-button{border-radius:50%;height:100%;width:100%;display:flex;align-items:center;justify-content:center;pointer-events:none;box-sizing:border-box;border:2px solid #fff}:hover>.hero-banner__play-button{border-color:#ed1b2d}:hover>.hero-banner__play-button svg use{fill:#ed1b2d}.hero-banner__play-button svg{width:24px;height:24px}.hero-banner__play-button svg use{fill:#fff}.hero-banner__overlay{position:absolute;top:0;left:0;width:100%;height:100%;content:"";background-image:linear-gradient(rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.9))}.hero-banner__content-container{margin-left:auto;margin-right:auto;height:calc(100% - 144px);margin-bottom:16px;display:flex;align-items:flex-end;flex-direction:row}.hero-banner__content-container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.hero-banner__content-container{float:none;max-width:100%}html.show-grid .hero-banner__content-container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.hero-banner__content-container{float:none;max-width:100%}html.show-grid .hero-banner__content-container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.hero-banner__content-container{float:none;max-width:100%}html.show-grid .hero-banner__content-container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.hero-banner__content-container{float:none;max-width:1380px}html.show-grid .hero-banner__content-container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media all and (min-width: 1012px){.hero-banner__content-container{height:calc(100% - 80px)}}.hero-banner__content{padding-bottom:32px;padding-top:24px;max-height:calc(100% - 120px + 16px)}@media only screen and (min-width: 320px){.hero-banner__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.hero-banner__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.hero-banner__content{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.hero-banner__content{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.hero-banner__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.hero-banner__content{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.hero-banner__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.hero-banner__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media all and (min-width: 560px){.hero-banner__content{padding:64px 0 50px}}@media all and (min-width: 560px)and (max-width: 1380px){.hero-banner__content{padding:0px 0 50px}}.hero-banner__content .rich-text{display:none}.hero-banner.is-open .hero-banner__content{-ms-overflow-style:none;-webkit-overflow-scrolling:touch;overflow:hidden;overflow-y:scroll}.hero-banner.is-open .hero-banner__content::-webkit-scrollbar{display:none}.hero-banner.is-open .hero-banner__content-container{-webkit-mask-image:linear-gradient(to bottom, black 90%, rgba(0, 0, 0, 0));mask-image:linear-gradient(to bottom, black 90%, rgba(0, 0, 0, 0))}.hero-banner.is-open .hero-banner__teaser{margin-bottom:32px}@media all and (max-width: 1012px){.hero-banner.is-open .hero-banner__teaser{max-height:1000vh;opacity:1}}.hero-banner.is-open .hero-banner__content-overlay{opacity:1}.hero-banner__content-overlay{background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));height:100%;width:100%;position:absolute;top:0;left:0;opacity:0;transition:opacity 500ms ease-in-out}.hero-banner__title{position:relative;margin-bottom:4px}@media all and (min-width: 560px){.hero-banner__title{margin-bottom:24px}}.hero-banner__links{display:flex;flex-flow:row wrap}.hero-banner__expander{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;color:#fff;border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#fff;transition:border-bottom-color 0ms ease-in-out;position:relative;color:#fff;display:none;margin-right:24px;margin-top:12px}@media all and (min-width: 560px){.hero-banner__expander{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.hero-banner__expander{font-size:0.9375rem;line-height:1.4375rem}}.hero-banner__expander:hover{color:#ed1b2d}.hero-banner__expander:hover{border-bottom-color:#ed1b2d}@media all and (min-width: 1380px){.hero-banner__expander{margin-top:0}}.hero-banner__expander.is-visible{display:inline}.hero-banner__read-more-link{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;color:#fff;position:relative;color:#fff;margin-top:12px;display:flex;flex-direction:row;align-items:flex-start}@media all and (min-width: 560px){.hero-banner__read-more-link{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.hero-banner__read-more-link{font-size:0.9375rem;line-height:1.4375rem}}.hero-banner__read-more-link:hover{color:#ed1b2d}@media all and (min-width: 1380px){.hero-banner__read-more-link{margin-top:0}}.hero-banner__read-more-link.is-visible{bottom:55px}.hero-banner__read-more-link span{border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#fff;transition:border-bottom-color 0ms ease-in-out;margin-right:6px}.hero-banner__read-more-link span:hover{border-bottom-color:#ed1b2d}.hero-banner__read-more-link svg{width:24px;height:24px}.hero-banner__read-more-link svg use{fill:#fff}.hero-banner__teaser{position:relative}@media all and (min-width: 560px){.hero-banner__teaser{margin-bottom:16px}}@media all and (min-width: 320px)and (max-width: 560px){.hero-banner__teaser{max-height:0;opacity:0;transition:opacity 500ms ease-in-out,max-height 500ms ease-in-out,margin-bottom 500ms ease-in-out}}.hero-banner__about{position:relative;max-height:0;opacity:0;transition:opacity 500ms ease-in-out,max-height 500ms ease-in-out,margin-bottom 500ms ease-in-out}.hero-banner__about>.button--cta{margin-top:24px}@media all and (min-width: 560px){.hero-banner__about{margin-bottom:0}}.hero-banner__support{margin-left:auto;margin-right:auto;margin-top:40px}.hero-banner__support::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.hero-banner__support{float:none;max-width:100%}html.show-grid .hero-banner__support{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.hero-banner__support{float:none;max-width:100%}html.show-grid .hero-banner__support{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.hero-banner__support{float:none;max-width:100%}html.show-grid .hero-banner__support{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.hero-banner__support{float:none;max-width:1380px}html.show-grid .hero-banner__support{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media all and (min-width: 560px)and (max-width: 1380px){.hero-banner__support{margin-top:10px}}.hero-banner__support a{color:#fff;font-size:15px;position:relative;color:#fff}.hero-banner__support a:hover{color:#ed1b2d}.hero-banner__support a:hover svg use{fill:#ed1b2d}.hero-banner__support a svg use{fill:#fff;transition:fill 0ms ease-in-out}.hero-banner__support a svg{width:24px;height:24px;vertical-align:bottom;margin-right:12px;animation:arrow-bounce-animation 1s infinite;animation-direction:alternate}@media all and (min-width: 1012px){.hero-banner__support a svg{position:absolute;top:2px;left:-32px}}.hero-banner__support a svg use{fill:#fff}.hero-banner__link.link{color:#fff;color:#fff;position:relative}.hero-banner__link.link:hover{color:#ed1b2d}.hero-banner__link.link:hover span{color:#ed1b2d}.hero-banner__link.link span{color:#fff;transition:color 0ms ease-in-out}.hero-banner__link.link:hover{color:#ed1b2d}.hero-banner__link.link:hover svg use{fill:#ed1b2d}.hero-banner__link.link svg use{fill:#fff;transition:fill 0ms ease-in-out}.hero-banner__link.link .link__label{border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#fff;transition:border-bottom-color 0ms ease-in-out}.hero-banner__link.link .link__label:hover{border-bottom-color:#ed1b2d}.hero-banner__socials{position:absolute;right:32px;bottom:104px;display:none}@media all and (min-width: 1012px){.hero-banner__socials{bottom:36px}}@media all and (min-width: 560px){.hero-banner__socials.is-visible{display:block}}.hero-banner__socials a{color:#fff;margin-left:12px;font-size:1.125rem}.hero-banner__socials a:hover{color:#ed1b2d}.hero-banner .hero-banner__cookie-message{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;color:#fff;display:inline-block;min-height:48px;width:35em;margin-bottom:16px;vertical-align:bottom;position:relative}@media all and (min-width: 560px){.hero-banner .hero-banner__cookie-message{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.hero-banner .hero-banner__cookie-message{font-size:0.9375rem;line-height:1.4375rem}}@media all and (min-width: 560px){.hero-banner .hero-banner__cookie-message{padding-top:4px;line-height:1.4}}@media all and (min-width: 1012px){.hero-banner .hero-banner__cookie-message{padding-top:4px;line-height:1.4}}@media all and (min-width: 1380px){.hero-banner .hero-banner__cookie-message{padding-top:2px;line-height:1.4}}.hero-banner .hero-banner__cookie-message a{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;color:#fff;border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#fff;transition:border-bottom-color 0ms ease-in-out}@media all and (min-width: 560px){.hero-banner .hero-banner__cookie-message a{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.hero-banner .hero-banner__cookie-message a{font-size:0.9375rem;line-height:1.4375rem}}.hero-banner .hero-banner__cookie-message a:hover{color:#ed1b2d}.hero-banner .hero-banner__cookie-message a:hover{border-bottom-color:#ed1b2d}@media all and (min-width: 560px){.hero-banner .hero-banner__cookie-message a{line-height:inherit}}@media all and (min-width: 1012px){.hero-banner .hero-banner__cookie-message a{line-height:inherit}}@media all and (min-width: 1380px){.hero-banner .hero-banner__cookie-message a{line-height:inherit}}.hero-banner.hero-banner--cookies-not-accepted .hero-banner__hit-target{opacity:.65;pointer-events:none}.hero-banner:not(.hero-banner--cookies-not-accepted) .hero-banner__cookie-message{display:none}.hero-banner__header{position:relative}.hero-banner__buttons{list-style:none;width:150%}.hero-banner__buttons .hero-banner__cookie-message{width:20em;display:block}@media all and (min-width: 560px){.hero-banner__buttons .hero-banner__cookie-message{width:33em}}@media all and (min-width: 1012px){.hero-banner__buttons .hero-banner__cookie-message{display:inline-block}}@media all and (min-width: 1380px){.hero-banner__buttons .hero-banner__cookie-message{width:35em}}.hero-banner__buttons li{display:block}@media all and (min-width: 560px){.hero-banner__buttons li{display:inline-block;margin-right:.2rem}}.hero-banner__buttons svg path{transition:stroke 200ms ease-in-out}.hero-banner__buttons a{width:auto;height:auto}.hero-banner__buttons a:focus svg path:nth-child(1),.hero-banner__buttons a:hover svg path:nth-child(1){stroke:#ed1b2d}.huubhuub{overflow:hidden;position:relative;display:inline-block}.huubhuub .title{transition:opacity 0s linear 300ms;opacity:0}.huubhuub::before{display:inline-block;content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:#222;transform:translateX(-105%);transition:transform 600ms ease-in-out}.huubhuub.is-visible .title{opacity:1;z-index:1}.huubhuub.is-visible::before{transform:translateX(105%)}.inpage-navigation{position:fixed;left:0;z-index:100}@media all and (min-width: 320px)and (max-width: 560px){.inpage-navigation{display:none}}@media all and (min-width: 560px){.inpage-navigation{left:20px;top:132px}}@media all and (min-width: 1380px){.inpage-navigation{left:20px;top:164px}}.inpage-navigation__items{list-style:none}.inpage-navigation__item:nth-last-child(n+2){margin-bottom:10px}.inpage-navigation-item{display:flex;height:80px;overflow:hidden;width:245px}.inpage-navigation-item::before{background:#f6f3e7;content:"";display:block;position:relative;z-index:1;width:5px;height:100%}.inpage-navigation-item--past::before{background:#ed1b2d}.inpage-navigation-item__content{background:#000;display:flex;align-items:center;height:80px;overflow:hidden;transition:transform 300ms ease;width:240px}.inpage-navigation--minimised .inpage-navigation-item__content{transform:translateX(-240px)}.inpage-navigation-item__link:hover .inpage-navigation-item__content{transform:translateX(0)}.inpage-navigation-item__image{width:80px;min-width:80px;height:80px;display:inline-block}.inpage-navigation-item__image img,.inpage-navigation-item__image .background-image{height:100%;width:100%}.inpage-navigation-item__link{min-width:40px}.inpage-navigation-item__label{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;color:#fff;margin:0 10px;text-transform:uppercase;text-overflow:ellipsis}@media all and (min-width: 560px){.inpage-navigation-item__label{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.inpage-navigation-item__label{font-size:0.9375rem;line-height:1.4375rem}}.inpage-navigation-item__label:first-child{padding-left:80px}.inpage-navigation:not(.inpage-navigation--minimised) .inpage-navigation-item__link:hover .inpage-navigation-item__label{color:#ed1b2d}.info{font-size:0;position:relative}@media all and (max-width: 1012px){.info:not(:last-of-type){margin-bottom:40px}}@media only screen and (min-width: 320px){.info__content{width:calc(
          1 *
            (
              (100vw - 20px * 1) /
                6 *
                4
            ) -
            20px
        )}}@media only screen and (min-width: 560px){.info__content{width:calc(
          1 *
            (
              (100vw - 30px * 1) /
                6 *
                4
            ) -
            30px
        )}}@media only screen and (min-width: 1012px){.info__content{width:calc(
          1 *
            (
              (100vw - 26px * 1) /
                12 *
                4
            ) -
            26px
        )}}@media only screen and (min-width: 1380px){.info__content{width:calc(
          1 *
            (
              1350px /
                12 *
                4
            ) -
            30px
        )}}@media all and (max-width: 1012px){.info__content{display:inline-block}}.info__title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;margin-bottom:12px}@media all and (min-width: 560px){.info__title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.info__title{font-size:2.5rem;line-height:3rem}}@media only screen and (min-width: 320px){.info__image{width:calc(
          1 *
            (
              (100vw - 20px * 1) /
                6 *
                2
            ) -
            20px
        )}}@media only screen and (min-width: 560px){.info__image{width:calc(
          1 *
            (
              (100vw - 30px * 1) /
                6 *
                2
            ) -
            30px
        )}}@media only screen and (min-width: 1012px){.info__image{width:calc(
          1 *
            (
              (100vw - 26px * 1) /
                12 *
                2
            ) -
            26px
        )}}@media only screen and (min-width: 1380px){.info__image{width:calc(
          1 *
            (
              1350px /
                12 *
                2
            ) -
            30px
        )}}@media all and (min-width: 320px)and (max-width: 560px){.info__image{margin-right:20px}}@media all and (min-width: 560px)and (max-width: 1012px){.info__image{margin-right:30px}}@media all and (max-width: 1012px){.info__image{vertical-align:top;display:inline-block}}@media all and (min-width: 1012px){.info__image{width:50%;margin-bottom:16px;position:absolute;right:0;top:0;opacity:0;transform:translateY(-95%);transition:all 200ms ease-in-out}}.info__text{pointer-events:none;position:absolute;bottom:0;left:0;background-color:#fff;width:auto;max-width:100%;transform:translateY(100%);padding:16px;box-shadow:-1px 1px 5px 0 rgba(0,0,0,.29);z-index:1;opacity:0;transition:all 300ms ease-in-out}@media all and (min-width: 1012px){.info.is-open .info__image,.info:hover .info__image{opacity:1;transform:translateY(-100%)}}.info.is-open .info__text{opacity:1;transform:translateY(calc(100% + 20px))}.info.is-open .toggle__label--on{display:none}.info.is-open .toggle__label--off{display:block}.info .toggle__label--on{display:block}.info .toggle__label--off{display:none}.link{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;color:#222;display:inline-block}@media all and (min-width: 560px){.link{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.link{font-size:0.9375rem;line-height:1.4375rem}}.link:hover{color:#ed1b2d}.link:hover svg use{fill:#ed1b2d}.link svg use{fill:#222;transition:fill 0ms ease-in-out}.link__label{border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#222;transition:border-bottom-color 0ms ease-in-out}.link__label:hover{border-bottom-color:#ed1b2d}.link svg{fill:#222;width:16px;height:16px;vertical-align:sub}.textlink{border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#222;transition:border-bottom-color 0ms ease-in-out}.textlink:hover{border-bottom-color:#ed1b2d}.pagination{display:flex;flex-direction:row;align-items:center;justify-content:center;margin:40px 0 70px}@media all and (min-width: 1012px){.pagination{margin:60px 0 90px}}.pagination .page{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;margin:0 5px}@media all and (min-width: 560px){.pagination .page{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.pagination .page{font-size:0.9375rem;line-height:1.4375rem}}.pagination .current{color:#ed1b2d}.pagination .ellipsis{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;margin:0 5px}@media all and (min-width: 560px){.pagination .ellipsis{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.pagination .ellipsis{font-size:0.9375rem;line-height:1.4375rem}}.pagination .prev{margin-right:10px}.pagination .prev svg{pointer-events:none;width:16px;height:16px;vertical-align:text-bottom}.pagination .next{margin-left:10px}.pagination .next svg{pointer-events:none;width:16px;height:16px;vertical-align:text-bottom}.pagination .prev svg,.pagination .next svg{pointer-events:none;width:16px;height:16px;vertical-align:text-bottom}.picture{height:100%;position:relative;opacity:1;transition:opacity .35s ease-in .1s}.picture.is-loading{opacity:0;transition:none}.picture .picture__img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.picture .picture__img:not([src]),.picture .picture__img[src=""]{display:none}.picture .picture__caption{margin-top:20px}.picture__picture{display:flex;align-items:center;height:100%}.rich-text h1,.rich-text h2{margin-bottom:20px}.rich-text h1:not(:first-child),.rich-text h2:not(:first-child){margin-top:40px}.rich-text h2{color:#ed1b2d;margin-bottom:32px}@media only screen and (min-width: 560px){.rich-text h2{margin-left:calc(
          -1 *
            (
              (100vw - 30px * 2) /
                6 *
                1
            ) -
            5px
        )}}@media only screen and (min-width: 1012px){.rich-text h2{margin-left:calc(
          -1 *
            (
              (100vw - 26px * 2) /
                12 *
                2
            ) -
            4px
        )}}@media only screen and (min-width: 1380px){.rich-text h2{margin-left:calc(
          -1 *
            (
              1350px /
                12 *
                2
            )
        )}}@media all and (min-width: 560px){.rich-text h2{margin-bottom:40px}.rich-text h2:last-child{margin-bottom:0}}.lightweight-content .rich-text h1,.lightweight-content .rich-text h2{margin-bottom:10px}.rich-text p{margin-bottom:10px}.rich-text b{font-family:"Atlas Grotesk Bold"}.rich-text i{font-family:"Atlas Grotesk Regular Italic";font-style:italic}.rich-text a{color:#ed1b2d}.rich-text a:hover{border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#222;transition:border-bottom-color 0ms ease-in-out}.rich-text a:hover:hover{border-bottom-color:#ed1b2d}.rich-text ol li{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem;counter-increment:item;position:relative;padding-left:32px}@media all and (min-width: 560px){.rich-text ol li{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.rich-text ol li{font-size:1.125rem;line-height:1.875rem}}.rich-text ol li::before{content:counter(item);position:absolute;left:0;top:0}.rich-text ul li{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem;counter-increment:item;position:relative;padding-left:32px}@media all and (min-width: 560px){.rich-text ul li{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.rich-text ul li{font-size:1.125rem;line-height:1.875rem}}.rich-text ul li::before{content:"•";position:absolute;left:0;top:0}.lightweight-content .rich-text ul{list-style-type:disc;margin-right:20px}.lightweight-content .rich-text ul li::before{display:none}.rich-text img{width:100%;height:auto}.rich-text--intro{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.125rem;line-height:1.75rem}@media all and (min-width: 560px){.rich-text--intro{font-size:1.25rem;line-height:1.75rem}}@media all and (min-width: 1380px){.rich-text--intro{font-size:1.5rem;line-height:2.25rem}}.sidelink__label{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;display:inline-block;margin-top:3px}@media all and (min-width: 560px){.sidelink__label{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.sidelink__label{font-size:0.9375rem;line-height:1.4375rem}}.style-select{width:100%}.style-select .ss-selected-option{-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:"Atlas Grotesk Medium";font-weight:500;font-size:0.875rem;line-height:20px;min-height:48px;background:rgba(0,0,0,0);background-color:#fff;border:2px solid #222;box-sizing:border-box;border-radius:0;padding:0 56px 0 16px;display:inline-block;white-space:nowrap;line-height:48px}@media all and (min-width: 560px){.style-select .ss-selected-option{font-size:1rem;line-height:24px}}@media all and (min-width: 560px){.style-select .ss-selected-option{line-height:44px}}.style-select .ss-selected-option i{display:none}.style-select .ss-selected-option[data-value=""]{color:#acacac}.style-select .ss-selected-option[data-value=""]::after{color:#222}.style-select .ss-selected-option::after{content:"";font-family:"Font Awesome 5 Solid";font-size:1.5rem;top:2px;right:16px}.style-select .ss-dropdown{top:48px;overflow:hidden;overflow-y:scroll;max-height:194px;width:100%;box-shadow:0 16px 16px 0 rgba(0,0,0,.2);background-color:#fff;border:2px solid #222;box-sizing:border-box;border-top:none}@media all and (min-width: 560px){.style-select .ss-dropdown{top:46px}}.style-select .ss-dropdown .ss-option{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem;padding:12px 16px;position:relative;height:auto;min-height:48px}@media all and (min-width: 560px){.style-select .ss-dropdown .ss-option{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.style-select .ss-dropdown .ss-option{font-size:1.125rem;line-height:1.875rem}}.style-select .ss-dropdown .ss-option.highlighted{background-color:#ed1b2d;color:#fff}.style-select .ss-dropdown .ss-option.highlighted i{color:#fff}.style-select .ss-dropdown .ss-option.ticked::before{content:"";padding-right:0}.style-select .ss-dropdown .ss-option i{position:absolute;top:16px;right:20px}.style-select.open{z-index:1000}.style-select.open .ss-selected-option::after{content:""}.toggle{width:auto;display:inline-block;height:28px;border-radius:14px;position:relative;padding-right:33px;transition:background-color 200ms ease-in-out;background-color:#ed1b2d}@media all and (min-width: 1012px){.toggle:hover{background-color:#000}}.toggle__label,.toggle__label-if-active,.toggle__label--off,.toggle__label--on{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;font-family:"Atlas Grotesk Bold";text-transform:uppercase;pointer-events:none;position:relative;top:0;left:28px;color:#fff;padding:2px 8px;white-space:nowrap;display:block;opacity:1;transition:opacity 200ms ease-in-out}@media all and (min-width: 560px){.toggle__label,.toggle__label-if-active,.toggle__label--off,.toggle__label--on{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.toggle__label,.toggle__label-if-active,.toggle__label--off,.toggle__label--on{font-size:0.9375rem;line-height:1.4375rem}}.toggle__label--off{opacity:0;transition:opacity 200ms ease-in-out}.toggle__icon-min{display:none}.toggle__label-if-active{display:none}.toggle__icon{pointer-events:none;width:28px;height:28px;position:absolute;top:0;left:-2px;background-color:#f6858f;border-top-left-radius:14px;border-bottom-left-radius:14px;padding:2px 0 2px 3px}.toggle__icon svg{width:24px;height:24px;transform:rotate(0deg);transition:transform 300ms ease-in-out}.toggle__icon svg use{fill:#fff}.toggle input{width:100%;height:100%;opacity:0;position:absolute;cursor:pointer}.toggle input:checked+.toggle__icon svg{transform:rotate(45deg)}.toggle input:checked+.toggle__icon+.toggle__label--on{opacity:0}.toggle input:checked+.toggle__icon+.toggle__label--on+.toggle__label--off{opacity:1}.toggle--secondary{background-color:#000}@media all and (min-width: 1012px){.toggle--secondary:hover{background-color:#ed1b2d}}.toggle--secondary .toggle__icon{background-color:#fff}.toggle--secondary .toggle__icon svg use{fill:#000}.toggle--is-active .toggle__icon-min{display:inline}.toggle--is-active .toggle__icon-plus{display:none}.toggle--is-active .toggle__label{display:none}.toggle--is-active .toggle__label-if-active{display:block}.cookie-bar-deluxe{position:relative;z-index:1050}.cookie-bar-deluxe .cookie-bar-deluxe__bar,.cookie-bar-deluxe .cookie-bar-deluxe__details{opacity:0;pointer-events:none;transform:translate3d(0, 32px, 0);transition:opacity 500ms ease-out,transform 500ms ease-out}.cookie-bar-deluxe .cookie-bar-deluxe__bar:target,.cookie-bar-deluxe .cookie-bar-deluxe__bar--visible,.cookie-bar-deluxe .cookie-bar-deluxe__details:target,.cookie-bar-deluxe .cookie-bar-deluxe__details--visible{opacity:1;pointer-events:auto;transform:translate3d(0, 0, 0)}.cookie-bar-deluxe .cookie-bar-deluxe__bar,.cookie-bar-deluxe .cookie-bar-deluxe__details{bottom:0;height:auto;left:0;padding:18px;position:fixed;width:100vw;border:5px solid rgba(0,0,0,0)}.cookie-bar-deluxe .cookie-bar-deluxe__bar{z-index:9998}.cookie-bar-deluxe .cookie-bar-deluxe__details{z-index:9999}.cookie-bar-deluxe .cookie-bar-deluxe__bar-wrapper{padding:30px 0 0}.cookie-bar-deluxe .cookie-bar-deluxe__bar-wrapper:first-child{padding-top:0}.cookie-bar-deluxe .cookie-bar-deluxe__details .cookie-bar-deluxe__grid-container{padding-top:20px}.cookie-bar-deluxe .cookie-bar-deluxe__text-container,.cookie-bar-deluxe .cookie-bar-deluxe__buttons{transform:translate3d(0, 0, 0)}.cookie-bar-deluxe .cookie-bar-deluxe__text-container{width:100%;margin-bottom:25px}.cookie-bar-deluxe .cookie-bar-deluxe__text-container .text__span,.cookie-bar-deluxe .cookie-bar-deluxe__text-container .link{color:inherit;margin-right:10px}.cookie-bar-deluxe .cookie-bar-deluxe__details-buttons{padding-top:10px;text-align:right}.cookie-bar-deluxe .cookie-bar-deluxe__categories::after{content:" ";display:table;clear:both}.cookie-bar-deluxe .cookie-bar-deluxe__category{padding-bottom:10px}.cookie-bar-deluxe .cookie-bar-deluxe__title{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1rem;line-height:1.5rem;font-size:1.25rem;margin-bottom:4px}@media all and (min-width: 560px){.cookie-bar-deluxe .cookie-bar-deluxe__title{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.cookie-bar-deluxe .cookie-bar-deluxe__title{font-size:1.125rem;line-height:1.875rem}}.cookie-bar-deluxe .cookie-bar-deluxe__preferences{margin-bottom:20px}.cookie-bar-deluxe .cookie-bar-deluxe__subtitle{margin-bottom:10px;font-style:italic;font-size:1rem}.cookie-bar-deluxe .cookie-bar-deluxe__text,.cookie-bar-deluxe .cookie-bar-deluxe__category-text,.cookie-bar-deluxe .link{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem}@media all and (min-width: 560px){.cookie-bar-deluxe .cookie-bar-deluxe__text,.cookie-bar-deluxe .cookie-bar-deluxe__category-text,.cookie-bar-deluxe .link{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.cookie-bar-deluxe .cookie-bar-deluxe__text,.cookie-bar-deluxe .cookie-bar-deluxe__category-text,.cookie-bar-deluxe .link{font-size:1.125rem;line-height:1.875rem}}.cookie-bar-deluxe .cookie-bar-deluxe__bar{background-color:#e9e0c4;color:#000;border:5px solid #e9e0c4}.cookie-bar-deluxe .cookie-bar-deluxe__details{background-color:#e9e0c4;color:#000;border:5px solid #e9e0c4}.cookie-bar-deluxe .cookie-bar-deluxe__category-label,.cookie-bar-deluxe .cookie-bar-deluxe__category-text{cursor:pointer;display:block;max-width:32em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.cookie-bar-deluxe .cookie-bar-deluxe__category-text{text-transform:none}.cookie-bar-deluxe .cookie-bar-deluxe__text-container .cookie-bar-deluxe__text{max-width:60em;margin-top:15px}.cookie-bar-deluxe .link{display:inline;color:#fff;text-decoration:underline;white-space:nowrap}.cookie-bar-deluxe .link:hover,.cookie-bar-deluxe .link:focus{color:#ed1b2d}.cookie-bar-deluxe .button{min-width:180px}.cookie-bar-deluxe .button--cta{border:2px solid #ed1b2d}.cookie-bar-deluxe .button--reject{color:#000;border-color:currentcolor}.cookie-bar-deluxe .button--reject:hover,.cookie-bar-deluxe .button--reject:focus{color:#ed1b2d}.cookie-bar-deluxe .button--reject,.cookie-bar-deluxe .button--accept-all{margin-right:16px}.cookie-bar-deluxe .cookie-bar-deluxe__overlay{background-color:#000;height:100%;left:0;opacity:.5;overflow:hidden;position:fixed;top:0;width:100%;z-index:0}@media all and (min-width: 320px)and (max-width: 560px){.cookie-bar-deluxe .cookie-bar-deluxe__buttons .button{margin:10px 0 0;width:100%}.cookie-bar-deluxe .cookie-bar-deluxe__text-container .link{display:block}}@media all and (min-width: 560px){.cookie-bar-deluxe .cookie-bar-deluxe__buttons{display:flex;flex-direction:column;justify-content:flex-end}.cookie-bar-deluxe .cookie-bar-deluxe__buttons .button{margin:5px;max-width:none}.cookie-bar-deluxe .cookie-bar-deluxe__title,.cookie-bar-deluxe .cookie-bar-deluxe__preferences{font-size:1.125rem;line-height:1.875rem}}@media all and (max-width: 560px){.cookie-bar-deluxe .cookie-bar-deluxe__details{-webkit-overflow-scroll:touch;overflow-y:scroll;position:fixed;width:100%}.cookie-bar-deluxe .cookie-bar-deluxe__buttons .button{max-width:none}.cookie-bar-deluxe .cookie-bar-deluxe__preferences{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1rem;line-height:1.5rem;font-size:1.25rem;margin-bottom:30px}}@media all and (max-width: 560px)and (min-width: 560px){.cookie-bar-deluxe .cookie-bar-deluxe__preferences{font-size:0.9375rem;line-height:1.5rem}}@media all and (max-width: 560px)and (min-width: 1380px){.cookie-bar-deluxe .cookie-bar-deluxe__preferences{font-size:1.125rem;line-height:1.875rem}}@media all and (max-width: 560px){.cookie-bar-deluxe .cookie-bar-deluxe__categories{height:49vh;overflow:hidden;overflow-y:auto}}@media all and (max-width: 560px){.cookie-bar-deluxe .cookie-bar-deluxe__text-container{height:49vh;overflow:hidden;overflow-y:auto}}@media all and (max-width: 768px){.cookie-bar-deluxe .cookie-bar-deluxe__buttons{margin-top:20px}}@media all and (min-width: 768px){.cookie-bar-deluxe .cookie-bar-deluxe__text-wrapper{max-height:300px;overflow:auto}.cookie-bar-deluxe .cookie-bar-deluxe__grid-details{display:flex;flex-direction:column;justify-content:space-between;height:auto}.cookie-bar-deluxe .cookie-bar-deluxe__details{top:50%;left:50%;padding:24px;transform:translate(-50%, -50%);width:-moz-fit-content;width:fit-content;height:-moz-fit-content;height:fit-content}.cookie-bar-deluxe .cookie-bar-deluxe__bar{top:50%;left:50%;padding:24px;transform:translate(-50%, -50%);width:768px;height:550px}.cookie-bar-deluxe .cookie-bar-deluxe__grid{height:100%}.cookie-bar-deluxe .cookie-bar-deluxe__bar-wrapper{height:100%;display:flex;flex-direction:column;justify-content:space-between}.cookie-bar-deluxe .cookie-bar-deluxe__subtitle,.cookie-bar-deluxe .cookie-bar-deluxe__text{font-size:1.125rem;line-height:1.875rem}.cookie-bar-deluxe .cookie-bar-deluxe__text,.cookie-bar-deluxe .cookie-bar-deluxe__category-text,.cookie-bar-deluxe .link{font-size:1rem;line-height:1.5rem}.cookie-bar-deluxe .cookie-bar-deluxe__buttons{flex-direction:row;justify-content:space-between}}@media all and (max-width: 1012px){.cookie-bar-deluxe .cookie-bar-deluxe__bar-wrapper{flex-direction:column;padding:0}}@media all and (min-width: 1380px){.cookie-bar-deluxe .cookie-bar-deluxe__title,.cookie-bar-deluxe .cookie-bar-deluxe__preferences{font-size:1.125rem;line-height:1.875rem}.cookie-bar-deluxe .cookie-bar-deluxe__subtitle,.cookie-bar-deluxe .cookie-bar-deluxe__text{font-size:1.125rem;line-height:1.875rem}}.page-content{flex:1}.content-header{margin-left:auto;margin-right:auto;margin-bottom:40px}.content-header::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.content-header{float:none;max-width:100%}html.show-grid .content-header{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.content-header{float:none;max-width:100%}html.show-grid .content-header{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.content-header{float:none;max-width:100%}html.show-grid .content-header{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.content-header{float:none;max-width:1380px}html.show-grid .content-header{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.content-header__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.content-header__title{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.content-header__title{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.content-header__title{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.content-header__title{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.content-header__title{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.content-header__title{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.content-header__title{margin-left:calc(16.6666666667% - 35px + 60px)}}.footer{display:flex;flex-direction:column}.footer__main{display:grid;grid-template-columns:1fr;background-color:#e9e0c4;padding:2rem;grid-gap:2rem;gap:2rem}@media all and (min-width: 1012px){.footer__main{grid-template-columns:3fr 4fr 2fr;padding:3rem 2rem;gap:5rem}}.footer__logo{margin-bottom:1.5rem;max-width:3.75rem}@media all and (min-width: 1012px){.footer__logo{margin-bottom:2rem;max-width:9.375rem}}.footer__info-text p{font-size:1rem;margin-bottom:.5rem}.footer__info-text p:last-child{margin-bottom:0}.footer__bank-info,.footer__rsin{font-size:1rem}@media all and (min-width: 1012px){.footer__links-section{justify-self:end;margin-bottom:0;padding:0 1rem}}.footer__links-title{font-size:1.125rem;font-weight:bold;margin-bottom:1rem}.footer__links-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.5rem}.footer__links-list a{color:#000;text-decoration:none;font-size:1rem;border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#000;transition:border-bottom-color 0ms ease-in-out;color:#000}.footer__links-list a:hover{border-bottom-color:#ed1b2d}.footer__links-list a:hover{color:#ed1b2d}.footer__newsletter{display:flex;flex-direction:column}.footer__newsletter-title{font-size:1.1rem;font-weight:bold;margin-bottom:.5rem}.footer__newsletter-subtext{font-size:.9rem;margin-bottom:1rem}.footer__newsletter-form{display:flex;margin-bottom:1.75rem;max-width:335px}@media all and (min-width: 1012px){.footer__newsletter-form{margin-bottom:0;max-width:100%}}.footer__newsletter-input{flex:1;padding:.5rem 1rem;border:3px solid #ed1b2d;font-size:1rem}.footer__newsletter-input::-moz-placeholder{color:#ed1b2d;font-size:1rem}.footer__newsletter-input::placeholder{color:#ed1b2d;font-size:1rem}.footer__newsletter-icon{transform:rotate(-95deg);color:#fff;width:1.5rem;height:1.75rem}.footer__newsletter-button{display:flex;background-color:#ed1b2d;color:#fff;border:2px solid #ed1b2d;padding:.5rem 1rem;cursor:pointer}.footer__newsletter-button:hover{background-color:#c5101f}.footer__lower{display:flex;flex-direction:column-reverse;gap:2rem;padding:1rem 2rem}@media all and (min-width: 1012px){.footer__lower{flex-direction:row;justify-content:space-between;align-items:center;padding:2rem}}.footer__partners{display:flex;justify-content:center;flex-wrap:wrap;gap:1rem}@media all and (min-width: 1012px){.footer__partners{flex:1;gap:2rem;justify-content:flex-start}}.footer__partners a .picture__img{max-width:2.8125rem;height:auto;height:initial}@media all and (min-width: 1012px){.footer__partners a .picture__img{max-width:100%;max-height:2.5rem}}.footer__social-label{margin-right:.5rem}@media all and (max-width: 1012px){.footer__social-label{margin-bottom:.5rem}}@media all and (min-width: 1012px){.footer__social-label{display:inline-block}}.footer__social a{margin-right:1rem;font-size:1.25rem}@media all and (min-width: 1012px){.footer__social a{margin-right:.75rem;font-size:1rem}}.footer__social{margin-top:auto}.footer__links{display:flex;flex-flow:row wrap;justify-content:center;height:3rem}@media all and (min-width: 1012px){.footer__links{padding:.5rem 2rem;text-align:right}}@media all and (min-width: 1380px){.footer__links{height:4rem;padding:1rem 2rem}}.footer__links a{color:#000;text-decoration:underline;font-size:1rem;margin-right:1rem}.footer__links a:hover{color:#ed1b2d}@media all and (min-width: 1012px){.footer__links a{margin-right:0;margin-left:1rem}}.header{display:flex;flex-direction:row;align-items:flex-start;height:120px;padding-right:5px;position:absolute;left:0;top:0;z-index:1030;width:100%;pointer-events:none}.lightweight-content .header{justify-content:space-between}@media all and (min-width: 560px){.header{padding-right:6px;height:144px}}@media all and (min-width: 1380px){.header{height:208px}}.header.is-clear .header__logo{opacity:0}.header.is-clear .header__navigation{opacity:0}.header__logo{display:block;content:"";width:96px;height:96px;background-image:url(/static/08eb8fd567fb74ddb6d0.svg);background-repeat:no-repeat;background-size:100%;position:relative;pointer-events:all;opacity:1;transition:opacity 300ms ease-in-out}@media all and (min-width: 560px){.header__logo{width:112px;height:112px}}@media all and (min-width: 1380px){.header__logo{width:144px;height:144px}}.header__cwtl_logo{display:block;content:"";width:159.375px;height:96px;margin-left:10px;margin-top:5px;background-color:#fff;background-image:url(/static/8c24146b03a0f727c628.jpg);background-repeat:no-repeat;background-size:100%;position:relative;pointer-events:none}@media all and (min-width: 560px){.header__cwtl_logo{width:185.9375px;height:112px}}@media all and (min-width: 1380px){.header__cwtl_logo{width:239.0625px;height:144px}}.header__navigation{flex:1;display:flex;flex-direction:row;align-items:flex-start;opacity:1;transform:opacity 300ms ease-in-out}@media all and (max-width: 1012px){.header__navigation.is-sticky{position:fixed;top:0;right:5px}}@media all and (min-width: 1012px){.header__navigation.is-sticky .header__donate{position:fixed;top:0;right:6px}}@media all and (min-width: 1012px){.header__navigation.is-sticky .header__menu{padding-right:184px}}.header__menu{flex:1;margin-top:5px;pointer-events:all}@media all and (min-width: 560px){.header__menu{margin-top:6px}}@media all and (min-width: 1012px){.header__menu{padding-right:56px}}.header__donate{border-radius:0;height:48px;min-height:48px;line-height:3rem;z-index:1051;margin-top:5px;font-family:"Atlas Grotesk Black";padding:0 16px;pointer-events:all}@media all and (min-width: 560px){.header__donate{margin-top:6px;height:60px;font-size:1.375rem;line-height:3.75rem;padding:0 20px}}@media all and (min-width: 1012px){.header__donate{height:48px;font-size:1.25rem;line-height:3rem}}@media all and (min-width: 1380px){.header__donate{padding:0 32px;height:60px;font-size:1.375rem;line-height:3.75rem}}.header__donate svg{top:1px}.header__back-button{color:#222;font-size:1rem;font-family:"Atlas Grotesk Medium";padding:12px 16px 0 0;margin-top:5px;pointer-events:all}.header__back-button:hover{color:#ed1b2d}.header__back-button:hover svg{fill:#ed1b2d}.header__back-button svg{fill:#222;transition:fill 0ms ease-in-out}@media all and (min-width: 560px){.header__back-button{margin-top:6px}}.header__back-button svg{width:24px;height:24px;vertical-align:-6px;margin-right:8px}@media all and (min-width: 1012px){.header__overlay{background-image:linear-gradient(white, rgba(255, 255, 255, 0.5));position:absolute;top:0;left:0;content:"";display:block;width:100vw;height:100vh;opacity:0;transition:opacity 400ms ease-in-out 100ms}}@media all and (min-width: 1012px){.header.has-focus::before{opacity:0}}@media all and (min-width: 1012px){.header.has-focus .header__overlay{opacity:1}}@media all and (min-width: 1012px){.header--complete-white::before{background-image:linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));content:"";height:100%;width:100%;position:absolute;top:0;left:0;opacity:1;transition:opacity 400ms ease-in-out 50ms}}@media all and (min-width: 1012px){.header--complete-white .header__overlay{opacity:0;background-image:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1))}}.menu{text-align:right}.menu__search-icon{padding:3px;margin-left:1.375rem}.menu__toggle{width:48px;height:48px;display:inline-block;background-color:#fff;cursor:pointer;position:relative;z-index:1051}@media all and (min-width: 560px){.menu__toggle{width:60px;height:60px}}@media all and (min-width: 1012px){.menu__toggle{display:none}}.menu__toggle svg.icon-menu{width:100%;height:100%}.menu__toggle svg.icon-close{fill:#222;width:75%;height:75%;position:relative;left:12.5%;display:none}.menu__list{height:48px;font-size:0}@media all and (max-width: 1012px){.menu__list{display:none;position:fixed;background-color:#fff;height:100%;width:100%;left:0;top:0;text-align:left;z-index:1031;padding:80px 0 56px;overflow-y:scroll}}@media all and (min-width: 1380px){.menu__list{height:60px}}.menu__list>li{margin:0;position:relative;pointer-events:all}@media all and (max-width: 1012px){.menu__list>li{margin-bottom:8px}}@media all and (min-width: 1012px){.menu__list>li{display:inline-block;height:100%;margin-left:8px;padding-top:12px}}@media all and (min-width: 1380px){.menu__list>li{padding-top:16px}}.menu__list>li .sublist-toggle{font-size:24px;font-family:"Atlas Grotesk Bold";line-height:40px;padding:0 20px;cursor:default;display:block}@media all and (max-width: 1012px){.menu__list>li .sublist-toggle{display:flex;justify-content:space-between}}@media all and (min-width: 1012px){.menu__list>li .sublist-toggle{height:28px;padding:4px;line-height:normal;font-size:15px;font-family:"Atlas Grotesk Bold"}}.menu__list>li .sublist-toggle::first-letter{text-transform:capitalize}.menu__list>li .sublist-toggle svg.icon-toggle{width:30px;height:30px;position:relative;top:4px;margin-right:4px}@media all and (min-width: 1012px){.menu__list>li .sublist-toggle svg.icon-toggle{display:none}}.menu__list>li .sublist-toggle svg.icon-toggle .close{display:none}.menu__list>li .sublist-toggle+.sublist{visibility:hidden;opacity:0}@media all and (max-width: 1012px){.menu__list>li .sublist-toggle+.sublist{overflow:hidden;max-height:0;transition:opacity 200ms ease-in-out,max-height 300ms ease-in-out 0ms,visibility 0 linear 500ms}}@media all and (min-width: 1012px){.menu__list>li .sublist-toggle+.sublist{position:absolute;left:0;top:35px;padding:24px 4px 0;transition:opacity 100ms ease-in-out,visibility 0 linear 500ms}}@media all and (min-width: 1380px){.menu__list>li .sublist-toggle+.sublist{top:38px}}.menu__list>li .sublist-toggle+.sublist>li{text-align:left}@media all and (max-width: 1012px){.menu__list>li .sublist-toggle+.sublist>li{margin:12px 0;padding:0 20px 0 48px}}@media all and (min-width: 1012px){.menu__list>li .sublist-toggle+.sublist>li{opacity:0;margin-bottom:4px;transition:opacity 0 linear}}.menu__list>li .sublist-toggle+.sublist>li.space{margin-bottom:16px}.menu__list>li .sublist-toggle+.sublist>li>a{font-size:1.125rem}@media all and (min-width: 1012px){.menu__list>li .sublist-toggle+.sublist>li>a{border-bottom:1px rgba(0,0,0,0) solid;transition:border-bottom-color 0ms ease-in-out;white-space:nowrap;font-size:1rem}.menu__list>li .sublist-toggle+.sublist>li>a:hover{border-bottom-color:#222}}@media all and (min-width: 1012px){.menu__list>li .sublist-toggle:hover+.sublist,.menu__list>li .sublist-toggle+.sublist:hover{visibility:visible;opacity:1;transition:opacity 300ms ease-in-out,visibility 0 linear 0}.menu__list>li .sublist-toggle:hover+.sublist li,.menu__list>li .sublist-toggle+.sublist:hover li{opacity:1;transition:opacity 500ms ease-in-out}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(1),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(1){transition-delay:.05s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(2),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(2){transition-delay:.1s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(3),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(3){transition-delay:.15s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(4),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(4){transition-delay:.2s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(5),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(5){transition-delay:.25s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(6),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(6){transition-delay:.3s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(7),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(7){transition-delay:.35s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(8),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(8){transition-delay:.4s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(9),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(9){transition-delay:.45s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(10),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(10){transition-delay:.5s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(11),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(11){transition-delay:.55s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(12),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(12){transition-delay:.6s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(13),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(13){transition-delay:.65s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(14),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(14){transition-delay:.7s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(15),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(15){transition-delay:.75s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(16),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(16){transition-delay:.8s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(17),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(17){transition-delay:.85s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(18),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(18){transition-delay:.9s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(19),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(19){transition-delay:.95s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(20),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(20){transition-delay:1s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(21),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(21){transition-delay:1.05s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(22),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(22){transition-delay:1.1s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(23),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(23){transition-delay:1.15s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(24),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(24){transition-delay:1.2s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(25),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(25){transition-delay:1.25s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(26),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(26){transition-delay:1.3s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(27),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(27){transition-delay:1.35s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(28),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(28){transition-delay:1.4s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(29),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(29){transition-delay:1.45s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(30),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(30){transition-delay:1.5s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(31),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(31){transition-delay:1.55s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(32),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(32){transition-delay:1.6s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(33),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(33){transition-delay:1.65s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(34),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(34){transition-delay:1.7s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(35),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(35){transition-delay:1.75s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(36),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(36){transition-delay:1.8s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(37),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(37){transition-delay:1.85s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(38),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(38){transition-delay:1.9s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(39),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(39){transition-delay:1.95s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(40),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(40){transition-delay:2s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(41),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(41){transition-delay:2.05s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(42),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(42){transition-delay:2.1s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(43),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(43){transition-delay:2.15s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(44),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(44){transition-delay:2.2s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(45),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(45){transition-delay:2.25s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(46),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(46){transition-delay:2.3s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(47),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(47){transition-delay:2.35s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(48),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(48){transition-delay:2.4s}.menu__list>li .sublist-toggle:hover+.sublist li:nth-child(49),.menu__list>li .sublist-toggle+.sublist:hover li:nth-child(49){transition-delay:2.45s}}@media all and (max-width: 1012px){.menu__list>li .sublist-toggle.is-open span{color:#ed1b2d}}.menu__list>li .sublist-toggle.is-open svg.icon-toggle .open{display:none}.menu__list>li .sublist-toggle.is-open svg.icon-toggle .close{display:block}.menu__list>li .sublist-toggle.is-open+.sublist{max-height:100vh;opacity:1;visibility:visible;transition:opacity 300ms ease-in-out 200ms,max-height 500ms ease-in 100ms}.menu.is-open .icon-menu{display:none}.menu.is-open .icon-close{display:block}.menu.is-open .menu__list{display:block}@media all and (min-width: 1012px){.menu .menu__list>li>.sublist-toggle:hover{cursor:pointer;color:#000;border-bottom:#000 solid 4px}}@media all and (min-width: 1012px){.menu--complete-white .menu__list>li>.icon{color:#fff}}@media all and (min-width: 1012px){.menu--complete-white .menu__list>li>.sublist-toggle{color:#fff}.menu--complete-white .menu__list>li>.sublist-toggle:hover{color:#fff;border-bottom-color:#fff}}@media all and (min-width: 1012px){.menu--complete-white .menu__list>li>.sublist-toggle+.sublist>li>a{border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:rgba(0,0,0,0);transition:border-bottom-color 0ms ease-in-out;color:#fff}.menu--complete-white .menu__list>li>.sublist-toggle+.sublist>li>a:hover{border-bottom-color:#fff}}.campaign-story{margin-left:auto;margin-right:auto;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;padding:64px 0 32px;overflow:hidden;height:calc(100vh - 192px);max-height:500px;min-height:400px}.campaign-story::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.campaign-story{float:none;max-width:100%}html.show-grid .campaign-story{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.campaign-story{float:none;max-width:100%}html.show-grid .campaign-story{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.campaign-story{float:none;max-width:100%}html.show-grid .campaign-story{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(16.6666666667% - 30.3333333333px + 26px))}}@media only screen and (min-width: 1380px){.campaign-story{float:none;max-width:1380px}html.show-grid .campaign-story{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(16.6666666667% - 35px + 30px))}}.campaign-story::-webkit-scrollbar{display:none}@media all and (min-width: 560px){.campaign-story{min-height:550px;height:calc(100vh - 100px);max-height:600px}}@media all and (min-width: 1012px){.campaign-story{padding:0 0 32px;height:calc(100vh - 420px);min-height:750px;max-height:900px}}.campaign-story.is-open{overflow-y:scroll}.campaign-story.is-open .campaign-story__intro{min-height:0;padding-bottom:0}.campaign-story.is-open .campaign-story__visual{transition:width 500ms ease-in-out 200ms,margin 500ms ease-in-out 200ms}@media only screen and (min-width: 320px){.campaign-story.is-open .campaign-story__visual{width:calc(83.3333333333% - 36.6666666667px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.campaign-story.is-open .campaign-story__visual{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.campaign-story.is-open .campaign-story__visual{width:calc(33.3333333333% - 34.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.campaign-story.is-open .campaign-story__visual{width:calc(33.3333333333% - 40px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.campaign-story.is-open .campaign-story__visual{margin-left:calc(16.6666666667% - 23.3333333333px + 40px)}}@media only screen and (min-width: 560px){.campaign-story.is-open .campaign-story__visual{margin-left:calc(33.3333333333% - 40px + 60px)}}@media only screen and (min-width: 1012px){.campaign-story.is-open .campaign-story__visual{margin-left:calc(66.6666666667% - 43.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.campaign-story.is-open .campaign-story__visual{margin-left:calc(66.6666666667% - 50px + 60px)}}@media all and (min-width: 1012px){.campaign-story.is-open .campaign-story__visual{margin-top:26px}}@media all and (min-width: 1380px){.campaign-story.is-open .campaign-story__visual{margin-top:30px}}.campaign-story.is-open .campaign-story__read-more{opacity:0;pointer-events:none}.campaign-story__intro{display:flex;flex-direction:column;justify-content:flex-end;min-height:100%;padding-bottom:40px;transition:min-height 1000ms ease-in-out,padding-bottom 1000ms ease-in-out}@media all and (min-width: 1012px){.campaign-story__intro{padding-bottom:64px}}.campaign-story__visual{margin-bottom:32px}@media only screen and (min-width: 320px){.campaign-story__visual{width:calc(83.3333333333% - 36.6666666667px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.campaign-story__visual{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.campaign-story__visual{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.campaign-story__visual{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.campaign-story__visual{margin-left:calc(16.6666666667% - 23.3333333333px + 40px)}}@media only screen and (min-width: 560px){.campaign-story__visual{margin-left:calc(33.3333333333% - 40px + 60px)}}@media only screen and (min-width: 1012px){.campaign-story__visual{margin-left:calc(33.3333333333% - 34.6666666667px + 52px)}}@media only screen and (min-width: 1380px){.campaign-story__visual{margin-left:calc(33.3333333333% - 40px + 60px)}}@media all and (min-width: 560px){.campaign-story__visual{margin-bottom:40px}}.campaign-story__quote{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1.25rem;line-height:1.75rem;color:#ed1b2d;margin-bottom:12px}@media only screen and (min-width: 320px){.campaign-story__quote{width:calc(83.3333333333% - 36.6666666667px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.campaign-story__quote{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.campaign-story__quote{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.campaign-story__quote{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.campaign-story__quote{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.campaign-story__quote{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.campaign-story__quote{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.campaign-story__quote{margin-left:calc(16.6666666667% - 35px + 60px)}}@media all and (min-width: 560px){.campaign-story__quote{font-size:1.25rem;line-height:1.75rem}}@media all and (min-width: 1380px){.campaign-story__quote{font-size:1.5rem;line-height:2rem}}@media only screen and (min-width: 320px){.campaign-story__read-more{width:calc(83.3333333333% - 36.6666666667px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.campaign-story__read-more{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.campaign-story__read-more{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.campaign-story__read-more{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.campaign-story__read-more{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.campaign-story__read-more{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.campaign-story__read-more{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.campaign-story__read-more{margin-left:calc(16.6666666667% - 35px + 60px)}}.campaign-story__read-more a{color:#222;display:inline}.campaign-story__read-more a:hover{color:#ed1b2d}.campaign-story__read-more a:hover svg use{fill:#ed1b2d}.campaign-story__read-more a svg use{fill:#222;transition:fill 0ms ease-in-out}.campaign-story__read-more a .label{border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#222;transition:border-bottom-color 0ms ease-in-out}.campaign-story__read-more a .label:hover{border-bottom-color:#ed1b2d}.campaign-story__read-more a svg{width:24px;height:24px;margin-left:8px;vertical-align:sub}.campaign-story__read-more a svg use{fill:#222}.campaign-story__story{margin:32px 0 80px}.campaign-story__socials{margin-bottom:12px}@media only screen and (min-width: 320px){.campaign-story__socials{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.campaign-story__socials{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.campaign-story__socials{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.campaign-story__socials{width:calc(100% - 60px);float:left;margin-left:30px}}.campaign-story__socials h3{display:inline-block;margin-right:8px}.campaign-story__socials a{margin-right:8px;font-size:1.125rem}@media only screen and (min-width: 320px){.campaign-story__note{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.campaign-story__note{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.campaign-story__note{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.campaign-story__note{width:calc(100% - 60px);float:left;margin-left:30px}}.campaign-donation{margin-left:auto;margin-right:auto;position:relative}.campaign-donation::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.campaign-donation{float:none;max-width:100%}html.show-grid .campaign-donation{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.campaign-donation{float:none;max-width:100%}html.show-grid .campaign-donation{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.campaign-donation{float:none;max-width:100%}html.show-grid .campaign-donation{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.campaign-donation{float:none;max-width:1380px}html.show-grid .campaign-donation{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.campaign-donation__donate,.campaign-donation__petition{margin-bottom:48px}@media only screen and (min-width: 320px){.campaign-donation__donate,.campaign-donation__petition{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.campaign-donation__donate,.campaign-donation__petition{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.campaign-donation__donate,.campaign-donation__petition{width:calc(41.6666666667% - 36.8333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.campaign-donation__donate,.campaign-donation__petition{width:calc(41.6666666667% - 42.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.campaign-donation__donate,.campaign-donation__petition{margin-right:calc(
        0% - 20px + 20px
      )}}@media only screen and (min-width: 560px){.campaign-donation__donate,.campaign-donation__petition{margin-right:calc(
        0% - 30px + 30px
      )}}@media only screen and (min-width: 1012px){.campaign-donation__donate,.campaign-donation__petition{margin-right:calc(
        8.3333333333% - 28.1666666667px + 26px
      )}}@media only screen and (min-width: 1380px){.campaign-donation__donate,.campaign-donation__petition{margin-right:calc(
        8.3333333333% - 32.5px + 30px
      )}}.campaign-donation__titles{margin-bottom:40px;min-height:144px;display:flex;align-items:flex-end}@media all and (min-width: 560px){.campaign-donation__titles{min-height:80px}}@media all and (min-width: 1012px){.campaign-donation__titles{min-height:128px;margin-top:72px}}@media all and (min-width: 1380px){.campaign-donation__titles{min-height:144px}}.campaign-donation__titles .title{display:none}.campaign-donation__titles .title.is-visible{display:block}.campaign-donation__titles .title h1{display:inline}.campaign-donation__form{margin-bottom:96px}.campaign-donation__status{margin-bottom:64px}.campaign-donation__status,.campaign-donation .container{margin-left:auto;margin-right:auto}.campaign-donation__status::after,.campaign-donation .container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.campaign-donation__status,.campaign-donation .container{float:none;max-width:100%}html.show-grid .campaign-donation__status,html.show-grid .campaign-donation .container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.campaign-donation__status,.campaign-donation .container{float:none;max-width:100%}html.show-grid .campaign-donation__status,html.show-grid .campaign-donation .container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.campaign-donation__status,.campaign-donation .container{float:none;max-width:100%}html.show-grid .campaign-donation__status,html.show-grid .campaign-donation .container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.campaign-donation__status,.campaign-donation .container{float:none;max-width:1380px}html.show-grid .campaign-donation__status,html.show-grid .campaign-donation .container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.campaign-donation__status,.campaign-donation .container{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.campaign-donation__status,.campaign-donation .container{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.campaign-donation__status,.campaign-donation .container{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.campaign-donation__status,.campaign-donation .container{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}.campaign-donation__status-goal{margin-bottom:12px}.campaign-donation__status-amount-goal{float:right;color:#acacac}.campaign-donation__progress{height:12px;background-color:#e9e0c4;content:"";display:block}.campaign-donation__progress-bar{height:100%;width:50%;background-color:#222;content:"";display:block;margin-bottom:4px}.campaign-donation__campaign-story{width:100%;background-color:#e9e0c4;margin-bottom:56px}@media all and (min-width: 1012px){.campaign-donation__campaign-story{width:calc(100% - 55px)}}.campaign-donation__doodle{position:absolute;top:400px;margin-left:auto;margin-right:auto;width:72px;right:8px}@media all and (min-width: 560px){.campaign-donation__doodle{width:70px;right:30px}}@media all and (min-width: 1012px){.campaign-donation__doodle{width:192px;left:0;top:16px}}.campaign-donation__doodle .background-image{height:100%;width:100%}.campaign-donation__petition-title,.campaign-donation__donation-title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;background-color:#ed1b2d;color:#fff;padding:2px 8px;display:inline;-webkit-box-decoration-break:clone;box-decoration-break:clone}@media all and (min-width: 560px){.campaign-donation__petition-title,.campaign-donation__donation-title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.campaign-donation__petition-title,.campaign-donation__donation-title{font-size:2.5rem;line-height:3rem}}.expertise-header{min-height:100vh;position:relative}.expertise-header__background{height:100%;width:100%;position:absolute;left:0;top:0;z-index:0}.expertise-header__current-expertise{margin-left:auto;margin-right:auto;position:relative;height:calc(100vh - 64px)}.expertise-header__current-expertise::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.expertise-header__current-expertise{float:none;max-width:100%}html.show-grid .expertise-header__current-expertise{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.expertise-header__current-expertise{float:none;max-width:100%}html.show-grid .expertise-header__current-expertise{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.expertise-header__current-expertise{float:none;max-width:100%}html.show-grid .expertise-header__current-expertise{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.expertise-header__current-expertise{float:none;max-width:1380px}html.show-grid .expertise-header__current-expertise{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media all and (min-width: 560px){.expertise-header__current-expertise{height:calc(100vh - 80px)}}@media all and (min-width: 1380px){.expertise-header__current-expertise{height:100vh}}.expertise-header__content{height:100%;display:flex;align-items:flex-end;padding-bottom:20px}@media only screen and (min-width: 320px){.expertise-header__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.expertise-header__content{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.expertise-header__content{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.expertise-header__content{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.expertise-header__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.expertise-header__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.expertise-header__content{margin-left:calc(25% - 32.5px + 52px)}}@media only screen and (min-width: 1380px){.expertise-header__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.expertise-header__objective,.expertise-header__title,.expertise-header__text{color:#fff}.expertise-header__objective{margin-bottom:16px;transform:translateY(-100%)}.expertise-header__title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;margin-bottom:12px}@media all and (min-width: 560px){.expertise-header__title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.expertise-header__title{font-size:2.5rem;line-height:3rem}}.expertise-header__text{margin-bottom:16px}.expertise-header__link{color:#fff;color:#fff}.expertise-header__link:hover{color:#ed1b2d}.expertise-header__link:hover span{color:#ed1b2d}.expertise-header__link span{color:#fff;transition:color 0ms ease-in-out}.expertise-header__link:hover{color:#ed1b2d}.expertise-header__link:hover svg use{fill:#ed1b2d}.expertise-header__link svg use{fill:#fff;transition:fill 0ms ease-in-out}.expertise-header__link .link__label{border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#fff;transition:border-bottom-color 0ms ease-in-out}.expertise-header__link .link__label:hover{border-bottom-color:#ed1b2d}.expertise-header__link:hover .link__label{border-color:#ed1b2d}.expertise-header__target{color:blue}.expertise-header__goto svg{width:24px;height:24px;vertical-align:bottom;margin-right:12px;animation:arrow-bounce-animation 1s infinite;animation-direction:alternate}.expertise-header__goto svg use{fill:#fff}.expertise-header__other-expertises{position:absolute;bottom:96px;right:24px}@media all and (min-width: 1012px){.expertise-header__other-expertises{display:none}}.expertise-header__other-expertise{height:100%;position:absolute;padding:40vh 32px 0;top:0;width:180px;background-color:rgba(0,0,0,.4);transition:background-color 400ms ease-in-out}.expertise-header__other-expertise:hover{background-color:rgba(0,0,0,.6)}@media all and (max-width: 1012px){.expertise-header__other-expertise{display:none}}@media all and (min-width: 1380px){.expertise-header__other-expertise{width:224px}}.expertise-header__other-expertise--previous{left:0;border-right:1px solid #acacac}.expertise-header__other-expertise--next{right:0;border-left:1px solid #acacac}.expertise-header__other-expertise-title{color:#fff;transform:translateY(-100%)}.page-message{max-width:420px;padding:20px 16px;background-color:#fff;box-shadow:1px 1px 3px 2px #e2e2e2;position:fixed;left:56px;top:72px;width:calc(100vw - 40px);z-index:1060;display:none}.page-message.is-visible{display:block}@media all and (min-width: 560px){.page-message{width:auto}}.page-message__title{text-transform:uppercase;font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.1875rem;font-family:"Atlas Grotesk Bold";color:#ed1b2d;margin-bottom:8px}@media all and (min-width: 560px){.page-message__title{font-size:0.75rem;line-height:1.1875rem}}@media all and (min-width: 1380px){.page-message__title{font-size:0.875rem;line-height:1.0625rem}}.page-message li{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.1875rem}@media all and (min-width: 560px){.page-message li{font-size:0.8125rem;line-height:1.3125rem}}@media all and (min-width: 1380px){.page-message li{font-size:1rem;line-height:1.625rem}}.popup-message{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;z-index:1060;opacity:0;pointer-events:none;transition:opacity 500ms ease-out}.popup-message.is-visible{opacity:1;pointer-events:auto}.popup-message__container{position:relative;max-width:500px;max-height:90vh;overflow-y:auto;background-color:#e9e0c4;padding:30px 25px;box-shadow:0 5px 15px rgba(0,0,0,.2)}.is-visible .popup-message__container{transform:translateY(0)}@media all and (min-width: 560px){.popup-message__container{padding:40px 35px}}.popup-message__close{position:absolute;top:22px;right:18px;width:60px;height:60px;background:rgba(0,0,0,0);border:none;cursor:pointer;padding:0;display:flex;align-items:center;justify-content:center}.popup-message__close .icon{width:75%;height:75%;fill:#222}.popup-message__title{font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.375rem;line-height:1.75rem;color:#ed1b2d;padding-right:2rem;margin-bottom:1rem}@media all and (min-width: 560px){.popup-message__title{font-size:1.5rem;line-height:1.75rem}}@media all and (min-width: 1380px){.popup-message__title{font-size:1.75rem;line-height:2.25rem}}.popup-message__content{margin-bottom:20px}.popup-message__content .rich-text{line-height:1.6rem}.donation_block_wrapper--de{margin-top:3em}.donation_block{display:block;margin:0 20px;padding-bottom:40px;max-width:600px;position:relative;margin-bottom:80px}@media all and (min-width: 1012px){.donation_block{min-height:128px;margin:80px auto}}@media all and (min-width: 1380px){.donation_block{min-height:144px}}.donation_block__title_wrapper{margin-bottom:40px;min-height:144px}@media all and (min-width: 560px){.donation_block__title_wrapper{min-height:80px}}.donation_block__title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;background-color:#ed1b2d;color:#fff;padding:2px 8px;display:inline;-webkit-box-decoration-break:clone;box-decoration-break:clone}@media all and (min-width: 560px){.donation_block__title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.donation_block__title{font-size:2.5rem;line-height:3rem}}.donation_block__doodle{position:absolute;top:375px;margin-left:auto;margin-right:auto;width:72px;right:40px}@media all and (min-width: 560px){.donation_block__doodle{top:350px;width:70px;right:30px}}@media all and (min-width: 1012px){.donation_block__doodle{width:192px;right:50px;top:70px}}@media all and (min-width: 1380px){.donation_block__doodle{width:192px;right:100px;top:70px}}.donation_block__doodle img{height:250px}@media all and (min-width: 1012px){.donation_block__doodle img{height:auto;max-height:450px}}.donation_block__doodle-smartpay{top:450px}@media all and (min-width: 560px){.donation_block__doodle-smartpay{top:400px}}.donation_block__amount_items{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:16px 24px;margin-bottom:32px}.donation_block__amount_option,.donation_block__amount_input{font-weight:700;font-size:1.25rem;line-height:2.75rem;color:#000;border:2px solid #222;padding:0 16px;height:48px;width:100%;border-radius:2px;display:block;text-align:center;cursor:pointer}.donation_block__amount_option:hover,.donation_block__amount_input:hover{transition:background-color 200ms ease-in-out;border-color:#ed1b2d;color:#ed1b2d}.donation_block__amount_option--active,.donation_block__amount_option--active:hover,.donation_block__amount_input--active,.donation_block__amount_input--active:hover{background-color:#000;color:#fff;border-color:#000}.donation_block__amount_input_wrapper{position:relative}.donation_block__amount_input_currency{position:absolute;top:0;left:16px;line-height:48px;font-size:1.25rem;font-family:"Atlas Grotesk Bold",sans-serif}.donation_block__amount_input_currency--active{color:#fff}.donation_block__validation_message{color:#ed1b2d;font-size:.8125rem;line-height:1.4375rem;margin-top:8px}.donation_block__disclaimer_text p{font-size:.8125rem;line-height:1.4375rem;margin-bottom:32px}.donation_block__disclaimer_text p a{font-size:.8125rem;line-height:1.4375rem;color:#000;text-decoration:underline}.donation_block .is-valid .field-success{display:block}.donation_block .button--cta{background-color:#ed1b2d;border:none;color:#fff;position:relative;overflow:visible}.donation_block .button--cta:not(:disabled):hover{color:#fff}@media all and (min-width: 1012px){.donation_block .button--cta:not(:disabled):hover svg use{stroke-dashoffset:0;opacity:1;transition:stroke-dashoffset 500ms ease-out,opacity 100ms ease-out}}.donation_block .button--cta:disabled{background-color:#e2e2e2;color:#acacac;pointer-events:none}.donation_block .button--cta svg{position:absolute;top:-8px;left:0;width:100%;height:58px}.donation_block .button--cta svg use{stroke:#222;stroke-dasharray:700;stroke-dashoffset:700;opacity:0;transition:stroke-dashoffset 500ms ease-out 100ms,opacity 100ms ease-out}.card-result{max-width:1380px;display:grid;grid-template-columns:1fr;padding-top:2.5rem}@media all and (min-width: 768px){.card-result{padding-top:3rem;grid-template-columns:2fr 1fr}}.card-result__content{order:1;margin-top:1rem}@media all and (min-width: 768px){.card-result__content{margin-top:0;display:flex;flex-direction:column;width:100%;order:0}}.card-result__title{font-size:1.75rem;font-weight:700;margin-bottom:1rem}.card-result__info{display:flex;flex-direction:row;align-items:center}.card-result__label{line-height:1;font-weight:700;font-size:1rem;padding:4px 6px;margin-right:.25rem;border:2px solid #000}.card-result__date{font-size:1rem;text-align:center}.card-result__description{font-size:1.125rem;margin-top:1rem}.card-result__link{margin-top:auto;margin-top:1rem}@media all and (min-width: 768px){.card-result__image img{width:310px;padding-left:2.25rem}}.search-bar__input{width:100%;padding:11px 10px;border:2px solid #ed1b2d}@media all and (min-width: 560px){.search-bar__input{padding:11px 16px;width:365px}}.search-bar__input::-moz-placeholder{color:#ed1b2d;font-size:.563rem;font-weight:700;line-height:1}.search-bar__input::placeholder{color:#ed1b2d;font-size:.563rem;font-weight:700;line-height:1}@media all and (min-width: 560px){.search-bar__input::-moz-placeholder{font-size:1rem}.search-bar__input::placeholder{font-size:1rem}}.search-bar__wrapper{display:inline-block;width:100%;flex-direction:column;position:relative}@media all and (min-width: 768px){.search-bar__wrapper{width:auto}}.search-bar__input-wrapper{display:flex}.search-bar__submit-btn{background:#ed1b2d;color:#fff;font-size:1rem;font-weight:700;padding:11px 20px;border:none;cursor:pointer;text-transform:uppercase}.search-bar__results{border:2px solid #000;border-top:none;display:flex;flex-direction:column;position:absolute;background-color:#fff;width:100%;z-index:1;max-height:25.625rem;overflow-y:scroll}.search-bar__result-item{word-break:break-word;padding:11px 16px}.search-bar__result-item:hover{font-weight:700;background-color:#ebebeb}.audio-block{margin-left:auto;margin-right:auto}.audio-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.audio-block{float:none;max-width:100%}html.show-grid .audio-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.audio-block{float:none;max-width:100%}html.show-grid .audio-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.audio-block{float:none;max-width:100%}html.show-grid .audio-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.audio-block{float:none;max-width:1380px}html.show-grid .audio-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media all and (min-width: 560px){.audio-block.margin-less{margin-top:-42px}}.audio-block.is-enhanced audio{display:none}.audio-block.is-enhanced .h{display:none}.audio-block .widget-wrapper{height:2.8rem;width:11rem;border:3px solid #000;border-radius:20px;font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem;position:relative;overflow:hidden}@media all and (min-width: 560px){.audio-block .widget-wrapper{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.audio-block .widget-wrapper{font-size:0.9375rem;line-height:1.4375rem}}.audio-block .widget-wrapper .txt{position:absolute;z-index:1;top:50%;transform:translateY(-50%);left:3rem;text-transform:uppercase}.audio-block .widget-wrapper .txt .lbl{font-weight:bold}.audio-block .widget-wrapper button{width:2.2rem;display:inline-block;background:#000;color:#fff;position:absolute;left:0;height:100%}.audio-block .widget-wrapper button svg{width:100%;height:100%;padding:.2em .5em}.audio-block .widget-wrapper button svg use{fill:#fff}.audio-block .widget-wrapper button svg use[data-role=pause]{transform:scale(80%) translate(10%, 10%)}.audio-block .widget-wrapper progress{display:inline-block;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;height:100%;width:11em;position:absolute;left:2.2rem;border:0}.audio-block .widget-wrapper progress::-moz-progress-bar{background:#e9e0c4}.audio-block .widget-wrapper progress::-webkit-progress-bar{background:#fff}.audio-block .widget-wrapper progress::-webkit-progress-value{background:#e9e0c4}.buttons-block{margin-left:auto;margin-right:auto}.buttons-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.buttons-block{float:none;max-width:100%}html.show-grid .buttons-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.buttons-block{float:none;max-width:100%}html.show-grid .buttons-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.buttons-block{float:none;max-width:100%}html.show-grid .buttons-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.buttons-block{float:none;max-width:1380px}html.show-grid .buttons-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.buttons-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.buttons-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.buttons-block__content{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.buttons-block__content{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.buttons-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.buttons-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.buttons-block__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.buttons-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.buttons-block__button{margin-bottom:20px;margin-right:16px}@media all and (min-width: 560px){.buttons-block__button{margin-bottom:40px}}.card-carousel{margin-bottom:50px;margin-left:auto;margin-right:auto}.card-carousel::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.card-carousel{float:none;max-width:100%}html.show-grid .card-carousel{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.card-carousel{float:none;max-width:100%}html.show-grid .card-carousel{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.card-carousel{float:none;max-width:100%}html.show-grid .card-carousel{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.card-carousel{float:none;max-width:1380px}html.show-grid .card-carousel{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.card-carousel__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.card-carousel__content{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.card-carousel__content{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.card-carousel__content{width:calc(100% - 60px);float:left;margin-left:30px}}.card-carousel__top{display:flex}.card-carousel__top-title{margin-bottom:20px}.card-carousel__top-navigation{display:none}@media only screen and (min-width: 560px){.card-carousel__top-navigation{display:block;position:relative;margin-left:15px}}.card-carousel-swiper{overflow:hidden}.card-carousel .swiper-pagination{font-size:0;margin-left:auto;margin-right:auto;position:static;text-align:center;transition:.3s opacity;z-index:10}@media all and (min-width: 320px)and (max-width: 560px){.card-carousel .swiper-pagination{padding-top:20px}}@media only screen and (min-width: 560px){.card-carousel .swiper-pagination{display:none}}.card-carousel .swiper-pagination-bullet{background-color:rgba(0,0,0,.35);display:inline-block;height:10px;margin-left:10px;opacity:.2;width:10px;border-radius:0}.card-carousel .swiper-pagination-bullet-active{background:#ed1b2d;opacity:1}.card-carousel__button-prev,.card-carousel__button-next{background:none;width:24px;height:24px;transform:rotate(5deg)}.card-carousel__button-prev svg,.card-carousel__button-next svg{fill:#222;width:100%;height:100%}.card-carousel .swiper-button-prev{left:0}.card-carousel .swiper-button-next{left:30px}.card-carousel-icon-card{width:100%;margin:0;display:block}@media all and (min-width: 320px)and (max-width: 560px){.card-carousel-icon-card{position:relative}}@media only screen and (min-width: 560px){.card-carousel-icon-card{width:272px}}.card-carousel-icon-card:hover .card-carousel-icon-card__title{color:#ed1b2d;background-image:none}.card-carousel-icon-card:hover .card-carousel-icon-card__play-button{border-color:#ed1b2d}.card-carousel-icon-card:hover .card-carousel-icon-card__play-button svg use{fill:#ed1b2d}.card-carousel-icon-card:not(:last-child){margin-right:20px}.card-carousel-icon-card__background{height:153px}@media all and (min-width: 320px)and (max-width: 560px){.card-carousel-icon-card__background{width:100%;height:200px;padding-bottom:0px}}.card-carousel-icon-card__overlay{display:flex;align-items:center;justify-content:center;height:0;padding-bottom:56.25%;left:0;position:absolute;top:0;width:100%}@media all and (min-width: 560px){.card-carousel-icon-card__overlay{height:153px}}.card-carousel-icon-card__overlay:hover{background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4))}.card-carousel-icon-card__play-button{pointer-events:all;position:absolute;border-radius:50%;width:48px;height:48px;display:flex;align-items:center;justify-content:center;box-sizing:border-box;border:2px solid #fff;z-index:1;top:calc(50% - 24px)}.card-carousel-icon-card__play-button svg{width:24px;height:28px}.card-carousel-icon-card__play-button svg use{fill:#fff}.card-carousel-icon-card__title{font-family:"Atlas Grotesk Regular";font-size:18px;line-height:20px;display:inline-block;margin-top:8px}.carousel-block{margin-left:auto;margin-right:auto}.carousel-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.carousel-block{float:none;max-width:100%}html.show-grid .carousel-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.carousel-block{float:none;max-width:100%}html.show-grid .carousel-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.carousel-block{float:none;max-width:100%}html.show-grid .carousel-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.carousel-block{float:none;max-width:1380px}html.show-grid .carousel-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.carousel-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.carousel-block__content{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.carousel-block__content{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.carousel-block__content{width:calc(100% - 60px);float:left;margin-left:30px}}.carousel-block__swiper{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.carousel-block__pagination{bottom:auto;top:0;left:0;text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:2.75rem;line-height:4rem;color:#e9e0c4;text-align:right;width:146px}@media only screen and (min-width: 1012px){.carousel-block__pagination{right:calc(
          1 *
            (
              (100vw - 26px * 1) /
                12 *
                2
            ) -
            26px
        )}}@media only screen and (min-width: 1380px){.carousel-block__pagination{right:calc(
          1 *
            (
              1350px /
                12 *
                2
            ) -
            30px
        )}}@media all and (min-width: 1012px){.carousel-block__pagination{font-size:4rem;line-height:4.5rem}}@media all and (min-width: 560px){.carousel-block__pagination{width:220px}}@media all and (min-width: 1012px){.carousel-block__pagination{width:auto;left:auto;top:48px}}@media all and (min-width: 1380px){.carousel-block__pagination{top:340px}}.carousel-block__button-prev,.carousel-block__button-next{background:none;width:40px;height:40px;display:none}@media all and (min-width: 1012px){.carousel-block__button-prev,.carousel-block__button-next{display:block;top:144px}}@media all and (min-width: 1380px){.carousel-block__button-prev,.carousel-block__button-next{top:436px}}.carousel-block__button-prev svg,.carousel-block__button-next svg{fill:#222;width:100%;height:100%;transform:rotate(5deg)}.carousel-block__button-prev{left:0}@media only screen and (min-width: 1012px){.carousel-block__button-next{right:calc(
          1 *
            (
              (100vw - 26px * 1) /
                12 *
                2
            ) -
            26px
        )}}@media only screen and (min-width: 1380px){.carousel-block__button-next{right:calc(
          1 *
            (
              1350px /
                12 *
                2
            ) -
            30px
        )}}.carousel-block-slide{margin-top:80px;margin-right:20px}@media only screen and (min-width: 320px){.carousel-block-slide{width:calc(
          1 *
            (
              (100vw - 20px * 1) /
                6 *
                5
            ) -
            20px
        )}}@media only screen and (min-width: 560px){.carousel-block-slide{width:calc(
          1 *
            (
              (100vw - 30px * 1) /
                6 *
                5
            ) -
            30px
        )}}@media only screen and (min-width: 1012px){.carousel-block-slide{width:calc(
          1 *
            (
              (100vw - 26px * 1) /
                12 *
                9
            ) -
            26px
        )}}@media only screen and (min-width: 1380px){.carousel-block-slide{width:calc(
          1 *
            (
              1350px /
                12 *
                9
            ) -
            30px
        )}}@media all and (min-width: 560px){.carousel-block-slide{margin-right:30px}}@media all and (min-width: 1012px){.carousel-block-slide{margin-right:0;margin-top:0;margin-left:0}}.carousel-block-slide__image{width:100%;margin-bottom:16px}@media all and (min-width: 1012px){.carousel-block-slide__image{margin-left:calc(-20px)}}.carousel-block-slide .background-image{padding-bottom:50%;transition:transform 350ms ease-in-out}@media all and (min-width: 1012px){.carousel-block-slide .background-image{transform:scale(0.375) translateX(-75%) translateY(calc(-90% + 522.6666666667px))}}@media all and (min-width: 1380px){.carousel-block-slide .background-image{transform:scale(0.375) translateX(-75%) translateY(0)}}.carousel-block-slide.swiper-slide-active .carousel-block-slide__caption,.carousel-block-slide.swiper-slide-active .carousel-block-slide__credits{opacity:1}.carousel-block-slide.swiper-slide-active .background-image{transform:scale(1) translateX(0)}.carousel-block-slide__caption{text-transform:uppercase;font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.1875rem;color:#ed1b2d;margin-bottom:4px;opacity:0;transition:opacity 300ms ease-in-out}@media all and (min-width: 560px){.carousel-block-slide__caption{font-size:0.75rem;line-height:1.1875rem}}@media all and (min-width: 1380px){.carousel-block-slide__caption{font-size:0.875rem;line-height:1.0625rem}}@media all and (min-width: 1012px){.carousel-block-slide__caption{width:50%}}.carousel-block-slide__credits{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.125rem;opacity:0;transition:opacity 200ms ease-in-out 200ms}@media all and (min-width: 1380px){.carousel-block-slide__credits{font-size:0.9375rem;line-height:1.125rem}}@media all and (min-width: 1012px){.carousel-block-slide__credits{position:relative;width:50%}}.children-overview-block{margin-bottom:104px}.children-overview-block__filter-container{margin-bottom:4rem;width:70%;display:flex;gap:1rem;flex-direction:column}@media only screen and (min-width: 320px){.children-overview-block__filter-container{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.children-overview-block__filter-container{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.children-overview-block__filter-container{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.children-overview-block__filter-container{margin-left:calc(16.6666666667% - 35px + 60px)}}@media all and (min-width: 320px)and (max-width: 560px){.children-overview-block__filter-container{width:90%}}.children-overview-block__filter-container fieldset{display:flex;gap:1rem;flex-wrap:wrap}.children-overview-block__filter-container button{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.25rem;line-height:2.75rem;line-height:normal;display:inline-block;border:2px solid #222;padding:10px 20px;min-height:42px;box-sizing:border-box;border-radius:2px;vertical-align:top;width:-moz-fit-content;width:fit-content;color:#222;transition:border-color 200ms ease-in-out,color 200ms ease-in-out}@media all and (min-width: 560px){.children-overview-block__filter-container button{line-height:2.375rem}}@media all and (min-width: 1380px){.children-overview-block__filter-container button{line-height:2.75rem}}@media all and (min-width: 560px){.children-overview-block__filter-container button{height:42px;padding:0px 20px;max-width:calc(560px - 30px * 2)}}@media all and (min-width: 1012px){.children-overview-block__filter-container button{max-width:calc(1012px - 26px * 2)}}@media all and (min-width: 1380px){.children-overview-block__filter-container button{height:48px;max-width:calc(1380px - 26px * 2)}}.children-overview-block__filter-container button:not(:disabled){cursor:pointer}.children-overview-block__filter-container button:not(:disabled):hover{border-color:#ed1b2d;color:#ed1b2d}.children-overview-block__filter-container button:disabled{color:#acacac;border-color:#acacac}.children-overview-block__filter-container button--icon-only{padding:0 14px}@media all and (min-width: 1012px){.children-overview-block__filter-container button--icon-only{padding:0 11px}}.children-overview-block__filter-container button--icon-only svg{width:20px;height:20px;vertical-align:text-bottom}.children-overview-block__filter-container button.selected{background-color:#ed1b2d;color:#fff;border:1px solid #ed1b2d}.children-overview-block__filter-container button.selected:hover{color:#fff}.children-overview-block__items-container{margin-left:auto;margin-right:auto}.children-overview-block__items-container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.children-overview-block__items-container{float:none;max-width:100%}html.show-grid .children-overview-block__items-container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.children-overview-block__items-container{float:none;max-width:100%}html.show-grid .children-overview-block__items-container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.children-overview-block__items-container{float:none;max-width:100%}html.show-grid .children-overview-block__items-container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.children-overview-block__items-container{float:none;max-width:1380px}html.show-grid .children-overview-block__items-container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.children-overview-block--grid li{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.children-overview-block--grid li{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.children-overview-block--grid li{width:calc(41.6666666667% - 36.8333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.children-overview-block--grid li{width:calc(41.6666666667% - 42.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.children-overview-block--grid li{margin-right:calc(
        0% - 20px + 20px
      )}}@media only screen and (min-width: 560px){.children-overview-block--grid li{margin-right:calc(
        0% - 30px + 30px
      )}}@media only screen and (min-width: 1012px){.children-overview-block--grid li{margin-right:calc(
        8.3333333333% - 28.1666666667px + 26px
      )}}@media only screen and (min-width: 1380px){.children-overview-block--grid li{margin-right:calc(
        8.3333333333% - 32.5px + 30px
      )}}@media all and (min-width: 560px){.children-overview-block--grid li:nth-last-child(n+3){margin-bottom:104px}.children-overview-block--grid li:nth-child(odd){clear:left}}.children-overview-block--grid li:last-of-type hr{display:none}@media all and (min-width: 560px){.children-overview-block--grid li hr{display:none}}.children-overview-block--grid li .title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem}@media all and (min-width: 560px){.children-overview-block--grid li .title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.children-overview-block--grid li .title{font-size:2.5rem;line-height:3rem}}.children-overview-block--grid li .title,.children-overview-block--grid li .intro-text{margin-bottom:20px}.children-overview-block--grid li .meta-data{display:flex;-moz-column-gap:.5rem;column-gap:.5rem;row-gap:0;align-items:baseline;flex-wrap:wrap}.children-overview-block--grid li .date-long{display:none}.children-overview-block--grid li .date-short{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:2.75rem;line-height:4rem;text-align:right;display:block;color:#e9e0c4}@media all and (min-width: 1012px){.children-overview-block--grid li .date-short{font-size:4rem;line-height:4.5rem}}.children-overview-block--grid li .image{float:right;margin-top:-24px}@media only screen and (min-width: 320px){.children-overview-block--grid li .image{width:calc(
          1 *
            (
              (100vw - 20px * 1) /
                6 *
                3
            ) -
            20px
        )}}@media only screen and (min-width: 560px){.children-overview-block--grid li .image{width:calc(
          1 *
            (
              (100vw - 30px * 1) /
                6 *
                3
            ) -
            30px
        )}}@media only screen and (min-width: 1012px){.children-overview-block--grid li .image{width:calc(
          1 *
            (
              (100vw - 26px * 1) /
                12 *
                3
            ) -
            26px
        )}}@media only screen and (min-width: 1380px){.children-overview-block--grid li .image{width:calc(
          1 *
            (
              1350px /
                12 *
                3
            ) -
            30px
        )}}@media all and (min-width: 320px)and (max-width: 560px){.children-overview-block--grid li .image{margin-bottom:40px}}.children-overview-block--grid .children-overview-block__pagination-container hr{display:none}@media only screen and (min-width: 320px){.children-overview-block--list li hr{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.children-overview-block--list li hr{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.children-overview-block--list li hr{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.children-overview-block--list li hr{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.children-overview-block--list li hr{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.children-overview-block--list li hr{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.children-overview-block--list li hr{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.children-overview-block--list li hr{margin-left:calc(16.6666666667% - 35px + 60px)}}.children-overview-block--list li:last-of-type hr{display:none}.children-overview-block--list li .info{color:#222}@media only screen and (min-width: 320px){.children-overview-block--list li .info{width:calc(66.6666666667% - 33.3333333333px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.children-overview-block--list li .info{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.children-overview-block--list li .info{width:calc(41.6666666667% - 36.8333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.children-overview-block--list li .info{width:calc(41.6666666667% - 42.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.children-overview-block--list li .info{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.children-overview-block--list li .info{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.children-overview-block--list li .info{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.children-overview-block--list li .info{margin-left:calc(16.6666666667% - 35px + 60px)}}.children-overview-block--list li .info:hover{color:#ed1b2d}.children-overview-block--list li .info:hover span{color:#ed1b2d}.children-overview-block--list li .info span{color:#222;transition:color 0ms ease-in-out}.children-overview-block--list li .info .filter-name{font-weight:700;line-height:1.2;padding:3px 7px;border:2px solid #000}.children-overview-block--list li:hover .filter-name{border-color:#ed1b2d}.children-overview-block--list li .image{position:relative;pointer-events:none}@media only screen and (min-width: 320px){.children-overview-block--list li .image{width:calc(33.3333333333% - 26.6666666667px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.children-overview-block--list li .image{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.children-overview-block--list li .image{width:calc(25% - 32.5px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.children-overview-block--list li .image{width:calc(25% - 37.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.children-overview-block--list li .image{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.children-overview-block--list li .image{margin-left:calc(50% - 45px + 60px)}}@media only screen and (min-width: 1012px){.children-overview-block--list li .image{margin-left:calc(0% - 26px + 52px)}}@media only screen and (min-width: 1380px){.children-overview-block--list li .image{margin-left:calc(0% - 30px + 60px)}}@media all and (max-width: 1380px){.children-overview-block--list li .image{margin-top:16px}}.children-overview-block--list li .image__overlay{background-color:rgba(34,34,34,.5);position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;transition:opacity 200ms ease-in-out}.children-overview-block--list li a:hover .image__overlay{opacity:1}.children-overview-block--list li a:hover .link__label{border-bottom-color:#ed1b2d}.children-overview-block--list li a:hover .link svg use{fill:#ed1b2d}.children-overview-block--list li .date-short{display:none}.children-overview-block--list li .meta-data{display:flex;-moz-column-gap:.5rem;column-gap:.5rem;margin-top:.325rem;row-gap:0;align-items:baseline;flex-wrap:wrap}.children-overview-block--list li .date-long{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.125rem;color:#acacac}@media all and (min-width: 1380px){.children-overview-block--list li .date-long{font-size:0.9375rem;line-height:1.125rem}}.children-overview-block--list li .intro-text{margin-top:16px}@media all and (min-width: 320px)and (max-width: 560px){.children-overview-block--list li .intro-text{display:none}}.children-overview-block--list .children-overview-block__pagination-container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.children-overview-block--list .children-overview-block__pagination-container hr{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.children-overview-block--list .children-overview-block__pagination-container hr{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.children-overview-block--list .children-overview-block__pagination-container hr{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.children-overview-block--list .children-overview-block__pagination-container hr{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.children-overview-block--list .children-overview-block__pagination-container hr{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.children-overview-block--list .children-overview-block__pagination-container hr{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.children-overview-block--list .children-overview-block__pagination-container hr{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.children-overview-block--list .children-overview-block__pagination-container hr{margin-left:calc(16.6666666667% - 35px + 60px)}}.children-overview-block--list .children-overview-block__pagination-container .pagination{clear:both}.conversion-block{margin-left:auto;margin-right:auto}.conversion-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.conversion-block{float:none;max-width:100%}html.show-grid .conversion-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.conversion-block{float:none;max-width:100%}html.show-grid .conversion-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.conversion-block{float:none;max-width:100%}html.show-grid .conversion-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.conversion-block{float:none;max-width:1380px}html.show-grid .conversion-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.conversion-block__title{margin-bottom:16px}@media only screen and (min-width: 320px){.conversion-block__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.conversion-block__title{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.conversion-block__title{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.conversion-block__title{width:calc(50% - 45px);float:left;margin-left:30px}}.conversion-block__title p{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;background-color:#ed1b2d;color:#fff;padding:2px 8px;display:inline;-webkit-box-decoration-break:clone;box-decoration-break:clone}@media all and (min-width: 560px){.conversion-block__title p{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.conversion-block__title p{font-size:2.5rem;line-height:3rem}}@media only screen and (min-width: 320px){.conversion-block__buttons{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.conversion-block__buttons{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.conversion-block__buttons{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.conversion-block__buttons{width:calc(100% - 60px);float:left;margin-left:30px}}.conversion-block__button{margin-bottom:20px;margin-right:16px}@media all and (min-width: 560px){.conversion-block__button{margin-bottom:40px}}.cookies-block{background-color:#e9e0c4}.cookies-block__container{margin-left:auto;margin-right:auto;padding:32px 0 48px}.cookies-block__container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.cookies-block__container{float:none;max-width:100%}html.show-grid .cookies-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.cookies-block__container{float:none;max-width:100%}html.show-grid .cookies-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.cookies-block__container{float:none;max-width:100%}html.show-grid .cookies-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.cookies-block__container{float:none;max-width:1380px}html.show-grid .cookies-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media all and (min-width: 1012px){.cookies-block__container{padding:72px 0 56px}}.cookies-block__title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;z-index:1;position:relative}@media only screen and (min-width: 320px){.cookies-block__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.cookies-block__title{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.cookies-block__title{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.cookies-block__title{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.cookies-block__title{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.cookies-block__title{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.cookies-block__title{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.cookies-block__title{margin-left:calc(16.6666666667% - 35px + 60px)}}@media all and (min-width: 560px){.cookies-block__title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.cookies-block__title{font-size:2.5rem;line-height:3rem}}@media all and (max-width: 1380px){.cookies-block__title{margin-bottom:24px}}@media all and (min-width: 1380px){.cookies-block__title{margin-bottom:40px}}.cookies-block__text{clear:both;margin-bottom:40px}@media only screen and (min-width: 320px){.cookies-block__text{width:calc(83.3333333333% - 36.6666666667px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.cookies-block__text{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.cookies-block__text{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.cookies-block__text{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.cookies-block__text{left:calc(0% - 20px + 20px);position:relative}}@media only screen and (min-width: 560px){.cookies-block__text{left:calc(0% - 30px + 30px);position:relative}}@media only screen and (min-width: 1012px){.cookies-block__text{left:calc(16.6666666667% - 30.3333333333px + 26px);position:relative}}@media only screen and (min-width: 1380px){.cookies-block__text{left:calc(16.6666666667% - 35px + 30px);position:relative}}@media only screen and (min-width: 320px){.cookies-block__buttons{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.cookies-block__buttons{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.cookies-block__buttons{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.cookies-block__buttons{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.cookies-block__buttons{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.cookies-block__buttons{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.cookies-block__buttons{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.cookies-block__buttons{margin-left:calc(16.6666666667% - 35px + 60px)}}.cookies-block__buttons .button{min-width:180px}.cookies-block__buttons .button--cta{margin-right:16px}.donation-block{margin-left:auto;margin-right:auto}.donation-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.donation-block{float:none;max-width:100%}html.show-grid .donation-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.donation-block{float:none;max-width:100%}html.show-grid .donation-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.donation-block{float:none;max-width:100%}html.show-grid .donation-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.donation-block{float:none;max-width:1380px}html.show-grid .donation-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.donation-block__explanation-text{margin-bottom:40px}.donation-block__disclaimer{margin-bottom:32px}@media only screen and (min-width: 320px){.donation-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.donation-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.donation-block__content{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.donation-block__content{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.donation-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.donation-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.donation-block__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.donation-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.donation-block__header{margin-bottom:24px}@media all and (min-width: 560px){.donation-block__header{margin-bottom:48px}}.donation-block__title{margin-bottom:16px}.donation-block__output{margin-bottom:32px;color:#ed1b2d}.donation-block__form fieldset{margin-bottom:40px}.donation-block__frequency,.donation-block__amount-suggestions{font-size:0}.donation-block__frequency li,.donation-block__amount-suggestions li{vertical-align:top;display:inline-block;position:relative}@media all and (min-width: 560px){.donation-block__frequency li:nth-last-child(n+4),.donation-block__amount-suggestions li:nth-last-child(n+4){margin-bottom:16px}}@media all and (min-width: 320px)and (max-width: 560px){.donation-block__frequency li:nth-last-child(n+3),.donation-block__amount-suggestions li:nth-last-child(n+3){margin-bottom:16px}}.donation-block__frequency{margin-bottom:40px}@media all and (min-width: 560px){.donation-block__frequency{margin-bottom:56px;padding-right:33%}}.donation-block__frequency li{width:50%}@media all and (min-width: 560px){.donation-block__frequency li{padding-right:24px}}.only-monthly .donation-block__frequency li.freq_eenmalig,.only-monthly .donation-block__frequency li.freq_jaarlijks,.only-monthly .donation-block__frequency li.freq_per.kwartaal{display:none}.donation-block__frequency .is-disabled{display:none}.donation-block__frequency-wrapper--hide{display:none}.donation-block__amount-suggestions{margin-bottom:40px}.donation-block__amount-suggestions:not(.is-visible),.donation-block__amount-suggestions.is-disabled{display:none}.donation-block__amount-suggestions li{width:50%}.donation-block__amount-suggestions li:nth-child(odd){padding-right:12px}.donation-block__amount-suggestions li:nth-child(even){padding-left:12px}.no-free-amount .donation-block__amount-suggestions li.free_amount{display:none}.donation-block__amount-suggestions+.field-error{margin-top:-40px;display:block}.donation-block__navigation{display:flex;flex-direction:column;align-items:flex-start}.donation-block__next-button{margin-bottom:16px}.field-error+.donation-block__next-button{margin-top:48px}.donation-block__address{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem}@media all and (min-width: 560px){.donation-block__address{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.donation-block__address{font-size:1.125rem;line-height:1.875rem}}.donation-block__steps{margin-bottom:32px;font-size:0;height:72px}@media all and (min-width: 560px){.donation-block__steps{margin-bottom:48px}}.donation-block__steps li{display:inline-block;width:33%;vertical-align:top;transition:width 300ms ease-in-out;height:100%;position:relative}.donation-block__steps li .step{color:#e9e0c4;display:block;padding-left:8px;margin-bottom:8px}.donation-block__steps li .title{background-color:#e9e0c4;height:36px;font-family:"Atlas Grotesk Medium";font-size:15px;line-height:36px;padding-left:8px;display:block;position:absolute;bottom:0;right:0;width:100%}.donation-block__steps li h2,.donation-block__steps li span{cursor:pointer}.donation-block__steps li:first-of-type .title::before{width:calc((100vw / 6 * 0) + 20px + 20px);width:calc(calc(100vw / 6 * 0) + 20px + 20px);content:"";height:100%;background-color:#e9e0c4;transform:translateX(calc(-100% + 1px));position:absolute;left:0;top:0}@media only screen and (min-width: 560px){.donation-block__steps li:first-of-type .title::before{width:calc((100vw / 6 * 1) + 30px + 30px);width:calc(calc(100vw / 6 * 1) + 30px + 30px)}}@media only screen and (min-width: 1012px){.donation-block__steps li:first-of-type .title::before{width:calc((100vw / 12 * 3) + 26px + 26px);width:calc(calc(100vw / 12 * 3) + 26px + 26px)}}@media only screen and (min-width: 1380px){.donation-block__steps li:first-of-type .title::before{width:calc(
      ((100vw - 1380px) * 0.5) + 345px + 30px + 30px
    );width:calc(
      calc(calc(100vw - 1380px) * 0.5) + 345px + 30px + 30px
    )}}.donation-block__steps li.is-active .step{color:#ed1b2d}.donation-block__steps li.is-active .title{color:#ed1b2d;display:block}@media all and (min-width: 320px)and (max-width: 560px){.donation-block__steps li.is-active .title{width:calc(100% + 64px);text-align:right;padding-right:24px}}.donation-block__steps li.is-active .title::after{content:"";position:absolute;right:0;top:0;border-top:18px solid #fff;border-bottom:18px solid #fff;border-left:18px solid #e9e0c4}.donation-block__steps.is-frequency-single li{width:50%}.donation-block__steps.is-frequency-single li:nth-child(n+3){width:0;opacity:0}.donation-block__footer{margin-top:60px}.donation-block__footer-image{margin-bottom:8px}@media all and (min-width: 560px){.donation-block__footer-image{margin-bottom:16px}}.donation-block__footer-text{margin-bottom:4px}.donation-block__footer-link{margin-bottom:32px}.donation-block__footer-img{width:100%}.donation-block #id_payment_method{margin-bottom:40px}.donation-block__initial-title,.donation-block__titles,.donation-block__subtitle{display:none}.donation-block__initial-title.is-visible,.donation-block__titles.is-visible,.donation-block__subtitle.is-visible{display:block}.double-feature-block{margin-left:auto;margin-right:auto;margin-top:80px;margin-bottom:80px}.double-feature-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.double-feature-block{float:none;max-width:100%}html.show-grid .double-feature-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.double-feature-block{float:none;max-width:100%}html.show-grid .double-feature-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.double-feature-block{float:none;max-width:100%}html.show-grid .double-feature-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.double-feature-block{float:none;max-width:1380px}html.show-grid .double-feature-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.double-feature-block__content-wrapper{display:flex;flex-direction:column}@media only screen and (min-width: 320px){.double-feature-block__content-wrapper{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.double-feature-block__content-wrapper{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.double-feature-block__content-wrapper{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.double-feature-block__content-wrapper{width:calc(100% - 60px);float:left;margin-left:30px}}@media all and (min-width: 560px){.double-feature-block__content-wrapper{flex-direction:row}}.double-feature-block__feature-1{flex-grow:1}@media only screen and (min-width: 320px){.double-feature-block__feature-1{width:calc(100% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 560px){.double-feature-block__feature-1{width:calc(50% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1012px){.double-feature-block__feature-1{width:calc(41.6666666667% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1380px){.double-feature-block__feature-1{width:calc(41.6666666667% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 560px){.double-feature-block__feature-1{padding-right:15px}}@media only screen and (min-width: 1012px){.double-feature-block__feature-1{padding-right:13px}}@media only screen and (min-width: 1380px){.double-feature-block__feature-1{padding-right:15px}}.double-feature-block__feature-2{flex-grow:1}@media only screen and (min-width: 320px){.double-feature-block__feature-2{width:calc(100% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 560px){.double-feature-block__feature-2{width:calc(50% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1012px){.double-feature-block__feature-2{width:calc(58.3333333333% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1380px){.double-feature-block__feature-2{width:calc(58.3333333333% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 560px){.double-feature-block__feature-2{padding-left:15px}}@media only screen and (min-width: 1012px){.double-feature-block__feature-2{padding-left:13px}}@media only screen and (min-width: 1380px){.double-feature-block__feature-2{padding-left:15px}}@media all and (min-width: 1012px){.double-feature-block__feature-2{aspect-ratio:9/10}}.double-feature-block__content-1,.double-feature-block__content-2{display:flex;flex-direction:column;height:100%;overflow:hidden;position:relative}.double-feature-block__content-1{justify-content:center}.double-feature-block__content-2{justify-content:flex-end}.double-feature-block__background-1,.double-feature-block__background-2{width:100%;height:100%;position:absolute;z-index:1}.double-feature-block__background-image-1{position:relative;width:100%;aspect-ratio:5/3}.double-feature-block__background-image-1::after{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgb(255, 255, 255));z-index:1}.double-feature-block__background-image-2{position:relative;width:100%;height:100%}.double-feature-block__background-image-2::after{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:1}.double-feature-block__overlay-1{position:relative;z-index:2}@media only screen and (min-width: 320px){.double-feature-block__overlay-1{width:calc(100% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 560px){.double-feature-block__overlay-1{width:calc(66.6666666667% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1012px){.double-feature-block__overlay-1{width:calc(80% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1380px){.double-feature-block__overlay-1{width:calc(80% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 320px){.double-feature-block__overlay-1{margin-left:calc(0% - 0px + 0px)}}@media only screen and (min-width: 560px){.double-feature-block__overlay-1{margin-left:calc(33.3333333333% - 0px + 0px)}}@media only screen and (min-width: 1012px){.double-feature-block__overlay-1{margin-left:calc(20% - 0px + 0px)}}@media only screen and (min-width: 1380px){.double-feature-block__overlay-1{margin-left:calc(20% - 0px + 0px)}}@media only screen and (min-width: 320px){.double-feature-block__overlay-1{padding-right:10px}}@media only screen and (min-width: 560px){.double-feature-block__overlay-1{padding-right:15px}}@media only screen and (min-width: 1012px){.double-feature-block__overlay-1{padding-right:13px}}@media only screen and (min-width: 1380px){.double-feature-block__overlay-1{padding-right:15px}}.double-feature-block__overlay-1:last-child{margin-bottom:80px}@media all and (max-width: 1012px){.double-feature-block__overlay-1{padding:0 20px}}.double-feature-block__overlay-2{position:relative;z-index:2}@media only screen and (min-width: 320px){.double-feature-block__overlay-2{width:calc(100% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 560px){.double-feature-block__overlay-2{width:calc(66.6666666667% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1012px){.double-feature-block__overlay-2{width:calc(71.4285714286% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1380px){.double-feature-block__overlay-2{width:calc(71.4285714286% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 320px){.double-feature-block__overlay-2{margin-left:calc(0% - 0px + 0px)}}@media only screen and (min-width: 560px){.double-feature-block__overlay-2{margin-left:calc(33.3333333333% - 0px + 0px)}}@media only screen and (min-width: 1012px){.double-feature-block__overlay-2{margin-left:calc(14.2857142857% - 0px + 0px)}}@media only screen and (min-width: 1380px){.double-feature-block__overlay-2{margin-left:calc(14.2857142857% - 0px + 0px)}}@media only screen and (min-width: 320px){.double-feature-block__overlay-2{padding-right:10px}}@media only screen and (min-width: 560px){.double-feature-block__overlay-2{padding-right:15px}}@media only screen and (min-width: 1012px){.double-feature-block__overlay-2{padding-right:13px}}@media only screen and (min-width: 1380px){.double-feature-block__overlay-2{padding-right:15px}}.double-feature-block__overlay-2:last-child{margin-bottom:80px}@media all and (max-width: 1012px){.double-feature-block__overlay-2{padding:0 20px}}.double-feature-block__title-1,.double-feature-block__title-2{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;margin-top:80px;margin-bottom:40px}@media all and (min-width: 560px){.double-feature-block__title-1,.double-feature-block__title-2{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.double-feature-block__title-1,.double-feature-block__title-2{font-size:2.5rem;line-height:3rem}}@media all and (min-width: 560px){.double-feature-block__title-2{margin-right:40px}}@media all and (min-width: 1012px){.double-feature-block__title-2{margin-right:80px}}.double-feature-block__title-1,.double-feature-block__text-1,.double-feature-block__link-1{color:#000}.double-feature-block__title-2,.double-feature-block__text-2,.double-feature-block__link-2{color:#fff}.double-feature-block__text-1,.double-feature-block__text-2{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1rem;line-height:1.5rem;margin-bottom:20px;margin-right:25px}@media all and (min-width: 560px){.double-feature-block__text-1,.double-feature-block__text-2{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.double-feature-block__text-1,.double-feature-block__text-2{font-size:1.125rem;line-height:1.875rem}}.double-feature-block__link-1{color:#000}.double-feature-block__link-1:hover{color:#ed1b2d}.double-feature-block__link-1:hover svg use{fill:#ed1b2d}.double-feature-block__link-1 svg use{fill:#000;transition:fill 0ms ease-in-out}.double-feature-block__link-2{color:#fff}.double-feature-block__link-2:hover{color:#ed1b2d}.double-feature-block__link-2:hover svg use{fill:#ed1b2d}.double-feature-block__link-2 svg use{fill:#fff;transition:fill 0ms ease-in-out}.double-feature-block__link-2 .link__label{border-color:#fff}.embed-code-block{margin-left:auto;margin-right:auto}.embed-code-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.embed-code-block{float:none;max-width:100%}html.show-grid .embed-code-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.embed-code-block{float:none;max-width:100%}html.show-grid .embed-code-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.embed-code-block{float:none;max-width:100%}html.show-grid .embed-code-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.embed-code-block{float:none;max-width:1380px}html.show-grid .embed-code-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.embed-code-block__content{text-align:center}.embed-code-block__content iframe{display:inline-block !important}@media all and (min-width: 320px)and (max-width: 560px){.embed-code-block__content iframe{max-width:350px !important}}.embed-code-block__content .twitter-tweet{display:inline-block !important}@media all and (min-width: 320px)and (max-width: 560px){.embed-code-block__content .twitter-tweet{max-width:350px !important}}.fact-block{margin-left:auto;margin-right:auto}.fact-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.fact-block{float:none;max-width:100%}html.show-grid .fact-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.fact-block{float:none;max-width:100%}html.show-grid .fact-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.fact-block{float:none;max-width:100%}html.show-grid .fact-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.fact-block{float:none;max-width:1380px}html.show-grid .fact-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media all and (min-width: 560px){.fact-block{height:448px}}@media only screen and (min-width: 320px){.fact-block__fact-left{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.fact-block__fact-left{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.fact-block__fact-left{width:calc(25% - 32.5px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.fact-block__fact-left{width:calc(25% - 37.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.fact-block__fact-left{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.fact-block__fact-left{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.fact-block__fact-left{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.fact-block__fact-left{margin-left:calc(16.6666666667% - 35px + 60px)}}@media all and (max-width: 1380px){.fact-block__fact-left{margin-bottom:20px}}@media all and (min-width: 1012px){.fact-block__fact-left{height:calc(100% - 48px);display:flex;align-items:center}}.fact-block__fact-left-title{text-transform:uppercase;font-family:"Atlas Grotesk Bold";display:block;margin-bottom:24px}.fact-block__image{position:relative}@media only screen and (min-width: 320px){.fact-block__image{width:calc(100% - 40px);float:right;margin-right:20px}}@media only screen and (min-width: 560px){.fact-block__image{width:calc(83.3333333333% - 55px);float:right;margin-right:30px}}@media only screen and (min-width: 1012px){.fact-block__image{width:calc(50% - 39px);float:right;margin-right:26px}}@media only screen and (min-width: 1380px){.fact-block__image{width:calc(50% - 45px);float:right;margin-right:30px}}@media all and (min-width: 560px){.fact-block__image{height:calc(100% - 48px);display:flex;align-items:center}}.fact-block__image .background-image{width:100%;z-index:0;height:192px}@media all and (min-width: 560px){.fact-block__image .background-image{position:absolute;height:100%}}@media all and (min-width: 560px){.fact-block__image .background-image::after{height:100%;width:80%;content:"";display:block;background-image:linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0))}}.fact-block__image-credits{margin-top:8px;margin-bottom:40px}@media only screen and (min-width: 320px){.fact-block__image-credits{width:calc(100% - 40px);float:right;margin-right:20px}}@media only screen and (min-width: 560px){.fact-block__image-credits{width:calc(83.3333333333% - 55px);float:right;margin-right:30px}}@media only screen and (min-width: 1012px){.fact-block__image-credits{width:calc(50% - 39px);float:right;margin-right:26px}}@media only screen and (min-width: 1380px){.fact-block__image-credits{width:calc(50% - 45px);float:right;margin-right:30px}}.fact-block__image-credits p{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.125rem;color:#acacac}@media all and (min-width: 1380px){.fact-block__image-credits p{font-size:0.9375rem;line-height:1.125rem}}.fact-block__fact-right{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;z-index:1;width:80%}@media all and (min-width: 560px){.fact-block__fact-right{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.fact-block__fact-right{font-size:2.5rem;line-height:3rem}}@media all and (max-width: 1380px){.fact-block__fact-right{margin-bottom:-20px}}@media all and (min-width: 560px){.fact-block__fact-right{transform:translateX(-64px)}}.form-block{margin-left:auto;margin-right:auto}.form-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.form-block{float:none;max-width:100%}html.show-grid .form-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.form-block{float:none;max-width:100%}html.show-grid .form-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.form-block{float:none;max-width:100%}html.show-grid .form-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.form-block{float:none;max-width:1380px}html.show-grid .form-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.form-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.form-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.form-block__content{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.form-block__content{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.form-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.form-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.form-block__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.form-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.form-block__title{color:#ed1b2d;margin-bottom:16px}@media only screen and (min-width: 560px){.form-block__title{margin-left:calc(
          -1 *
            (
              (100vw - 30px * 2) /
                6 *
                1
            ) -
            5px
        )}}@media only screen and (min-width: 1012px){.form-block__title{margin-left:calc(
          -1 *
            (
              (100vw - 26px * 2) /
                12 *
                2
            ) -
            4px
        )}}@media only screen and (min-width: 1380px){.form-block__title{margin-left:calc(
          -1 *
            (
              1350px /
                12 *
                2
            )
        )}}@media all and (min-width: 560px){.form-block__title{margin-bottom:40px}}.form-block__form{display:none}.form-block__form.is-visible{display:block}.form-block__success{display:none}.form-block__success.is-visible{display:block}.form-block__disclaimer{margin-bottom:32px}.form-steps{margin-bottom:55px;position:relative;left:auto;width:auto;top:auto}@media all and (min-width: 1012px){.form-steps{margin-bottom:75px}}.form-steps__layout-container{margin-left:auto;margin-right:auto}.form-steps__layout-container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.form-steps__layout-container{float:none;max-width:100%}html.show-grid .form-steps__layout-container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.form-steps__layout-container{float:none;max-width:100%}html.show-grid .form-steps__layout-container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.form-steps__layout-container{float:none;max-width:100%}html.show-grid .form-steps__layout-container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.form-steps__layout-container{float:none;max-width:1380px}html.show-grid .form-steps__layout-container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.form-steps__steps{display:flex;flex-direction:row;position:relative;z-index:1}@media only screen and (min-width: 320px){.form-steps__steps{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.form-steps__steps{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.form-steps__steps{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.form-steps__steps{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.form-steps__steps{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.form-steps__steps{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.form-steps__steps{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.form-steps__steps{margin-left:calc(16.6666666667% - 35px + 60px)}}.form-steps::after{content:"";display:block;height:36px;background:#e9e0c4;width:50vw;position:absolute;left:0;bottom:0;z-index:0}.form-step{color:#e9e0c4;flex:0 1 auto;width:100%}.form-step a{color:inherit}.form-step__label{display:block;padding-left:8px;margin-bottom:8px;cursor:default}.form-step__title{background:#fff;display:flex;flex-direction:row;font-family:"Atlas Grotesk Medium";font-size:15px;align-items:center;height:36px}.form-step.form-step--is-clickable .form-step__title{background:#e9e0c4;color:#000}.form-step.form-step--is-current .form-step__title{position:relative}.form-step.form-step--is-current .form-step__title::after{content:"";position:absolute;right:20px;top:0;border-top:18px solid #fff;border-bottom:18px solid #fff;border-left:18px solid #e9e0c4}.form-step.form-step--is-current .form-step__title::before{content:"";position:absolute;right:0;top:0;height:36px;width:20px;background:#fff}.form-step.form-step--is-active{color:#ed1b2d}.form-step.form-step--is-active .form-step__title{color:#ed1b2d}.goals-block{background-color:#e9e0c4;padding:32px 0 40px;position:relative;z-index:100}@media all and (min-width: 1012px){.goals-block{padding:56px 0 96px}}.goals-block__container{margin-left:auto;margin-right:auto}.goals-block__container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.goals-block__container{float:none;max-width:100%}html.show-grid .goals-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.goals-block__container{float:none;max-width:100%}html.show-grid .goals-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.goals-block__container{float:none;max-width:100%}html.show-grid .goals-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.goals-block__container{float:none;max-width:1380px}html.show-grid .goals-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.goals-block__title{color:#ed1b2d;margin-bottom:12px}@media only screen and (min-width: 320px){.goals-block__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.goals-block__title{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.goals-block__title{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.goals-block__title{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.goals-block__title{margin-right:calc(
        0% - 20px + 20px
      )}}@media only screen and (min-width: 560px){.goals-block__title{margin-right:calc(
        0% - 30px + 30px
      )}}@media only screen and (min-width: 1012px){.goals-block__title{margin-right:calc(
        50% - 39px + 26px
      )}}@media only screen and (min-width: 1380px){.goals-block__title{margin-right:calc(
        50% - 45px + 30px
      )}}.goals-block__description{margin-bottom:56px}@media only screen and (min-width: 320px){.goals-block__description{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.goals-block__description{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.goals-block__description{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.goals-block__description{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.goals-block__description{margin-right:calc(
        0% - 20px + 20px
      )}}@media only screen and (min-width: 560px){.goals-block__description{margin-right:calc(
        0% - 30px + 30px
      )}}@media only screen and (min-width: 1012px){.goals-block__description{margin-right:calc(
        50% - 39px + 26px
      )}}@media only screen and (min-width: 1380px){.goals-block__description{margin-right:calc(
        50% - 45px + 30px
      )}}.goals-block__description span{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.125rem;line-height:1.75rem}@media all and (min-width: 560px){.goals-block__description span{font-size:1.25rem;line-height:1.75rem}}@media all and (min-width: 1380px){.goals-block__description span{font-size:1.5rem;line-height:2.25rem}}.goals-block__visual{margin-bottom:56px;text-align:center}@media only screen and (min-width: 320px){.goals-block__visual{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.goals-block__visual{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.goals-block__visual{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.goals-block__visual{width:calc(100% - 60px);float:left;margin-left:30px}}.goals-block__visual img{max-height:192px;max-width:100%}.goals-block__goals{clear:both}@media only screen and (min-width: 320px){.goals-block__goal{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.goals-block__goal{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.goals-block__goal{width:calc(33.3333333333% - 34.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.goals-block__goal{width:calc(33.3333333333% - 40px);float:left;margin-left:30px}}.image-block.full-width{margin-left:auto;margin-right:auto}.image-block.full-width::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.image-block.full-width{float:none;max-width:100%}html.show-grid .image-block.full-width{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.image-block.full-width{float:none;max-width:100%}html.show-grid .image-block.full-width{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.image-block.full-width{float:none;max-width:100%}html.show-grid .image-block.full-width{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.image-block.full-width{float:none;max-width:1380px}html.show-grid .image-block.full-width{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.image-block.half-width{vertical-align:top;display:inline-block;margin-right:0;margin-left:0;margin-left:auto;margin-right:auto;margin-left:0}.image-block.half-width::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.image-block.half-width{float:none;max-width:100%}html.show-grid .image-block.half-width{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.image-block.half-width{float:none;max-width:100%}html.show-grid .image-block.half-width{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.image-block.half-width{float:none;max-width:calc(50% + 12px)}html.show-grid .image-block.half-width{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(16.6666666667% - 30.3333333333px + 26px))}}@media only screen and (min-width: 1380px){.image-block.half-width{float:none;max-width:705px}html.show-grid .image-block.half-width{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(16.6666666667% - 35px + 30px))}}@media all and (min-width: 1380px){.image-block.half-width{margin-left:calc(
      ((100vw - 1380px) * 0.5) + 30px - 30px
    );margin-left:calc(
      calc(calc(100vw - 1380px) * 0.5) + 30px - 30px
    )}}@media all and (min-width: 1012px){.image-block.half-width+.half-width{margin-left:-30px}}@media all and (min-width: 1380px){.image-block.half-width+.half-width{margin-left:-34px}}.image-block.half-width+.half-width+.half-width{margin-left:0}@media all and (min-width: 1380px){.image-block.half-width+.half-width+.half-width{margin-left:calc(
      ((100vw - 1380px) * 0.5) + 30px - 30px
    );margin-left:calc(
      calc(calc(100vw - 1380px) * 0.5) + 30px - 30px
    )}}@media all and (min-width: 1012px){.image-block.half-width+.half-width+.half-width+.half-width{margin-left:-30px}}@media all and (min-width: 1380px){.image-block.half-width+.half-width+.half-width+.half-width{margin-left:-34px}}.image-block.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:0}@media all and (min-width: 1380px){.image-block.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:calc(
      ((100vw - 1380px) * 0.5) + 30px - 30px
    );margin-left:calc(
      calc(calc(100vw - 1380px) * 0.5) + 30px - 30px
    )}}@media all and (min-width: 1012px){.image-block.half-width+.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:-30px}}@media all and (min-width: 1380px){.image-block.half-width+.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:-34px}}.image-block.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:0}@media all and (min-width: 1380px){.image-block.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:calc(
      ((100vw - 1380px) * 0.5) + 30px - 30px
    );margin-left:calc(
      calc(calc(100vw - 1380px) * 0.5) + 30px - 30px
    )}}@media all and (min-width: 1012px){.image-block.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:-30px}}@media all and (min-width: 1380px){.image-block.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:-34px}}.image-block.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:0}@media all and (min-width: 1380px){.image-block.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width+.half-width{margin-left:calc(
      ((100vw - 1380px) * 0.5) + 30px - 30px
    );margin-left:calc(
      calc(calc(100vw - 1380px) * 0.5) + 30px - 30px
    )}}.image-block__image{margin-bottom:20px}@media only screen and (min-width: 320px){.image-block__image{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.image-block__image{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.image-block__image{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.image-block__image{width:calc(100% - 60px);float:left;margin-left:30px}}.lightweight-content .image-block__image{margin-bottom:4px}.image-block__title{text-transform:uppercase;font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.1875rem;margin-bottom:4px;color:#ed1b2d}@media only screen and (min-width: 320px){.image-block__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.image-block__title{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.image-block__title{width:calc(83.3333333333% - 47.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.image-block__title{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media all and (min-width: 560px){.image-block__title{font-size:0.75rem;line-height:1.1875rem}}@media all and (min-width: 1380px){.image-block__title{font-size:0.875rem;line-height:1.0625rem}}@media only screen and (min-width: 320px){.image-block__clear{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.image-block__clear{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.image-block__clear{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.image-block__clear{width:calc(100% - 60px);float:left;margin-left:30px}}.image-block__credits{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.125rem;color:#acacac}@media only screen and (min-width: 320px){.image-block__credits{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.image-block__credits{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.image-block__credits{width:calc(83.3333333333% - 47.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.image-block__credits{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media all and (min-width: 1380px){.image-block__credits{font-size:0.9375rem;line-height:1.125rem}}.content-stream--half>.image-block .image-block{margin-left:auto;margin-right:auto}.content-stream--half>.image-block .image-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.content-stream--half>.image-block .image-block{float:none;max-width:100%}html.show-grid .content-stream--half>.image-block .image-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.content-stream--half>.image-block .image-block{float:none;max-width:100%}html.show-grid .content-stream--half>.image-block .image-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.content-stream--half>.image-block .image-block{float:none;max-width:100%}html.show-grid .content-stream--half>.image-block .image-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.content-stream--half>.image-block .image-block{float:none;max-width:1380px}html.show-grid .content-stream--half>.image-block .image-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.images-block{margin-left:auto;margin-right:auto}.images-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.images-block{float:none;max-width:100%}html.show-grid .images-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.images-block{float:none;max-width:100%}html.show-grid .images-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.images-block{float:none;max-width:100%}html.show-grid .images-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.images-block{float:none;max-width:1380px}html.show-grid .images-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.images-block .images-block__images{display:flex;flex-flow:row wrap;padding:20px}.images-block-image{margin-top:10px;margin-bottom:10px}.images-block-image--full-width{width:calc(100% - 40px);margin-left:10px}.images-block-image--half-width{width:calc(50% - 30px);margin-left:10px;margin-right:10px}.images-block-image__title{text-transform:uppercase;font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.1875rem;color:#ed1b2d;margin-bottom:4px}@media all and (min-width: 560px){.images-block-image__title{font-size:0.75rem;line-height:1.1875rem}}@media all and (min-width: 1380px){.images-block-image__title{font-size:0.875rem;line-height:1.0625rem}}.images-block-image__credits{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.125rem;color:#acacac}@media all and (min-width: 1380px){.images-block-image__credits{font-size:0.9375rem;line-height:1.125rem}}.images-block-image__image{margin-bottom:20px}.lightweight-content .images-block-image__image{margin-bottom:4px}.intervention-overlay{pointer-events:none;transition:transform 1000ms ease,opacity 1000ms ease-out}.intervention-overlay--active{pointer-events:all}.intervention-overlay--fade-out{opacity:.5;transform:translateY(-100%)}.intervention-overlay-block{left:0;top:0;pointer-events:none;position:absolute;width:100%;z-index:20;opacity:0}.intervention-overlay-block__outer-container{position:relative;height:100%}.intervention-overlay-block__container-positioner{position:absolute;width:100%;left:0;bottom:200px}@media all and (min-width: 320px)and (max-width: 560px){.intervention-overlay-block__container-positioner{bottom:50px}}.intervention-overlay-block__container{margin-left:auto;margin-right:auto}.intervention-overlay-block__container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.intervention-overlay-block__container{float:none;max-width:100%}html.show-grid .intervention-overlay-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.intervention-overlay-block__container{float:none;max-width:100%}html.show-grid .intervention-overlay-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.intervention-overlay-block__container{float:none;max-width:100%}html.show-grid .intervention-overlay-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.intervention-overlay-block__container{float:none;max-width:1380px}html.show-grid .intervention-overlay-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.intervention-overlay-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.intervention-overlay-block__content{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.intervention-overlay-block__content{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.intervention-overlay-block__content{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.intervention-overlay-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.intervention-overlay-block__content{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.intervention-overlay-block__content{margin-left:calc(50% - 39px + 52px)}}@media only screen and (min-width: 1380px){.intervention-overlay-block__content{margin-left:calc(50% - 45px + 60px)}}.intervention-overlay-block__title{color:#fff}@media all and (min-width: 320px)and (max-width: 560px){.intervention-overlay-block__title{margin-bottom:5px}}.intervention-overlay-block__title-link{color:#fff;padding:10px 0;font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.875rem;line-height:1.4375rem}@media all and (min-width: 560px){.intervention-overlay-block__title-link{font-size:0.8125rem;line-height:1.4375rem}}@media all and (min-width: 1380px){.intervention-overlay-block__title-link{font-size:0.9375rem;line-height:1.4375rem}}@media all and (min-width: 320px)and (max-width: 560px){.intervention-overlay-block__title-link{width:70%;display:flex;flex-direction:row;align-items:center}}.intervention-overlay-block__title-link:hover{text-decoration:underline}.intervention-overlay-block__title-link span{margin-right:5px;border-bottom:none}.intervention-overlay-block__title-link svg{margin-right:12px}@media all and (min-width: 320px)and (max-width: 560px){.intervention-overlay-block__title-link svg{height:25px;width:25px;vertical-align:bottom}}.intervention-overlay-block__title-link svg use{fill:#fff}.intervention-overlay-block__button{color:#fff;border-color:#fff}.intervention-overlay-block__subtitle{color:#fff;display:inline-block;margin-bottom:10px;font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1rem;line-height:1.5rem}@media all and (min-width: 560px){.intervention-overlay-block__subtitle{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.intervention-overlay-block__subtitle{font-size:1.125rem;line-height:1.875rem}}.intervention-overlay-block__title-logo{display:inline-block;margin-bottom:10px}.intervention-overlay-block__title-logo img.picture__img{width:110px}.intervention-overlay-block--fade-out{opacity:0}.intervention-overlay-block--hide{display:none}.intervention-overlay-block--title-variant{transition:transform 1000ms ease,opacity 1000ms ease-out}.intervention-overlay-block--title-variant.intervention-overlay-block--active{pointer-events:all;opacity:1}.intervention-overlay-block--button-variant{transition:opacity 300ms ease;bottom:0;top:auto}.intervention-overlay-block--button-variant.intervention-overlay-block--active{opacity:1}.intervention-overlay-block--button-variant.intervention-overlay-block--active .intervention-overlay-block__title,.intervention-overlay-block--button-variant.intervention-overlay-block--active .intervention-overlay-block__button{pointer-events:all}.intervention-overlay-block--button-variant .intervention-overlay-block__outer-container{min-height:100vh}.intervention-overlay-block--button-variant .intervention-overlay-block__container-positioner{position:absolute;bottom:40vh}@media all and (min-width: 320px)and (max-width: 560px){.intervention-overlay-block--button-variant .intervention-overlay-block__container-positioner{bottom:50%;max-width:calc(100% - 80px);transform:translateY(50%)}}.intervention-overlay-block--button-variant .intervention-overlay-block__content{max-width:90%;width:590px}@media only screen and (min-width: 320px){.intervention-overlay-block--button-variant .intervention-overlay-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.intervention-overlay-block--button-variant .intervention-overlay-block__content{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.intervention-overlay-block--button-variant .intervention-overlay-block__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.intervention-overlay-block--button-variant .intervention-overlay-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.intervention-overlay-block--button-variant .intervention-overlay-block__title{margin-bottom:15px}.intro-text-block{margin-left:auto;margin-right:auto}.intro-text-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.intro-text-block{float:none;max-width:100%}html.show-grid .intro-text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.intro-text-block{float:none;max-width:100%}html.show-grid .intro-text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.intro-text-block{float:none;max-width:100%}html.show-grid .intro-text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.intro-text-block{float:none;max-width:1380px}html.show-grid .intro-text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.intro-text-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.intro-text-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.intro-text-block__content{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.intro-text-block__content{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}.kentaa-block{margin-left:auto;margin-right:auto}.kentaa-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.kentaa-block{float:none;max-width:100%}html.show-grid .kentaa-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.kentaa-block{float:none;max-width:100%}html.show-grid .kentaa-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.kentaa-block{float:none;max-width:100%}html.show-grid .kentaa-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.kentaa-block{float:none;max-width:1380px}html.show-grid .kentaa-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.kentaa-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.kentaa-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.kentaa-block__content{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.kentaa-block__content{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.kentaa-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.kentaa-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.kentaa-block__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.kentaa-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.kentaa-block iframe{min-height:500px;min-width:320px}.kentaa-block .kentaa-block__cookie-message{background:url(/static/b093ba5ba5e09e938fbc.jpg);color:#fff;display:inline-flex;flex-direction:column;font-size:.9375rem;height:484px;justify-content:center;line-height:1.5rem;padding:315px 20px 20px;text-align:center;width:320px}.kentaa-block .kentaa-block__cookie-message a{color:#fff;border-bottom:1px rgba(0,0,0,0) solid;border-bottom-color:#fff;transition:border-bottom-color 0ms ease-in-out;margin-top:5px;font-size:inherit;line-height:inherit}.kentaa-block .kentaa-block__cookie-message a:hover{color:#ed1b2d}.kentaa-block .kentaa-block__cookie-message a:hover{border-bottom-color:#ed1b2d}.kentaa-block:not(.kentaa-block--cookies-not-accepted) .kentaa-block__cookie-message{display:none}.keylink-block{background-color:#e9e0c4}.keylink-block__container{margin-left:auto;margin-right:auto;padding:32px 0 48px}.keylink-block__container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.keylink-block__container{float:none;max-width:100%}html.show-grid .keylink-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.keylink-block__container{float:none;max-width:100%}html.show-grid .keylink-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.keylink-block__container{float:none;max-width:100%}html.show-grid .keylink-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.keylink-block__container{float:none;max-width:1380px}html.show-grid .keylink-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media all and (min-width: 1012px){.keylink-block__container{padding:72px 0 56px}}.keylink-block__subtitle{margin-bottom:12px;z-index:1;position:relative;font-weight:700;font-size:1.125rem;line-height:1.875rem;font-family:"Atlas Grotesk Bold"}@media only screen and (min-width: 320px){.keylink-block__subtitle{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.keylink-block__subtitle{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.keylink-block__subtitle{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.keylink-block__subtitle{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.keylink-block__subtitle{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.keylink-block__subtitle{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.keylink-block__subtitle{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.keylink-block__subtitle{margin-left:calc(16.6666666667% - 35px + 60px)}}.keylink-block__title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;z-index:1;position:relative}@media only screen and (min-width: 320px){.keylink-block__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.keylink-block__title{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.keylink-block__title{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.keylink-block__title{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.keylink-block__title{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.keylink-block__title{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.keylink-block__title{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.keylink-block__title{margin-left:calc(16.6666666667% - 35px + 60px)}}@media all and (min-width: 560px){.keylink-block__title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.keylink-block__title{font-size:2.5rem;line-height:3rem}}@media all and (max-width: 1380px){.keylink-block__title{margin-bottom:24px}}.keylink-block__image{margin-bottom:32px}@media only screen and (min-width: 320px){.keylink-block__image{width:calc(83.3333333333% - 36.6666666667px);float:right;margin-right:20px}}@media only screen and (min-width: 560px){.keylink-block__image{width:calc(83.3333333333% - 55px);float:right;margin-right:30px}}@media only screen and (min-width: 1012px){.keylink-block__image{width:calc(41.6666666667% - 36.8333333333px);float:right;margin-right:26px}}@media only screen and (min-width: 1380px){.keylink-block__image{width:calc(41.6666666667% - 42.5px);float:right;margin-right:30px}}@media only screen and (min-width: 320px){.keylink-block__image{left:calc(0% - 20px + 20px);position:relative}}@media only screen and (min-width: 560px){.keylink-block__image{left:calc(0% - 30px + 30px);position:relative}}@media only screen and (min-width: 1012px){.keylink-block__image{left:calc(-16.6666666667% - 21.6666666667px + 26px);position:relative}}@media only screen and (min-width: 1380px){.keylink-block__image{left:calc(-16.6666666667% - 25px + 30px);position:relative}}@media all and (min-width: 1012px){.keylink-block__image{margin-bottom:12px}}.keylink-block__intro{clear:both;margin-bottom:40px}@media only screen and (min-width: 320px){.keylink-block__intro{width:calc(83.3333333333% - 36.6666666667px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.keylink-block__intro{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.keylink-block__intro{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.keylink-block__intro{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.keylink-block__intro{left:calc(0% - 20px + 20px);position:relative}}@media only screen and (min-width: 560px){.keylink-block__intro{left:calc(0% - 30px + 30px);position:relative}}@media only screen and (min-width: 1012px){.keylink-block__intro{left:calc(16.6666666667% - 30.3333333333px + 26px);position:relative}}@media only screen and (min-width: 1380px){.keylink-block__intro{left:calc(16.6666666667% - 35px + 30px);position:relative}}@media only screen and (min-width: 320px){.keylink-block__button{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.keylink-block__button{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.keylink-block__button{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.keylink-block__button{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.keylink-block__button{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.keylink-block__button{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.keylink-block__button{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.keylink-block__button{margin-left:calc(16.6666666667% - 35px + 60px)}}.keylink-block__overview-link{position:relative;text-align:right}@media only screen and (min-width: 320px){.keylink-block__overview-link{width:calc(100% - 40px);float:right;margin-right:20px}}@media only screen and (min-width: 560px){.keylink-block__overview-link{width:calc(100% - 60px);float:right;margin-right:30px}}@media only screen and (min-width: 1012px){.keylink-block__overview-link{width:calc(25% - 32.5px);float:right;margin-right:26px}}@media only screen and (min-width: 1380px){.keylink-block__overview-link{width:calc(25% - 37.5px);float:right;margin-right:30px}}@media all and (min-width: 320px)and (max-width: 560px){.keylink-block__overview-link{margin-top:96px}}.keylink-block__overview-link>svg{width:56px;height:56px;position:absolute;top:-64px;right:0}.keylink-block--as-content .keylink-block__container{padding:0}@media all and (min-width: 1012px){.keylink-block--as-content .keylink-block__container{padding:0}}.keylink-block--bg-white{background-color:#fff}.keylink-block--as-content .keylink-block__container{padding:0}@media all and (min-width: 1012px){.keylink-block--as-content .keylink-block__container{padding:0}}.link-list-block{margin-left:auto;margin-right:auto}.link-list-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.link-list-block{float:none;max-width:100%}html.show-grid .link-list-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.link-list-block{float:none;max-width:100%}html.show-grid .link-list-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.link-list-block{float:none;max-width:100%}html.show-grid .link-list-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.link-list-block{float:none;max-width:1380px}html.show-grid .link-list-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.link-list-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.link-list-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.link-list-block__content{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.link-list-block__content{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.link-list-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.link-list-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.link-list-block__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.link-list-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.link-list-block__list li{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem;counter-increment:item;position:relative;padding-left:32px}@media all and (min-width: 560px){.link-list-block__list li{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.link-list-block__list li{font-size:1.125rem;line-height:1.875rem}}.link-list-block__list li::before{content:"•";position:absolute;left:0;top:0}.map-block{position:relative}.map-block__map{height:calc(85vh - 40px);width:100%}@media all and (min-width: 1012px){.map-block__map{height:85vh}}.map-block__map.leaflet-container{background-color:#000}.map-block__map .leaflet-pane.leaflet-zoom-anim .leaflet-overlay-pane,.map-block__map .leaflet-pane.leaflet-zoom-anim-touch .leaflet-overlay-pane{opacity:0;transition:opacity 0}.map-block__map .leaflet-pane>svg path.leaflet-interactive{pointer-events:auto;cursor:pointer;fill:#868686;fill-opacity:.8;stroke:#222;stroke-width:1px;transform:fill 200ms ease-in-out}.map-block__map .leaflet-pane>svg path.leaflet-interactive.is-active{fill:#ed1b2d}.map-block__map .leaflet-pane>svg path.leaflet-interactive:hover{fill:#ed1b2d}.map-block__map .leaflet-tile-pane::after{background-color:rgba(255,255,255,.15);width:100%;height:100%;content:""}.map-block__map .leaflet-map-pane{width:100%;height:100%}.map-block__map .leaflet-pane.leaflet-overlay-pane{width:100%;height:100%;position:relative;transition:opacity 300ms ease-in-out}.map-block__map .leaflet-marker-pane .leaflet-marker-icon{background-color:rgba(0,0,0,0);border:none;pointer-events:none}.map-block__map .leaflet-marker-pane .leaflet-marker-icon .country-label{font-size:14px;font-family:"Atlas Grotesk Bold";padding:20px;white-space:nowrap}.map-block__map .leaflet-control-zoom{bottom:32px;right:16px}@media all and (min-width: 1012px){.map-block__map .leaflet-control-zoom{right:32px}}.map-block__map .pattern{background-color:rgba(255,255,255,.15);background-image:url(/static/bae951ad88dccc253e0f.png);background-repeat:repeat;content:"";width:100%;height:100%;position:absolute;left:0;top:0;pointer-events:none;z-index:4}.map-block__title{color:#fff;margin-bottom:16px}.map-block__infos{position:absolute;top:80px;left:20px}@media all and (max-width: 560px){.map-block__infos{width:calc(100% - 40px)}}@media all and (min-width: 1012px){.map-block__infos{top:64px;left:64px}}.map-block__infos .toggle{width:-moz-fit-content;width:fit-content}.map-block .map-block__locations{position:absolute;bottom:0;padding-bottom:32px;left:0;width:100%}.map-block .location{flex-direction:column;width:100%;display:none;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0), white 85%);padding:64px 16px 32px}@media all and (min-width: 1012px){.map-block .location{padding:128px 16px 32px 0;flex-direction:row}}.map-block .location.is-active{display:flex}.map-block .location__title{margin-bottom:8px}.map-block .location__description{margin-bottom:8px}.map-block .location__image{width:176px;height:110px;margin-right:30px;margin-top:36px}@media all and (max-width: 1012px){.map-block .location__image{display:none}}@media all and (min-width: 1380px){.map-block .location__image{margin-top:44px}}@media all and (max-width: 1012px){.map-block .location__info{margin-bottom:16px}}@media all and (min-width: 1012px){.map-block .location__info{width:320px;margin-right:80px}}@media all and (min-width: 1380px){.map-block .location__info{width:480px}}@media all and (min-width: 1012px){.map-block .location__facts{width:320px}}.map-block .location__projects{margin-bottom:12px}@media all and (max-width: 1012px){.map-block .location__projects{display:block}}.map-block .location__affected{margin-bottom:8px}.map-block .location__link{margin-bottom:8px}.map-block .location__close{color:#222;cursor:pointer}.map-block .location__close:hover{color:#ed1b2d}.map-block .location__close:hover svg use{fill:#ed1b2d}.map-block .location__close svg use{fill:#222;transition:fill 0ms ease-in-out}@media all and (max-width: 1012px){.map-block .location__close{position:absolute;top:32px;right:20px}}@media all and (min-width: 1012px){.map-block .location__close{margin-top:-8px}}.map-block .location__close svg{width:32px;height:32px}.home__map .map-block{margin-bottom:0}.home__map .map-block__map{height:calc(100vh - 40px)}@media all and (min-width: 1012px){.home__map .map-block__map{height:100vh}}.micrio-block{color:#fff;position:relative;height:100vh;min-height:100vh;overflow:hidden}.micrio-block__close-freemode{fill:#222;padding:10px}.micrio-block__close-freemode svg{width:40px;height:40px}.intervention-page:not(.intervention-page--freemode) .micrio-block__close-freemode{display:none}@media all and (min-width: 560px){.micrio-block__close-freemode{display:none}}.micrio-block__controls{position:fixed;top:0;right:0;z-index:200}.micrio-block__foreground{pointer-events:none;position:fixed;bottom:0;left:0;width:100%;height:100vh;z-index:10}.micrio-block micr-io{background:#000;width:100vw;height:100vh;pointer-events:none;position:fixed;bottom:0;left:0;z-index:1}.micrio-block__container{position:relative;height:100%;background-color:#000}.micrio-block__container .controls{position:absolute;margin-right:25px;bottom:6px}.micrio-block__container .controls .social,.micrio-block__container .controls .fullscreen,.micrio-block__container .controls .zoom-in,.micrio-block__container .controls .zoom-out,.micrio-block__container .controls .arrow-down,.micrio-block__container .controls .arrow-up{display:none}.micrio-block__container .controls .slide-counter{order:1;font-size:18px;font-family:"Atlas Grotesk Bold";text-align:center;height:42px;text-shadow:0 0 5px rgba(0,0,0,.7);width:56px;display:flex;align-items:center;justify-content:center}.micrio-block__overlay{position:absolute;top:0;left:0;width:100%;height:100%;content:"";background-image:linear-gradient(rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.9))}.micrio-block .micrio-container .marker-popup{background:none;box-shadow:none;max-height:90vh;max-width:calc(100vw - 76px);width:100%;outline:none;overflow:hidden;pointer-events:all}@media all and (min-width: 1012px){.micrio-block .micrio-container .marker-popup{max-width:calc(100vw - 140px);overflow:auto;width:460px}}.micrio-block .micrio-container .marker-popup:last-child{margin-bottom:40vh}.micrio-block .micrio-container .marker-popup button.control.close{display:none}.micrio-block .micrio-container .marker-popup article{overflow:visible;padding:0;pointer-events:none;width:320px}.micrio-block .micrio-container .marker-popup article iframe{pointer-events:all}.micrio-block .micrio-container .marker-popup h3{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:32px;line-height:48px;background-color:#000;-webkit-box-decoration-break:clone;box-decoration-break:clone;display:inline;padding:4px 10px}.micrio-block .micrio-container .marker-popup .body{background:rgba(255,255,255,.95);padding:16px 20px 20px;max-width:calc(100vw - 76px);width:100%}@media all and (min-width: 1012px){.micrio-block .micrio-container .marker-popup .body{max-width:calc(100vw - 140px);width:440px}}.micrio-block .micrio-container .marker-popup p{font-family:"Atlas Grotesk Regular";font-size:15px;line-height:20px;color:#000}.micrio-block .micrio-container .marker-container{display:block;opacity:0;pointer-events:none;transition:opacity 1200ms ease}.micrio-block .micrio-container .marker-container .marker{background:red;border:none;box-shadow:none;width:28px;height:28px;display:flex;align-items:center;justify-content:center}.micrio-block .micrio-container .marker-container .marker svg{fill:#fff;pointer-events:none;width:28px;height:28px}.micrio-block .micrio-container .marker-container .marker svg:last-child{display:none}.micrio-block .micrio-container .marker-container label{display:none}.micrio-block .micrio-container .marker-container.class-default.opened .marker{background:red;box-shadow:none}.micrio-block .micrio-container .marker-container.class-default.opened .marker:focus{background:red;box-shadow:none}.micrio-block .micrio-container .marker-container.class-default.opened .marker svg:first-child{display:none}.micrio-block .micrio-container .marker-container.class-default.opened .marker svg:last-child{display:block}.micrio-block .micrio-container .marker-container--visible{opacity:1;pointer-events:all;transition:none}.micrio-block .micrio-container .marker-container--preview{opacity:.5;pointer-events:none}.micrio-block .micrio-container .marker-scroll-tour::-webkit-scrollbar{display:none !important}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup{background:none;box-shadow:none;max-height:90vh;max-width:calc(100vw - 76px);width:100%;outline:none;overflow:hidden;pointer-events:all}@media all and (min-width: 1012px){.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup{max-width:calc(100vw - 140px);overflow:auto;width:460px}}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup:last-child{margin-bottom:40vh}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup button.control.close{display:none}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup article{overflow:visible;padding:0;pointer-events:none;width:320px}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup article iframe{pointer-events:all}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup h3{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:32px;line-height:48px;background-color:#000;-webkit-box-decoration-break:clone;box-decoration-break:clone;display:inline;padding:4px 10px}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup .body{background:rgba(255,255,255,.95);padding:16px 20px 20px;max-width:calc(100vw - 76px);width:100%}@media all and (min-width: 1012px){.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup .body{max-width:calc(100vw - 140px);width:440px}}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup p{font-family:"Atlas Grotesk Regular";font-size:15px;line-height:20px;color:#000}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup:first-child{visibility:hidden}@media all and (min-width: 320px)and (max-width: 560px){.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup{margin-right:auto;margin-left:auto}}@media all and (min-width: 560px){.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup:nth-child(2n+1){margin-right:0;margin-left:auto}.micrio-block .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup:nth-child(2n){margin-right:auto;margin-left:0}}.micrio-block--ending{position:relative}.micrio-block--ending micr-io{position:absolute;bottom:0;top:auto}.micrio-block--freemode{pointer-events:all}.micrio-block--freemode-enabled .micrio-container .marker-popup:last-child{margin-bottom:140vh}.micrio-block--freemode-enabled .micrio-container .marker-scroll-tour .marker-scroll-tour-container .marker-popup:last-child{margin-bottom:140vh}menu.controls button.micrio-icon.close{display:none}.marker-container>.marker-popup{top:90px}.marker-container .circle{opacity:0;display:block;pointer-events:none;transition:opacity 400ms ease,transform 400ms ease;transform:translate3d(-50%, -50%, 0)}.marker-container--active .circle{opacity:.5}.marker-container--child{z-index:25}.marker-container--zoomed .circle{transform:translate3d(-50%, -50%, 0) scale(0.84)}.newsletter-banner-block__container{margin-left:auto;margin-right:auto}.newsletter-banner-block__container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.newsletter-banner-block__container{float:none;max-width:100%}html.show-grid .newsletter-banner-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.newsletter-banner-block__container{float:none;max-width:100%}html.show-grid .newsletter-banner-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.newsletter-banner-block__container{float:none;max-width:100%}html.show-grid .newsletter-banner-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.newsletter-banner-block__container{float:none;max-width:1380px}html.show-grid .newsletter-banner-block__container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.newsletter-banner-block__visual{float:right;position:relative;z-index:2;margin-right:20%}.newsletter-banner-block__title-container{margin-bottom:20px;margin-top:-40px}@media only screen and (min-width: 320px){.newsletter-banner-block__title-container{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.newsletter-banner-block__title-container{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.newsletter-banner-block__title-container{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.newsletter-banner-block__title-container{width:calc(100% - 60px);float:left;margin-left:30px}}.newsletter-banner-block__title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;background-color:#ed1b2d;color:#fff;padding:2px 8px;display:inline;-webkit-box-decoration-break:clone;box-decoration-break:clone}@media all and (min-width: 560px){.newsletter-banner-block__title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.newsletter-banner-block__title{font-size:2.5rem;line-height:3rem}}@media only screen and (min-width: 320px){.newsletter-banner-block .form{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.newsletter-banner-block .form{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.newsletter-banner-block .form{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.newsletter-banner-block .form{width:calc(50% - 45px);float:left;margin-left:30px}}.newsletter-banner-block .form [name=email]{border:2px solid #ed1b2d;border-radius:2px;min-height:48px}.newsletter-banner-block .form [name=email]::-moz-placeholder{color:red;text-transform:uppercase}.newsletter-banner-block .form [name=email]::placeholder{color:red;text-transform:uppercase}.newsletter-banner-block__form-row{display:flex;flex-direction:row}.newsletter-banner-block__form-button{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.25rem;line-height:2.75rem;line-height:normal;display:inline-block;border:2px solid #222;padding:10px 20px;min-height:42px;box-sizing:border-box;border-radius:2px;vertical-align:top;width:-moz-fit-content;width:fit-content;color:#222;transition:border-color 200ms ease-in-out,color 200ms ease-in-out;background-color:#ed1b2d;border:none;color:#fff;position:relative;overflow:visible;left:-2px;min-height:48px}@media all and (min-width: 560px){.newsletter-banner-block__form-button{line-height:2.375rem}}@media all and (min-width: 1380px){.newsletter-banner-block__form-button{line-height:2.75rem}}@media all and (min-width: 560px){.newsletter-banner-block__form-button{height:42px;padding:0px 20px;max-width:calc(560px - 30px * 2)}}@media all and (min-width: 1012px){.newsletter-banner-block__form-button{max-width:calc(1012px - 26px * 2)}}@media all and (min-width: 1380px){.newsletter-banner-block__form-button{height:48px;max-width:calc(1380px - 26px * 2)}}.newsletter-banner-block__form-button:not(:disabled){cursor:pointer}.newsletter-banner-block__form-button:not(:disabled):hover{border-color:#ed1b2d;color:#ed1b2d}.newsletter-banner-block__form-button:disabled{color:#acacac;border-color:#acacac}.newsletter-banner-block__form-button--icon-only{padding:0 14px}@media all and (min-width: 1012px){.newsletter-banner-block__form-button--icon-only{padding:0 11px}}.newsletter-banner-block__form-button--icon-only svg{width:20px;height:20px;vertical-align:text-bottom}.newsletter-banner-block__form-button:not(:disabled):hover{color:#fff}@media all and (min-width: 1012px){.newsletter-banner-block__form-button:not(:disabled):hover svg use{stroke-dashoffset:0;opacity:1;transition:stroke-dashoffset 500ms ease-out,opacity 100ms ease-out}}.newsletter-banner-block__form-button:disabled{background-color:#e2e2e2;color:#acacac;pointer-events:none}.newsletter-banner-block__form-button svg{position:absolute;top:-8px;left:0;width:100%;height:58px}.newsletter-banner-block__form-button svg use{stroke:#222;stroke-dasharray:700;stroke-dashoffset:700;opacity:0;transition:stroke-dashoffset 500ms ease-out 100ms,opacity 100ms ease-out}.newsletter-banner-block__error{padding:10px 0;font-size:1rem;color:red;font-weight:bold}.page-link-block{padding-left:12px}.page-link-block a{background-color:#e9e0c4;display:block}.page-link-block__image{margin-left:-12px;margin-right:12px}.page-link-block__info{padding:8px 16px;display:flex;justify-content:space-between}.page-link-block__category,.page-link-block__meta{display:none;text-transform:uppercase}.page-link-block__content{padding:8px 16px;min-height:96px}.page-link-block__title{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.125rem;line-height:1.75rem;color:#222}@media all and (min-width: 560px){.page-link-block__title{font-size:1.25rem;line-height:1.75rem}}@media all and (min-width: 1380px){.page-link-block__title{font-size:1.5rem;line-height:2.25rem}}.alphabetic-partners-block{margin-left:auto;margin-right:auto}.alphabetic-partners-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.alphabetic-partners-block{float:none;max-width:100%}html.show-grid .alphabetic-partners-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.alphabetic-partners-block{float:none;max-width:100%}html.show-grid .alphabetic-partners-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.alphabetic-partners-block{float:none;max-width:100%}html.show-grid .alphabetic-partners-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.alphabetic-partners-block{float:none;max-width:1380px}html.show-grid .alphabetic-partners-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.alphabetic-partners-block__title{margin-bottom:24px}@media only screen and (min-width: 320px){.alphabetic-partners-block__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.alphabetic-partners-block__title{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.alphabetic-partners-block__title{width:calc(83.3333333333% - 47.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.alphabetic-partners-block__title{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.alphabetic-partners-block__title{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.alphabetic-partners-block__title{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.alphabetic-partners-block__title{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.alphabetic-partners-block__title{margin-left:calc(16.6666666667% - 35px + 60px)}}.alphabetic-partners-block__group-name{display:block;color:#ed1b2d}@media only screen and (min-width: 320px){.alphabetic-partners-block__group-name{width:calc(16.6666666667% - 23.3333333333px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.alphabetic-partners-block__group-name{width:calc(16.6666666667% - 35px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.alphabetic-partners-block__group-name{width:calc(8.3333333333% - 28.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.alphabetic-partners-block__group-name{width:calc(8.3333333333% - 32.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.alphabetic-partners-block__group-name{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.alphabetic-partners-block__group-name{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.alphabetic-partners-block__group-name{margin-left:calc(8.3333333333% - 28.1666666667px + 52px)}}@media only screen and (min-width: 1380px){.alphabetic-partners-block__group-name{margin-left:calc(8.3333333333% - 32.5px + 60px)}}@media all and (max-width: 1012px){.alphabetic-partners-block__group-name{margin-bottom:16px}}.alphabetic-partners-block__partners{font-size:0;margin-bottom:32px}@media only screen and (min-width: 320px){.alphabetic-partners-block__partners{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.alphabetic-partners-block__partners{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.alphabetic-partners-block__partners{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.alphabetic-partners-block__partners{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.alphabetic-partners-block__partners{margin-right:calc(
        0% - 20px + 20px
      )}}@media only screen and (min-width: 560px){.alphabetic-partners-block__partners{margin-right:calc(
        0% - 30px + 30px
      )}}@media only screen and (min-width: 1012px){.alphabetic-partners-block__partners{margin-right:calc(
        16.6666666667% - 30.3333333333px + 26px
      )}}@media only screen and (min-width: 1380px){.alphabetic-partners-block__partners{margin-right:calc(
        16.6666666667% - 35px + 30px
      )}}@media all and (min-width: 560px){.alphabetic-partners-block__partners{margin-bottom:72px}}.alphabetic-partners-block__partner{vertical-align:top;display:inline-block;margin-bottom:20px;width:100%}@media all and (min-width: 560px){.alphabetic-partners-block__partner{width:calc((100% - 30px)/2)}}@media all and (min-width: 1012px){.alphabetic-partners-block__partner{width:calc((100% - 26px)/2)}}@media all and (min-width: 1380px){.alphabetic-partners-block__partner{width:calc((100% - 30px)/2)}}@media all and (min-width: 560px){.alphabetic-partners-block__partner:nth-child(odd){margin-right:30px}}@media all and (min-width: 1012px){.alphabetic-partners-block__partner:nth-child(odd){margin-right:26px}}@media all and (min-width: 1380px){.alphabetic-partners-block__partner:nth-child(odd){margin-right:30px}}.alphabetic-partners-block__partner img{max-width:132px;max-height:132px}@media all and (min-width: 1012px){.alphabetic-partners-block__partner img{max-width:140px;max-height:140px}}@media all and (min-width: 1380px){.alphabetic-partners-block__partner img{max-width:196px;max-height:196px}}.partner-block{display:flex;flex-direction:column}@media all and (min-width: 560px){.partner-block{align-items:center;flex-direction:row}}.partner-block__image{padding:8px}@media only screen and (min-width: 320px){.partner-block__image{width:calc(
          1 *
            (
              (100vw - 20px * 1) /
                6 *
                3
            ) -
            20px
        )}}@media only screen and (min-width: 560px){.partner-block__image{width:calc(
          1 *
            (
              (100vw - 30px * 1) /
                6 *
                2
            ) -
            30px
        )}}@media only screen and (min-width: 1012px){.partner-block__image{width:calc(
          1 *
            (
              (100vw - 26px * 1) /
                12 *
                2
            ) -
            26px
        )}}@media only screen and (min-width: 1380px){.partner-block__image{width:calc(
          1 *
            (
              1350px /
                12 *
                2
            ) -
            30px
        )}}@media all and (min-width: 320px)and (max-width: 560px){.partner-block__image{margin-bottom:8px}}@media all and (min-width: 1012px){.partner-block__image{padding:20px}}.partner-block__info{vertical-align:top;flex:1}@media only screen and (min-width: 320px){.partner-block__info{margin-left:20px}}@media only screen and (min-width: 560px){.partner-block__info{margin-left:30px}}@media only screen and (min-width: 1012px){.partner-block__info{margin-left:26px}}@media only screen and (min-width: 1380px){.partner-block__info{margin-left:30px}}@media all and (min-width: 320px)and (max-width: 560px){.partner-block__info{margin-left:0}}@media all and (min-width: 320px)and (max-width: 560px){.partner-block__title,.partner-block__description{margin-bottom:4px}}.partners-block{margin-left:auto;margin-right:auto}.partners-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.partners-block{float:none;max-width:100%}html.show-grid .partners-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.partners-block{float:none;max-width:100%}html.show-grid .partners-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.partners-block{float:none;max-width:100%}html.show-grid .partners-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.partners-block{float:none;max-width:1380px}html.show-grid .partners-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.partners-block__title{margin-bottom:24px}@media only screen and (min-width: 320px){.partners-block__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.partners-block__title{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.partners-block__title{width:calc(83.3333333333% - 47.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.partners-block__title{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.partners-block__title{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.partners-block__title{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.partners-block__title{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.partners-block__title{margin-left:calc(16.6666666667% - 35px + 60px)}}.partners-block__partners{font-size:0}@media only screen and (min-width: 320px){.partners-block__partners{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.partners-block__partners{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.partners-block__partners{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.partners-block__partners{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.partners-block__partners{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.partners-block__partners{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.partners-block__partners{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.partners-block__partners{margin-left:calc(16.6666666667% - 35px + 60px)}}.partners-block__partner{margin-bottom:40px}@media all and (min-width: 560px){.partners-block__partner{margin-bottom:32px}}@media only screen and (min-width: 320px){.partners-block__more{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.partners-block__more{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.partners-block__more{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.partners-block__more{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.partners-block__more{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.partners-block__more{margin-left:calc(0% - 30px + 60px)}}@media only screen and (min-width: 1012px){.partners-block__more{margin-left:calc(33.3333333333% - 34.6666666667px + 52px)}}@media only screen and (min-width: 1380px){.partners-block__more{margin-left:calc(33.3333333333% - 40px + 60px)}}.podcast-promo-block{margin-left:auto;margin-right:auto}.podcast-promo-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.podcast-promo-block{float:none;max-width:100%}html.show-grid .podcast-promo-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.podcast-promo-block{float:none;max-width:100%}html.show-grid .podcast-promo-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.podcast-promo-block{float:none;max-width:100%}html.show-grid .podcast-promo-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.podcast-promo-block{float:none;max-width:1380px}html.show-grid .podcast-promo-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.podcast-promo-block .content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.podcast-promo-block .content{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.podcast-promo-block .content{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.podcast-promo-block .content{width:calc(100% - 60px);float:left;margin-left:30px}}.podcast-promo-block .container .text{margin-bottom:1em}.podcast-promo-block .container .highlight{max-width:33rem}@media only screen and (min-width: 1012px){.podcast-promo-block .container{padding-left:110px}.podcast-promo-block .container::after{content:" ";display:table;clear:both}.podcast-promo-block .container .text{float:left;width:48%;margin-right:3rem}.podcast-promo-block .container .highlight{float:left;width:48%}}.podcast-promo-block .highlight{background-color:#e9e0c4;padding:20px}.podcast-promo-block .highlight .title{font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.375rem;line-height:1.75rem;text-transform:uppercase;margin-bottom:24px}@media all and (min-width: 560px){.podcast-promo-block .highlight .title{font-size:1.5rem;line-height:1.75rem}}@media all and (min-width: 1380px){.podcast-promo-block .highlight .title{font-size:1.75rem;line-height:2.25rem}}.podcast-promo-block .highlight .buttons{list-style:none;padding-bottom:40px}.podcast-promo-block .highlight .buttons::after{content:" ";display:table;clear:both}.podcast-promo-block .highlight .buttons>*{float:left;margin-right:10px}.podcast-promo-block .text-title{font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.375rem;line-height:1.75rem;color:#ed1b2d;margin-bottom:1em}@media all and (min-width: 560px){.podcast-promo-block .text-title{font-size:1.5rem;line-height:1.75rem}}@media all and (min-width: 1380px){.podcast-promo-block .text-title{font-size:1.75rem;line-height:2.25rem}}@media all and (max-width: 1380px){.podcast-promo-block .text-title{margin-bottom:24px}}.podcast-show-buttons-block .button{padding:0;border:0}.quote-block{margin-left:auto;margin-right:auto}.quote-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.quote-block{float:none;max-width:100%}html.show-grid .quote-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.quote-block{float:none;max-width:100%}html.show-grid .quote-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.quote-block{float:none;max-width:100%}html.show-grid .quote-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.quote-block{float:none;max-width:1380px}html.show-grid .quote-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.quote-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.quote-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.quote-block__content{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.quote-block__content{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}.quote-block__quote{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1.25rem;line-height:1.75rem;color:#ed1b2d;margin-bottom:8px}@media all and (min-width: 560px){.quote-block__quote{font-size:1.25rem;line-height:1.75rem}}@media all and (min-width: 1380px){.quote-block__quote{font-size:1.5rem;line-height:2rem}}.quote-block__author{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.1875rem}@media all and (min-width: 560px){.quote-block__author{font-size:0.8125rem;line-height:1.3125rem}}@media all and (min-width: 1380px){.quote-block__author{font-size:1rem;line-height:1.625rem}}.content-stream--half>.quote-block{margin-left:auto;margin-right:auto}.content-stream--half>.quote-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.content-stream--half>.quote-block{float:none;max-width:100%}html.show-grid .content-stream--half>.quote-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.content-stream--half>.quote-block{float:none;max-width:100%}html.show-grid .content-stream--half>.quote-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.content-stream--half>.quote-block{float:none;max-width:100%}html.show-grid .content-stream--half>.quote-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(16.6666666667% - 30.3333333333px + 26px))}}@media only screen and (min-width: 1380px){.content-stream--half>.quote-block{float:none;max-width:1380px}html.show-grid .content-stream--half>.quote-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 320px){.content-stream--half>.quote-block .quote-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.content-stream--half>.quote-block .quote-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.content-stream--half>.quote-block .quote-block__content{width:calc(83.3333333333% - 47.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.content-stream--half>.quote-block .quote-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}.related-block{margin-left:auto;margin-right:auto}.related-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.related-block{float:none;max-width:100%}html.show-grid .related-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.related-block{float:none;max-width:100%}html.show-grid .related-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.related-block{float:none;max-width:100%}html.show-grid .related-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.related-block{float:none;max-width:1380px}html.show-grid .related-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.related-block__title{color:#ed1b2d;margin-bottom:32px}@media only screen and (min-width: 320px){.related-block__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.related-block__title{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.related-block__title{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.related-block__title{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.related-block__item{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.related-block__item{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.related-block__item{width:calc(33.3333333333% - 34.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.related-block__item{width:calc(33.3333333333% - 40px);float:left;margin-left:30px}}.salesforce-form-block{margin-left:auto;margin-right:auto}.salesforce-form-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.salesforce-form-block{float:none;max-width:100%}html.show-grid .salesforce-form-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.salesforce-form-block{float:none;max-width:100%}html.show-grid .salesforce-form-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.salesforce-form-block{float:none;max-width:100%}html.show-grid .salesforce-form-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.salesforce-form-block{float:none;max-width:1380px}html.show-grid .salesforce-form-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.salesforce-form-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.salesforce-form-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.salesforce-form-block__content{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.salesforce-form-block__content{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.salesforce-form-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.salesforce-form-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.salesforce-form-block__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.salesforce-form-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.single-feature-block{margin-left:auto;margin-right:auto;margin-top:80px;margin-bottom:80px}.single-feature-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.single-feature-block{float:none;max-width:100%}html.show-grid .single-feature-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.single-feature-block{float:none;max-width:100%}html.show-grid .single-feature-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.single-feature-block{float:none;max-width:100%}html.show-grid .single-feature-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.single-feature-block{float:none;max-width:1380px}html.show-grid .single-feature-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.single-feature-block__content-wrapper{aspect-ratio:3/4}@media only screen and (min-width: 320px){.single-feature-block__content-wrapper{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.single-feature-block__content-wrapper{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.single-feature-block__content-wrapper{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.single-feature-block__content-wrapper{width:calc(100% - 60px);float:left;margin-left:30px}}@media all and (min-width: 560px){.single-feature-block__content-wrapper{aspect-ratio:3/3}}@media all and (min-width: 1012px){.single-feature-block__content-wrapper{aspect-ratio:16/9}}.single-feature-block__content{display:flex;flex-direction:column;height:100%;justify-content:flex-end;overflow:hidden;position:relative}.single-feature-block__background{width:100%;height:100%;position:absolute;z-index:1}.single-feature-block__background-image{position:relative;width:100%;height:100%}.single-feature-block__background-image::after{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:1}.single-feature-block__overlay{position:relative;z-index:2}@media only screen and (min-width: 320px){.single-feature-block__overlay{width:calc(100% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 560px){.single-feature-block__overlay{width:calc(66.6666666667% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1012px){.single-feature-block__overlay{width:calc(41.6666666667% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 1380px){.single-feature-block__overlay{width:calc(41.6666666667% - 0px);float:left;margin-left:0px}}@media only screen and (min-width: 320px){.single-feature-block__overlay{margin-left:calc(0% - 0px + 0px)}}@media only screen and (min-width: 560px){.single-feature-block__overlay{margin-left:calc(0% - 0px + 0px)}}@media only screen and (min-width: 1012px){.single-feature-block__overlay{margin-left:calc(8.3333333333% - 0px + 0px)}}@media only screen and (min-width: 1380px){.single-feature-block__overlay{margin-left:calc(8.3333333333% - 0px + 0px)}}.single-feature-block__overlay:last-child{margin-bottom:80px}@media all and (max-width: 1012px){.single-feature-block__overlay{padding:0 20px}}.single-feature-block__title{text-transform:uppercase;font-family:"Atlas Grotesk Black";font-weight:900;font-size:1.625rem;line-height:2.25rem;color:#fff;margin-bottom:40px}@media all and (min-width: 560px){.single-feature-block__title{font-size:2rem;line-height:2.625rem}}@media all and (min-width: 1380px){.single-feature-block__title{font-size:2.5rem;line-height:3rem}}.single-feature-block__text{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1rem;line-height:1.5rem;color:#fff;margin-bottom:20px;margin-right:25px}@media all and (min-width: 560px){.single-feature-block__text{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.single-feature-block__text{font-size:1.125rem;line-height:1.875rem}}.single-feature-block__link{color:#fff;color:#fff}.single-feature-block__link:hover{color:#ed1b2d}.single-feature-block__link:hover svg use{fill:#ed1b2d}.single-feature-block__link svg use{fill:#fff;transition:fill 0ms ease-in-out}.single-feature-block__link .link__label{border-color:#fff}.text-block{margin-left:auto;margin-right:auto}.text-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.text-block{float:none;max-width:100%}html.show-grid .text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.text-block{float:none;max-width:100%}html.show-grid .text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.text-block{float:none;max-width:100%}html.show-grid .text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.text-block{float:none;max-width:1380px}html.show-grid .text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.text-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.text-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.text-block__content{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.text-block__content{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.text-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.text-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.text-block__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.text-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.content-stream--half>.text-block{margin-left:auto;margin-right:auto}.content-stream--half>.text-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.content-stream--half>.text-block{float:none;max-width:100%}html.show-grid .content-stream--half>.text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.content-stream--half>.text-block{float:none;max-width:100%}html.show-grid .content-stream--half>.text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.content-stream--half>.text-block{float:none;max-width:100%}html.show-grid .content-stream--half>.text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(16.6666666667% - 30.3333333333px + 26px))}}@media only screen and (min-width: 1380px){.content-stream--half>.text-block{float:none;max-width:1380px}html.show-grid .content-stream--half>.text-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 320px){.content-stream--half>.text-block .text-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.content-stream--half>.text-block .text-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.content-stream--half>.text-block .text-block__content{width:calc(83.3333333333% - 47.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.content-stream--half>.text-block .text-block__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.content-stream--half>.text-block .text-block__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.content-stream--half>.text-block .text-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.content-stream--half>.text-block .text-block__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.content-stream--half>.text-block .text-block__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.content-stream--half>.text-block .text-block__content h2{margin-left:0}.text-sidelink-block{margin-left:auto;margin-right:auto}.text-sidelink-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.text-sidelink-block{float:none;max-width:100%}html.show-grid .text-sidelink-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.text-sidelink-block{float:none;max-width:100%}html.show-grid .text-sidelink-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.text-sidelink-block{float:none;max-width:100%}html.show-grid .text-sidelink-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.text-sidelink-block{float:none;max-width:1380px}html.show-grid .text-sidelink-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.text-sidelink-block__text{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.text-sidelink-block__text{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.text-sidelink-block__text{width:calc(50% - 39px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.text-sidelink-block__text{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.text-sidelink-block__text{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.text-sidelink-block__text{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.text-sidelink-block__text{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.text-sidelink-block__text{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 320px){.text-sidelink-block__sidelink{width:calc(100% - 40px);float:right;margin-right:20px}}@media only screen and (min-width: 560px){.text-sidelink-block__sidelink{width:calc(100% - 60px);float:right;margin-right:30px}}@media only screen and (min-width: 1012px){.text-sidelink-block__sidelink{width:calc(25% - 32.5px);float:right;margin-right:26px}}@media only screen and (min-width: 1380px){.text-sidelink-block__sidelink{width:calc(25% - 37.5px);float:right;margin-right:30px}}.timeline-block{background:#000;color:#fff;height:100%;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100vw}.timeline-block__scroller{cursor:grab;overflow-x:auto;height:100%;width:100%}.timeline-block__scroller::-webkit-scrollbar{display:none}.timeline-block__content{display:flex;flex-direction:column}.timeline-block__content::-webkit-scrollbar{display:none}@media all and (min-width: 560px){.timeline-block__content{flex-direction:row;height:100vh;min-height:540px;max-height:720px}}.timeline-block__item{height:auto}@media all and (min-width: 560px){.timeline-block__item{height:100vh;min-height:540px;min-width:100vw;max-height:720px;max-width:100vw}}.timeline-block__drag-indicator-container{align-items:center;bottom:30px;display:flex;flex-direction:column;left:0;pointer-events:none;position:absolute;right:0}@media all and (min-width: 320px)and (max-width: 560px){.timeline-block__drag-indicator-container{display:none}}.timeline-block--dragging{cursor:grabbing}.timeline-block::-webkit-scrollbar{display:none}.timeline-figure-block{position:relative;background-color:#f6f3e7;background-size:contain;background-position:bottom left;background-repeat:no-repeat}@media all and (min-width: 320px)and (max-width: 560px){.timeline-figure-block::before{background:#ed1b2d;bottom:0;content:"";display:block;left:15px;position:absolute;width:2px;height:100%}}.timeline-figure-block__timeline-container{position:absolute;left:0;top:32px;display:flex;flex-direction:row;align-items:center;width:100%;height:20px}.timeline-figure-block__daylabel{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:12px;color:#ed1b2d;order:2;padding-left:8px;padding-right:20px}@media all and (min-width: 560px){.timeline-figure-block__daylabel{order:1;padding-left:30px}}.timeline-figure-block__timeline-circle{height:10px;width:10px;background:#ed1b2d;border-radius:50%;order:1}@media all and (min-width: 320px)and (max-width: 560px){.timeline-figure-block__timeline-circle{margin-left:12px}}@media all and (min-width: 560px){.timeline-figure-block__timeline-circle{order:2}}.timeline-figure-block__timeline-circle-today{height:10px;width:10px;background:#ed1b2d;border-radius:50%;display:block;order:1;position:relative;border:7px solid #f6858f;box-sizing:content-box}@media all and (min-width: 320px)and (max-width: 560px){.timeline-figure-block__timeline-circle-today{margin-left:5px}}@media all and (min-width: 560px){.timeline-figure-block__timeline-circle-today{order:2}}@media all and (min-width: 560px){.timeline-figure-block__timeline{flex-grow:1;display:block;height:2px;order:3;background:#ed1b2d}}.timeline-figure-block--timeline-label::before{height:calc(100% - 40px)}.timeline-figure-block--background-merino.timeline-figure-block{background-color:#fbf9f3}@media all and (min-width: 560px){.timeline-figure-block{min-width:360px;max-width:360px}}.timeline-figure-block__fact{width:100%;height:100%;overflow-x:hidden;overflow-y:auto}.timeline-figure-block__fact-scroll-container{position:relative;min-height:100%}.timeline-figure-block__fact-header{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:80px;line-height:80px;color:#000;margin:76px 30px 0;white-space:nowrap}.timeline-figure-block__fact-small-header{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:32px;line-height:42px;color:#000;margin:28px 30px 20px}.timeline-figure-block__fact-small-header:first-child{margin-top:80px}.timeline-figure-block__fact-small-header:last-child{margin-bottom:30px}.timeline-figure-block__fact-link{font-family:"Atlas Grotesk Regular";text-decoration:underline;font-size:13px;line-height:23px;color:#000;display:block;margin:0 30px 20px;cursor:pointer}.timeline-figure-block__fact-link:last-child{margin-bottom:30px}.timeline-figure-block__fact-header+.timeline-figure-block__fact-link{margin-top:44px}.timeline-figure-block__fact-text{color:#000;margin:0 30px 20px}.timeline-figure-block__fact-text:last-child{margin-bottom:30px}.timeline-figure-block__fact-text p:last-child{margin-bottom:0}.timeline-figure-block__fact-header+.timeline-figure-block__fact-text{margin-top:41px}.timeline-figure-block__download-link{cursor:pointer;font-family:"Atlas Grotesk Regular";text-decoration:underline;font-size:13px;line-height:23px;display:block;margin:15px 30px 5px}.timeline-figure-block__image{height:auto;width:100%}.timeline-figure-block__icon-row{position:absolute;bottom:30px;left:30px;cursor:pointer}.timeline-figure-block__icob{display:inline-block}.timeline-figure-block--reversed.timeline-figure-block .timeline-figure-block__image-container{flex-grow:1;display:flex;flex-direction:column;justify-content:flex-end}.timeline-figure-block--reversed.timeline-figure-block .timeline-figure-block__fact-scroll-container{display:flex;flex-direction:column;justify-content:flex-start}@media all and (min-width: 320px)and (max-width: 560px){.timeline-intro-block__intro-panel::before{background:#ed1b2d;bottom:0;content:"";display:block;left:15px;position:absolute;width:2px;height:100%}}.timeline-intro-block__timeline-container{position:absolute;left:0;top:32px;display:flex;flex-direction:row;align-items:center;width:100%;height:20px}.timeline-intro-block__daylabel{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:12px;color:#ed1b2d;order:2;padding-left:8px;padding-right:20px}@media all and (min-width: 560px){.timeline-intro-block__daylabel{order:1;padding-left:30px}}.timeline-intro-block__timeline-circle{height:10px;width:10px;background:#ed1b2d;border-radius:50%;order:1}@media all and (min-width: 320px)and (max-width: 560px){.timeline-intro-block__timeline-circle{margin-left:12px}}@media all and (min-width: 560px){.timeline-intro-block__timeline-circle{order:2}}.timeline-intro-block__timeline-circle-today{height:10px;width:10px;background:#ed1b2d;border-radius:50%;display:block;order:1;position:relative;border:7px solid #f6858f;box-sizing:content-box}@media all and (min-width: 320px)and (max-width: 560px){.timeline-intro-block__timeline-circle-today{margin-left:5px}}@media all and (min-width: 560px){.timeline-intro-block__timeline-circle-today{order:2}}@media all and (min-width: 560px){.timeline-intro-block__timeline{flex-grow:1;display:block;height:2px;order:3;background:#ed1b2d}}.timeline-intro-block--timeline-label::before{height:calc(100% - 40px)}.timeline-intro-block__title-panel{background-image:url("//warchild/frontend/static/frontend/images/MarkJordan.png");background-size:cover;background-repeat:no-repeat;position:relative}@media all and (min-width: 320px)and (max-width: 560px){.timeline-intro-block__title-panel{height:100vh;min-height:540px;max-height:720px}}@media all and (min-width: 560px){.timeline-intro-block__title-panel{min-width:360px;max-width:360px}}.timeline-intro-block__title-panel-header-container{position:absolute;bottom:30px;left:30px;width:calc(100% - 60px);z-index:4}@media all and (min-width: 560px){.timeline-intro-block__title-panel-header-container{top:80px;left:330px;bottom:auto;overflow:hidden;max-height:143px;max-width:550px;width:100%}}.timeline-intro-block__title-panel-header{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:32px;line-height:48px;background-color:#000;-webkit-box-decoration-break:clone;box-decoration-break:clone;display:inline;padding:4px 10px;overflow:hidden;max-height:144px}.timeline-intro-block__intro-panel{background-color:#e9e0c4;position:relative}@media all and (min-width: 320px)and (max-width: 560px){.timeline-intro-block__intro-panel{height:100vh;min-height:540px;max-height:720px}}@media all and (min-width: 560px){.timeline-intro-block__intro-panel{min-width:calc(100vw - 270px);max-width:calc(100vw - 270px)}}@media all and (min-width: 1012px){.timeline-intro-block__intro-panel{min-width:calc(100vw - 540px);max-width:calc(100vw - 540px)}}@media all and (min-width: 1380px){.timeline-intro-block__intro-panel{min-width:720px;max-width:720px}}.timeline-intro-block__intro-panel-container{position:absolute;left:30px;width:calc(100% - 60px);top:37%}@media all and (min-width: 320px)and (max-width: 560px){.timeline-intro-block__intro-panel-container{top:118px}}.timeline-intro-block__quote{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1.25rem;line-height:1.75rem;margin-bottom:15px}@media all and (min-width: 560px){.timeline-intro-block__quote{font-size:1.25rem;line-height:1.75rem}}@media all and (min-width: 1380px){.timeline-intro-block__quote{font-size:1.5rem;line-height:2rem}}@media all and (min-width: 1380px){.timeline-intro-block__quote{width:80%}}.timeline-intro-block__quote-credit{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.125rem;color:#acacac;margin-left:30px}@media all and (min-width: 1380px){.timeline-intro-block__quote-credit{font-size:0.9375rem;line-height:1.125rem}}.timeline-intro-block__quote-credit::before{content:"-";margin-right:5px}.timeline-intro-block__intro-panel-button{width:auto;cursor:pointer;margin-top:30px;display:inline-block}.timeline-general-block{position:relative;background-color:#f6f3e7}@media all and (min-width: 320px)and (max-width: 560px){.timeline-general-block::before{background:#ed1b2d;bottom:0;content:"";display:block;left:15px;position:absolute;width:2px;height:100%}}.timeline-general-block__timeline-container{position:absolute;left:0;top:32px;display:flex;flex-direction:row;align-items:center;width:100%;height:20px}.timeline-general-block__daylabel{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:12px;color:#ed1b2d;order:2;padding-left:8px;padding-right:20px}@media all and (min-width: 560px){.timeline-general-block__daylabel{order:1;padding-left:30px}}.timeline-general-block__timeline-circle{height:10px;width:10px;background:#ed1b2d;border-radius:50%;order:1}@media all and (min-width: 320px)and (max-width: 560px){.timeline-general-block__timeline-circle{margin-left:12px}}@media all and (min-width: 560px){.timeline-general-block__timeline-circle{order:2}}.timeline-general-block__timeline-circle-today{height:10px;width:10px;background:#ed1b2d;border-radius:50%;display:block;order:1;position:relative;border:7px solid #f6858f;box-sizing:content-box}@media all and (min-width: 320px)and (max-width: 560px){.timeline-general-block__timeline-circle-today{margin-left:5px}}@media all and (min-width: 560px){.timeline-general-block__timeline-circle-today{order:2}}@media all and (min-width: 560px){.timeline-general-block__timeline{flex-grow:1;display:block;height:2px;order:3;background:#ed1b2d}}.timeline-general-block--timeline-label::before{height:calc(100% - 40px)}.timeline-general-block--background-merino.timeline-general-block{background-color:#fbf9f3}@media all and (min-width: 560px){.timeline-general-block{min-width:360px;max-width:360px}}.timeline-general-block__image{background-size:cover;background-repeat:no-repeat;width:100%;height:100%}@media all and (min-width: 320px)and (max-width: 560px){.timeline-general-block__image{max-height:720px;height:100vh}}.timeline-general-block__image::before{content:"";background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));position:absolute;width:100%;height:100%;left:0;top:0}@media all and (min-width: 560px){.timeline-general-block__image{min-width:360px;max-width:360px}}.timeline-general-block__image-header{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:24px;line-height:32px;margin:0 30px 10px;position:relative}.timeline-general-block__image-text{color:#fff;margin:0 30px 10px;position:relative}.timeline-general-block__article{height:100%;padding-top:70px}@media all and (min-width: 1012px){.timeline-general-block__article{min-width:360px;max-width:360px}}.timeline-general-block__article-header{color:#000;font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:32px;line-height:42px;width:calc(100% - 60px);margin-left:30px;margin-top:10px;margin-bottom:15px}.timeline-general-block__article-paragraph{color:#000;font-family:"Atlas Grotesk Regular";font-size:15px;line-height:20px;width:calc(100% - 60px);margin-left:30px}.timeline-general-block__article-paragraph p:last-child{margin-bottom:0}.timeline-general-block .timeline-general-block__icon-row{margin-top:20px;margin-left:30px;cursor:pointer;display:inline-block}@media all and (min-width: 320px)and (max-width: 560px){.timeline-general-block .timeline-general-block__icon-row{margin-bottom:30px}}.timeline-general-block .timeline-general-block__icon{display:inline-block}.timeline-general-block .timeline-general-block__download-link{cursor:pointer;font-family:"Atlas Grotesk Regular";text-decoration:underline;font-size:13px;line-height:23px;display:block;margin:15px 30px 30px}.timeline-general-block--reversed .timeline-general-block__image,.timeline-general-block--reversed .timeline-general-block__video{display:flex;flex-direction:column;justify-content:flex-end}@media all and (min-width: 320px)and (max-width: 560px){.timeline-general-block--reversed .timeline-general-block__image,.timeline-general-block--reversed .timeline-general-block__video{max-height:720px;height:100vh}}.timeline-general-block--reversed .timeline-general-block__video-header{order:2}.timeline-general-block--reversed .timeline-general-block__icon-row{margin-left:30px;margin-bottom:30px;cursor:pointer;position:relative}.timeline-general-block--reversed .timeline-general-block__icon{display:inline-block}.timeline-general-block__video-container{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;display:flex;flex-direction:column;justify-content:center;z-index:5;opacity:0;pointer-events:none;transition:opacity 300ms ease}.timeline-general-block__video-container iframe{height:100%;width:100%}.timeline-general-block__video{background-size:cover;background-repeat:no-repeat;width:100%;height:100%}.timeline-general-block__video::before{content:"";background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));position:absolute;width:100%;height:100%;left:0;top:0}@media all and (min-width: 1012px){.timeline-general-block__video{min-width:360px;max-width:360px}}.timeline-general-block__video-icon{border-radius:50%;width:48px;height:48px;display:flex;align-items:center;justify-content:center;box-sizing:border-box;pointer-events:all;border:2px solid #fff;position:relative}.timeline-general-block__video-header{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:24px;line-height:32px;margin:0 30px 30px;position:relative}.timeline-general-block--video-playing .timeline-general-block__video-container{opacity:1;pointer-events:all}.timeline-popup-block{box-shadow:-1px 1px 5px 0 rgba(0,0,0,.29);z-index:5;opacity:1;display:none;transition:all 300ms ease-in-out;background-color:#fff;overflow-y:auto;padding:16px}.timeline-popup-block__paragraph{color:#000;font-family:"Atlas Grotesk Regular";font-size:14px;line-height:17px}.timeline-popup-block__daylabel{font-family:"Atlas Grotesk Black";text-transform:uppercase;font-size:12px}.timeline-popup-block--intro{position:absolute;bottom:75px;max-width:100%;max-height:80vh;margin-left:60px;margin-right:30px}@media all and (min-width: 560px){.timeline-popup-block--intro{width:auto;max-width:375px;max-height:calc(100% - 129px)}}.timeline-popup-block--image-block{position:absolute;width:270px;margin:30px 30px 30px 60px;bottom:130px;max-height:calc(100% - 210px)}@media all and (min-width: 320px)and (max-width: 560px){.timeline-popup-block--image-block{width:285px}}.timeline-popup-block--article-block{position:absolute;width:270px;margin:30px 30px 30px 60px;top:320px;max-height:calc(100% - 310px);left:0}@media all and (min-width: 320px)and (max-width: 560px){.timeline-popup-block--article-block{width:285px}}.timeline-popup-block--is-visible{display:inline-block}.twingle-widget{margin-left:auto;margin-right:auto}.twingle-widget::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.twingle-widget{float:none;max-width:100%}html.show-grid .twingle-widget{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.twingle-widget{float:none;max-width:100%}html.show-grid .twingle-widget{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.twingle-widget{float:none;max-width:100%}html.show-grid .twingle-widget{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.twingle-widget{float:none;max-width:1380px}html.show-grid .twingle-widget{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.twingle-widget__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.twingle-widget__content{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.twingle-widget__content{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.twingle-widget__content{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.twingle-widget__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.twingle-widget__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.twingle-widget__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.twingle-widget__content{margin-left:calc(16.6666666667% - 35px + 60px)}}.video-block{margin-left:auto;margin-right:auto}.video-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.video-block{float:none;max-width:100%}html.show-grid .video-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.video-block{float:none;max-width:100%}html.show-grid .video-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.video-block{float:none;max-width:100%}html.show-grid .video-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.video-block{float:none;max-width:1380px}html.show-grid .video-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.video-block__content{float:none;width:auto;margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);position:relative}.video-block__overlay{position:absolute;top:0;left:0;width:100%;height:100%;content:"";background-color:rgba(0,0,0,.35)}.video-block__video{position:relative}.video-block__thumbnail{padding-bottom:55.4%}.video-block iframe,.video-block__hit-target{height:100%;width:100%;position:absolute;left:0;top:0}.video-block iframe{opacity:1;transition:opacity .35s ease-out}.video-block__hit-target{display:flex;align-items:flex-end;padding:48px 28px}.video-block__play-button{border-radius:50%;width:48px;height:48px;display:flex;align-items:center;justify-content:center;pointer-events:none;box-sizing:border-box;border:2px solid #fff}.video-block__play-button svg{width:24px;height:28px}.video-block__play-button svg use{fill:#fff}:hover>.video-block__play-button{border-color:#ed1b2d}:hover>.video-block__play-button svg use{fill:#ed1b2d}.video-block__caption{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.125rem;line-height:1.75rem;color:#fff;position:absolute;bottom:56px;left:96px;max-width:460px;pointer-events:none}@media all and (min-width: 560px){.video-block__caption{font-size:1.25rem;line-height:1.75rem}}@media all and (min-width: 1380px){.video-block__caption{font-size:1.5rem;line-height:2.25rem}}@media all and (min-width: 1380px){.video-block__caption{max-width:840px}}.video-block__fallback{position:absolute;top:0;left:0}.content-stream--half>.video-block{padding-bottom:32px}@media only screen and (min-width: 320px){.content-stream--half>.video-block .video-block__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.content-stream--half>.video-block .video-block__content{width:calc(100% - 60px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.content-stream--half>.video-block .video-block__content{width:calc(100% - 52px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.content-stream--half>.video-block .video-block__content{width:calc(100% - 60px);float:left;margin-left:30px}}.content-stream--half>.video-block .video-block__hit-target{padding:16px}.content-stream--half>.video-block .video-block__video{margin-bottom:8px}.content-stream--half>.video-block .video-block__caption{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1rem;line-height:1.5rem;color:#222;bottom:-32px;left:0}@media all and (min-width: 560px){.content-stream--half>.video-block .video-block__caption{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.content-stream--half>.video-block .video-block__caption{font-size:1.125rem;line-height:1.875rem}}.video-overlay{position:fixed;top:0;left:0;width:100%;height:100%;opacity:0;pointer-events:none;transition:opacity 200ms ease;z-index:2000}.video-overlay--open{opacity:1;pointer-events:all}.video-overlay__closer{position:absolute;z-index:10;right:30px;top:30px}.video-overlay__closer svg{width:30px;height:30px}.video-overlay__closer svg use{fill:#fff}.video-overlay__content-wrapper{height:100%;position:relative;width:100%}.video-overlay__video-container{position:absolute;top:0;left:0;width:100%;height:100%}.video-overlay__video-container iframe{width:100%;height:100%}.grid-block{max-width:1380px;margin:0 auto;padding:1.875rem;display:grid;grid-gap:1.25rem;gap:1.25rem;justify-content:center;grid-template-columns:repeat(1fr)}@media all and (min-width: 768px){.grid-block{grid-template-columns:repeat(2, 1fr)}}@media all and (min-width: 1012px){.grid-block{grid-template-columns:repeat(3, 1fr)}.grid-block.grid-block--2{grid-template-columns:repeat(2, 1fr)}.grid-block.grid-block--3{grid-template-columns:repeat(3, 1fr)}.grid-block.grid-block--4{grid-template-columns:repeat(2, 1fr);grid-template-rows:repeat(2, auto)}}.grid-block__item{display:flex;flex-direction:column;position:relative;padding:1.25rem;background-color:#e9e0c4;flex:1}@media all{.grid-block__item{width:70vw}}@media all and (min-width: 768px){.grid-block__item{width:auto;width:initial}}.grid-block__item-shuffle{margin-left:16px}.grid-block__item:hover .grid-block__item-title,.grid-block__item:hover .grid-block__item-link{color:#ed1b2d;cursor:pointer}.grid-block__item:hover .link svg use{fill:#ed1b2d}.grid-block__item-content{order:1;display:flex;flex-direction:column;height:100%}.grid-block__item-title{font-size:1.125rem;font-weight:700;margin-bottom:.625rem}@media all and (min-width: 1012px){.grid-block__item-title{font-size:1.5rem}}.grid-block__item-subtext{font-size:1rem;margin-bottom:1.25rem}.grid-block__item-image{order:0;margin-left:-2.375rem;margin-bottom:1.25rem}.grid-block__item-image figure{aspect-ratio:3/2}.grid-block__item-link{text-decoration:underline;margin-top:auto;z-index:2}.grid-block__item-link::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.accordion-block{margin-left:auto;margin-right:auto;margin-top:5rem;margin-bottom:5rem}.accordion-block::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.accordion-block{float:none;max-width:100%}html.show-grid .accordion-block{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.accordion-block{float:none;max-width:100%}html.show-grid .accordion-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.accordion-block{float:none;max-width:100%}html.show-grid .accordion-block{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.accordion-block{float:none;max-width:1380px}html.show-grid .accordion-block{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.accordion-block__title{font-size:1.25rem;font-weight:700;color:#ed1b2d;margin-bottom:1.875rem}@media all and (min-width: 1012px){.accordion-block__title{font-size:2rem}}.accordion-block__item{margin-bottom:1.375rem}@media all and (min-width: 1012px){.accordion-block__item{margin-bottom:1.25rem}}.accordion-block__item-title{font-size:1.125rem;font-weight:700;cursor:pointer;list-style:none;text-decoration:underline}@media all and (min-width: 1012px){.accordion-block__item-title{font-size:1.25rem}}.accordion-block__item-title svg{fill:#222;width:1rem;height:1rem;margin-left:2px}.accordion-block__item-title::-webkit-details-marker{display:none}.accordion-block__item:hover .accordion-block__item-title,.accordion-block__item[open] .accordion-block__item-title{color:#ed1b2d;text-decoration:underline}.accordion-block__item:hover svg,.accordion-block__item[open] svg{transition:transform .1s ease-in-out}.accordion-block__item:hover svg use,.accordion-block__item[open] svg use{fill:#ed1b2d}.accordion-block__item[open] svg{transform:rotate(180deg);transition:transform .1s ease-in-out}.accordion-block__item-text{margin-top:1.25rem}@media all and (min-width: 1012px){.accordion-block__item-text{margin-top:2.375rem}}.accordion-block__button{margin-top:1.875rem}@media all and (min-width: 1012px){.accordion-block__button{margin-top:2rem}}.campaign-page .campaign-donation{padding-top:32px}@media all and (min-width: 560px){.campaign-page .campaign-donation{margin-bottom:56px;padding-top:48px}}@media all and (min-width: 1012px){.campaign-page .campaign-donation{margin-bottom:128px}}.campaign-page .campaign-content{margin-bottom:64px}@media all and (min-width: 1012px){.campaign-page .campaign-content{margin-bottom:128px}}.campaign-page .donation-block__information .field-success{top:16px}.content-page .page-content{padding-top:120px}@media all and (min-width: 560px){.content-page .page-content{padding-top:144px}}@media all and (min-width: 1380px){.content-page .page-content{padding-top:208px}}.content-page .content-right-to-left *{font-family:arial,sans-serif !important}.content-page .content-right-to-left *{direction:rtl}.content-page .content-right-to-left p,.content-page .content-right-to-left .rich-text ul li,.content-page .content-right-to-left .rich-text ol li{font-size:1.25rem;line-height:1.75rem}@media all and (min-width: 560px){.content-page .content-right-to-left p,.content-page .content-right-to-left .rich-text ul li,.content-page .content-right-to-left .rich-text ol li{font-size:1.1875rem;line-height:1.75rem}}@media all and (min-width: 1380px){.content-page .content-right-to-left p,.content-page .content-right-to-left .rich-text ul li,.content-page .content-right-to-left .rich-text ol li{font-size:1.375rem;line-height:2.125rem}}.country-page .page-content{padding-top:120px}@media all and (min-width: 560px){.country-page .page-content{padding-top:144px}}@media all and (min-width: 1380px){.country-page .page-content{padding-top:208px}}.country-page .content-right-to-left *{font-family:arial,sans-serif !important}.country-page .content-right-to-left *{direction:rtl}.country-page .content-right-to-left p,.country-page .content-right-to-left .rich-text ul li,.country-page .content-right-to-left .rich-text ol li{font-size:1.25rem;line-height:1.75rem}@media all and (min-width: 560px){.country-page .content-right-to-left p,.country-page .content-right-to-left .rich-text ul li,.country-page .content-right-to-left .rich-text ol li{font-size:1.1875rem;line-height:1.75rem}}@media all and (min-width: 1380px){.country-page .content-right-to-left p,.country-page .content-right-to-left .rich-text ul li,.country-page .content-right-to-left .rich-text ol li{font-size:1.375rem;line-height:2.125rem}}.country-page .map-block .location__close{pointer-events:auto}.country-page .location__facts h2,.country-page .country-page .location__projects{background-color:#000;color:#fff;display:inline-block;padding:2px 5px;font-size:2.5rem}.country-page .map-block__infos{display:none}.country-page .map-block .map-block__locations{padding-bottom:0;pointer-events:none}.country-page .map-block .pattern{background-color:rgba(255,255,255,.4)}.country-page .map-block__locations .location__link{pointer-events:auto}.country-page .leaflet-marker-pane .leaflet-marker-icon{padding:8px;border:2px solid #000;background-color:#8e8e8e;pointer-events:auto;cursor:pointer}.country-page .leaflet-marker-pane .leaflet-marker-icon:hover{background-color:#ed1b2d}.country-page .location__info{bottom:0;position:absolute;left:230px}.country-page .location__info a{pointer-events:auto}.country-page .location__facts{position:absolute;bottom:0;right:100px;z-index:1;pointer-events:none}.country-page .map-block .location__image{bottom:0;position:absolute;margin:44px 15px 0}.country-page .map-block .location__contextimage{top:0;position:absolute;width:264px;height:165px;margin:15px 15px 0}@media all and (max-width: 1012px){.country-page .map-block .location__contextimage{display:none}}.country-page .location__facts p{background-color:#000;color:#fff;display:inline-block;padding:0 5px;font-weight:bold;text-transform:uppercase}.country-page .video-block__overlay{background-color:rgba(0,0,0,.55)}.country-page .video-block__caption{pointer-events:auto;bottom:26px}.country-page .video-block__caption-top{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.125rem;line-height:1.75rem;color:#fff;position:absolute;top:30px;left:96px;max-width:640px;pointer-events:none}.country-page .video-block__title{font-family:"Atlas Grotesk Black";font-weight:700;font-size:1.5rem;line-height:1.75rem;color:#fff;background-color:#000;position:absolute;top:0;left:96px;max-width:460px;pointer-events:none;text-transform:uppercase;transform:translateY(-50%);z-index:1;padding:2px 6px 4px}.country-page .video-block__hit-target{display:inline;padding:0;margin-top:-60px;height:100px}@media all and (min-width: 1012px){.country-page .carousel-block__pagination{width:220px;left:0;top:0}}@media all and (min-width: 1012px){.country-page .carousel-block-slide{margin-top:80px;margin-right:20px;margin-left:0;margin-left:initial;width:calc(1*(50vw - 30px)/6*5 - 30px)}}.country-page .carousel-block-slide__image{margin-left:0;margin-left:initial}.country-page .carousel-block-slide .background-image{padding-bottom:50%;transform:none;transform:initial}.country-page .partners-block__title{font-family:"Atlas Grotesk Black";font-weight:900;width:calc(100% - 60px);float:left;margin-left:30px;color:#ed1b2d;font-size:1.375rem;line-height:1.75rem}@media only screen and (min-width: 560px){.country-page .partners-block__title{font-size:1.5rem;line-height:1.75rem}.country-page .page-link-block__content{min-height:120px}}@media only screen and (min-width: 1380px){.country-page .page-link-block__title{font-size:1.2rem;line-height:2rem}.country-page .intro-text-block__content{margin-left:calc(16.6667% - 35px + 60px)}.country-page .content-stream__block:nth-child(3) .rich-text h2{margin-left:0}.country-page .carousel-block__content{width:100%}}@media only screen and (max-width: 1380px){.country-page .country-page .map-block .location__image{display:none}.country-page .map-block .location{min-height:250px}.country-page .map-block__map.leaflet-container{min-height:450px}.country-page .related-block__country .related-block__item:nth-child(3n+1){clear:both}.country-page .video-block__title{left:20px;max-width:calc(100% - 40px)}.country-page .video-block__caption-top{left:20px;max-width:calc(100% - 40px)}.country-page .video-block__caption{left:20px;max-width:calc(100% - 40px)}}@media only screen and (min-width: 1012px){.country-page .text-block-half h2{margin-left:0}.country-page .text-block-half{width:49%;display:inline-block}.country-page .text-block-half .text-block__content{margin-left:calc(0% - 20px + 80px);width:80%}.country-page .carousel-block-half{width:50%;display:inline-block;vertical-align:top}.country-page .carousel-block__pagination{text-align:left;font-size:2.75rem;line-height:4rem}.country-page .map-block__map{height:90vh}.country-page .map-block .location{padding:256px 16px 32px 0}.country-page h2.location__facttext{font-size:1rem !important}.country-page h2.location__facttext{clear:left;float:left;margin-bottom:20px;text-transform:uppercase;line-height:1rem}.country-page h2.location__factdata{clear:left;float:left}.country-page .map-block .location__close{position:absolute;top:0;right:-50px}.country-page .swiper-button-prev,.country-page .swiper-button-next{position:static;position:initial;margin-top:10px;display:inline-block}}@media only screen and (max-width: 1012px){.country-page .location__info{left:30px}.country-page .location__facts{position:absolute;bottom:auto;bottom:initial;top:30px;left:30px;right:10px;z-index:1}.country-page h2.location__facttext{font-size:1rem !important}.country-page h2.location__facttext{float:left;margin-bottom:6px;text-transform:uppercase;line-height:1rem}.country-page h2.location__factdata{font-size:1rem !important}.country-page h2.location__factdata{clear:left;float:left;text-transform:uppercase;line-height:1rem}}@media only screen and (max-width: 640px){.country-page .video-block,.country-page .video-block__content,.country-page .video-block__video,.country-page .video-block__container,.country-page .video-block__thumbnail{height:600px}.country-page .video-block__title{font-size:1.2rem}}@media only screen and (min-width: 1380px){.country-page .partners-block__title{font-size:1.75rem;line-height:2.25rem}.country-page .related-block__country .related-block__item{width:calc(25% - 40px)}}.detail-page .page-content{padding-top:120px}@media all and (min-width: 560px){.detail-page .page-content{padding-top:144px}}@media all and (min-width: 1380px){.detail-page .page-content{padding-top:208px}}.detail-header{margin-left:auto;margin-right:auto;margin-bottom:40px}.detail-header::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.detail-header{float:none;max-width:100%}html.show-grid .detail-header{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.detail-header{float:none;max-width:100%}html.show-grid .detail-header{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.detail-header{float:none;max-width:100%}html.show-grid .detail-header{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.detail-header{float:none;max-width:1380px}html.show-grid .detail-header{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.detail-header__title{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.detail-header__title{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.detail-header__title{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.detail-header__title{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.detail-header__title{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.detail-header__title{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.detail-header__title{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.detail-header__title{margin-left:calc(16.6666666667% - 35px + 60px)}}.detail-header__details{width:100%;display:inline-block;margin-top:24px}@media all and (min-width: 560px){.detail-header__details{margin-top:40px}}@media only screen and (min-width: 320px){.detail-header__basic-details{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.detail-header__basic-details{width:calc(50% - 45px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.detail-header__basic-details{width:calc(25% - 32.5px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.detail-header__basic-details{width:calc(25% - 37.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.detail-header__basic-details{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.detail-header__basic-details{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.detail-header__basic-details{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.detail-header__basic-details{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 320px){.detail-header__extra-details{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.detail-header__extra-details{width:calc(33.3333333333% - 40px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.detail-header__extra-details{width:calc(25% - 32.5px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.detail-header__extra-details{width:calc(25% - 37.5px);float:left;margin-left:30px}}@media all and (min-width: 320px)and (max-width: 560px){.detail-header__extra-detail:first-child{margin-top:24px;padding-top:24px;border-top:1px solid #e9e0c4}}@media only screen and (min-width: 320px){.detail-header__button{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.detail-header__button{width:calc(33.3333333333% - 40px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.detail-header__button{width:calc(16.6666666667% - 30.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.detail-header__button{width:calc(16.6666666667% - 35px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.detail-header__button{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.detail-header__button{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.detail-header__button{margin-left:calc(0% - 26px + 52px)}}@media only screen and (min-width: 1380px){.detail-header__button{margin-left:calc(0% - 30px + 60px)}}@media all and (max-width: 1012px){.detail-header__button{margin-top:32px;text-align:right}}@media all and (min-width: 560px){.detail-header__button a{width:100%}}.detail-image{margin-left:auto;margin-right:auto;margin-bottom:32px}.detail-image::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.detail-image{float:none;max-width:100%}html.show-grid .detail-image{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.detail-image{float:none;max-width:100%}html.show-grid .detail-image{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.detail-image{float:none;max-width:100%}html.show-grid .detail-image{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.detail-image{float:none;max-width:1380px}html.show-grid .detail-image{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.detail-image .picture{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.detail-image .picture{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.detail-image .picture{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.detail-image .picture{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.detail-image .picture{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.detail-image .picture{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.detail-image .picture{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.detail-image .picture{margin-left:calc(16.6666666667% - 35px + 60px)}}.expertise-page .expertise-content{padding-top:48px}.home-page .home__campaign,.home-page .home__article,.home-page .home__expertises,.home-page .home__intervention,.home-page .home__map{position:relative}.intervention-page .timeline-block{margin-bottom:32px}@media all and (min-width: 1012px){.intervention-page .timeline-block{margin-bottom:72px}}.intervention-page .timeline-block+.content-stream .block .block-anchor{margin-top:-32px}@media all and (min-width: 1012px){.intervention-page .timeline-block+.content-stream .block .block-anchor{margin-top:-72px}}.intervention-page .block-anchor{display:none}.intervention-page--fixed{max-height:100vh;overflow:hidden}@media all and (min-width: 320px)and (max-width: 560px){.intervention-page--freemode header{display:none}}.primary-donation-page{margin-bottom:40px}.primary-donation-page .page-content{padding-top:120px}@media all and (min-width: 560px){.primary-donation-page .page-content{padding-top:144px}}@media all and (min-width: 1380px){.primary-donation-page .page-content{padding-top:208px}}@media all and (min-width: 560px){.primary-donation-page{margin-top:24px}}@media all and (min-width: 1012px){.primary-donation-page{margin-top:-44px;margin-bottom:56px}}@media all and (min-width: 320px)and (max-width: 560px){.primary-donation-page .page-content{padding-top:230px}}@media all and (min-width: 560px){.primary-donation-page--alternative{margin-top:-208px}.primary-donation-page--alternative .donation-block__content{display:flex;flex-direction:column}.primary-donation-page--alternative .donation-block__content>*{order:2}.primary-donation-page--alternative .donation-block__content>.donation-block__steps{order:1}}@media all and (min-width: 1012px){.primary-donation-page--alternative{margin-top:-158px}}@media all and (min-width: 1380px){.primary-donation-page--alternative{margin-top:-208px}}.primary-donation-page--alternative .donation-block__steps{position:absolute;width:100%;left:0;top:110px}@media all and (min-width: 560px){.primary-donation-page--alternative .donation-block__steps{margin-bottom:55px;position:relative;left:auto;width:auto;top:auto}}@media all and (min-width: 1012px){.primary-donation-page--alternative .donation-block__steps{margin-bottom:75px}}.primary-donation-page--alternative .donation-block__steps li{width:31%}.primary-donation-page--alternative .donation-block__image-wrapper{height:190px;position:relative}@media only screen and (min-width: 320px){.primary-donation-page--alternative .donation-block__image-wrapper{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.primary-donation-page--alternative .donation-block__image-wrapper{width:calc(33.3333333333% - 40px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.primary-donation-page--alternative .donation-block__image-wrapper{width:calc(33.3333333333% - 34.6666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.primary-donation-page--alternative .donation-block__image-wrapper{width:calc(33.3333333333% - 40px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.primary-donation-page--alternative .donation-block__image-wrapper{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.primary-donation-page--alternative .donation-block__image-wrapper{margin-left:calc(66.6666666667% - 50px + 60px)}}@media only screen and (min-width: 1012px){.primary-donation-page--alternative .donation-block__image-wrapper{margin-left:calc(50% - 39px + 52px)}}@media only screen and (min-width: 1380px){.primary-donation-page--alternative .donation-block__image-wrapper{margin-left:calc(50% - 45px + 60px)}}@media all and (min-width: 560px){.primary-donation-page--alternative .donation-block__image-wrapper{height:90px;top:210px}}@media all and (min-width: 1012px){.primary-donation-page--alternative .donation-block__image-wrapper{height:40px;top:160px}}.primary-donation-page--alternative .donation-block__image{position:relative}.primary-donation-page--alternative .donation-block__image::after{background-image:linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));bottom:0;height:30%;width:100%;content:"";display:block;position:absolute}@media all and (min-width: 1012px){.primary-donation-page--alternative .donation-block__image::after{width:70%;height:100%;background-image:linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0))}}.primary-donation-page--alternative .donation-block__header,.primary-donation-page--alternative .donation-block__form{position:relative;z-index:10}@media all and (min-width: 560px){.primary-donation-page--alternative .donation-block__header{margin-bottom:15px}}.primary-donation-page--alternative .donation-block__output{margin-bottom:32px}@media all and (min-width: 1012px){.primary-donation-page--alternative .donation-block__frequency li:nth-last-child(n+4){margin-bottom:6px}}@media all and (min-width: 1012px){.primary-donation-page--alternative .donation-block__frequency{margin-bottom:26px}}.primary-donation-page--alternative .donation-block__steps li{margin-right:2px;display:inline-block}@media all and (min-width: 320px)and (max-width: 560px){.primary-donation-page--alternative .donation-block__steps li.is-active .title{width:100%}}.primary-donation-page--alternative .donation-block__steps li.is-active+li>span.title,.primary-donation-page--alternative .donation-block__steps li.is-active+li+li>span.title{background:no-repeat;color:#e9e0c4}.primary-donation-page--alternative .donation-block__payment{height:0;opacity:0;pointer-events:none}.primary-donation-page--alternative .donation-block__donation-label{font-size:0.8125rem;font-family:"Atlas Grotesk Black";font-weight:700;margin-bottom:10px;text-transform:uppercase}.primary-donation-page--alternative .donation-block__donation-value{font-size:0.875rem;color:#acacac;margin-bottom:20px;text-transform:uppercase}.primary-donation-page--alternative .donation-block__form.form--information fieldset{margin-bottom:0}.primary-donation-page--alternative .form--information .donation-block__titles-wrapper{display:block;margin-bottom:70px}.success-page .page-content{padding-top:120px}@media all and (min-width: 560px){.success-page .page-content{padding-top:144px}}@media all and (min-width: 1380px){.success-page .page-content{padding-top:208px}}.billecta__container{position:relative}:not(.content-stream) .billecta__container{margin-top:80px;margin-bottom:80px}.billecta__container.is-loading .billecta__body{opacity:.2;pointer-events:none}.billecta__container.is-loading .loader{display:block}.billecta__container .loader{display:none;position:absolute;left:0;right:0;bottom:0;top:0;margin:auto;width:80px;height:80px}.billecta__container .loader div{box-sizing:border-box;display:block;position:absolute;width:64px;height:64px;margin:8px;border:8px solid #ed1b2d;border-radius:50%;animation:lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;border-color:#ed1b2d rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0)}.billecta__container .loader div:nth-child(1){animation-delay:-0.45s}.billecta__container .loader div:nth-child(2){animation-delay:-0.3s}.billecta__container .loader div:nth-child(3){animation-delay:-0.15s}@keyframes lds-ring{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.billecta-form{margin-bottom:30px}@media all and (min-width: 320px)and (max-width: 560px){.billecta-form .form-block__content{margin-left:auto;margin-right:auto;float:none}}.billecta-form .field{margin-bottom:20px;width:100%}.billecta-form .field__label{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1rem;line-height:1.5rem;margin-bottom:10px;text-transform:uppercase}@media all and (min-width: 560px){.billecta-form .field__label{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.billecta-form .field__label{font-size:1.125rem;line-height:1.875rem}}.billecta-form .field__label__required{color:#ed1b2d}.billecta-form .field__help{margin-top:5px}.billecta-form .field__error li{color:#ed1b2d;font-family:"Atlas Grotesk Regular";font-weight:400;font-size:1rem;line-height:1.5rem;margin-top:5px;margin-bottom:20px}@media all and (min-width: 560px){.billecta-form .field__error li{font-size:0.9375rem;line-height:1.5rem}}@media all and (min-width: 1380px){.billecta-form .field__error li{font-size:1.125rem;line-height:1.875rem}}.billecta-form__fields{margin-bottom:40px}.billecta-form__extra{margin-bottom:40px}.billecta-form__notes{margin:10px 0}.billecta-form__notes p,.billecta-form__notes a{font-family:"Atlas Grotesk Regular";font-weight:400;font-size:0.75rem;line-height:1.1875rem}@media all and (min-width: 560px){.billecta-form__notes p,.billecta-form__notes a{font-size:0.8125rem;line-height:1.3125rem}}@media all and (min-width: 1380px){.billecta-form__notes p,.billecta-form__notes a{font-size:1rem;line-height:1.625rem}}.billecta-summary__layout-container{margin-left:auto;margin-right:auto}.billecta-summary__layout-container::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.billecta-summary__layout-container{float:none;max-width:100%}html.show-grid .billecta-summary__layout-container{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.billecta-summary__layout-container{float:none;max-width:100%}html.show-grid .billecta-summary__layout-container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.billecta-summary__layout-container{float:none;max-width:100%}html.show-grid .billecta-summary__layout-container{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.billecta-summary__layout-container{float:none;max-width:1380px}html.show-grid .billecta-summary__layout-container{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}.billecta-summary__amount{margin-bottom:32px;color:#ed1b2d}@media only screen and (min-width: 320px){.billecta-summary__amount{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.billecta-summary__amount{width:calc(83.3333333333% - 55px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.billecta-summary__amount{width:calc(58.3333333333% - 41.1666666667px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.billecta-summary__amount{width:calc(58.3333333333% - 47.5px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.billecta-summary__amount{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.billecta-summary__amount{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.billecta-summary__amount{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.billecta-summary__amount{margin-left:calc(16.6666666667% - 35px + 60px)}}.billecta-grid{display:grid;grid-template-columns:1fr 1fr;grid-column-gap:15px;-moz-column-gap:15px;column-gap:15px;grid-row-gap:15px;row-gap:15px}@media all and (min-width: 560px){.portrait-billecta-grid{display:grid;grid-template-columns:1fr 1fr;grid-column-gap:15px;-moz-column-gap:15px;column-gap:15px;grid-row-gap:15px;row-gap:15px}}.billecta-period-chooser input[type=radio]{opacity:0;position:absolute}.billecta-period-chooser input[type=radio]:checked+label.button{background-color:#222;color:#fff}.billecta-period-chooser input[type=radio]:checked+label.button:hover{cursor:default;border-color:#222}.billecta-period-chooser .button{width:100%}.billecta-poller{border:solid 2px #000;max-width:300px;display:flex;flex-direction:column;justify-content:center;align-items:center;margin:30px auto;padding:30px 20px}@media all and (min-width: 560px){.billecta-poller{max-width:480px}}.billecta-poller__qr{min-width:280px;display:block}.billecta-poller p:not(:first-child){margin-top:20px}.billecta-amount-chooser{width:100%}.billecta-amount-chooser .button{height:50px}.billecta-amount-chooser-amount__free::after{content:attr(data-currency)}input[type=number].billecta-amount-chooser-amount__input{text-transform:uppercase}.form input[type=number].billecta-amount-chooser-amount__input{font-family:"Atlas Grotesk Bold";font-weight:700;font-size:1.25rem;line-height:2.75rem;padding:0 20px}@media all and (min-width: 560px){.form input[type=number].billecta-amount-chooser-amount__input{line-height:2.375rem}}@media all and (min-width: 1380px){.form input[type=number].billecta-amount-chooser-amount__input{line-height:2.75rem}}input[type=number].billecta-amount-chooser-amount__input::-webkit-outer-spin-button,input[type=number].billecta-amount-chooser-amount__input::-webkit-inner-spin-button{-webkit-appearance:none;appearance:none;margin:0}.billecta-amount-chooser-amount.billecta-amount-chooser-amount--selected.button{background-color:#222;color:#fff}.billecta-amount-chooser-amount.billecta-amount-chooser-amount--selected.button:hover{cursor:default;border-color:#222}.billecta-error{margin:30px auto;max-width:300px;border:solid 2px #000;text-align:center;padding:30px 0}@media all and (min-width: 560px){.billecta-error{max-width:480px}}.billecta-error h2{margin-bottom:30px}.page-search{max-width:1380px;margin:0 auto;padding:1.875rem}.page-search__search-bar{margin-bottom:5rem}@media all and (min-width: 768px){.page-search__search-bar{margin-left:calc(16.6667% - 35px + 60px)}}.page-search__no-results{font-family:"Atlas Grotesk Bold",sans-serif;margin-top:1.875rem;text-align:left;font-size:1.75rem;font-weight:700;line-height:2.25rem}.page-search__results{display:flex;flex-direction:column;width:100%;margin:0 auto}.page-search__results-list li{border-bottom:1px solid #e9e0c4}.page-search__results-list li:last-child{border-bottom:none}.extra-message__wrapper{margin-left:auto;margin-right:auto;margin-bottom:50px}.extra-message__wrapper::after{clear:both;content:"";display:block}@media only screen and (min-width: 320px){.extra-message__wrapper{float:none;max-width:100%}html.show-grid .extra-message__wrapper{background-image:repeating-linear-gradient(to right, transparent, transparent 20px, rgba(255, 215, 0, 0.2) 20px, rgba(255, 215, 0, 0.2) calc(16.6666666667% - 23.3333333333px + 20px))}}@media only screen and (min-width: 560px){.extra-message__wrapper{float:none;max-width:100%}html.show-grid .extra-message__wrapper{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(0, 128, 0, 0.2) 30px, rgba(0, 128, 0, 0.2) calc(16.6666666667% - 35px + 30px))}}@media only screen and (min-width: 1012px){.extra-message__wrapper{float:none;max-width:100%}html.show-grid .extra-message__wrapper{background-image:repeating-linear-gradient(to right, transparent, transparent 26px, rgba(255, 99, 71, 0.2) 26px, rgba(255, 99, 71, 0.2) calc(8.3333333333% - 28.1666666667px + 26px))}}@media only screen and (min-width: 1380px){.extra-message__wrapper{float:none;max-width:1380px}html.show-grid .extra-message__wrapper{background-image:repeating-linear-gradient(to right, transparent, transparent 30px, rgba(135, 206, 235, 0.2) 30px, rgba(135, 206, 235, 0.2) calc(8.3333333333% - 32.5px + 30px))}}@media only screen and (min-width: 320px){.extra-message__content{width:calc(100% - 40px);float:left;margin-left:20px}}@media only screen and (min-width: 560px){.extra-message__content{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 1012px){.extra-message__content{width:calc(66.6666666667% - 43.3333333333px);float:left;margin-left:26px}}@media only screen and (min-width: 1380px){.extra-message__content{width:calc(66.6666666667% - 50px);float:left;margin-left:30px}}@media only screen and (min-width: 320px){.extra-message__content{margin-left:calc(0% - 20px + 40px)}}@media only screen and (min-width: 560px){.extra-message__content{margin-left:calc(16.6666666667% - 35px + 60px)}}@media only screen and (min-width: 1012px){.extra-message__content{margin-left:calc(16.6666666667% - 30.3333333333px + 52px)}}@media only screen and (min-width: 1380px){.extra-message__content{margin-left:calc(16.6666666667% - 35px + 60px)}}
